@omnia/fx 8.0.396-dev → 8.0.397-dev
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/stores/mediapicker/ImageTransformerStore.d.ts +3 -3
- package/internal-do-not-import-from-here/stores/mediapicker/MediaPickerGalleryStore.d.ts +10 -6
- package/internal-do-not-import-from-here/stores/mediapicker/ProviderStore.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/admin/system/loc/localize.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/admin/system/submenu/tenantcontact/TenantContactConstant.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/admin/system/submenu/tenantcontact/blades/MainContactsBlade.d.ts +13 -0
- package/internal-do-not-import-from-here/ux/admin/system/submenu/tenantcontact/blades/SecurityContactsBlade.d.ts +13 -0
- package/internal-do-not-import-from-here/ux/admin/system/submenu/tenantcontact/blades/SystemUpdateNotificationBlade.d.ts +13 -0
- package/internal-do-not-import-from-here/ux/admin/system/submenu/tenantcontact/blades/TenantContactBladeStore.d.ts +27 -0
- package/internal-do-not-import-from-here/ux/admin/system/submenu/tenantcontact/blades/UserSyncContacts.d.ts +13 -0
- package/internal-do-not-import-from-here/ux/admin/usermanagement/shared/UserManagementHelper.d.ts +194 -1
- package/internal-do-not-import-from-here/ux/aurora/components/colorschemapicker/store/ColorSchemaPickerStore.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/containerFillpicker/ContainerFillPicker.d.ts +102 -91
- package/internal-do-not-import-from-here/ux/aurora/components/containerFillpicker/store/ContainerFillPickerStore.d.ts +28 -0
- package/internal-do-not-import-from-here/ux/aurora/components/fillpicker/FillPicker.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/aurora/components/fillpicker/store/FillPickerStore.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/store/ComponentBlueprintStore.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/store/ThemeStore.d.ts +13 -3
- package/internal-do-not-import-from-here/ux/aurora/styling/styles/FillStyling.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/links/store/LinkPickerStore.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/selection/Selection.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/selection/store/SelectionStore.d.ts +6 -5
- package/internal-do-not-import-from-here/ux/signin/omnia/Renderer.d.ts +4 -5
- package/package.json +3 -3
@@ -70,8 +70,8 @@ export declare const useMediaPickerImageTransformerStore: () => {
|
|
70
70
|
showImageTransformer: (value: boolean | ((prev: boolean) => boolean)) => void;
|
71
71
|
imageRatios: (value: MediaPickerImageRatio[] | ((prev: MediaPickerImageRatio[]) => MediaPickerImageRatio[])) => void;
|
72
72
|
rollupRatios: (value: MediaPickerRollupImageRatio[] | ((prev: MediaPickerRollupImageRatio[]) => MediaPickerRollupImageRatio[])) => void;
|
73
|
-
editorOptions: ImageTransformerOptions;
|
74
|
-
settings: MediaPickerImageSettings;
|
73
|
+
editorOptions: (value: ImageTransformerOptions | ((prev: ImageTransformerOptions) => ImageTransformerOptions)) => void;
|
74
|
+
settings: (value: MediaPickerImageSettings | ((prev: MediaPickerImageSettings) => MediaPickerImageSettings)) => void;
|
75
75
|
editorReady: (value: boolean | ((prev: boolean) => boolean)) => void;
|
76
76
|
actionCount: (value: number | ((prev: number) => number)) => void;
|
77
77
|
imageTransformedResult: (value: MediaPickerImageTransformationResult | ((prev: MediaPickerImageTransformationResult) => MediaPickerImageTransformationResult)) => void;
|
@@ -84,7 +84,7 @@ export declare const useMediaPickerImageTransformerStore: () => {
|
|
84
84
|
selectedRendition: (value: MediaPickerRenditionData | ((prev: MediaPickerRenditionData) => MediaPickerRenditionData)) => void;
|
85
85
|
showWarningCropInvalidDialog: (value: boolean | ((prev: boolean) => boolean)) => void;
|
86
86
|
customCropZone: (value: MediaPickerCropTransformation | ((prev: MediaPickerCropTransformation) => MediaPickerCropTransformation)) => void;
|
87
|
-
currentFilter: MediaPickerFilterTransformation;
|
87
|
+
currentFilter: (value: MediaPickerFilterTransformation | ((prev: MediaPickerFilterTransformation) => MediaPickerFilterTransformation)) => void;
|
88
88
|
selectedCropInformation: (value: {
|
89
89
|
[id: string]: MediaPickerCropTransformation;
|
90
90
|
} | ((prev: {
|
@@ -54,19 +54,23 @@ export declare const useGalleryStore: () => {
|
|
54
54
|
};
|
55
55
|
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
56
56
|
mutate: {
|
57
|
-
selectedMediaGallery: MediaGallery;
|
58
|
-
editingMediaIndex: number;
|
59
|
-
editingMediaId: guid;
|
60
|
-
mediaStates:
|
57
|
+
selectedMediaGallery: (value: MediaGallery | ((prev: MediaGallery) => MediaGallery)) => void;
|
58
|
+
editingMediaIndex: (value: number | ((prev: number) => number)) => void;
|
59
|
+
editingMediaId: (value: guid | ((prev: guid) => guid)) => void;
|
60
|
+
mediaStates: (value: MediaState[] | ((prev: MediaState[]) => MediaState[])) => void;
|
61
61
|
finishItemCount: (value: number | ((prev: number) => number)) => void;
|
62
62
|
enableGallery: (value: boolean | ((prev: boolean) => boolean)) => void;
|
63
63
|
enableMediaCaption: (value: boolean | ((prev: boolean) => boolean)) => void;
|
64
64
|
galleryItemLimit: (value: number | ((prev: number) => number)) => void;
|
65
65
|
enableTransformation: (value: boolean | ((prev: boolean) => boolean)) => void;
|
66
66
|
showMediaGallerySelector: (value: boolean | ((prev: boolean) => boolean)) => void;
|
67
|
-
imgThatNeedToConvertFromBase64ToMediaPicker: {
|
67
|
+
imgThatNeedToConvertFromBase64ToMediaPicker: (value: {
|
68
68
|
[imageId: string]: boolean;
|
69
|
-
}
|
69
|
+
} | ((prev: {
|
70
|
+
[imageId: string]: boolean;
|
71
|
+
}) => {
|
72
|
+
[imageId: string]: boolean;
|
73
|
+
})) => void;
|
70
74
|
};
|
71
75
|
get: {
|
72
76
|
hasMediaEditing: () => boolean;
|
@@ -74,16 +74,16 @@ export declare const useProviderStore: () => {
|
|
74
74
|
showFileTypeNotSupported: (value: boolean | ((prev: boolean) => boolean)) => void;
|
75
75
|
scaleProcessingImage: (value: boolean | ((prev: boolean) => boolean)) => void;
|
76
76
|
renderProvider: (value: boolean | ((prev: boolean) => boolean)) => void;
|
77
|
-
searchResults:
|
77
|
+
searchResults: (value: MediaItem[] | ((prev: MediaItem[]) => MediaItem[])) => void;
|
78
78
|
searchQueryText: (value: string | ((prev: string) => string)) => void;
|
79
|
-
maxAllowedFileSize: MediaPickerLimitedSizeSettings;
|
80
|
-
selectedFileScalingOption: MediaPickerImageScaling;
|
81
|
-
registeredProviders:
|
82
|
-
activeProvider: MediaPickerProvider;
|
83
|
-
selectedMediaInfo: ImageInformation | VideoInformation | MediaPickerBase64Image;
|
84
|
-
selectedMediaItem: ImageItem | VideoItem;
|
85
|
-
selectedMedia: MediaPickerMedia;
|
86
|
-
statusMessage: MediaPickerMessage;
|
79
|
+
maxAllowedFileSize: (value: MediaPickerLimitedSizeSettings | ((prev: MediaPickerLimitedSizeSettings) => MediaPickerLimitedSizeSettings)) => void;
|
80
|
+
selectedFileScalingOption: (value: MediaPickerImageScaling | ((prev: MediaPickerImageScaling) => MediaPickerImageScaling)) => void;
|
81
|
+
registeredProviders: (value: MediaPickerProvider[] | ((prev: MediaPickerProvider[]) => MediaPickerProvider[])) => void;
|
82
|
+
activeProvider: (value: MediaPickerProvider | ((prev: MediaPickerProvider) => MediaPickerProvider)) => void;
|
83
|
+
selectedMediaInfo: (value: MediaPickerBase64Image | ImageInformation | VideoInformation | ((prev: MediaPickerBase64Image | ImageInformation | VideoInformation) => MediaPickerBase64Image | ImageInformation | VideoInformation)) => void;
|
84
|
+
selectedMediaItem: (value: ImageItem | VideoItem | ((prev: ImageItem | VideoItem) => ImageItem | VideoItem)) => void;
|
85
|
+
selectedMedia: (value: MediaPickerMedia | ((prev: MediaPickerMedia) => MediaPickerMedia)) => void;
|
86
|
+
statusMessage: (value: MediaPickerMessage | ((prev: MediaPickerMessage) => MediaPickerMessage)) => void;
|
87
87
|
};
|
88
88
|
get: {
|
89
89
|
providerById(id: guid): MediaPickerProvider;
|
@@ -19,6 +19,12 @@ export declare namespace SystemLocalization {
|
|
19
19
|
ExternalEmailInputHint: string;
|
20
20
|
ExternalUserSyncContactEmail: string;
|
21
21
|
InvalidEmailHint: string;
|
22
|
+
Blades: {
|
23
|
+
MainContactsTitle: string;
|
24
|
+
SecurityContactsTitle: string;
|
25
|
+
SystemUpdateNotificationTitle: string;
|
26
|
+
UserSyncContactsTitle: string;
|
27
|
+
};
|
22
28
|
};
|
23
29
|
AzureAdPermissions: {
|
24
30
|
Id: string;
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { DefineSlot } from "@omnia/fx/ux";
|
2
|
+
import { TenantContactData } from "./TenantContactBladeStore";
|
3
|
+
import { VNodeChild } from "vue";
|
4
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
5
|
+
tenantContactData?: TenantContactData;
|
6
|
+
} & DefineSlot<"customInput", () => VNodeChild>> & {} & {
|
7
|
+
"v-slots"?: {
|
8
|
+
customInput?: () => VNodeChild;
|
9
|
+
} & Omit<{
|
10
|
+
default?: import("vue").Slot;
|
11
|
+
}, "customInput">;
|
12
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "tenantContactData" | "slot:customInput"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
13
|
+
export default _default;
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { DefineSlot } from "@omnia/fx/ux";
|
2
|
+
import { TenantContactData } from "./TenantContactBladeStore";
|
3
|
+
import { VNodeChild } from "vue";
|
4
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
5
|
+
tenantContactData?: TenantContactData;
|
6
|
+
} & DefineSlot<"customInput", () => VNodeChild>> & {} & {
|
7
|
+
"v-slots"?: {
|
8
|
+
customInput?: () => VNodeChild;
|
9
|
+
} & Omit<{
|
10
|
+
default?: import("vue").Slot;
|
11
|
+
}, "customInput">;
|
12
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "tenantContactData" | "slot:customInput"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
13
|
+
export default _default;
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { DefineSlot } from "@omnia/fx/ux";
|
2
|
+
import { TenantContactData } from "./TenantContactBladeStore";
|
3
|
+
import { VNodeChild } from "vue";
|
4
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
5
|
+
tenantContactData?: TenantContactData;
|
6
|
+
} & DefineSlot<"customInput", () => VNodeChild>> & {} & {
|
7
|
+
"v-slots"?: {
|
8
|
+
customInput?: () => VNodeChild;
|
9
|
+
} & Omit<{
|
10
|
+
default?: import("vue").Slot;
|
11
|
+
}, "customInput">;
|
12
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "tenantContactData" | "slot:customInput"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
13
|
+
export default _default;
|
@@ -0,0 +1,27 @@
|
|
1
|
+
import { Identity } from "@omnia/fx-models";
|
2
|
+
export interface TenantContactData {
|
3
|
+
mainContactIdentities: Array<Identity>;
|
4
|
+
securityContactIdentities: Array<Identity>;
|
5
|
+
deploymentContactIdentities: Array<Identity>;
|
6
|
+
userSyncContactIdentities: Array<Identity>;
|
7
|
+
mainContactExternalEmails: Array<string>;
|
8
|
+
securityContactExternalEmails: Array<string>;
|
9
|
+
deploymentContactExternalEmails: Array<string>;
|
10
|
+
userSyncContactExternalEmails: Array<string>;
|
11
|
+
}
|
12
|
+
export declare const useTenantContactBladeStore: () => {
|
13
|
+
state: {
|
14
|
+
tenantContactData: TenantContactData;
|
15
|
+
};
|
16
|
+
events: import("@omnia/fx/stores").StoreEvents<{
|
17
|
+
tenantContactData: TenantContactData;
|
18
|
+
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
19
|
+
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
20
|
+
resetTenantContactData(): TenantContactData;
|
21
|
+
loadData(): Promise<void>;
|
22
|
+
addOrUpdate(data: TenantContactData): Promise<boolean>;
|
23
|
+
checkExternalEmail(value: string): string | true;
|
24
|
+
}>;
|
25
|
+
} & {
|
26
|
+
dispose?: () => void;
|
27
|
+
};
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { DefineSlot } from "@omnia/fx/ux";
|
2
|
+
import { TenantContactData } from "./TenantContactBladeStore";
|
3
|
+
import { VNodeChild } from "vue";
|
4
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
5
|
+
tenantContactData?: TenantContactData;
|
6
|
+
} & DefineSlot<"customInput", () => VNodeChild>> & {} & {
|
7
|
+
"v-slots"?: {
|
8
|
+
customInput?: () => VNodeChild;
|
9
|
+
} & Omit<{
|
10
|
+
default?: import("vue").Slot;
|
11
|
+
}, "customInput">;
|
12
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "tenantContactData" | "slot:customInput"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
13
|
+
export default _default;
|
package/internal-do-not-import-from-here/ux/admin/usermanagement/shared/UserManagementHelper.d.ts
CHANGED
@@ -43,7 +43,200 @@ export declare class UserManagementHelper {
|
|
43
43
|
static getBuiltinProperties(identityProperties: Array<IdentityProperty>): PropertyViewModel[];
|
44
44
|
static useUserPropertyStore(props: IUserPropertiesBladeProps): {
|
45
45
|
state: {
|
46
|
-
items:
|
46
|
+
items: {
|
47
|
+
isDeleting: boolean;
|
48
|
+
definitionTitle: string;
|
49
|
+
id: guid;
|
50
|
+
internalName: string;
|
51
|
+
title: {
|
52
|
+
isMultilingualString: true;
|
53
|
+
"ar-sa"?: string;
|
54
|
+
"bg-bg"?: string;
|
55
|
+
"ca-es"?: string;
|
56
|
+
"zh-tw"?: string;
|
57
|
+
"cs-cz"?: string;
|
58
|
+
"da-dk"?: string;
|
59
|
+
"de-de"?: string;
|
60
|
+
"el-gr"?: string;
|
61
|
+
"en-us"?: string;
|
62
|
+
"fi-fi"?: string;
|
63
|
+
"fr-fr"?: string;
|
64
|
+
"he-il"?: string;
|
65
|
+
"hu-hu"?: string;
|
66
|
+
"is-is"?: string;
|
67
|
+
"it-it"?: string;
|
68
|
+
"ja-jp"?: string;
|
69
|
+
"ko-kr"?: string;
|
70
|
+
"nl-nl"?: string;
|
71
|
+
"nb-no"?: string;
|
72
|
+
"pl-pl"?: string;
|
73
|
+
"pt-br"?: string;
|
74
|
+
"ro-ro"?: string;
|
75
|
+
"ru-ru"?: string;
|
76
|
+
"hr-hr"?: string;
|
77
|
+
"sk-sk"?: string;
|
78
|
+
"sq-al"?: string;
|
79
|
+
"sv-se"?: string;
|
80
|
+
"th-th"?: string;
|
81
|
+
"tr-tr"?: string;
|
82
|
+
"ur-pk"?: string;
|
83
|
+
"id-id"?: string;
|
84
|
+
"uk-ua"?: string;
|
85
|
+
"be-by"?: string;
|
86
|
+
"sl-si"?: string;
|
87
|
+
"et-ee"?: string;
|
88
|
+
"lv-lv"?: string;
|
89
|
+
"lt-lt"?: string;
|
90
|
+
"fa-ir"?: string;
|
91
|
+
"vi-vn"?: string;
|
92
|
+
"hy-am"?: string;
|
93
|
+
"eu-es"?: string;
|
94
|
+
"mk-mk"?: string;
|
95
|
+
"af-za"?: string;
|
96
|
+
"ka-ge"?: string;
|
97
|
+
"fo-fo"?: string;
|
98
|
+
"hi-in"?: string;
|
99
|
+
"ms-my"?: string;
|
100
|
+
"kk-kz"?: string;
|
101
|
+
"ky-kg"?: string;
|
102
|
+
"sw-ke"?: string;
|
103
|
+
"tt-ru"?: string;
|
104
|
+
"pa-in"?: string;
|
105
|
+
"gu-in"?: string;
|
106
|
+
"ta-in"?: string;
|
107
|
+
"te-in"?: string;
|
108
|
+
"kn-in"?: string;
|
109
|
+
"mr-in"?: string;
|
110
|
+
"sa-in"?: string;
|
111
|
+
"mn-mn"?: string;
|
112
|
+
"gl-es"?: string;
|
113
|
+
"dv-mv"?: string;
|
114
|
+
"ar-iq"?: string;
|
115
|
+
"zh-cn"?: string;
|
116
|
+
"de-ch"?: string;
|
117
|
+
"en-gb"?: string;
|
118
|
+
"es-mx"?: string;
|
119
|
+
"fr-be"?: string;
|
120
|
+
"it-ch"?: string;
|
121
|
+
"nl-be"?: string;
|
122
|
+
"nn-no"?: string;
|
123
|
+
"pt-pt"?: string;
|
124
|
+
"sv-fi"?: string;
|
125
|
+
"ms-bn"?: string;
|
126
|
+
"ar-eg"?: string;
|
127
|
+
"zh-hk"?: string;
|
128
|
+
"de-at"?: string;
|
129
|
+
"en-au"?: string;
|
130
|
+
"en-es"?: string;
|
131
|
+
"fr-ca"?: string;
|
132
|
+
"ar-ly"?: string;
|
133
|
+
"zh-sg"?: string;
|
134
|
+
"de-lu"?: string;
|
135
|
+
"en-ca"?: string;
|
136
|
+
"es-gt"?: string;
|
137
|
+
"fr-ch"?: string;
|
138
|
+
"ar-dz"?: string;
|
139
|
+
"zh-mo"?: string;
|
140
|
+
"de-li"?: string;
|
141
|
+
"en-nz"?: string;
|
142
|
+
"es-cr"?: string;
|
143
|
+
"fr-lu"?: string;
|
144
|
+
"ar-ma"?: string;
|
145
|
+
"en-ie"?: string;
|
146
|
+
"es-pa"?: string;
|
147
|
+
"fr-mc"?: string;
|
148
|
+
"ar-tn"?: string;
|
149
|
+
"en-za"?: string;
|
150
|
+
"es-do"?: string;
|
151
|
+
"ar-om"?: string;
|
152
|
+
"en-jm"?: string;
|
153
|
+
"es-ve"?: string;
|
154
|
+
"ar-ye"?: string;
|
155
|
+
"es-co"?: string;
|
156
|
+
"ar-sy"?: string;
|
157
|
+
"en-bz"?: string;
|
158
|
+
"es-pe"?: string;
|
159
|
+
"ar-jo"?: string;
|
160
|
+
"en-tt"?: string;
|
161
|
+
"es-ar"?: string;
|
162
|
+
"ar-lb"?: string;
|
163
|
+
"en-zw"?: string;
|
164
|
+
"es-ec"?: string;
|
165
|
+
"ar-kw"?: string;
|
166
|
+
"en-ph"?: string;
|
167
|
+
"es-cl"?: string;
|
168
|
+
"ar-ae"?: string;
|
169
|
+
"es-uy"?: string;
|
170
|
+
"ar-bh"?: string;
|
171
|
+
"es-py"?: string;
|
172
|
+
"ar-qa"?: string;
|
173
|
+
"es-bo"?: string;
|
174
|
+
"es-sv"?: string;
|
175
|
+
"es-hn"?: string;
|
176
|
+
"es-pr"?: string;
|
177
|
+
"zu-za"?: string;
|
178
|
+
"xh-za"?: string;
|
179
|
+
"fy-nl"?: string;
|
180
|
+
"tn-za"?: string;
|
181
|
+
"se-se"?: string;
|
182
|
+
"se-fi"?: string;
|
183
|
+
"cy-gb"?: string;
|
184
|
+
"hr-ba"?: string;
|
185
|
+
"mi-nz"?: string;
|
186
|
+
"ga-ie"?: string;
|
187
|
+
"rm-ch"?: string;
|
188
|
+
"lb-lu"?: string;
|
189
|
+
"ns-za"?: string;
|
190
|
+
"se-no"?: string;
|
191
|
+
"mt-mt"?: string;
|
192
|
+
};
|
193
|
+
enterprisePropertyDataTypeId: guid;
|
194
|
+
settings: import("@omnia/fx-models").EnterprisePropertySettings;
|
195
|
+
spSearchable: boolean;
|
196
|
+
msSearchable?: boolean;
|
197
|
+
builtIn: boolean;
|
198
|
+
managedPropertySettings?: {
|
199
|
+
managedProperty: string;
|
200
|
+
retrievableManagedProperty?: string;
|
201
|
+
refinableManagedProeprty?: string;
|
202
|
+
queryableManagedProperty?: string;
|
203
|
+
sortableManagedProperty?: string;
|
204
|
+
retrievable: boolean;
|
205
|
+
refinable: boolean;
|
206
|
+
queryable: boolean;
|
207
|
+
sortable: boolean;
|
208
|
+
};
|
209
|
+
msSearchPropertySettings?: {
|
210
|
+
managedProperty: string;
|
211
|
+
retrievableManagedProperty?: string;
|
212
|
+
refinableManagedProeprty?: string;
|
213
|
+
queryableManagedProperty?: string;
|
214
|
+
sortableManagedProperty?: string;
|
215
|
+
retrievable: boolean;
|
216
|
+
refinable: boolean;
|
217
|
+
queryable: boolean;
|
218
|
+
sortable: boolean;
|
219
|
+
};
|
220
|
+
enterprisePropertyDataType: {
|
221
|
+
id: guid;
|
222
|
+
title: string;
|
223
|
+
uiOptions: {
|
224
|
+
settingsElementName?: string;
|
225
|
+
editModeElementName: string;
|
226
|
+
displayModeElementName?: string;
|
227
|
+
valueDefinitionElementName?: string;
|
228
|
+
};
|
229
|
+
valuePropertyPaths: string[];
|
230
|
+
indexedType: import("@omnia/fx-models").PropertyIndexedType;
|
231
|
+
omniaSearchable: boolean;
|
232
|
+
spSearchable: boolean;
|
233
|
+
msSearchable?: boolean;
|
234
|
+
};
|
235
|
+
enterprisePropertyCategoryId?: guid;
|
236
|
+
multilingualTitle: string;
|
237
|
+
uniqueMultilingualTitle: string;
|
238
|
+
deletedAt?: Date;
|
239
|
+
}[];
|
47
240
|
isLoading: {
|
48
241
|
items: boolean;
|
49
242
|
};
|
@@ -1,5 +1,6 @@
|
|
1
|
-
import {
|
1
|
+
import { ContainerFillValue } from "@omnia/fx-models";
|
2
2
|
import { VNodeChild } from "vue";
|
3
|
+
type Variant = "default" | "journey";
|
3
4
|
declare const _default: {
|
4
5
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
5
6
|
"v-slots": import("vue").Prop<{
|
@@ -19,6 +20,9 @@ declare const _default: {
|
|
19
20
|
allowCustom: {
|
20
21
|
type: import("vue").PropType<boolean>;
|
21
22
|
};
|
23
|
+
variant: {
|
24
|
+
type: import("vue").PropType<Variant>;
|
25
|
+
};
|
22
26
|
toned: {
|
23
27
|
type: import("vue").PropType<boolean>;
|
24
28
|
};
|
@@ -27,79 +31,79 @@ declare const _default: {
|
|
27
31
|
required: false;
|
28
32
|
};
|
29
33
|
"onUpdate:modelValue": {
|
30
|
-
type: import("vue").PropType<(value:
|
34
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
31
35
|
};
|
32
36
|
"v-model": {
|
33
|
-
type: import("vue").PropType<
|
37
|
+
type: import("vue").PropType<ContainerFillValue>;
|
34
38
|
required: false;
|
35
39
|
};
|
36
40
|
modelValue: {
|
37
|
-
type: import("vue").PropType<
|
41
|
+
type: import("vue").PropType<ContainerFillValue>;
|
38
42
|
required: false;
|
39
43
|
};
|
40
44
|
name: <TName extends string>(n?: TName) => { [key in import("../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
41
|
-
type: import("vue").PropType<(value:
|
45
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
42
46
|
}; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
43
|
-
type: import("vue").PropType<
|
47
|
+
type: import("vue").PropType<ContainerFillValue>;
|
44
48
|
required: false;
|
45
49
|
}; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
46
|
-
type: import("vue").PropType<
|
50
|
+
type: import("vue").PropType<ContainerFillValue>;
|
47
51
|
required: false;
|
48
52
|
}; } & {
|
49
|
-
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName,
|
53
|
+
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, ContainerFillValue, {
|
50
54
|
"onUpdate:modelValue": {
|
51
|
-
type: import("vue").PropType<(value:
|
55
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
52
56
|
};
|
53
57
|
} & {
|
54
58
|
"v-model": {
|
55
|
-
type: import("vue").PropType<
|
59
|
+
type: import("vue").PropType<ContainerFillValue>;
|
56
60
|
required: false;
|
57
61
|
};
|
58
62
|
} & {
|
59
63
|
modelValue: {
|
60
|
-
type: import("vue").PropType<
|
64
|
+
type: import("vue").PropType<ContainerFillValue>;
|
61
65
|
required: false;
|
62
66
|
};
|
63
67
|
}>;
|
64
|
-
defaultValue(value?:
|
68
|
+
defaultValue(value?: ContainerFillValue): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, ContainerFillValue, {
|
65
69
|
"onUpdate:modelValue": {
|
66
|
-
type: import("vue").PropType<(value:
|
70
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
67
71
|
};
|
68
72
|
} & {
|
69
73
|
"v-model": {
|
70
|
-
type: import("vue").PropType<
|
74
|
+
type: import("vue").PropType<ContainerFillValue>;
|
71
75
|
required: false;
|
72
76
|
};
|
73
77
|
} & {
|
74
78
|
modelValue: {
|
75
|
-
type: import("vue").PropType<
|
79
|
+
type: import("vue").PropType<ContainerFillValue>;
|
76
80
|
required: false;
|
77
81
|
};
|
78
82
|
}, false>;
|
79
|
-
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName,
|
83
|
+
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, ContainerFillValue, {
|
80
84
|
"onUpdate:modelValue": {
|
81
|
-
type: import("vue").PropType<(value:
|
85
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
82
86
|
};
|
83
87
|
} & {
|
84
88
|
"v-model": {
|
85
|
-
type: import("vue").PropType<
|
89
|
+
type: import("vue").PropType<ContainerFillValue>;
|
86
90
|
required: false;
|
87
91
|
};
|
88
92
|
} & {
|
89
93
|
modelValue: {
|
90
|
-
type: import("vue").PropType<
|
94
|
+
type: import("vue").PropType<ContainerFillValue>;
|
91
95
|
required: false;
|
92
96
|
};
|
93
97
|
}>;
|
94
98
|
};
|
95
99
|
}>> & {
|
96
|
-
"onUpdate:modelValue"?: (value:
|
97
|
-
"onItem:enter"?: (value:
|
98
|
-
"onItem:leave"?: (value:
|
100
|
+
"onUpdate:modelValue"?: (value: ContainerFillValue) => any;
|
101
|
+
"onItem:enter"?: (value: ContainerFillValue) => any;
|
102
|
+
"onItem:leave"?: (value: ContainerFillValue) => any;
|
99
103
|
}, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
100
|
-
"update:modelValue": (value:
|
101
|
-
"item:enter": (value:
|
102
|
-
"item:leave": (value:
|
104
|
+
"update:modelValue": (value: ContainerFillValue) => any;
|
105
|
+
"item:enter": (value: ContainerFillValue) => any;
|
106
|
+
"item:leave": (value: ContainerFillValue) => any;
|
103
107
|
}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
104
108
|
P: {};
|
105
109
|
B: {};
|
@@ -125,6 +129,9 @@ declare const _default: {
|
|
125
129
|
allowCustom: {
|
126
130
|
type: import("vue").PropType<boolean>;
|
127
131
|
};
|
132
|
+
variant: {
|
133
|
+
type: import("vue").PropType<Variant>;
|
134
|
+
};
|
128
135
|
toned: {
|
129
136
|
type: import("vue").PropType<boolean>;
|
130
137
|
};
|
@@ -133,75 +140,75 @@ declare const _default: {
|
|
133
140
|
required: false;
|
134
141
|
};
|
135
142
|
"onUpdate:modelValue": {
|
136
|
-
type: import("vue").PropType<(value:
|
143
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
137
144
|
};
|
138
145
|
"v-model": {
|
139
|
-
type: import("vue").PropType<
|
146
|
+
type: import("vue").PropType<ContainerFillValue>;
|
140
147
|
required: false;
|
141
148
|
};
|
142
149
|
modelValue: {
|
143
|
-
type: import("vue").PropType<
|
150
|
+
type: import("vue").PropType<ContainerFillValue>;
|
144
151
|
required: false;
|
145
152
|
};
|
146
153
|
name: <TName extends string>(n?: TName) => { [key in import("../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
147
|
-
type: import("vue").PropType<(value:
|
154
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
148
155
|
}; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
149
|
-
type: import("vue").PropType<
|
156
|
+
type: import("vue").PropType<ContainerFillValue>;
|
150
157
|
required: false;
|
151
158
|
}; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
152
|
-
type: import("vue").PropType<
|
159
|
+
type: import("vue").PropType<ContainerFillValue>;
|
153
160
|
required: false;
|
154
161
|
}; } & {
|
155
|
-
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName,
|
162
|
+
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, ContainerFillValue, {
|
156
163
|
"onUpdate:modelValue": {
|
157
|
-
type: import("vue").PropType<(value:
|
164
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
158
165
|
};
|
159
166
|
} & {
|
160
167
|
"v-model": {
|
161
|
-
type: import("vue").PropType<
|
168
|
+
type: import("vue").PropType<ContainerFillValue>;
|
162
169
|
required: false;
|
163
170
|
};
|
164
171
|
} & {
|
165
172
|
modelValue: {
|
166
|
-
type: import("vue").PropType<
|
173
|
+
type: import("vue").PropType<ContainerFillValue>;
|
167
174
|
required: false;
|
168
175
|
};
|
169
176
|
}>;
|
170
|
-
defaultValue(value?:
|
177
|
+
defaultValue(value?: ContainerFillValue): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, ContainerFillValue, {
|
171
178
|
"onUpdate:modelValue": {
|
172
|
-
type: import("vue").PropType<(value:
|
179
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
173
180
|
};
|
174
181
|
} & {
|
175
182
|
"v-model": {
|
176
|
-
type: import("vue").PropType<
|
183
|
+
type: import("vue").PropType<ContainerFillValue>;
|
177
184
|
required: false;
|
178
185
|
};
|
179
186
|
} & {
|
180
187
|
modelValue: {
|
181
|
-
type: import("vue").PropType<
|
188
|
+
type: import("vue").PropType<ContainerFillValue>;
|
182
189
|
required: false;
|
183
190
|
};
|
184
191
|
}, false>;
|
185
|
-
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName,
|
192
|
+
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, ContainerFillValue, {
|
186
193
|
"onUpdate:modelValue": {
|
187
|
-
type: import("vue").PropType<(value:
|
194
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
188
195
|
};
|
189
196
|
} & {
|
190
197
|
"v-model": {
|
191
|
-
type: import("vue").PropType<
|
198
|
+
type: import("vue").PropType<ContainerFillValue>;
|
192
199
|
required: false;
|
193
200
|
};
|
194
201
|
} & {
|
195
202
|
modelValue: {
|
196
|
-
type: import("vue").PropType<
|
203
|
+
type: import("vue").PropType<ContainerFillValue>;
|
197
204
|
required: false;
|
198
205
|
};
|
199
206
|
}>;
|
200
207
|
};
|
201
208
|
}>> & {
|
202
|
-
"onUpdate:modelValue"?: (value:
|
203
|
-
"onItem:enter"?: (value:
|
204
|
-
"onItem:leave"?: (value:
|
209
|
+
"onUpdate:modelValue"?: (value: ContainerFillValue) => any;
|
210
|
+
"onItem:enter"?: (value: ContainerFillValue) => any;
|
211
|
+
"onItem:leave"?: (value: ContainerFillValue) => any;
|
205
212
|
}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {}>;
|
206
213
|
__isFragment?: never;
|
207
214
|
__isTeleport?: never;
|
@@ -224,6 +231,9 @@ declare const _default: {
|
|
224
231
|
allowCustom: {
|
225
232
|
type: import("vue").PropType<boolean>;
|
226
233
|
};
|
234
|
+
variant: {
|
235
|
+
type: import("vue").PropType<Variant>;
|
236
|
+
};
|
227
237
|
toned: {
|
228
238
|
type: import("vue").PropType<boolean>;
|
229
239
|
};
|
@@ -232,160 +242,161 @@ declare const _default: {
|
|
232
242
|
required: false;
|
233
243
|
};
|
234
244
|
"onUpdate:modelValue": {
|
235
|
-
type: import("vue").PropType<(value:
|
245
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
236
246
|
};
|
237
247
|
"v-model": {
|
238
|
-
type: import("vue").PropType<
|
248
|
+
type: import("vue").PropType<ContainerFillValue>;
|
239
249
|
required: false;
|
240
250
|
};
|
241
251
|
modelValue: {
|
242
|
-
type: import("vue").PropType<
|
252
|
+
type: import("vue").PropType<ContainerFillValue>;
|
243
253
|
required: false;
|
244
254
|
};
|
245
255
|
name: <TName extends string>(n?: TName) => { [key in import("../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
246
|
-
type: import("vue").PropType<(value:
|
256
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
247
257
|
}; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
248
|
-
type: import("vue").PropType<
|
258
|
+
type: import("vue").PropType<ContainerFillValue>;
|
249
259
|
required: false;
|
250
260
|
}; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
251
|
-
type: import("vue").PropType<
|
261
|
+
type: import("vue").PropType<ContainerFillValue>;
|
252
262
|
required: false;
|
253
263
|
}; } & {
|
254
|
-
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName,
|
264
|
+
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, ContainerFillValue, {
|
255
265
|
"onUpdate:modelValue": {
|
256
|
-
type: import("vue").PropType<(value:
|
266
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
257
267
|
};
|
258
268
|
} & {
|
259
269
|
"v-model": {
|
260
|
-
type: import("vue").PropType<
|
270
|
+
type: import("vue").PropType<ContainerFillValue>;
|
261
271
|
required: false;
|
262
272
|
};
|
263
273
|
} & {
|
264
274
|
modelValue: {
|
265
|
-
type: import("vue").PropType<
|
275
|
+
type: import("vue").PropType<ContainerFillValue>;
|
266
276
|
required: false;
|
267
277
|
};
|
268
278
|
}>;
|
269
|
-
defaultValue(value?:
|
279
|
+
defaultValue(value?: ContainerFillValue): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, ContainerFillValue, {
|
270
280
|
"onUpdate:modelValue": {
|
271
|
-
type: import("vue").PropType<(value:
|
281
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
272
282
|
};
|
273
283
|
} & {
|
274
284
|
"v-model": {
|
275
|
-
type: import("vue").PropType<
|
285
|
+
type: import("vue").PropType<ContainerFillValue>;
|
276
286
|
required: false;
|
277
287
|
};
|
278
288
|
} & {
|
279
289
|
modelValue: {
|
280
|
-
type: import("vue").PropType<
|
290
|
+
type: import("vue").PropType<ContainerFillValue>;
|
281
291
|
required: false;
|
282
292
|
};
|
283
293
|
}, false>;
|
284
|
-
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName,
|
294
|
+
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, ContainerFillValue, {
|
285
295
|
"onUpdate:modelValue": {
|
286
|
-
type: import("vue").PropType<(value:
|
296
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
287
297
|
};
|
288
298
|
} & {
|
289
299
|
"v-model": {
|
290
|
-
type: import("vue").PropType<
|
300
|
+
type: import("vue").PropType<ContainerFillValue>;
|
291
301
|
required: false;
|
292
302
|
};
|
293
303
|
} & {
|
294
304
|
modelValue: {
|
295
|
-
type: import("vue").PropType<
|
305
|
+
type: import("vue").PropType<ContainerFillValue>;
|
296
306
|
required: false;
|
297
307
|
};
|
298
308
|
}>;
|
299
309
|
};
|
300
310
|
}>> & {
|
301
|
-
"onUpdate:modelValue"?: (value:
|
302
|
-
"onItem:enter"?: (value:
|
303
|
-
"onItem:leave"?: (value:
|
311
|
+
"onUpdate:modelValue"?: (value: ContainerFillValue) => any;
|
312
|
+
"onItem:enter"?: (value: ContainerFillValue) => any;
|
313
|
+
"onItem:leave"?: (value: ContainerFillValue) => any;
|
304
314
|
}, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
305
|
-
"update:modelValue": (value:
|
306
|
-
"item:enter": (value:
|
307
|
-
"item:leave": (value:
|
315
|
+
"update:modelValue": (value: ContainerFillValue) => any;
|
316
|
+
"item:enter": (value: ContainerFillValue) => any;
|
317
|
+
"item:leave": (value: ContainerFillValue) => any;
|
308
318
|
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
309
319
|
propsDefinition: Omit<Readonly<{} & {
|
310
320
|
name?: {
|
311
321
|
[x: `onUpdate:${string}`]: {
|
312
|
-
type: import("vue").PropType<(value:
|
322
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
313
323
|
};
|
314
324
|
} & {
|
315
325
|
[x: `v-model:${string}`]: {
|
316
|
-
type: import("vue").PropType<
|
326
|
+
type: import("vue").PropType<ContainerFillValue>;
|
317
327
|
required: false;
|
318
328
|
};
|
319
329
|
} & {
|
320
330
|
[x: string]: {
|
321
|
-
type: import("vue").PropType<
|
331
|
+
type: import("vue").PropType<ContainerFillValue>;
|
322
332
|
required: false;
|
323
333
|
};
|
324
334
|
} & {
|
325
|
-
require(): import("../../../DefineVueTypings").DefinePropModelRequire<string,
|
335
|
+
require(): import("../../../DefineVueTypings").DefinePropModelRequire<string, ContainerFillValue, {
|
326
336
|
"onUpdate:modelValue": {
|
327
|
-
type: import("vue").PropType<(value:
|
337
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
328
338
|
};
|
329
339
|
} & {
|
330
340
|
"v-model": {
|
331
|
-
type: import("vue").PropType<
|
341
|
+
type: import("vue").PropType<ContainerFillValue>;
|
332
342
|
required: false;
|
333
343
|
};
|
334
344
|
} & {
|
335
345
|
modelValue: {
|
336
|
-
type: import("vue").PropType<
|
346
|
+
type: import("vue").PropType<ContainerFillValue>;
|
337
347
|
required: false;
|
338
348
|
};
|
339
349
|
}>;
|
340
|
-
defaultValue(value?:
|
350
|
+
defaultValue(value?: ContainerFillValue): import("../../../DefineVueTypings").DefinePropModelDefaultValue<string, ContainerFillValue, {
|
341
351
|
"onUpdate:modelValue": {
|
342
|
-
type: import("vue").PropType<(value:
|
352
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
343
353
|
};
|
344
354
|
} & {
|
345
355
|
"v-model": {
|
346
|
-
type: import("vue").PropType<
|
356
|
+
type: import("vue").PropType<ContainerFillValue>;
|
347
357
|
required: false;
|
348
358
|
};
|
349
359
|
} & {
|
350
360
|
modelValue: {
|
351
|
-
type: import("vue").PropType<
|
361
|
+
type: import("vue").PropType<ContainerFillValue>;
|
352
362
|
required: false;
|
353
363
|
};
|
354
364
|
}, false>;
|
355
|
-
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<string,
|
365
|
+
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<string, ContainerFillValue, {
|
356
366
|
"onUpdate:modelValue": {
|
357
|
-
type: import("vue").PropType<(value:
|
367
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
358
368
|
};
|
359
369
|
} & {
|
360
370
|
"v-model": {
|
361
|
-
type: import("vue").PropType<
|
371
|
+
type: import("vue").PropType<ContainerFillValue>;
|
362
372
|
required: false;
|
363
373
|
};
|
364
374
|
} & {
|
365
375
|
modelValue: {
|
366
|
-
type: import("vue").PropType<
|
376
|
+
type: import("vue").PropType<ContainerFillValue>;
|
367
377
|
required: false;
|
368
378
|
};
|
369
379
|
}>;
|
370
380
|
};
|
381
|
+
variant?: Variant;
|
371
382
|
label?: string;
|
372
|
-
modelValue?:
|
383
|
+
modelValue?: ContainerFillValue;
|
373
384
|
"v-slots"?: {
|
374
385
|
default?: import("../../../DefineVueTypings").Slot;
|
375
386
|
} & {
|
376
387
|
activator?: () => VNodeChild;
|
377
388
|
};
|
378
|
-
"onUpdate:modelValue"?: (value:
|
379
|
-
"v-model"?:
|
389
|
+
"onUpdate:modelValue"?: (value: ContainerFillValue) => any | void;
|
390
|
+
"v-model"?: ContainerFillValue;
|
380
391
|
toned?: boolean;
|
381
392
|
previewColorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "accent6" | "accent7" | "accent8" | "accent9" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
382
393
|
individualRadiusSelection?: boolean;
|
383
394
|
individualBorderWidthSelection?: boolean;
|
384
395
|
allowCustom?: boolean;
|
385
396
|
}>, "onUpdate:modelValue" | "onItem:enter" | "onItem:leave"> & {
|
386
|
-
"onUpdate:modelValue"?: (value:
|
387
|
-
"onItem:enter"?: (value:
|
388
|
-
"onItem:leave"?: (value:
|
397
|
+
"onUpdate:modelValue"?: (value: ContainerFillValue) => any;
|
398
|
+
"onItem:enter"?: (value: ContainerFillValue) => any;
|
399
|
+
"onItem:leave"?: (value: ContainerFillValue) => any;
|
389
400
|
};
|
390
401
|
};
|
391
402
|
export default _default;
|
@@ -0,0 +1,28 @@
|
|
1
|
+
import { ContainerFillBlueprint, ContainerFillValue, TextFillBlueprint } from "@omnia/fx-models";
|
2
|
+
export declare const useContainerFillPickerStore: () => {
|
3
|
+
state: {
|
4
|
+
internalModel: ContainerFillValue;
|
5
|
+
customDefinition: ContainerFillBlueprint;
|
6
|
+
isCustom: boolean;
|
7
|
+
colorValue: any;
|
8
|
+
hasSelection: boolean;
|
9
|
+
settings: {
|
10
|
+
defaultColorSchemaType: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "accent6" | "accent7" | "accent8" | "accent9" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
11
|
+
customSchema: boolean;
|
12
|
+
};
|
13
|
+
};
|
14
|
+
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
15
|
+
onSelectContainer(type: ContainerFillValue, colorValue: boolean): void;
|
16
|
+
initState: (model: ContainerFillValue) => void;
|
17
|
+
}>;
|
18
|
+
get: {
|
19
|
+
blueprintByValue: (value: ContainerFillValue) => TextFillBlueprint;
|
20
|
+
};
|
21
|
+
rules: {
|
22
|
+
isSelected: (value: ContainerFillValue) => boolean;
|
23
|
+
isPlaceholder: (value: ContainerFillValue) => boolean;
|
24
|
+
hasCustomFill: () => import("@omnia/fx-models").BorderStylingDefinition | (import("@omnia/fx-models").ColorValue | import("@omnia/fx-models").ColorGradientValue)[];
|
25
|
+
};
|
26
|
+
} & {
|
27
|
+
dispose?: () => void;
|
28
|
+
};
|
@@ -1,14 +1,14 @@
|
|
1
1
|
import { DefineSlot } from "@omnia/fx/ux";
|
2
|
-
import { ThemeContextType,
|
2
|
+
import { ThemeContextType, TextFillDefinitionValue } from "@omnia/fx-models";
|
3
3
|
import { VNodeChild } from "vue";
|
4
4
|
export type ColorPickerType = "default" | "colorSchema" | "onBase" | "base";
|
5
5
|
type FillPickerVariant = "dialog" | "editor" | "journey";
|
6
6
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
7
|
-
"emit:update:modelValue": (value:
|
7
|
+
"emit:update:modelValue": (value: TextFillDefinitionValue) => void;
|
8
8
|
} & {
|
9
|
-
"v-model"?:
|
9
|
+
"v-model"?: TextFillDefinitionValue;
|
10
10
|
} & {
|
11
|
-
modelValue?:
|
11
|
+
modelValue?: TextFillDefinitionValue;
|
12
12
|
} & {
|
13
13
|
colorType?: ColorPickerType;
|
14
14
|
} & {
|
@@ -32,7 +32,7 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
32
32
|
} & {
|
33
33
|
toolbarCallback?: (value: () => VNodeChild) => void;
|
34
34
|
} & DefineSlot<"activator", () => VNodeChild>> & {
|
35
|
-
"onUpdate:modelValue"?: (value:
|
35
|
+
"onUpdate:modelValue"?: (value: TextFillDefinitionValue) => any;
|
36
36
|
} & {
|
37
37
|
"v-slots"?: {
|
38
38
|
activator?: () => VNodeChild;
|
package/internal-do-not-import-from-here/ux/aurora/components/fillpicker/store/FillPickerStore.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { ColorGradientValue, ColorSchemaType, ColorValue, FillDefinition,
|
1
|
+
import { ColorGradientValue, ColorSchemaType, ColorValue, FillDefinition, TextFillDefinitionValue, FilterPickerFilter, ThemeContextType } from "@omnia/fx-models";
|
2
2
|
export declare enum ColorMode {
|
3
3
|
colorOnly = "color",
|
4
4
|
linearGradient = "linear",
|
@@ -26,7 +26,7 @@ export declare const useFillPickerStore: () => {
|
|
26
26
|
addColor: (colorType: string, defaultColorSchemaType: ColorSchemaType, dynamicColor: boolean) => ColorGradientValue;
|
27
27
|
removeColor: (index: number) => void;
|
28
28
|
changeGradientMode: (newVal: any) => void;
|
29
|
-
initState: (fill:
|
29
|
+
initState: (fill: TextFillDefinitionValue, themeContextType: ThemeContextType) => void;
|
30
30
|
}>;
|
31
31
|
rules: {
|
32
32
|
hasFillOneColor: () => boolean;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Blueprint, ButtonBlueprint, ButtonBlueprintVariant, ComponentBlueprints,
|
1
|
+
import { Blueprint, ButtonBlueprint, ButtonBlueprintVariant, ComponentBlueprints, BlueprintVariant, OIconSizes, TabsBlueprint, WebBlueprintItemDefintionType, HeaderBlueprint, InputBlueprint, ContainerFillValue } from "@omnia/fx-models";
|
2
2
|
type blueprintType = "default";
|
3
3
|
export declare const useComponentBlueprintStore: () => {
|
4
4
|
state: {
|
@@ -35,7 +35,7 @@ export declare const useComponentBlueprintStore: () => {
|
|
35
35
|
};
|
36
36
|
containerFill: {
|
37
37
|
hasVariant(type: BlueprintVariant | string): boolean;
|
38
|
-
getByType(type:
|
38
|
+
getByType(type: ContainerFillValue): any;
|
39
39
|
};
|
40
40
|
header: {
|
41
41
|
hasVariant(type: BlueprintVariant | string): boolean;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { ColorSchema, ColorSchemaType, ColorSchemaTypes, ColorType, ColorTypes,
|
1
|
+
import { ColorSchema, ColorSchemaType, ColorSchemaTypes, ColorType, ColorTypes, BlueprintVariant, ResolvedThemeDefinition, guid, TextFillDefinitionValue, ContainerFillValue } from "@omnia/fx-models";
|
2
2
|
import { type ColorSchemaStoreType } from "./ColorSchemaStore";
|
3
3
|
export declare const useThemeStore: () => {
|
4
4
|
id: guid;
|
@@ -51,7 +51,7 @@ export declare const useThemeStore: () => {
|
|
51
51
|
};
|
52
52
|
containerFill: {
|
53
53
|
hasVariant(type: BlueprintVariant | string): boolean;
|
54
|
-
getByType(type:
|
54
|
+
getByType(type: ContainerFillValue): any;
|
55
55
|
};
|
56
56
|
header: {
|
57
57
|
hasVariant(type: BlueprintVariant | string): boolean;
|
@@ -64,7 +64,17 @@ export declare const useThemeStore: () => {
|
|
64
64
|
};
|
65
65
|
colorSchema(colorSchemaType: ColorSchemaTypes | ColorSchemaType | ColorSchema): ColorSchema;
|
66
66
|
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
67
|
-
|
67
|
+
fills(): {
|
68
|
+
text: {
|
69
|
+
hasVariant(type: BlueprintVariant | string): boolean;
|
70
|
+
byValue(value: TextFillDefinitionValue): any;
|
71
|
+
};
|
72
|
+
container: {
|
73
|
+
hasVariant(type: BlueprintVariant | string): boolean;
|
74
|
+
bluePrints(): import("@omnia/fx-models").ContainerFillBlueprints;
|
75
|
+
byValue(value: ContainerFillValue): any;
|
76
|
+
};
|
77
|
+
};
|
68
78
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
69
79
|
component(): import("@omnia/fx-models").ComponentBlueprints;
|
70
80
|
color(colorSchemaType: ColorSchemaTypes | ColorSchemaType, colorType: ColorTypes | ColorType): string;
|
@@ -1,12 +1,12 @@
|
|
1
|
-
import {
|
1
|
+
import { TextFillDefinitionValue } from "@omnia/fx-models";
|
2
2
|
import { StylexValue } from "internal/fx/ux/Styles.stylex";
|
3
3
|
import { useColorSchemaStore } from "../../store";
|
4
4
|
import { NestedCSSProperties } from "typestyle/lib/types";
|
5
5
|
export declare namespace FillStyling {
|
6
|
-
function generateFillColorString(definition:
|
7
|
-
function getBlueprintFillStylex(definition:
|
8
|
-
function getBlueprintFillObject(definition:
|
9
|
-
function getBlueprintFillObjectStylex(definition:
|
6
|
+
function generateFillColorString(definition: TextFillDefinitionValue, colors?: ReturnType<typeof useColorSchemaStore>): string;
|
7
|
+
function getBlueprintFillStylex(definition: TextFillDefinitionValue, colors?: ReturnType<typeof useColorSchemaStore>): Readonly<StylexValue>;
|
8
|
+
function getBlueprintFillObject(definition: TextFillDefinitionValue, colors?: ReturnType<typeof useColorSchemaStore>): NestedCSSProperties;
|
9
|
+
function getBlueprintFillObjectStylex(definition: TextFillDefinitionValue, colors?: ReturnType<typeof useColorSchemaStore>): {
|
10
10
|
background?: StylexValue;
|
11
11
|
backdropFilter?: StylexValue;
|
12
12
|
};
|
@@ -6,7 +6,7 @@ export declare const useLinkPickerStore: () => {
|
|
6
6
|
link: LinkItem;
|
7
7
|
};
|
8
8
|
mutate: {
|
9
|
-
pickers: LinkPickerRegistration[];
|
9
|
+
pickers: (value: LinkPickerRegistration[] | ((prev: LinkPickerRegistration[]) => LinkPickerRegistration[])) => void;
|
10
10
|
link: (value: LinkItem | ((prev: LinkItem) => LinkItem)) => void;
|
11
11
|
};
|
12
12
|
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
@@ -1,8 +1,8 @@
|
|
1
|
-
import { DefineEmit, DefineProp, DefinePropTheming, DefineSlot } from "@omnia/fx/ux";
|
1
|
+
import { DefineEmit, DefineProp, DefinePropTheming, DefineSlot, ItemValueType } from "@omnia/fx/ux";
|
2
2
|
import { VNodeChild } from "vue";
|
3
3
|
import { OMultiSelectionStyles } from "@omnia/fx-models";
|
4
4
|
type SelectionVariants = "remove" | "settings";
|
5
|
-
type BaseProps = DefinePropTheming & DefineProp<"items", any[], false, null, "TItem must be an array of objects or array of strings. When using objects, will look for a title, value and disabled keys. This can be changed using the item-title, item-value and item-disabled props."> & DefineProp<"variant", SelectionVariants, false, null, "The component variants"> & DefineProp<"toned", boolean, false, null, "Sets the component to toned"> & DefineProp<"sorting", boolean, false, null, "Sets the component to sorting mode"> & DefineProp<"itemTitle",
|
5
|
+
type BaseProps = DefinePropTheming & DefineProp<"items", any[], false, null, "TItem must be an array of objects or array of strings. When using objects, will look for a title, value and disabled keys. This can be changed using the item-title, item-value and item-disabled props."> & DefineProp<"variant", SelectionVariants, false, null, "The component variants"> & DefineProp<"toned", boolean, false, null, "Sets the component to toned"> & DefineProp<"sorting", boolean, false, null, "Sets the component to sorting mode"> & DefineProp<"itemTitle", ItemValueType<any>, false, null, "Property on supplied items that contains its title."> & DefineProp<"itemSubtitle", string, false, null, "Property on supplied items that contains its value."> & DefineProp<"itemIcon", string, false, null, "Property on supplied items that contains its value."> & DefineProp<"enableAdd", boolean, false, null, "If add button is shown"> & DefineProp<"selectionStyle", OMultiSelectionStyles, false, null, "The style of multi select"> & DefineSlot<"item", (item: any, index: Number) => VNodeChild> & DefineEmit<"selectItem", (index: any) => true> & DefineEmit<"addItem", () => true>;
|
6
6
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<BaseProps> & {
|
7
7
|
onSelectItem?: (index: any) => any;
|
8
8
|
onAddItem?: () => any;
|
@@ -1,12 +1,13 @@
|
|
1
1
|
import { OSelectRenderingItem } from "@omnia/fx-models";
|
2
2
|
import { VNodeChild } from "vue";
|
3
|
+
import { ItemValueType } from "@omnia/fx/ux";
|
3
4
|
export declare const useSelectionStore: () => {
|
4
5
|
rules: {};
|
5
6
|
state: {
|
6
7
|
items: any[];
|
7
8
|
propertyMappings: {
|
8
|
-
title:
|
9
|
-
subtitle:
|
9
|
+
title: ItemValueType<any>;
|
10
|
+
subtitle: ItemValueType<any>;
|
10
11
|
icon: string;
|
11
12
|
};
|
12
13
|
};
|
@@ -16,14 +17,14 @@ export declare const useSelectionStore: () => {
|
|
16
17
|
events: import("@omnia/fx/stores").StoreEvents<{
|
17
18
|
items: any[];
|
18
19
|
propertyMappings: {
|
19
|
-
title:
|
20
|
-
subtitle:
|
20
|
+
title: ItemValueType<any>;
|
21
|
+
subtitle: ItemValueType<any>;
|
21
22
|
icon: string;
|
22
23
|
};
|
23
24
|
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
24
25
|
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
25
26
|
updateItems(items: Array<any>): void;
|
26
|
-
init(items: Array<any>, itemTitle:
|
27
|
+
init(items: Array<any>, itemTitle: ItemValueType<any>, itemSubtitle: string, itemIcon: string, renderingSlots: any): void;
|
27
28
|
}>;
|
28
29
|
get: {
|
29
30
|
itemTitle(item: any): any;
|
@@ -1,4 +1,3 @@
|
|
1
|
-
import { PropType } from "vue";
|
2
1
|
import { AuthenticationBlockSettings } from "../Shared";
|
3
2
|
import { AuthenticationOption, AuthenticationMetaData } from "@omnia/fx-models";
|
4
3
|
declare const _default: {
|
@@ -8,7 +7,7 @@ declare const _default: {
|
|
8
7
|
back: import("vue").Prop<() => void, () => void>;
|
9
8
|
onProviderSelected: import("vue").Prop<(authOption: AuthenticationMetaData) => void, (authOption: AuthenticationMetaData) => void>;
|
10
9
|
settings: import("vue").Prop<AuthenticationBlockSettings, AuthenticationBlockSettings>;
|
11
|
-
memorizedProvider:
|
10
|
+
memorizedProvider: import("vue").Prop<AuthenticationMetaData, AuthenticationMetaData>;
|
12
11
|
onVnodeBeforeMount?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
13
12
|
onVnodeMounted?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
14
13
|
onVnodeBeforeUpdate?: import("vue").Prop<((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[]>;
|
@@ -28,7 +27,7 @@ declare const _default: {
|
|
28
27
|
back: import("vue").Prop<() => void, () => void>;
|
29
28
|
onProviderSelected: import("vue").Prop<(authOption: AuthenticationMetaData) => void, (authOption: AuthenticationMetaData) => void>;
|
30
29
|
settings: import("vue").Prop<AuthenticationBlockSettings, AuthenticationBlockSettings>;
|
31
|
-
memorizedProvider:
|
30
|
+
memorizedProvider: import("vue").Prop<AuthenticationMetaData, AuthenticationMetaData>;
|
32
31
|
onVnodeBeforeMount?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
33
32
|
onVnodeMounted?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
34
33
|
onVnodeBeforeUpdate?: import("vue").Prop<((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[]>;
|
@@ -45,7 +44,7 @@ declare const _default: {
|
|
45
44
|
back: import("vue").Prop<() => void, () => void>;
|
46
45
|
onProviderSelected: import("vue").Prop<(authOption: AuthenticationMetaData) => void, (authOption: AuthenticationMetaData) => void>;
|
47
46
|
settings: import("vue").Prop<AuthenticationBlockSettings, AuthenticationBlockSettings>;
|
48
|
-
memorizedProvider:
|
47
|
+
memorizedProvider: import("vue").Prop<AuthenticationMetaData, AuthenticationMetaData>;
|
49
48
|
onVnodeBeforeMount?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
50
49
|
onVnodeMounted?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
51
50
|
onVnodeBeforeUpdate?: import("vue").Prop<((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[]>;
|
@@ -65,7 +64,7 @@ declare const _default: {
|
|
65
64
|
authFlows?: AuthenticationOption[][];
|
66
65
|
back?: () => void;
|
67
66
|
onProviderSelected?: (authOption: AuthenticationMetaData) => void;
|
68
|
-
memorizedProvider?:
|
67
|
+
memorizedProvider?: AuthenticationMetaData;
|
69
68
|
}>, never>;
|
70
69
|
};
|
71
70
|
export default _default;
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "8.0.
|
4
|
+
"version": "8.0.397-dev",
|
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": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.397-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|
@@ -28,7 +28,7 @@
|
|
28
28
|
"vue": "3.5.13",
|
29
29
|
"vuetify": "3.7.15",
|
30
30
|
"tslib": "2.6.2",
|
31
|
-
"typescript": "5.
|
31
|
+
"typescript": "5.8.2",
|
32
32
|
"@tiptap/vue-3": "2.1.13",
|
33
33
|
"@tiptap/pm": "2.1.13",
|
34
34
|
"@tiptap/suggestion": "2.1.13",
|