@omnia/fx 8.0.57-dev → 8.0.58-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/oxide/ComponentHostStore.d.ts +4 -4
- package/internal-do-not-import-from-here/stores/oxide/ScrollContainerStore.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/editorchrome/chrome/EditorChrome.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPicker.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerButton.d.ts +34 -46
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerDialog.d.ts +194 -223
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerField.d.ts +146 -175
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerInlineField.d.ts +51 -66
- package/internal-do-not-import-from-here/ux/oxide/chip/Chip.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/oxide/chip/Chip.d.ts +115 -14
- package/internal-do-not-import-from-here/ux/oxide/divider/Divider.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/divider/Divider.d.ts +44 -0
- package/internal-do-not-import-from-here/ux/oxide/form/Form.css.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/oxide/form/Form.d.ts +119 -0
- package/internal-do-not-import-from-here/ux/oxide/form/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/form/docs/SampleComponent.d.ts +46 -0
- package/internal-do-not-import-from-here/ux/oxide/form/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/hostprovider/HostProvider.d.ts +12 -12
- package/internal-do-not-import-from-here/ux/oxide/notification/Notification.css.d.ts +10 -0
- package/internal-do-not-import-from-here/ux/oxide/notification/Notification.d.ts +196 -0
- package/internal-do-not-import-from-here/ux/oxide/notification/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/notification/docs/SampleComponent.d.ts +46 -0
- package/internal-do-not-import-from-here/ux/oxide/notification/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/ScrollContainer.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/ScrollContainer.d.ts +127 -0
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/docs/SampleComponent.d.ts +46 -0
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/wctypings.d.ts +21 -0
- package/package.json +2 -2
- /package/internal-do-not-import-from-here/ux/datetimezonepicker/docs/{DateTimeZonePickerExample.d.ts → SampleComponent.d.ts} +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
declare const HostTypeDefinitions: readonly ["admin", "editor", "docs"];
|
2
2
|
export type HostTypes = typeof HostTypeDefinitions[number];
|
3
|
-
declare const ComponentHostTypeDefinitions: readonly ["dialog", "drawer", "expansion-panel", "blade", "app", "table", "appbar", "toolbar", "tab", "tab-vertical", "panel", "omfx", "menu"];
|
3
|
+
declare const ComponentHostTypeDefinitions: readonly ["dialog", "drawer", "expansion-panel", "chip", "blade", "app", "table", "appbar", "toolbar", "tab", "tab-vertical", "panel", "omfx", "menu"];
|
4
4
|
export type ComponentHostTypes = typeof ComponentHostTypeDefinitions[number];
|
5
5
|
declare const ComponentVariantDefinitions: readonly ["footer", "content", "navigation", "header", "settings", "info-section", "default", "section", "options", "toolbar"];
|
6
6
|
export type ComponentVariants = typeof ComponentVariantDefinitions[number];
|
@@ -14,14 +14,14 @@ export interface NewHostSettings {
|
|
14
14
|
export declare const useCompontentHostStore: () => {
|
15
15
|
state: {
|
16
16
|
host: "admin" | "editor" | "docs";
|
17
|
-
componentHost: "dialog" | "menu" | "table" | "tab" | "toolbar" | "app" | "tab-vertical" | "blade" | "drawer" | "expansion-panel" | "appbar" | "panel" | "omfx";
|
17
|
+
componentHost: "dialog" | "menu" | "table" | "tab" | "toolbar" | "chip" | "app" | "tab-vertical" | "blade" | "drawer" | "expansion-panel" | "appbar" | "panel" | "omfx";
|
18
18
|
componentVariant: "section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "toolbar" | "settings" | "info-section";
|
19
19
|
appliedComponents: string[];
|
20
20
|
force: boolean;
|
21
21
|
};
|
22
22
|
events: {
|
23
23
|
onMutatedHost: import("internal/fx/core").MessageBusExposeOnlySubscription<"admin" | "editor" | "docs">;
|
24
|
-
onMutatedComponentHost: import("internal/fx/core").MessageBusExposeOnlySubscription<"dialog" | "menu" | "table" | "tab" | "toolbar" | "app" | "tab-vertical" | "blade" | "drawer" | "expansion-panel" | "appbar" | "panel" | "omfx">;
|
24
|
+
onMutatedComponentHost: import("internal/fx/core").MessageBusExposeOnlySubscription<"dialog" | "menu" | "table" | "tab" | "toolbar" | "chip" | "app" | "tab-vertical" | "blade" | "drawer" | "expansion-panel" | "appbar" | "panel" | "omfx">;
|
25
25
|
onMutatedComponentVariant: import("internal/fx/core").MessageBusExposeOnlySubscription<"section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "toolbar" | "settings" | "info-section">;
|
26
26
|
onMutatedAppliedComponents: import("internal/fx/core").MessageBusExposeOnlySubscription<string[]>;
|
27
27
|
onMutatedForce: import("internal/fx/core").MessageBusExposeOnlySubscription<boolean>;
|
@@ -62,7 +62,7 @@ export declare const useCompontentHostStore: () => {
|
|
62
62
|
get: {
|
63
63
|
canApplyOn: (hostType: ComponentHostTypes | HostTypes, variant?: any) => boolean;
|
64
64
|
readonly host: "admin" | "editor" | "docs";
|
65
|
-
readonly componentHost: "dialog" | "menu" | "table" | "tab" | "toolbar" | "app" | "tab-vertical" | "blade" | "drawer" | "expansion-panel" | "appbar" | "panel" | "omfx";
|
65
|
+
readonly componentHost: "dialog" | "menu" | "table" | "tab" | "toolbar" | "chip" | "app" | "tab-vertical" | "blade" | "drawer" | "expansion-panel" | "appbar" | "panel" | "omfx";
|
66
66
|
readonly componentVariant: "section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "toolbar" | "settings" | "info-section";
|
67
67
|
readonly force: boolean;
|
68
68
|
appliedComponents(host: string): boolean;
|
File without changes
|
@@ -4,13 +4,7 @@ declare const _default: {
|
|
4
4
|
new (...args: any[]): {
|
5
5
|
$: import("vue").ComponentInternalInstance;
|
6
6
|
$data: {};
|
7
|
-
$props: Partial<{
|
8
|
-
identityStore: IIdentityPickerStore;
|
9
|
-
emailEnabled: BoolFilter;
|
10
|
-
permissionEnabled: BoolFilter;
|
11
|
-
}> & Omit<{
|
12
|
-
readonly emailEnabled: BoolFilter;
|
13
|
-
readonly permissionEnabled: BoolFilter;
|
7
|
+
$props: Partial<{}> & Omit<{
|
14
8
|
readonly filter?: (identities: IResolvedIdentity[]) => IResolvedIdentity[];
|
15
9
|
readonly label?: string;
|
16
10
|
readonly type?: PrincipalTypes;
|
@@ -22,6 +16,8 @@ declare const _default: {
|
|
22
16
|
readonly description?: string;
|
23
17
|
readonly ariaDescribedby?: string;
|
24
18
|
readonly providerIds?: GuidValue[];
|
19
|
+
readonly emailEnabled?: BoolFilter;
|
20
|
+
readonly permissionEnabled?: BoolFilter;
|
25
21
|
readonly "provider-ids"?: GuidValue[];
|
26
22
|
readonly keepSelectionMenu?: boolean;
|
27
23
|
readonly disabledIdentities?: Identity[];
|
@@ -36,17 +32,17 @@ declare const _default: {
|
|
36
32
|
onSelect?: (value: Identity) => any;
|
37
33
|
onDoc$?: (description?: string) => any;
|
38
34
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
39
|
-
|
40
|
-
type: import("vue").PropType<
|
41
|
-
|
35
|
+
permissionEnabled: {
|
36
|
+
type: import("vue").PropType<BoolFilter>;
|
37
|
+
required: false;
|
42
38
|
};
|
43
39
|
emailEnabled: {
|
44
40
|
type: import("vue").PropType<BoolFilter>;
|
45
|
-
|
41
|
+
required: false;
|
46
42
|
};
|
47
|
-
|
48
|
-
type: import("vue").PropType<
|
49
|
-
|
43
|
+
identityStore: {
|
44
|
+
type: import("vue").PropType<IIdentityPickerStore>;
|
45
|
+
required: false;
|
50
46
|
};
|
51
47
|
ariaDescribedby: {
|
52
48
|
type: import("vue").PropType<string>;
|
@@ -133,7 +129,7 @@ declare const _default: {
|
|
133
129
|
}>> & {
|
134
130
|
onSelect?: (value: Identity) => any;
|
135
131
|
onDoc$?: (description?: string) => any;
|
136
|
-
},
|
132
|
+
}, never>;
|
137
133
|
$attrs: {
|
138
134
|
[x: string]: unknown;
|
139
135
|
};
|
@@ -148,17 +144,17 @@ declare const _default: {
|
|
148
144
|
$emit: ((event: "select", value: Identity) => void) & ((event: "doc$", description?: string) => void);
|
149
145
|
$el: any;
|
150
146
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
151
|
-
|
152
|
-
type: import("vue").PropType<
|
153
|
-
|
147
|
+
permissionEnabled: {
|
148
|
+
type: import("vue").PropType<BoolFilter>;
|
149
|
+
required: false;
|
154
150
|
};
|
155
151
|
emailEnabled: {
|
156
152
|
type: import("vue").PropType<BoolFilter>;
|
157
|
-
|
153
|
+
required: false;
|
158
154
|
};
|
159
|
-
|
160
|
-
type: import("vue").PropType<
|
161
|
-
|
155
|
+
identityStore: {
|
156
|
+
type: import("vue").PropType<IIdentityPickerStore>;
|
157
|
+
required: false;
|
162
158
|
};
|
163
159
|
ariaDescribedby: {
|
164
160
|
type: import("vue").PropType<string>;
|
@@ -250,11 +246,7 @@ declare const _default: {
|
|
250
246
|
doc$(description?: string): {
|
251
247
|
select: (value: Identity) => true;
|
252
248
|
};
|
253
|
-
}, string, {
|
254
|
-
identityStore: IIdentityPickerStore;
|
255
|
-
emailEnabled: BoolFilter;
|
256
|
-
permissionEnabled: BoolFilter;
|
257
|
-
}, {}, string, {}> & {
|
249
|
+
}, string, {}, {}, string, {}> & {
|
258
250
|
beforeCreate?: (() => void) | (() => void)[];
|
259
251
|
created?: (() => void) | (() => void)[];
|
260
252
|
beforeMount?: (() => void) | (() => void)[];
|
@@ -275,17 +267,17 @@ declare const _default: {
|
|
275
267
|
$nextTick: typeof import("vue").nextTick;
|
276
268
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
277
269
|
} & Readonly<import("vue").ExtractPropTypes<{
|
278
|
-
|
279
|
-
type: import("vue").PropType<
|
280
|
-
|
270
|
+
permissionEnabled: {
|
271
|
+
type: import("vue").PropType<BoolFilter>;
|
272
|
+
required: false;
|
281
273
|
};
|
282
274
|
emailEnabled: {
|
283
275
|
type: import("vue").PropType<BoolFilter>;
|
284
|
-
|
276
|
+
required: false;
|
285
277
|
};
|
286
|
-
|
287
|
-
type: import("vue").PropType<
|
288
|
-
|
278
|
+
identityStore: {
|
279
|
+
type: import("vue").PropType<IIdentityPickerStore>;
|
280
|
+
required: false;
|
289
281
|
};
|
290
282
|
ariaDescribedby: {
|
291
283
|
type: import("vue").PropType<string>;
|
@@ -377,17 +369,17 @@ declare const _default: {
|
|
377
369
|
__isTeleport?: never;
|
378
370
|
__isSuspense?: never;
|
379
371
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
380
|
-
|
381
|
-
type: import("vue").PropType<
|
382
|
-
|
372
|
+
permissionEnabled: {
|
373
|
+
type: import("vue").PropType<BoolFilter>;
|
374
|
+
required: false;
|
383
375
|
};
|
384
376
|
emailEnabled: {
|
385
377
|
type: import("vue").PropType<BoolFilter>;
|
386
|
-
|
378
|
+
required: false;
|
387
379
|
};
|
388
|
-
|
389
|
-
type: import("vue").PropType<
|
390
|
-
|
380
|
+
identityStore: {
|
381
|
+
type: import("vue").PropType<IIdentityPickerStore>;
|
382
|
+
required: false;
|
391
383
|
};
|
392
384
|
ariaDescribedby: {
|
393
385
|
type: import("vue").PropType<string>;
|
@@ -479,11 +471,7 @@ declare const _default: {
|
|
479
471
|
doc$(description?: string): {
|
480
472
|
select: (value: Identity) => true;
|
481
473
|
};
|
482
|
-
}, string, {
|
483
|
-
identityStore: IIdentityPickerStore;
|
484
|
-
emailEnabled: BoolFilter;
|
485
|
-
permissionEnabled: BoolFilter;
|
486
|
-
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
474
|
+
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
487
475
|
propsDefinition: Omit<Readonly<{} & {
|
488
476
|
filter?: (identities: IResolvedIdentity[]) => IResolvedIdentity[];
|
489
477
|
label?: string;
|