@omnia/fx 8.0.29-vnext → 8.0.31-vnext
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/manifests/omfx.libs.prosemirror.manifest.json +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
- package/internal-do-not-import-from-here/shared/models/theming/BlueprintDefinition.d.ts +11 -3
- package/internal-do-not-import-from-here/shared/models/theming/BlueprintDefinition.js +1 -0
- package/internal-do-not-import-from-here/shared/models/theming/SpacingSetting.d.ts +6 -0
- package/internal-do-not-import-from-here/shared/models/theming/SpacingSetting.js +2 -0
- package/internal-do-not-import-from-here/shared/models/theming/index.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/theming/index.js +1 -0
- package/internal-do-not-import-from-here/ux/admin/chrome/AdminChrome.css.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/admin/chrome/AdminChrome.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/features/FeatureActivation.css.d.ts +2 -7
- package/internal-do-not-import-from-here/ux/features/FeatureActivation.d.ts +118 -94
- package/internal-do-not-import-from-here/ux/features/FeatureActivation_old.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/features/FeaturesJourney.css.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/features/FeaturesJourney.d.ts +118 -18
- package/internal-do-not-import-from-here/ux/features/FeaturesJourney_old.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/features/blades/FeatureHomeBlade.d.ts +117 -12
- package/internal-do-not-import-from-here/ux/features/blades/FeaturePropertiesBlade.d.ts +46 -34
- package/internal-do-not-import-from-here/ux/features/blades/FeaturePropertiesBlade_old.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/features/blades/FeauturePropertiesBlad.css.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/features/index.d.ts +1 -3
- package/internal-do-not-import-from-here/ux/features/models/FeatureInstanceDetails.d.ts +13 -0
- package/internal-do-not-import-from-here/ux/features/models/RequiredAzureAdPermission.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/features/models/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/features/stores/FeatureJourneyStore.d.ts +85 -0
- package/internal-do-not-import-from-here/ux/features/stores/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPicker.css.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/journey/IJourney.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/testbench/JourneyTest.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyBlade.d.ts +132 -1
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyV2.css.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/journey/v2/stores/JourneyStore.d.ts +22 -0
- package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.d.ts +27 -0
- package/internal-do-not-import-from-here/ux/oxide/avatar/Avatar.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/oxide/avatar/Avatar.d.ts +114 -0
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +84 -24
- package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.css.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/tooltip/Tooltip.d.ts +150 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/RichTextEditor.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseComponentStyling.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/theming-v2/themes/Themes.d.ts +9 -9
- package/internal-do-not-import-from-here/wctypings.d.ts +207 -201
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/features/IFeaturesJourney.d.ts +0 -18
@@ -1,3 +1,5 @@
|
|
1
|
+
import { Func } from "@omnia/fx/models";
|
2
|
+
import { VNodeChild } from "vue";
|
1
3
|
declare const _default: {
|
2
4
|
new (...args: any[]): {
|
3
5
|
$: import("vue").ComponentInternalInstance;
|
@@ -9,6 +11,11 @@ declare const _default: {
|
|
9
11
|
blueprintType?: any;
|
10
12
|
colors?: any;
|
11
13
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
14
|
+
"v-slots": import("vue").Prop<{
|
15
|
+
default?: Func<[VNodeChild]>;
|
16
|
+
} & {
|
17
|
+
actionButtons?: Func<[VNodeChild]>;
|
18
|
+
}>;
|
12
19
|
"sub-title": {
|
13
20
|
type: import("vue").PropType<string>;
|
14
21
|
};
|
@@ -67,6 +74,11 @@ declare const _default: {
|
|
67
74
|
$emit: ((event: "click:navigation") => void) & ((event: "click:close") => void);
|
68
75
|
$el: any;
|
69
76
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
77
|
+
"v-slots": import("vue").Prop<{
|
78
|
+
default?: Func<[VNodeChild]>;
|
79
|
+
} & {
|
80
|
+
actionButtons?: Func<[VNodeChild]>;
|
81
|
+
}>;
|
70
82
|
"sub-title": {
|
71
83
|
type: import("vue").PropType<string>;
|
72
84
|
};
|
@@ -140,6 +152,11 @@ declare const _default: {
|
|
140
152
|
$nextTick: typeof import("vue").nextTick;
|
141
153
|
$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;
|
142
154
|
} & Readonly<import("vue").ExtractPropTypes<{
|
155
|
+
"v-slots": import("vue").Prop<{
|
156
|
+
default?: Func<[VNodeChild]>;
|
157
|
+
} & {
|
158
|
+
actionButtons?: Func<[VNodeChild]>;
|
159
|
+
}>;
|
143
160
|
"sub-title": {
|
144
161
|
type: import("vue").PropType<string>;
|
145
162
|
};
|
@@ -188,6 +205,11 @@ declare const _default: {
|
|
188
205
|
__isTeleport?: never;
|
189
206
|
__isSuspense?: never;
|
190
207
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
208
|
+
"v-slots": import("vue").Prop<{
|
209
|
+
default?: Func<[VNodeChild]>;
|
210
|
+
} & {
|
211
|
+
actionButtons?: Func<[VNodeChild]>;
|
212
|
+
}>;
|
191
213
|
"sub-title": {
|
192
214
|
type: import("vue").PropType<string>;
|
193
215
|
};
|
@@ -252,6 +274,11 @@ declare const _default: {
|
|
252
274
|
class?: String | String[];
|
253
275
|
id?: string;
|
254
276
|
absolute?: boolean;
|
277
|
+
"v-slots"?: {
|
278
|
+
default?: Func<[VNodeChild]>;
|
279
|
+
} & {
|
280
|
+
actionButtons?: Func<[VNodeChild]>;
|
281
|
+
};
|
255
282
|
navigation?: boolean;
|
256
283
|
closable?: boolean;
|
257
284
|
subTitle?: string;
|
@@ -0,0 +1,114 @@
|
|
1
|
+
declare const _default: {
|
2
|
+
new (...args: any[]): {
|
3
|
+
$: import("vue").ComponentInternalInstance;
|
4
|
+
$data: {};
|
5
|
+
$props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
6
|
+
gradient: {
|
7
|
+
type: import("vue").PropType<boolean>;
|
8
|
+
} & {
|
9
|
+
type: import("vue").PropType<boolean>;
|
10
|
+
};
|
11
|
+
size: {
|
12
|
+
type: import("vue").PropType<number>;
|
13
|
+
} & {
|
14
|
+
type: import("vue").PropType<number>;
|
15
|
+
};
|
16
|
+
color: {
|
17
|
+
type: import("vue").PropType<string>;
|
18
|
+
} & {
|
19
|
+
type: import("vue").PropType<string>;
|
20
|
+
};
|
21
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
22
|
+
$attrs: {
|
23
|
+
[x: string]: unknown;
|
24
|
+
};
|
25
|
+
$refs: {
|
26
|
+
[x: string]: unknown;
|
27
|
+
};
|
28
|
+
$slots: Readonly<{
|
29
|
+
[name: string]: import("vue").Slot;
|
30
|
+
}>;
|
31
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
32
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
33
|
+
$emit: (event: string, ...args: any[]) => void;
|
34
|
+
$el: any;
|
35
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
36
|
+
gradient: {
|
37
|
+
type: import("vue").PropType<boolean>;
|
38
|
+
} & {
|
39
|
+
type: import("vue").PropType<boolean>;
|
40
|
+
};
|
41
|
+
size: {
|
42
|
+
type: import("vue").PropType<number>;
|
43
|
+
} & {
|
44
|
+
type: import("vue").PropType<number>;
|
45
|
+
};
|
46
|
+
color: {
|
47
|
+
type: import("vue").PropType<string>;
|
48
|
+
} & {
|
49
|
+
type: import("vue").PropType<string>;
|
50
|
+
};
|
51
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
|
52
|
+
beforeCreate?: (() => void) | (() => void)[];
|
53
|
+
created?: (() => void) | (() => void)[];
|
54
|
+
beforeMount?: (() => void) | (() => void)[];
|
55
|
+
mounted?: (() => void) | (() => void)[];
|
56
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
57
|
+
updated?: (() => void) | (() => void)[];
|
58
|
+
activated?: (() => void) | (() => void)[];
|
59
|
+
deactivated?: (() => void) | (() => void)[];
|
60
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
61
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
62
|
+
destroyed?: (() => void) | (() => void)[];
|
63
|
+
unmounted?: (() => void) | (() => void)[];
|
64
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
65
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
66
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
|
67
|
+
};
|
68
|
+
$forceUpdate: () => void;
|
69
|
+
$nextTick: typeof import("vue").nextTick;
|
70
|
+
$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;
|
71
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
72
|
+
gradient: {
|
73
|
+
type: import("vue").PropType<boolean>;
|
74
|
+
} & {
|
75
|
+
type: import("vue").PropType<boolean>;
|
76
|
+
};
|
77
|
+
size: {
|
78
|
+
type: import("vue").PropType<number>;
|
79
|
+
} & {
|
80
|
+
type: import("vue").PropType<number>;
|
81
|
+
};
|
82
|
+
color: {
|
83
|
+
type: import("vue").PropType<string>;
|
84
|
+
} & {
|
85
|
+
type: import("vue").PropType<string>;
|
86
|
+
};
|
87
|
+
}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
88
|
+
__isFragment?: never;
|
89
|
+
__isTeleport?: never;
|
90
|
+
__isSuspense?: never;
|
91
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
92
|
+
gradient: {
|
93
|
+
type: import("vue").PropType<boolean>;
|
94
|
+
} & {
|
95
|
+
type: import("vue").PropType<boolean>;
|
96
|
+
};
|
97
|
+
size: {
|
98
|
+
type: import("vue").PropType<number>;
|
99
|
+
} & {
|
100
|
+
type: import("vue").PropType<number>;
|
101
|
+
};
|
102
|
+
color: {
|
103
|
+
type: import("vue").PropType<string>;
|
104
|
+
} & {
|
105
|
+
type: import("vue").PropType<string>;
|
106
|
+
};
|
107
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
108
|
+
propsDefinition: Omit<Readonly<{} & {
|
109
|
+
color?: string;
|
110
|
+
size?: number;
|
111
|
+
gradient?: boolean;
|
112
|
+
}>, never>;
|
113
|
+
};
|
114
|
+
export default _default;
|
@@ -4,15 +4,16 @@ declare const _default: {
|
|
4
4
|
new (...args: any[]): {
|
5
5
|
$: import("vue").ComponentInternalInstance;
|
6
6
|
$data: {};
|
7
|
-
$props: Partial<{
|
7
|
+
$props: Partial<{
|
8
|
+
container?: any;
|
9
|
+
blueprint?: any;
|
10
|
+
colorSchemaType?: any;
|
11
|
+
blueprintType?: any;
|
12
|
+
colors?: any;
|
13
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
8
14
|
"v-slots": import("vue").Prop<{
|
9
15
|
default?: import("@omnia/fx-models").Func<[import("vue").VNodeChild]>;
|
10
16
|
} & VDataTableSlots>;
|
11
|
-
height: {
|
12
|
-
type: import("vue").PropType<string | number>;
|
13
|
-
} & {
|
14
|
-
type: import("vue").PropType<string | number>;
|
15
|
-
};
|
16
17
|
"onUpdate:modelValue": {
|
17
18
|
type: import("vue").PropType<(value: string[]) => any>;
|
18
19
|
};
|
@@ -35,6 +36,15 @@ declare const _default: {
|
|
35
36
|
type: import("vue").PropType<string[]>;
|
36
37
|
required: false;
|
37
38
|
};
|
39
|
+
height: {
|
40
|
+
type: import("vue").PropType<string | number>;
|
41
|
+
} & {
|
42
|
+
type: import("vue").PropType<string | number>;
|
43
|
+
};
|
44
|
+
hover: {
|
45
|
+
type: import("vue").PropType<boolean>;
|
46
|
+
required: false;
|
47
|
+
};
|
38
48
|
returnObject: {
|
39
49
|
type: import("vue").PropType<boolean>;
|
40
50
|
required: false;
|
@@ -59,7 +69,12 @@ declare const _default: {
|
|
59
69
|
type: import("vue").PropType<NonNullable<SelectItemKey>>;
|
60
70
|
required: true;
|
61
71
|
};
|
62
|
-
|
72
|
+
colorSchemaType?: any;
|
73
|
+
container?: any;
|
74
|
+
colors?: any;
|
75
|
+
blueprintType?: any;
|
76
|
+
blueprint?: any;
|
77
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "container" | "blueprint" | "colorSchemaType" | "blueprintType" | "colors">;
|
63
78
|
$attrs: {
|
64
79
|
[x: string]: unknown;
|
65
80
|
};
|
@@ -77,11 +92,6 @@ declare const _default: {
|
|
77
92
|
"v-slots": import("vue").Prop<{
|
78
93
|
default?: import("@omnia/fx-models").Func<[import("vue").VNodeChild]>;
|
79
94
|
} & VDataTableSlots>;
|
80
|
-
height: {
|
81
|
-
type: import("vue").PropType<string | number>;
|
82
|
-
} & {
|
83
|
-
type: import("vue").PropType<string | number>;
|
84
|
-
};
|
85
95
|
"onUpdate:modelValue": {
|
86
96
|
type: import("vue").PropType<(value: string[]) => any>;
|
87
97
|
};
|
@@ -104,6 +114,15 @@ declare const _default: {
|
|
104
114
|
type: import("vue").PropType<string[]>;
|
105
115
|
required: false;
|
106
116
|
};
|
117
|
+
height: {
|
118
|
+
type: import("vue").PropType<string | number>;
|
119
|
+
} & {
|
120
|
+
type: import("vue").PropType<string | number>;
|
121
|
+
};
|
122
|
+
hover: {
|
123
|
+
type: import("vue").PropType<boolean>;
|
124
|
+
required: false;
|
125
|
+
};
|
107
126
|
returnObject: {
|
108
127
|
type: import("vue").PropType<boolean>;
|
109
128
|
required: false;
|
@@ -128,7 +147,18 @@ declare const _default: {
|
|
128
147
|
type: import("vue").PropType<NonNullable<SelectItemKey>>;
|
129
148
|
required: true;
|
130
149
|
};
|
131
|
-
|
150
|
+
colorSchemaType?: any;
|
151
|
+
container?: any;
|
152
|
+
colors?: any;
|
153
|
+
blueprintType?: any;
|
154
|
+
blueprint?: any;
|
155
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
156
|
+
container?: any;
|
157
|
+
blueprint?: any;
|
158
|
+
colorSchemaType?: any;
|
159
|
+
blueprintType?: any;
|
160
|
+
colors?: any;
|
161
|
+
}, {}, string> & {
|
132
162
|
beforeCreate?: (() => void) | (() => void)[];
|
133
163
|
created?: (() => void) | (() => void)[];
|
134
164
|
beforeMount?: (() => void) | (() => void)[];
|
@@ -152,11 +182,6 @@ declare const _default: {
|
|
152
182
|
"v-slots": import("vue").Prop<{
|
153
183
|
default?: import("@omnia/fx-models").Func<[import("vue").VNodeChild]>;
|
154
184
|
} & VDataTableSlots>;
|
155
|
-
height: {
|
156
|
-
type: import("vue").PropType<string | number>;
|
157
|
-
} & {
|
158
|
-
type: import("vue").PropType<string | number>;
|
159
|
-
};
|
160
185
|
"onUpdate:modelValue": {
|
161
186
|
type: import("vue").PropType<(value: string[]) => any>;
|
162
187
|
};
|
@@ -179,6 +204,15 @@ declare const _default: {
|
|
179
204
|
type: import("vue").PropType<string[]>;
|
180
205
|
required: false;
|
181
206
|
};
|
207
|
+
height: {
|
208
|
+
type: import("vue").PropType<string | number>;
|
209
|
+
} & {
|
210
|
+
type: import("vue").PropType<string | number>;
|
211
|
+
};
|
212
|
+
hover: {
|
213
|
+
type: import("vue").PropType<boolean>;
|
214
|
+
required: false;
|
215
|
+
};
|
182
216
|
returnObject: {
|
183
217
|
type: import("vue").PropType<boolean>;
|
184
218
|
required: false;
|
@@ -203,6 +237,11 @@ declare const _default: {
|
|
203
237
|
type: import("vue").PropType<NonNullable<SelectItemKey>>;
|
204
238
|
required: true;
|
205
239
|
};
|
240
|
+
colorSchemaType?: any;
|
241
|
+
container?: any;
|
242
|
+
colors?: any;
|
243
|
+
blueprintType?: any;
|
244
|
+
blueprint?: any;
|
206
245
|
}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
207
246
|
__isFragment?: never;
|
208
247
|
__isTeleport?: never;
|
@@ -211,11 +250,6 @@ declare const _default: {
|
|
211
250
|
"v-slots": import("vue").Prop<{
|
212
251
|
default?: import("@omnia/fx-models").Func<[import("vue").VNodeChild]>;
|
213
252
|
} & VDataTableSlots>;
|
214
|
-
height: {
|
215
|
-
type: import("vue").PropType<string | number>;
|
216
|
-
} & {
|
217
|
-
type: import("vue").PropType<string | number>;
|
218
|
-
};
|
219
253
|
"onUpdate:modelValue": {
|
220
254
|
type: import("vue").PropType<(value: string[]) => any>;
|
221
255
|
};
|
@@ -238,6 +272,15 @@ declare const _default: {
|
|
238
272
|
type: import("vue").PropType<string[]>;
|
239
273
|
required: false;
|
240
274
|
};
|
275
|
+
height: {
|
276
|
+
type: import("vue").PropType<string | number>;
|
277
|
+
} & {
|
278
|
+
type: import("vue").PropType<string | number>;
|
279
|
+
};
|
280
|
+
hover: {
|
281
|
+
type: import("vue").PropType<boolean>;
|
282
|
+
required: false;
|
283
|
+
};
|
241
284
|
returnObject: {
|
242
285
|
type: import("vue").PropType<boolean>;
|
243
286
|
required: false;
|
@@ -262,8 +305,24 @@ declare const _default: {
|
|
262
305
|
type: import("vue").PropType<NonNullable<SelectItemKey>>;
|
263
306
|
required: true;
|
264
307
|
};
|
265
|
-
|
308
|
+
colorSchemaType?: any;
|
309
|
+
container?: any;
|
310
|
+
colors?: any;
|
311
|
+
blueprintType?: any;
|
312
|
+
blueprint?: any;
|
313
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
314
|
+
container?: any;
|
315
|
+
blueprint?: any;
|
316
|
+
colorSchemaType?: any;
|
317
|
+
blueprintType?: any;
|
318
|
+
colors?: any;
|
319
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
266
320
|
propsDefinition: Omit<Readonly<{
|
321
|
+
container?: any;
|
322
|
+
blueprint?: any;
|
323
|
+
colorSchemaType?: any;
|
324
|
+
blueprintType?: any;
|
325
|
+
colors?: any;
|
267
326
|
itemValue: NonNullable<SelectItemKey>;
|
268
327
|
} & {
|
269
328
|
headers?: DataTableHeader[] | DataTableHeader[][];
|
@@ -275,6 +334,7 @@ declare const _default: {
|
|
275
334
|
"v-slots"?: {
|
276
335
|
default?: import("@omnia/fx-models").Func<[import("vue").VNodeChild]>;
|
277
336
|
} & VDataTableSlots;
|
337
|
+
hover?: boolean;
|
278
338
|
items?: any[];
|
279
339
|
returnObject?: boolean;
|
280
340
|
itemsPerPage?: number;
|
@@ -1,5 +1,6 @@
|
|
1
|
+
import { BoxDimensions } from "@omnia/fx-models";
|
1
2
|
export declare const TextFieldStyles: {
|
2
|
-
generalField: (textColor: string) => string;
|
3
|
+
generalField: (textColor: string, rounded: BoxDimensions, fixTextFiled: boolean) => string;
|
3
4
|
iconButtonWrapper: string;
|
4
5
|
numberSelectorField: {
|
5
6
|
wrapper: (backgroundColor: string, textColor: string) => string;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
type VariantType = "search" | "numberselector" | "numberselector-prepend" | "link" | "media";
|
1
|
+
type VariantType = "search" | "search-slim" | "numberselector" | "numberselector-prepend" | "link" | "media";
|
2
2
|
declare const _default: {
|
3
3
|
new (...args: any[]): {
|
4
4
|
$: import("vue").ComponentInternalInstance;
|
@@ -0,0 +1,150 @@
|
|
1
|
+
import { VNodeChild } from "vue";
|
2
|
+
declare const _default: {
|
3
|
+
new (...args: any[]): {
|
4
|
+
$: import("vue").ComponentInternalInstance;
|
5
|
+
$data: {};
|
6
|
+
$props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
7
|
+
"v-slots": import("vue").Prop<{
|
8
|
+
default?: import("@omnia/fx-models").Func<[VNodeChild]>;
|
9
|
+
} & {
|
10
|
+
activator?: () => VNodeChild;
|
11
|
+
}>;
|
12
|
+
"open-on-hover": {
|
13
|
+
type: import("vue").PropType<boolean>;
|
14
|
+
};
|
15
|
+
openOnHover: {
|
16
|
+
type: import("vue").PropType<boolean>;
|
17
|
+
};
|
18
|
+
"activate-on-length": {
|
19
|
+
type: import("vue").PropType<number>;
|
20
|
+
};
|
21
|
+
activateOnLength: {
|
22
|
+
type: import("vue").PropType<number>;
|
23
|
+
};
|
24
|
+
text: {
|
25
|
+
type: import("vue").PropType<string>;
|
26
|
+
} & {
|
27
|
+
type: import("vue").PropType<string>;
|
28
|
+
};
|
29
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
30
|
+
$attrs: {
|
31
|
+
[x: string]: unknown;
|
32
|
+
};
|
33
|
+
$refs: {
|
34
|
+
[x: string]: unknown;
|
35
|
+
};
|
36
|
+
$slots: Readonly<{
|
37
|
+
[name: string]: import("vue").Slot;
|
38
|
+
}>;
|
39
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
40
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
41
|
+
$emit: (event: string, ...args: any[]) => void;
|
42
|
+
$el: any;
|
43
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
44
|
+
"v-slots": import("vue").Prop<{
|
45
|
+
default?: import("@omnia/fx-models").Func<[VNodeChild]>;
|
46
|
+
} & {
|
47
|
+
activator?: () => VNodeChild;
|
48
|
+
}>;
|
49
|
+
"open-on-hover": {
|
50
|
+
type: import("vue").PropType<boolean>;
|
51
|
+
};
|
52
|
+
openOnHover: {
|
53
|
+
type: import("vue").PropType<boolean>;
|
54
|
+
};
|
55
|
+
"activate-on-length": {
|
56
|
+
type: import("vue").PropType<number>;
|
57
|
+
};
|
58
|
+
activateOnLength: {
|
59
|
+
type: import("vue").PropType<number>;
|
60
|
+
};
|
61
|
+
text: {
|
62
|
+
type: import("vue").PropType<string>;
|
63
|
+
} & {
|
64
|
+
type: import("vue").PropType<string>;
|
65
|
+
};
|
66
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
|
67
|
+
beforeCreate?: (() => void) | (() => void)[];
|
68
|
+
created?: (() => void) | (() => void)[];
|
69
|
+
beforeMount?: (() => void) | (() => void)[];
|
70
|
+
mounted?: (() => void) | (() => void)[];
|
71
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
72
|
+
updated?: (() => void) | (() => void)[];
|
73
|
+
activated?: (() => void) | (() => void)[];
|
74
|
+
deactivated?: (() => void) | (() => void)[];
|
75
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
76
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
77
|
+
destroyed?: (() => void) | (() => void)[];
|
78
|
+
unmounted?: (() => void) | (() => void)[];
|
79
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
80
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
81
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
|
82
|
+
};
|
83
|
+
$forceUpdate: () => void;
|
84
|
+
$nextTick: typeof import("vue").nextTick;
|
85
|
+
$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;
|
86
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
87
|
+
"v-slots": import("vue").Prop<{
|
88
|
+
default?: import("@omnia/fx-models").Func<[VNodeChild]>;
|
89
|
+
} & {
|
90
|
+
activator?: () => VNodeChild;
|
91
|
+
}>;
|
92
|
+
"open-on-hover": {
|
93
|
+
type: import("vue").PropType<boolean>;
|
94
|
+
};
|
95
|
+
openOnHover: {
|
96
|
+
type: import("vue").PropType<boolean>;
|
97
|
+
};
|
98
|
+
"activate-on-length": {
|
99
|
+
type: import("vue").PropType<number>;
|
100
|
+
};
|
101
|
+
activateOnLength: {
|
102
|
+
type: import("vue").PropType<number>;
|
103
|
+
};
|
104
|
+
text: {
|
105
|
+
type: import("vue").PropType<string>;
|
106
|
+
} & {
|
107
|
+
type: import("vue").PropType<string>;
|
108
|
+
};
|
109
|
+
}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
110
|
+
__isFragment?: never;
|
111
|
+
__isTeleport?: never;
|
112
|
+
__isSuspense?: never;
|
113
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
114
|
+
"v-slots": import("vue").Prop<{
|
115
|
+
default?: import("@omnia/fx-models").Func<[VNodeChild]>;
|
116
|
+
} & {
|
117
|
+
activator?: () => VNodeChild;
|
118
|
+
}>;
|
119
|
+
"open-on-hover": {
|
120
|
+
type: import("vue").PropType<boolean>;
|
121
|
+
};
|
122
|
+
openOnHover: {
|
123
|
+
type: import("vue").PropType<boolean>;
|
124
|
+
};
|
125
|
+
"activate-on-length": {
|
126
|
+
type: import("vue").PropType<number>;
|
127
|
+
};
|
128
|
+
activateOnLength: {
|
129
|
+
type: import("vue").PropType<number>;
|
130
|
+
};
|
131
|
+
text: {
|
132
|
+
type: import("vue").PropType<string>;
|
133
|
+
} & {
|
134
|
+
type: import("vue").PropType<string>;
|
135
|
+
};
|
136
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
137
|
+
propsDefinition: Omit<Readonly<{} & {
|
138
|
+
text?: string;
|
139
|
+
"v-slots"?: {
|
140
|
+
default?: import("@omnia/fx-models").Func<[VNodeChild]>;
|
141
|
+
} & {
|
142
|
+
activator?: () => VNodeChild;
|
143
|
+
};
|
144
|
+
openOnHover?: boolean;
|
145
|
+
"open-on-hover"?: boolean;
|
146
|
+
activateOnLength?: number;
|
147
|
+
"activate-on-length"?: number;
|
148
|
+
}>, never>;
|
149
|
+
};
|
150
|
+
export default _default;
|
@@ -560,6 +560,7 @@ declare const _default: {
|
|
560
560
|
onContentChange: (content: string) => void;
|
561
561
|
initialContent: string;
|
562
562
|
} & {
|
563
|
+
outlined?: boolean;
|
563
564
|
disabled?: boolean;
|
564
565
|
placeholder?: RichTextEditorPlaceHolder;
|
565
566
|
onFocus?: () => void;
|
@@ -568,7 +569,6 @@ declare const _default: {
|
|
568
569
|
"aria-describedby"?: string;
|
569
570
|
"aria-invalid"?: boolean;
|
570
571
|
styles?: unknown;
|
571
|
-
outlined?: boolean;
|
572
572
|
bodyClass?: string;
|
573
573
|
onContentDataChange?: (richtextHelper: RichTextContentHelper) => void;
|
574
574
|
registerFocus?: (callback: () => void) => void;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { ColorStyles } from "@omnia/fx-models";
|
2
2
|
import { useColorSchemaStore } from "../ColorSchemaStore";
|
3
|
-
export declare
|
4
|
-
export declare
|
5
|
-
export declare
|
6
|
-
export declare
|
3
|
+
export declare function useScrollStyling(colors: ReturnType<typeof useColorSchemaStore>, toned?: boolean, targetSelector?: string): string;
|
4
|
+
export declare function useBackgroundOpacity(dark: boolean, opacity?: Number): string;
|
5
|
+
export declare function useBackgroundOpacityOnColor(color: string, dark: boolean, opacity?: Number): any;
|
6
|
+
export declare function useColorStyling(color: string, opacity?: number): ColorStyles;
|
@@ -7,12 +7,12 @@ export declare class ThemeDefinitionInstance implements ThemeDefinitionV2 {
|
|
7
7
|
name: string;
|
8
8
|
constructor(primary: string | ColorSchema, secondary: string | ColorSchema, accent1: string | ColorSchema, accent2: string | ColorSchema, accent3: string | ColorSchema, neutral: string | ColorSchema, background: string | ColorSchema, info: string | ColorSchema, error: string | ColorSchema, name: string, dark: boolean, id: Guid, blueprints: BluePrintDefinitions);
|
9
9
|
}
|
10
|
-
export declare
|
11
|
-
export declare
|
12
|
-
export declare
|
13
|
-
export declare
|
14
|
-
export declare
|
15
|
-
export declare
|
16
|
-
export declare
|
17
|
-
export declare
|
18
|
-
export declare
|
10
|
+
export declare function DarkKnightDefinition(): ThemeDefinitionInstance;
|
11
|
+
export declare function DarkEditorDefinition(): ThemeDefinitionInstance;
|
12
|
+
export declare function LightEditorDefinition(): ThemeDefinitionInstance;
|
13
|
+
export declare function BlackDefinition(): ThemeDefinitionInstance;
|
14
|
+
export declare function BumbleBeeDefinition(): ThemeDefinitionInstance;
|
15
|
+
export declare function CyberPunkDefinition(): ThemeDefinitionInstance;
|
16
|
+
export declare function CoffeDefinition(): ThemeDefinitionInstance;
|
17
|
+
export declare function LightThemeDefinition(): ThemeDefinitionInstance;
|
18
|
+
export declare function DarkThemeDefinition(): ThemeDefinitionInstance;
|