@omnia/fx 7.10.0-preview.25 → 7.10.0-preview.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/internal-do-not-import-from-here/ux/UxModels.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/blockgallery/store/BlockGalleryStore.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/editorchrome/action_toolbar/ActionToolbar.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/booleanfield/BooleanFieldEdit.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/datetimefield/DateTimeFieldEdit.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/numberfield/NumberFieldEdit.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/richtextfield/RichTextFieldEdit.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/tagsproperty/TagsPropertyEdit.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/textfield/TextFieldEdit.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/picker/loc/localize.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/identities/loc/localize.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/identitypicker/loc/Localize.d.ts +2 -1
- package/package.json +2 -2
|
@@ -32,6 +32,7 @@ export interface OmniaUxLocalization {
|
|
|
32
32
|
ShowDetails: string;
|
|
33
33
|
ShowMore: string;
|
|
34
34
|
Clear: string;
|
|
35
|
+
Selected: string;
|
|
35
36
|
};
|
|
36
37
|
Yes: string;
|
|
37
38
|
No: string;
|
|
@@ -723,6 +724,12 @@ export interface OmniaUxLocalization {
|
|
|
723
724
|
Title: string;
|
|
724
725
|
};
|
|
725
726
|
};
|
|
727
|
+
ExtraIDAdditionalUserProperties: {
|
|
728
|
+
Category: string;
|
|
729
|
+
Description: string;
|
|
730
|
+
Title: string;
|
|
731
|
+
ConsentInformation: string;
|
|
732
|
+
};
|
|
726
733
|
};
|
|
727
734
|
AuditLog: {
|
|
728
735
|
Title: string;
|
|
@@ -30,7 +30,7 @@ export declare class BlockGalleryStore extends Store {
|
|
|
30
30
|
private initSpfxDictionary;
|
|
31
31
|
private layoutBlockSettingForRender;
|
|
32
32
|
private dialogLayouts;
|
|
33
|
-
private
|
|
33
|
+
private registeredDialogLayoutProviders;
|
|
34
34
|
protected onActivated(): Promise<void>;
|
|
35
35
|
getters: {
|
|
36
36
|
blocks: () => {
|
|
@@ -23,6 +23,7 @@ export declare class ActionToolbar extends VueComponentBase<IActionToolbar> {
|
|
|
23
23
|
private onActionButtonClick;
|
|
24
24
|
private createActionButtons;
|
|
25
25
|
private createButton;
|
|
26
|
+
private createButtonWithSecurityTrimer;
|
|
26
27
|
private createDefaultButton;
|
|
27
28
|
private createGroupButtons;
|
|
28
29
|
private createButtonGroup;
|
|
@@ -4,6 +4,7 @@ import { EnterprisePropertyDefinition, EnterprisePropertyBooleanItemSettings } f
|
|
|
4
4
|
import { VueComponentBase } from "../../../VueComponentBase";
|
|
5
5
|
import { MultilingualStore } from "../../../../stores";
|
|
6
6
|
export declare class BooleanFieldEdit extends VueComponentBase implements IWebComponentInstance, IBooleanFieldEdit {
|
|
7
|
+
private loc;
|
|
7
8
|
valueBind: {
|
|
8
9
|
[propertyInternalName: string]: boolean;
|
|
9
10
|
};
|
|
@@ -4,6 +4,7 @@ import { EnterprisePropertyDefinition, EnterprisePropertyDateTimeItemSettings }
|
|
|
4
4
|
import { VueComponentBase } from "../../../VueComponentBase";
|
|
5
5
|
import { MultilingualStore } from "../../../../stores";
|
|
6
6
|
export declare class DateTimeFieldEdit extends VueComponentBase implements IWebComponentInstance, IDateTimeFieldEdit {
|
|
7
|
+
private loc;
|
|
7
8
|
valueBind: {
|
|
8
9
|
[propertyInternalName: string]: string;
|
|
9
10
|
};
|
|
@@ -14,6 +14,7 @@ export declare class NumberFieldEdit extends VueComponentBase implements IWebCom
|
|
|
14
14
|
settings: EnterprisePropertyNumberItemSettings;
|
|
15
15
|
isRequired: boolean;
|
|
16
16
|
multilingualStore: MultilingualStore;
|
|
17
|
+
private loc;
|
|
17
18
|
mounted(): void;
|
|
18
19
|
created(): void;
|
|
19
20
|
beforeDestroy(): void;
|
|
@@ -17,6 +17,7 @@ export declare class RichTextFieldEdit extends VueComponentBase implements IWebC
|
|
|
17
17
|
queryable?: boolean;
|
|
18
18
|
disableAutofocus?: boolean;
|
|
19
19
|
private loc;
|
|
20
|
+
private pickerLoc;
|
|
20
21
|
private mediaPickerService;
|
|
21
22
|
multilingualStore: MultilingualStore;
|
|
22
23
|
isRequired: boolean;
|
|
@@ -17,6 +17,7 @@ export declare class TagsPropertyEditComponent extends VueComponentBase implemen
|
|
|
17
17
|
multilingualStore: MultilingualStore;
|
|
18
18
|
promotedTagStore: PromotedTagStore;
|
|
19
19
|
private uxLoc;
|
|
20
|
+
private loc;
|
|
20
21
|
tags: Tag[];
|
|
21
22
|
selectedItem: Array<Tag> | Tag;
|
|
22
23
|
isSearching: boolean;
|
package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/textfield/TextFieldEdit.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export declare class TextFieldEdit extends VueComponentBase<{
|
|
|
16
16
|
filled?: boolean;
|
|
17
17
|
settings: EnterprisePropertyTextItemSettings;
|
|
18
18
|
multilingualStore: MultilingualStore;
|
|
19
|
+
private loc;
|
|
19
20
|
isRequired: boolean;
|
|
20
21
|
errorMessages: Array<string>;
|
|
21
22
|
isError: boolean;
|
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
export declare module EnterprisePropertiesPickerLocalization {
|
|
2
2
|
const namespace = "Omnia.Ux.EnterprisePropertiesPicker";
|
|
3
3
|
interface locInterface {
|
|
4
|
+
Picker: {
|
|
5
|
+
DateTimeFieldPicker: string;
|
|
6
|
+
TagsFieldPicker: string;
|
|
7
|
+
BooleanFieldPicker: string;
|
|
8
|
+
TextFieldPicker: string;
|
|
9
|
+
RichTextFieldPicker: string;
|
|
10
|
+
NumberFieldPicker: string;
|
|
11
|
+
};
|
|
4
12
|
}
|
|
5
13
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omnia/fx",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "7.10.0-preview.
|
|
4
|
+
"version": "7.10.0-preview.27",
|
|
5
5
|
"description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
],
|
|
21
21
|
"author": "Omnia Digital Workplace AB",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@omnia/fx-models": "7.10.0-preview.
|
|
23
|
+
"@omnia/fx-models": "7.10.0-preview.27",
|
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
|
25
25
|
"broadcast-channel": "4.8.0",
|
|
26
26
|
"dayjs": "1.10.7",
|