-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #192 from carfup/v1.4.0.1
V1.4.0.1
- Loading branch information
Showing
28 changed files
with
9,428 additions
and
12,197 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
AnyCompositeFields/AnyCompositeFIelds/ControlManifest.Input.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
|
||
# generated directory | ||
**/generated | ||
|
||
# output directory | ||
/out | ||
|
||
# msbuild output directories | ||
/bin | ||
/obj |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest> | ||
<control namespace="Carfup" constructor="EasyRollupField" version="0.0.10" display-name-key="Carfup.EasyRollup" description-key="EasyRollup description" control-type="virtual"> | ||
<property name="FieldToAttachControl" display-name-key="FieldToAttachControl" description-key="FieldToAttachControl" of-type-group="numbers" usage="bound" required="true" /> | ||
<property name="RollupField" display-name-key="RollupField Logical Name" description-key="RollupField Logical Name" of-type="SingleLine.Text" usage="input" required="true" /> | ||
<type-group name="numbers"> | ||
<type>Currency</type> | ||
<type>FP</type> | ||
<type>Whole.None</type> | ||
<type>Decimal</type> | ||
<type>SingleLine.Text</type> | ||
</type-group> | ||
<resources> | ||
<code path="index.ts" order="1" /> | ||
<platform-library name="React" version="16.8.6" /> | ||
<platform-library name="Fluent" version="9.4.0" /> | ||
</resources> | ||
<feature-usage> | ||
<uses-feature name="WebAPI" required="true" /> | ||
<uses-feature name="Utility" required="true" /> | ||
</feature-usage> | ||
</control> | ||
</manifest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { IInputs } from "./generated/ManifestTypes"; | ||
|
||
export class EntityReferenceDef{ | ||
public Id:string; | ||
public Name:string; | ||
public EntityName: string; | ||
public EntitySetName: string | null; | ||
} | ||
|
||
export interface IRollupFieldControlProps { | ||
context : ComponentFramework.Context<IInputs>, | ||
entityRef : EntityReferenceDef, | ||
rollupField : string, | ||
clientUrl : string | ||
} |
Oops, something went wrong.