Skip to content

Commit 80c31d7

Browse files
authored
Merge pull request #45 from carfup/release
Release 1.3.2.1
2 parents f1856ee + fd60633 commit 80c31d7

19 files changed

Lines changed: 363 additions & 244 deletions

File tree

AnyCompositeFields/AnyCompositeFIelds/ControlManifest.Input.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest>
3-
<control namespace="Carfup" constructor="AnyCompositeFIelds" version="0.0.70" display-name-key="Carfup.AnyCompositeFIelds" description-key="AnyCompositeFIelds will allow you to display any stack of fields as composite rendering." control-type="standard" preview-image="img/preview.png">
3+
<control namespace="Carfup" constructor="AnyCompositeFIelds" version="0.0.72" display-name-key="Carfup.AnyCompositeFIelds" description-key="AnyCompositeFIelds will allow you to display any stack of fields as composite rendering." control-type="standard" preview-image="img/preview.png">
44
<!-- property node identifies a specific, configurable piece of data that the control expects from CDS -->
55
<property name="FieldToAttachControl" display-name-key="FieldToAttachControl" description-key="Field to attach the control to" of-type-group="strings" usage="bound" required="true" />
66
<property name="separator" display-name-key="Values separator" description-key="Separator to split the mapped values (for a space, put %20)" of-type="SingleLine.Text" usage="input" required="true" default-value="%20" />

AnyCompositeFields/AnyCompositeFIelds/components/CompositeControl.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
import * as React from 'react';
2-
import { Callout, Stack, TextField, DefaultButton, BaseButton, Button, IStackStyles, ITextFieldStyles, ICalloutContentStyles, DirectionalHint } from 'office-ui-fabric-react';
2+
import { DefaultButton, BaseButton, Button } from '@fluentui/react/lib/Button';
3+
import { TextField, ITextFieldStyles } from '@fluentui/react/lib/TextField';
4+
import { Stack, IStackStyles } from '@fluentui/react/lib/Stack';
5+
import { Callout, ICalloutContentStyles, DirectionalHint } from '@fluentui/react/lib/Callout';
36
import { CompositeValue } from '../EntitiesDefinition';
47

58
export interface ICompositeControlProps {

AnyCompositeFields/package-lock.json

Lines changed: 95 additions & 75 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

AnyCompositeFields/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
"start": "pcf-scripts start"
1010
},
1111
"dependencies": {
12+
"@fluentui/react": "^7.123.9",
1213
"@types/jquery": "^3.3.38",
1314
"@types/node": "^10.12.18",
1415
"@types/powerapps-component-framework": "^1.2.0",
15-
"office-ui-fabric-react": "^7.113.2",
1616
"react": "^16.13.1"
1717
},
1818
"devDependencies": {

BICValidator/package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Carfup_PCFControls/Other/Solution.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<LocalizedName description="Carfup_PCFControls" languagecode="1033" />
99
</LocalizedNames>
1010
<Descriptions />
11-
<Version>1.3.1.0</Version>
11+
<Version>1.3.2.1</Version>
1212
<!-- Solution Package Type: Unmanaged(0)/Managed(1)/Both(2)-->
1313
<Managed>2</Managed>
1414
<Publisher>

FileFieldTypeManager/package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

IbanValidator/package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

QuickEditForm/QuickEditForm/ControlManifest.Input.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest>
3-
<control namespace="Carfup" constructor="QuickEditForm" version="0.0.230" display-name-key="Carfup.QuickEditForm" description-key="QuickEditForm allows you to edit data from a lookup record using a Quick View Form definition as enty form." control-type="standard" preview-image="img/preview.png">
3+
<control namespace="Carfup" constructor="QuickEditForm" version="0.0.235" display-name-key="Carfup.QuickEditForm" description-key="QuickEditForm allows you to edit data from a lookup record using a Quick View Form definition as enty form." control-type="standard" preview-image="img/preview.png">
44
<!-- property node identifies a specific, configurable piece of data that the control expects from CDS -->
55
<property name="FieldToAttachControl" display-name-key="FieldToAttachControl" description-key="Property_Desc_Key" of-type="SingleLine.Text" usage="bound" required="true" />
66
<property name="QuickViewFormId" display-name-key="QuickViewFormId" description-key="GUID of the Quick View Form to render" of-type="SingleLine.Text" usage="input" required="true" />

QuickEditForm/QuickEditForm/EntitiesDefinition.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ export class DataFieldDefinition {
1414
public isDirty? : boolean;
1515
public isRequired? : boolean;
1616
public fieldName? : string;
17+
public fieldSchemaName? : string;
1718
public fieldType? : string;
1819
public fieldValue? : any;
1920
public controlId? : string;

0 commit comments

Comments
 (0)