Skip to content

Commit

Permalink
Merge pull request #45 from carfup/release
Browse files Browse the repository at this point in the history
Release 1.3.2.1
  • Loading branch information
carfup authored Jul 31, 2020
2 parents f1856ee + fd60633 commit 80c31d7
Show file tree
Hide file tree
Showing 19 changed files with 363 additions and 244 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest>
<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">
<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">
<!-- property node identifies a specific, configurable piece of data that the control expects from CDS -->
<property name="FieldToAttachControl" display-name-key="FieldToAttachControl" description-key="Field to attach the control to" of-type-group="strings" usage="bound" required="true" />
<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" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import * as React from 'react';
import { Callout, Stack, TextField, DefaultButton, BaseButton, Button, IStackStyles, ITextFieldStyles, ICalloutContentStyles, DirectionalHint } from 'office-ui-fabric-react';
import { DefaultButton, BaseButton, Button } from '@fluentui/react/lib/Button';
import { TextField, ITextFieldStyles } from '@fluentui/react/lib/TextField';
import { Stack, IStackStyles } from '@fluentui/react/lib/Stack';
import { Callout, ICalloutContentStyles, DirectionalHint } from '@fluentui/react/lib/Callout';
import { CompositeValue } from '../EntitiesDefinition';

export interface ICompositeControlProps {
Expand Down
170 changes: 95 additions & 75 deletions AnyCompositeFields/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion AnyCompositeFields/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
"start": "pcf-scripts start"
},
"dependencies": {
"@fluentui/react": "^7.123.9",
"@types/jquery": "^3.3.38",
"@types/node": "^10.12.18",
"@types/powerapps-component-framework": "^1.2.0",
"office-ui-fabric-react": "^7.113.2",
"react": "^16.13.1"
},
"devDependencies": {
Expand Down
12 changes: 6 additions & 6 deletions BICValidator/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Carfup_PCFControls/Other/Solution.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<LocalizedName description="Carfup_PCFControls" languagecode="1033" />
</LocalizedNames>
<Descriptions />
<Version>1.3.1.0</Version>
<Version>1.3.2.1</Version>
<!-- Solution Package Type: Unmanaged(0)/Managed(1)/Both(2)-->
<Managed>2</Managed>
<Publisher>
Expand Down
12 changes: 6 additions & 6 deletions FileFieldTypeManager/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions IbanValidator/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion QuickEditForm/QuickEditForm/ControlManifest.Input.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest>
<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">
<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">
<!-- property node identifies a specific, configurable piece of data that the control expects from CDS -->
<property name="FieldToAttachControl" display-name-key="FieldToAttachControl" description-key="Property_Desc_Key" of-type="SingleLine.Text" usage="bound" required="true" />
<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" />
Expand Down
1 change: 1 addition & 0 deletions QuickEditForm/QuickEditForm/EntitiesDefinition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export class DataFieldDefinition {
public isDirty? : boolean;
public isRequired? : boolean;
public fieldName? : string;
public fieldSchemaName? : string;
public fieldType? : string;
public fieldValue? : any;
public controlId? : string;
Expand Down
6 changes: 4 additions & 2 deletions QuickEditForm/QuickEditForm/components/ButtonControl.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import * as React from 'react';
import { DefaultButton, Stack, IStackTokens, MessageBarType, Image, ImageFit } from 'office-ui-fabric-react';
import { relative } from 'path';
import { DefaultButton } from '@fluentui/react/lib/Button';
import { Stack, IStackTokens } from '@fluentui/react/lib/Stack';
import { MessageBarType } from '@fluentui/react/lib/MessageBar';
import { Image, ImageFit } from '@fluentui/react/lib/Image';

export interface IButtonProps {
loadingImage : any;
Expand Down
Loading

0 comments on commit 80c31d7

Please sign in to comment.