@omnia/fx 8.0.32-vnext → 8.0.34-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/shared/models/Equals.js +11 -8
- package/internal-do-not-import-from-here/ux/confirmdialog/IVueConfirmDialog.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/features/FeaturesJourney.css.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyBlade.d.ts +17 -0
- package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.d.ts +17 -0
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +14 -0
- package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/progress/Progress.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/progress/Progress.d.ts +577 -0
- package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.d.ts +113 -102
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseComponentStyling.d.ts +1 -0
- package/internal-do-not-import-from-here/wctypings.d.ts +2 -0
- package/package.json +2 -2
@@ -1,11 +1,14 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
const _equalsObject = {};
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
4
|
+
// only add extension methods when running in browser, not in node.js
|
5
|
+
if (globalThis.omnia) {
|
6
|
+
Object.defineProperty(String.prototype, "equals", {
|
7
|
+
value: function () {
|
8
|
+
return _equalsObject;
|
9
|
+
},
|
10
|
+
writable: false,
|
11
|
+
configurable: false,
|
12
|
+
enumerable: false
|
13
|
+
});
|
14
|
+
}
|
@@ -63,6 +63,7 @@ declare const _default: {
|
|
63
63
|
readonly save?: boolean;
|
64
64
|
"onClick:cancel"?: (id: string) => any;
|
65
65
|
"onClick:delete"?: (id: string) => any;
|
66
|
+
readonly home?: boolean;
|
66
67
|
"onClick:back"?: (id: string) => any;
|
67
68
|
readonly searchable?: boolean;
|
68
69
|
onSearch?: (searchText: string) => any;
|
@@ -113,6 +114,11 @@ declare const _default: {
|
|
113
114
|
} & {
|
114
115
|
type: import("vue").PropType<boolean>;
|
115
116
|
};
|
117
|
+
home: {
|
118
|
+
type: import("vue").PropType<boolean>;
|
119
|
+
} & {
|
120
|
+
type: import("vue").PropType<boolean>;
|
121
|
+
};
|
116
122
|
size: {
|
117
123
|
type: import("vue").PropType<BladeSizes>;
|
118
124
|
required: false;
|
@@ -192,6 +198,11 @@ declare const _default: {
|
|
192
198
|
} & {
|
193
199
|
type: import("vue").PropType<boolean>;
|
194
200
|
};
|
201
|
+
home: {
|
202
|
+
type: import("vue").PropType<boolean>;
|
203
|
+
} & {
|
204
|
+
type: import("vue").PropType<boolean>;
|
205
|
+
};
|
195
206
|
size: {
|
196
207
|
type: import("vue").PropType<BladeSizes>;
|
197
208
|
required: false;
|
@@ -248,6 +259,11 @@ declare const _default: {
|
|
248
259
|
} & {
|
249
260
|
type: import("vue").PropType<boolean>;
|
250
261
|
};
|
262
|
+
home: {
|
263
|
+
type: import("vue").PropType<boolean>;
|
264
|
+
} & {
|
265
|
+
type: import("vue").PropType<boolean>;
|
266
|
+
};
|
251
267
|
size: {
|
252
268
|
type: import("vue").PropType<BladeSizes>;
|
253
269
|
required: false;
|
@@ -290,6 +306,7 @@ declare const _default: {
|
|
290
306
|
};
|
291
307
|
create?: boolean;
|
292
308
|
save?: boolean;
|
309
|
+
home?: boolean;
|
293
310
|
searchable?: boolean;
|
294
311
|
}>, "onClick:cancel" | "onClick:delete" | "onClick:back" | "onSearch" | "onClick:add" | "onClick:save"> & {
|
295
312
|
"onClick:cancel"?: (id: string) => any;
|
@@ -1,6 +1,10 @@
|
|
1
1
|
import { ColorDefinition } from "../../velcron/core";
|
2
|
+
import { useColorSchemaSetup } from "../..";
|
3
|
+
export declare const AppBarTypeDefinition: string[];
|
4
|
+
export type AppBarType = typeof AppBarTypeDefinition[number];
|
2
5
|
export declare const AppbarStyles: {
|
3
6
|
templateTitle: string;
|
4
7
|
content: string;
|
8
|
+
wrapper: (variant: AppBarType, colors: ReturnType<typeof useColorSchemaSetup>) => string;
|
5
9
|
navigation: (color: ColorDefinition) => string;
|
6
10
|
};
|
@@ -62,6 +62,7 @@ declare const _default: {
|
|
62
62
|
} & {
|
63
63
|
actionButtons?: Func<[VNodeChild]>;
|
64
64
|
};
|
65
|
+
readonly variant?: string;
|
65
66
|
readonly navigation?: boolean;
|
66
67
|
readonly closable?: boolean;
|
67
68
|
readonly subTitle?: string;
|
@@ -109,6 +110,11 @@ declare const _default: {
|
|
109
110
|
} & {
|
110
111
|
type: import("vue").PropType<boolean>;
|
111
112
|
};
|
113
|
+
variant: {
|
114
|
+
type: import("vue").PropType<string>;
|
115
|
+
} & {
|
116
|
+
type: import("vue").PropType<string>;
|
117
|
+
};
|
112
118
|
absolute: {
|
113
119
|
type: import("vue").PropType<boolean>;
|
114
120
|
} & {
|
@@ -187,6 +193,11 @@ declare const _default: {
|
|
187
193
|
} & {
|
188
194
|
type: import("vue").PropType<boolean>;
|
189
195
|
};
|
196
|
+
variant: {
|
197
|
+
type: import("vue").PropType<string>;
|
198
|
+
} & {
|
199
|
+
type: import("vue").PropType<string>;
|
200
|
+
};
|
190
201
|
absolute: {
|
191
202
|
type: import("vue").PropType<boolean>;
|
192
203
|
} & {
|
@@ -240,6 +251,11 @@ declare const _default: {
|
|
240
251
|
} & {
|
241
252
|
type: import("vue").PropType<boolean>;
|
242
253
|
};
|
254
|
+
variant: {
|
255
|
+
type: import("vue").PropType<string>;
|
256
|
+
} & {
|
257
|
+
type: import("vue").PropType<string>;
|
258
|
+
};
|
243
259
|
absolute: {
|
244
260
|
type: import("vue").PropType<boolean>;
|
245
261
|
} & {
|
@@ -288,6 +304,7 @@ declare const _default: {
|
|
288
304
|
} & {
|
289
305
|
actionButtons?: Func<[VNodeChild]>;
|
290
306
|
};
|
307
|
+
variant?: string;
|
291
308
|
navigation?: boolean;
|
292
309
|
closable?: boolean;
|
293
310
|
subTitle?: string;
|
@@ -1,4 +1,4 @@
|
|
1
1
|
import { useColorSchemaStore } from "../../theming-v2";
|
2
2
|
export declare const DataTableStyles: {
|
3
|
-
wrapper: (colors: ReturnType<typeof useColorSchemaStore>, hideFooter: boolean) => string;
|
3
|
+
wrapper: (colors: ReturnType<typeof useColorSchemaStore>, hideFooter: boolean, hover: boolean, clickable: boolean) => string;
|
4
4
|
};
|
@@ -70,6 +70,7 @@ declare const _default: {
|
|
70
70
|
readonly showExpand?: boolean;
|
71
71
|
readonly itemsPerPage?: number;
|
72
72
|
readonly "onUpdate:expanded"?: (value: string[]) => any;
|
73
|
+
readonly clickable?: boolean;
|
73
74
|
readonly "v-model:expanded"?: string[];
|
74
75
|
};
|
75
76
|
$attrs: {
|
@@ -116,6 +117,10 @@ declare const _default: {
|
|
116
117
|
} & {
|
117
118
|
type: import("vue").PropType<string | number>;
|
118
119
|
};
|
120
|
+
clickable: {
|
121
|
+
type: import("vue").PropType<boolean>;
|
122
|
+
required: false;
|
123
|
+
};
|
119
124
|
hover: {
|
120
125
|
type: import("vue").PropType<boolean>;
|
121
126
|
required: false;
|
@@ -206,6 +211,10 @@ declare const _default: {
|
|
206
211
|
} & {
|
207
212
|
type: import("vue").PropType<string | number>;
|
208
213
|
};
|
214
|
+
clickable: {
|
215
|
+
type: import("vue").PropType<boolean>;
|
216
|
+
required: false;
|
217
|
+
};
|
209
218
|
hover: {
|
210
219
|
type: import("vue").PropType<boolean>;
|
211
220
|
required: false;
|
@@ -274,6 +283,10 @@ declare const _default: {
|
|
274
283
|
} & {
|
275
284
|
type: import("vue").PropType<string | number>;
|
276
285
|
};
|
286
|
+
clickable: {
|
287
|
+
type: import("vue").PropType<boolean>;
|
288
|
+
required: false;
|
289
|
+
};
|
277
290
|
hover: {
|
278
291
|
type: import("vue").PropType<boolean>;
|
279
292
|
required: false;
|
@@ -337,6 +350,7 @@ declare const _default: {
|
|
337
350
|
showExpand?: boolean;
|
338
351
|
itemsPerPage?: number;
|
339
352
|
"onUpdate:expanded"?: (value: string[]) => any;
|
353
|
+
clickable?: boolean;
|
340
354
|
"v-model:expanded"?: string[];
|
341
355
|
}>, never>;
|
342
356
|
};
|
@@ -4,6 +4,7 @@ export declare const DialogStyles: {
|
|
4
4
|
templateTitle: string;
|
5
5
|
titleWrapper: string;
|
6
6
|
fixedContent: (backgroundColor: string) => string;
|
7
|
+
navigationDrawer: (dark: boolean) => string;
|
7
8
|
activator: string;
|
8
9
|
contentScrollWrapper: (customScroll: boolean, hasButtons: boolean, fullSize: boolean, staticContent: boolean, variant: DialogType) => string;
|
9
10
|
notScrollOutside: string;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const ProgressStyles: {};
|
@@ -0,0 +1,577 @@
|
|
1
|
+
declare const _default: {
|
2
|
+
new (...args: any[]): {
|
3
|
+
$: import("vue").ComponentInternalInstance;
|
4
|
+
$data: {};
|
5
|
+
$props: {
|
6
|
+
[x: number]: unknown;
|
7
|
+
toString: (() => string) | ((() => string) & (() => string));
|
8
|
+
readonly concat: unknown;
|
9
|
+
readonly indexOf: unknown;
|
10
|
+
readonly lastIndexOf: unknown;
|
11
|
+
readonly slice: unknown;
|
12
|
+
readonly length: unknown;
|
13
|
+
readonly includes: unknown;
|
14
|
+
readonly at: unknown;
|
15
|
+
toLocaleString: (() => string) | ((() => string) & (() => string));
|
16
|
+
readonly join: unknown;
|
17
|
+
readonly every: unknown;
|
18
|
+
readonly some: unknown;
|
19
|
+
readonly forEach: unknown;
|
20
|
+
readonly map: unknown;
|
21
|
+
readonly filter: unknown;
|
22
|
+
readonly reduce: unknown;
|
23
|
+
readonly reduceRight: unknown;
|
24
|
+
readonly find: unknown;
|
25
|
+
readonly findIndex: unknown;
|
26
|
+
readonly entries: unknown;
|
27
|
+
readonly keys: unknown;
|
28
|
+
readonly values: unknown;
|
29
|
+
readonly flatMap: unknown;
|
30
|
+
readonly flat: unknown;
|
31
|
+
style?: unknown;
|
32
|
+
class?: unknown;
|
33
|
+
key?: string | number | symbol;
|
34
|
+
ref?: import("vue").VNodeRef;
|
35
|
+
ref_for?: boolean;
|
36
|
+
ref_key?: string;
|
37
|
+
onVnodeBeforeMount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
38
|
+
[key: string]: any;
|
39
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
40
|
+
[key: string]: any;
|
41
|
+
}>) => void)[];
|
42
|
+
onVnodeMounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
43
|
+
[key: string]: any;
|
44
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
45
|
+
[key: string]: any;
|
46
|
+
}>) => void)[];
|
47
|
+
onVnodeBeforeUpdate?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
48
|
+
[key: string]: any;
|
49
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
50
|
+
[key: string]: any;
|
51
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
52
|
+
[key: string]: any;
|
53
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
54
|
+
[key: string]: any;
|
55
|
+
}>) => void)[];
|
56
|
+
onVnodeUpdated?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
57
|
+
[key: string]: any;
|
58
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
59
|
+
[key: string]: any;
|
60
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
61
|
+
[key: string]: any;
|
62
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
63
|
+
[key: string]: any;
|
64
|
+
}>) => void)[];
|
65
|
+
onVnodeBeforeUnmount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
66
|
+
[key: string]: any;
|
67
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
68
|
+
[key: string]: any;
|
69
|
+
}>) => void)[];
|
70
|
+
onVnodeUnmounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
71
|
+
[key: string]: any;
|
72
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
73
|
+
[key: string]: any;
|
74
|
+
}>) => void)[];
|
75
|
+
} | {
|
76
|
+
[x: number]: unknown;
|
77
|
+
toString: (() => string) | ((() => string) & (() => string));
|
78
|
+
readonly concat: unknown;
|
79
|
+
readonly indexOf: unknown;
|
80
|
+
readonly lastIndexOf: unknown;
|
81
|
+
readonly slice: unknown;
|
82
|
+
readonly length: unknown;
|
83
|
+
readonly includes: unknown;
|
84
|
+
readonly at: unknown;
|
85
|
+
toLocaleString: (() => string) | ((() => string) & (() => string));
|
86
|
+
readonly join: unknown;
|
87
|
+
readonly every: unknown;
|
88
|
+
readonly some: unknown;
|
89
|
+
readonly forEach: unknown;
|
90
|
+
readonly map: unknown;
|
91
|
+
readonly filter: unknown;
|
92
|
+
readonly reduce: unknown;
|
93
|
+
readonly reduceRight: unknown;
|
94
|
+
readonly find: unknown;
|
95
|
+
readonly findIndex: unknown;
|
96
|
+
readonly entries: unknown;
|
97
|
+
readonly keys: unknown;
|
98
|
+
readonly values: unknown;
|
99
|
+
readonly flatMap: unknown;
|
100
|
+
readonly flat: unknown;
|
101
|
+
style?: unknown;
|
102
|
+
class?: unknown;
|
103
|
+
key?: string | number | symbol;
|
104
|
+
ref?: import("vue").VNodeRef;
|
105
|
+
ref_for?: boolean;
|
106
|
+
ref_key?: string;
|
107
|
+
onVnodeBeforeMount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
108
|
+
[key: string]: any;
|
109
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
110
|
+
[key: string]: any;
|
111
|
+
}>) => void)[];
|
112
|
+
onVnodeMounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
113
|
+
[key: string]: any;
|
114
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
115
|
+
[key: string]: any;
|
116
|
+
}>) => void)[];
|
117
|
+
onVnodeBeforeUpdate?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
118
|
+
[key: string]: any;
|
119
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
120
|
+
[key: string]: any;
|
121
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
122
|
+
[key: string]: any;
|
123
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
124
|
+
[key: string]: any;
|
125
|
+
}>) => void)[];
|
126
|
+
onVnodeUpdated?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
127
|
+
[key: string]: any;
|
128
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
129
|
+
[key: string]: any;
|
130
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
131
|
+
[key: string]: any;
|
132
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
133
|
+
[key: string]: any;
|
134
|
+
}>) => void)[];
|
135
|
+
onVnodeBeforeUnmount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
136
|
+
[key: string]: any;
|
137
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
138
|
+
[key: string]: any;
|
139
|
+
}>) => void)[];
|
140
|
+
onVnodeUnmounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
141
|
+
[key: string]: any;
|
142
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
143
|
+
[key: string]: any;
|
144
|
+
}>) => void)[];
|
145
|
+
};
|
146
|
+
$attrs: {
|
147
|
+
[x: string]: unknown;
|
148
|
+
};
|
149
|
+
$refs: {
|
150
|
+
[x: string]: unknown;
|
151
|
+
};
|
152
|
+
$slots: Readonly<{
|
153
|
+
[name: string]: import("vue").Slot<any>;
|
154
|
+
}>;
|
155
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
156
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
157
|
+
$emit: (event: string, ...args: any[]) => void;
|
158
|
+
$el: any;
|
159
|
+
$options: import("vue").ComponentOptionsBase<Readonly<{
|
160
|
+
[x: number]: string;
|
161
|
+
readonly length: number;
|
162
|
+
toString: () => string;
|
163
|
+
toLocaleString: () => string;
|
164
|
+
concat: {
|
165
|
+
(...items: ConcatArray<string>[]): string[];
|
166
|
+
(...items: (string | ConcatArray<string>)[]): string[];
|
167
|
+
};
|
168
|
+
join: (separator?: string) => string;
|
169
|
+
slice: (start?: number, end?: number) => string[];
|
170
|
+
indexOf: (searchElement: string, fromIndex?: number) => number;
|
171
|
+
lastIndexOf: (searchElement: string, fromIndex?: number) => number;
|
172
|
+
every: {
|
173
|
+
<S extends string>(predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): this is readonly S[];
|
174
|
+
(predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean;
|
175
|
+
};
|
176
|
+
some: (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any) => boolean;
|
177
|
+
forEach: (callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any) => void;
|
178
|
+
map: <U>(callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any) => U[];
|
179
|
+
filter: {
|
180
|
+
<S_1 extends string>(predicate: (value: string, index: number, array: readonly string[]) => value is S_1, thisArg?: any): S_1[];
|
181
|
+
(predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): string[];
|
182
|
+
};
|
183
|
+
reduce: {
|
184
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string;
|
185
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string;
|
186
|
+
<U_1>(callbackfn: (previousValue: U_1, currentValue: string, currentIndex: number, array: readonly string[]) => U_1, initialValue: U_1): U_1;
|
187
|
+
};
|
188
|
+
reduceRight: {
|
189
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string;
|
190
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string;
|
191
|
+
<U_2>(callbackfn: (previousValue: U_2, currentValue: string, currentIndex: number, array: readonly string[]) => U_2, initialValue: U_2): U_2;
|
192
|
+
};
|
193
|
+
find: {
|
194
|
+
<S_2 extends string>(predicate: (value: string, index: number, obj: readonly string[]) => value is S_2, thisArg?: any): S_2;
|
195
|
+
(predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string;
|
196
|
+
};
|
197
|
+
findIndex: (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number;
|
198
|
+
entries: () => IterableIterator<[number, string]>;
|
199
|
+
keys: () => IterableIterator<number>;
|
200
|
+
values: () => IterableIterator<string>;
|
201
|
+
includes: (searchElement: string, fromIndex?: number) => boolean;
|
202
|
+
flatMap: <U_3, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U_3 | readonly U_3[], thisArg?: This) => U_3[];
|
203
|
+
flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
|
204
|
+
[Symbol.iterator]: () => IterableIterator<string>;
|
205
|
+
readonly [Symbol.unscopables]: {
|
206
|
+
[x: number]: boolean;
|
207
|
+
readonly length?: boolean;
|
208
|
+
toString?: boolean;
|
209
|
+
toLocaleString?: boolean;
|
210
|
+
concat?: boolean;
|
211
|
+
join?: boolean;
|
212
|
+
slice?: boolean;
|
213
|
+
indexOf?: boolean;
|
214
|
+
lastIndexOf?: boolean;
|
215
|
+
every?: boolean;
|
216
|
+
some?: boolean;
|
217
|
+
forEach?: boolean;
|
218
|
+
map?: boolean;
|
219
|
+
filter?: boolean;
|
220
|
+
reduce?: boolean;
|
221
|
+
reduceRight?: boolean;
|
222
|
+
find?: boolean;
|
223
|
+
findIndex?: boolean;
|
224
|
+
entries?: boolean;
|
225
|
+
keys?: boolean;
|
226
|
+
values?: boolean;
|
227
|
+
includes?: boolean;
|
228
|
+
flatMap?: boolean;
|
229
|
+
flat?: boolean;
|
230
|
+
[Symbol.iterator]?: boolean;
|
231
|
+
readonly [Symbol.unscopables]?: boolean;
|
232
|
+
at?: boolean;
|
233
|
+
};
|
234
|
+
at: (index: number) => string;
|
235
|
+
}> | Readonly<import("vue").ExtractPropTypes<{
|
236
|
+
[x: string]: import("vue").Prop<unknown, unknown>;
|
237
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {} | {}, {}, string, {}> & {
|
238
|
+
beforeCreate?: (() => void) | (() => void)[];
|
239
|
+
created?: (() => void) | (() => void)[];
|
240
|
+
beforeMount?: (() => void) | (() => void)[];
|
241
|
+
mounted?: (() => void) | (() => void)[];
|
242
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
243
|
+
updated?: (() => void) | (() => void)[];
|
244
|
+
activated?: (() => void) | (() => void)[];
|
245
|
+
deactivated?: (() => void) | (() => void)[];
|
246
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
247
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
248
|
+
destroyed?: (() => void) | (() => void)[];
|
249
|
+
unmounted?: (() => void) | (() => void)[];
|
250
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
251
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
252
|
+
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)[];
|
253
|
+
};
|
254
|
+
$forceUpdate: () => void;
|
255
|
+
$nextTick: typeof import("vue").nextTick;
|
256
|
+
$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;
|
257
|
+
} & (Readonly<{
|
258
|
+
[x: number]: string;
|
259
|
+
readonly length: number;
|
260
|
+
toString: () => string;
|
261
|
+
toLocaleString: () => string;
|
262
|
+
concat: {
|
263
|
+
(...items: ConcatArray<string>[]): string[];
|
264
|
+
(...items: (string | ConcatArray<string>)[]): string[];
|
265
|
+
};
|
266
|
+
join: (separator?: string) => string;
|
267
|
+
slice: (start?: number, end?: number) => string[];
|
268
|
+
indexOf: (searchElement: string, fromIndex?: number) => number;
|
269
|
+
lastIndexOf: (searchElement: string, fromIndex?: number) => number;
|
270
|
+
every: {
|
271
|
+
<S extends string>(predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): this is readonly S[];
|
272
|
+
(predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean;
|
273
|
+
};
|
274
|
+
some: (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any) => boolean;
|
275
|
+
forEach: (callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any) => void;
|
276
|
+
map: <U>(callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any) => U[];
|
277
|
+
filter: {
|
278
|
+
<S_1 extends string>(predicate: (value: string, index: number, array: readonly string[]) => value is S_1, thisArg?: any): S_1[];
|
279
|
+
(predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): string[];
|
280
|
+
};
|
281
|
+
reduce: {
|
282
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string;
|
283
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string;
|
284
|
+
<U_1>(callbackfn: (previousValue: U_1, currentValue: string, currentIndex: number, array: readonly string[]) => U_1, initialValue: U_1): U_1;
|
285
|
+
};
|
286
|
+
reduceRight: {
|
287
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string;
|
288
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string;
|
289
|
+
<U_2>(callbackfn: (previousValue: U_2, currentValue: string, currentIndex: number, array: readonly string[]) => U_2, initialValue: U_2): U_2;
|
290
|
+
};
|
291
|
+
find: {
|
292
|
+
<S_2 extends string>(predicate: (value: string, index: number, obj: readonly string[]) => value is S_2, thisArg?: any): S_2;
|
293
|
+
(predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string;
|
294
|
+
};
|
295
|
+
findIndex: (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number;
|
296
|
+
entries: () => IterableIterator<[number, string]>;
|
297
|
+
keys: () => IterableIterator<number>;
|
298
|
+
values: () => IterableIterator<string>;
|
299
|
+
includes: (searchElement: string, fromIndex?: number) => boolean;
|
300
|
+
flatMap: <U_3, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U_3 | readonly U_3[], thisArg?: This) => U_3[];
|
301
|
+
flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
|
302
|
+
[Symbol.iterator]: () => IterableIterator<string>;
|
303
|
+
readonly [Symbol.unscopables]: {
|
304
|
+
[x: number]: boolean;
|
305
|
+
readonly length?: boolean;
|
306
|
+
toString?: boolean;
|
307
|
+
toLocaleString?: boolean;
|
308
|
+
concat?: boolean;
|
309
|
+
join?: boolean;
|
310
|
+
slice?: boolean;
|
311
|
+
indexOf?: boolean;
|
312
|
+
lastIndexOf?: boolean;
|
313
|
+
every?: boolean;
|
314
|
+
some?: boolean;
|
315
|
+
forEach?: boolean;
|
316
|
+
map?: boolean;
|
317
|
+
filter?: boolean;
|
318
|
+
reduce?: boolean;
|
319
|
+
reduceRight?: boolean;
|
320
|
+
find?: boolean;
|
321
|
+
findIndex?: boolean;
|
322
|
+
entries?: boolean;
|
323
|
+
keys?: boolean;
|
324
|
+
values?: boolean;
|
325
|
+
includes?: boolean;
|
326
|
+
flatMap?: boolean;
|
327
|
+
flat?: boolean;
|
328
|
+
[Symbol.iterator]?: boolean;
|
329
|
+
readonly [Symbol.unscopables]?: boolean;
|
330
|
+
at?: boolean;
|
331
|
+
};
|
332
|
+
at: (index: number) => string;
|
333
|
+
}> | Readonly<import("vue").ExtractPropTypes<{
|
334
|
+
[x: string]: import("vue").Prop<unknown, unknown>;
|
335
|
+
}>>) & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {} & Readonly<{
|
336
|
+
[x: number]: string;
|
337
|
+
readonly length: number;
|
338
|
+
toString: () => string;
|
339
|
+
toLocaleString: () => string;
|
340
|
+
concat: {
|
341
|
+
(...items: ConcatArray<string>[]): string[];
|
342
|
+
(...items: (string | ConcatArray<string>)[]): string[];
|
343
|
+
};
|
344
|
+
join: (separator?: string) => string;
|
345
|
+
slice: (start?: number, end?: number) => string[];
|
346
|
+
indexOf: (searchElement: string, fromIndex?: number) => number;
|
347
|
+
lastIndexOf: (searchElement: string, fromIndex?: number) => number;
|
348
|
+
every: {
|
349
|
+
<S extends string>(predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): this is readonly S[];
|
350
|
+
(predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean;
|
351
|
+
};
|
352
|
+
some: (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any) => boolean;
|
353
|
+
forEach: (callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any) => void;
|
354
|
+
map: <U>(callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any) => U[];
|
355
|
+
filter: {
|
356
|
+
<S_1 extends string>(predicate: (value: string, index: number, array: readonly string[]) => value is S_1, thisArg?: any): S_1[];
|
357
|
+
(predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): string[];
|
358
|
+
};
|
359
|
+
reduce: {
|
360
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string;
|
361
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string;
|
362
|
+
<U_1>(callbackfn: (previousValue: U_1, currentValue: string, currentIndex: number, array: readonly string[]) => U_1, initialValue: U_1): U_1;
|
363
|
+
};
|
364
|
+
reduceRight: {
|
365
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string;
|
366
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string;
|
367
|
+
<U_2>(callbackfn: (previousValue: U_2, currentValue: string, currentIndex: number, array: readonly string[]) => U_2, initialValue: U_2): U_2;
|
368
|
+
};
|
369
|
+
find: {
|
370
|
+
<S_2 extends string>(predicate: (value: string, index: number, obj: readonly string[]) => value is S_2, thisArg?: any): S_2;
|
371
|
+
(predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string;
|
372
|
+
};
|
373
|
+
findIndex: (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number;
|
374
|
+
entries: () => IterableIterator<[number, string]>;
|
375
|
+
keys: () => IterableIterator<number>;
|
376
|
+
values: () => IterableIterator<string>;
|
377
|
+
includes: (searchElement: string, fromIndex?: number) => boolean;
|
378
|
+
flatMap: <U_3, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U_3 | readonly U_3[], thisArg?: This) => U_3[];
|
379
|
+
flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
|
380
|
+
[Symbol.iterator]: () => IterableIterator<string>;
|
381
|
+
readonly [Symbol.unscopables]: {
|
382
|
+
[x: number]: boolean;
|
383
|
+
readonly length?: boolean;
|
384
|
+
toString?: boolean;
|
385
|
+
toLocaleString?: boolean;
|
386
|
+
concat?: boolean;
|
387
|
+
join?: boolean;
|
388
|
+
slice?: boolean;
|
389
|
+
indexOf?: boolean;
|
390
|
+
lastIndexOf?: boolean;
|
391
|
+
every?: boolean;
|
392
|
+
some?: boolean;
|
393
|
+
forEach?: boolean;
|
394
|
+
map?: boolean;
|
395
|
+
filter?: boolean;
|
396
|
+
reduce?: boolean;
|
397
|
+
reduceRight?: boolean;
|
398
|
+
find?: boolean;
|
399
|
+
findIndex?: boolean;
|
400
|
+
entries?: boolean;
|
401
|
+
keys?: boolean;
|
402
|
+
values?: boolean;
|
403
|
+
includes?: boolean;
|
404
|
+
flatMap?: boolean;
|
405
|
+
flat?: boolean;
|
406
|
+
[Symbol.iterator]?: boolean;
|
407
|
+
readonly [Symbol.unscopables]?: boolean;
|
408
|
+
at?: boolean;
|
409
|
+
};
|
410
|
+
at: (index: number) => string;
|
411
|
+
} | import("vue").ExtractPropTypes<{
|
412
|
+
[x: string]: import("vue").Prop<unknown, unknown>;
|
413
|
+
}>>;
|
414
|
+
__isFragment?: never;
|
415
|
+
__isTeleport?: never;
|
416
|
+
__isSuspense?: never;
|
417
|
+
} & import("vue").ComponentOptionsBase<Readonly<{
|
418
|
+
[x: number]: string;
|
419
|
+
readonly length: number;
|
420
|
+
toString: () => string;
|
421
|
+
toLocaleString: () => string;
|
422
|
+
concat: {
|
423
|
+
(...items: ConcatArray<string>[]): string[];
|
424
|
+
(...items: (string | ConcatArray<string>)[]): string[];
|
425
|
+
};
|
426
|
+
join: (separator?: string) => string;
|
427
|
+
slice: (start?: number, end?: number) => string[];
|
428
|
+
indexOf: (searchElement: string, fromIndex?: number) => number;
|
429
|
+
lastIndexOf: (searchElement: string, fromIndex?: number) => number;
|
430
|
+
every: {
|
431
|
+
<S extends string>(predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): this is readonly S[];
|
432
|
+
(predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean;
|
433
|
+
};
|
434
|
+
some: (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any) => boolean;
|
435
|
+
forEach: (callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any) => void;
|
436
|
+
map: <U>(callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any) => U[];
|
437
|
+
filter: {
|
438
|
+
<S_1 extends string>(predicate: (value: string, index: number, array: readonly string[]) => value is S_1, thisArg?: any): S_1[];
|
439
|
+
(predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): string[];
|
440
|
+
};
|
441
|
+
reduce: {
|
442
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string;
|
443
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string;
|
444
|
+
<U_1>(callbackfn: (previousValue: U_1, currentValue: string, currentIndex: number, array: readonly string[]) => U_1, initialValue: U_1): U_1;
|
445
|
+
};
|
446
|
+
reduceRight: {
|
447
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string;
|
448
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string;
|
449
|
+
<U_2>(callbackfn: (previousValue: U_2, currentValue: string, currentIndex: number, array: readonly string[]) => U_2, initialValue: U_2): U_2;
|
450
|
+
};
|
451
|
+
find: {
|
452
|
+
<S_2 extends string>(predicate: (value: string, index: number, obj: readonly string[]) => value is S_2, thisArg?: any): S_2;
|
453
|
+
(predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string;
|
454
|
+
};
|
455
|
+
findIndex: (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number;
|
456
|
+
entries: () => IterableIterator<[number, string]>;
|
457
|
+
keys: () => IterableIterator<number>;
|
458
|
+
values: () => IterableIterator<string>;
|
459
|
+
includes: (searchElement: string, fromIndex?: number) => boolean;
|
460
|
+
flatMap: <U_3, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U_3 | readonly U_3[], thisArg?: This) => U_3[];
|
461
|
+
flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
|
462
|
+
[Symbol.iterator]: () => IterableIterator<string>;
|
463
|
+
readonly [Symbol.unscopables]: {
|
464
|
+
[x: number]: boolean;
|
465
|
+
readonly length?: boolean;
|
466
|
+
toString?: boolean;
|
467
|
+
toLocaleString?: boolean;
|
468
|
+
concat?: boolean;
|
469
|
+
join?: boolean;
|
470
|
+
slice?: boolean;
|
471
|
+
indexOf?: boolean;
|
472
|
+
lastIndexOf?: boolean;
|
473
|
+
every?: boolean;
|
474
|
+
some?: boolean;
|
475
|
+
forEach?: boolean;
|
476
|
+
map?: boolean;
|
477
|
+
filter?: boolean;
|
478
|
+
reduce?: boolean;
|
479
|
+
reduceRight?: boolean;
|
480
|
+
find?: boolean;
|
481
|
+
findIndex?: boolean;
|
482
|
+
entries?: boolean;
|
483
|
+
keys?: boolean;
|
484
|
+
values?: boolean;
|
485
|
+
includes?: boolean;
|
486
|
+
flatMap?: boolean;
|
487
|
+
flat?: boolean;
|
488
|
+
[Symbol.iterator]?: boolean;
|
489
|
+
readonly [Symbol.unscopables]?: boolean;
|
490
|
+
at?: boolean;
|
491
|
+
};
|
492
|
+
at: (index: number) => string;
|
493
|
+
}> | Readonly<import("vue").ExtractPropTypes<{
|
494
|
+
[x: string]: import("vue").Prop<unknown, unknown>;
|
495
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {} | {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
496
|
+
propsDefinition: Omit<Readonly<{
|
497
|
+
[x: number]: string;
|
498
|
+
readonly length: number;
|
499
|
+
toString: () => string;
|
500
|
+
toLocaleString: () => string;
|
501
|
+
concat: {
|
502
|
+
(...items: ConcatArray<string>[]): string[];
|
503
|
+
(...items: (string | ConcatArray<string>)[]): string[];
|
504
|
+
};
|
505
|
+
join: (separator?: string) => string;
|
506
|
+
slice: (start?: number, end?: number) => string[];
|
507
|
+
indexOf: (searchElement: string, fromIndex?: number) => number;
|
508
|
+
lastIndexOf: (searchElement: string, fromIndex?: number) => number;
|
509
|
+
every: {
|
510
|
+
<S extends string>(predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): this is readonly S[];
|
511
|
+
(predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean;
|
512
|
+
};
|
513
|
+
some: (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any) => boolean;
|
514
|
+
forEach: (callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any) => void;
|
515
|
+
map: <U>(callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any) => U[];
|
516
|
+
filter: {
|
517
|
+
<S_1 extends string>(predicate: (value: string, index: number, array: readonly string[]) => value is S_1, thisArg?: any): S_1[];
|
518
|
+
(predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): string[];
|
519
|
+
};
|
520
|
+
reduce: {
|
521
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string;
|
522
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string;
|
523
|
+
<U_1>(callbackfn: (previousValue: U_1, currentValue: string, currentIndex: number, array: readonly string[]) => U_1, initialValue: U_1): U_1;
|
524
|
+
};
|
525
|
+
reduceRight: {
|
526
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string;
|
527
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string;
|
528
|
+
<U_2>(callbackfn: (previousValue: U_2, currentValue: string, currentIndex: number, array: readonly string[]) => U_2, initialValue: U_2): U_2;
|
529
|
+
};
|
530
|
+
find: {
|
531
|
+
<S_2 extends string>(predicate: (value: string, index: number, obj: readonly string[]) => value is S_2, thisArg?: any): S_2;
|
532
|
+
(predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string;
|
533
|
+
};
|
534
|
+
findIndex: (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number;
|
535
|
+
entries: () => IterableIterator<[number, string]>;
|
536
|
+
keys: () => IterableIterator<number>;
|
537
|
+
values: () => IterableIterator<string>;
|
538
|
+
includes: (searchElement: string, fromIndex?: number) => boolean;
|
539
|
+
flatMap: <U_3, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U_3 | readonly U_3[], thisArg?: This) => U_3[];
|
540
|
+
flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
|
541
|
+
[Symbol.iterator]: () => IterableIterator<string>;
|
542
|
+
readonly [Symbol.unscopables]: {
|
543
|
+
[x: number]: boolean;
|
544
|
+
readonly length?: boolean;
|
545
|
+
toString?: boolean;
|
546
|
+
toLocaleString?: boolean;
|
547
|
+
concat?: boolean;
|
548
|
+
join?: boolean;
|
549
|
+
slice?: boolean;
|
550
|
+
indexOf?: boolean;
|
551
|
+
lastIndexOf?: boolean;
|
552
|
+
every?: boolean;
|
553
|
+
some?: boolean;
|
554
|
+
forEach?: boolean;
|
555
|
+
map?: boolean;
|
556
|
+
filter?: boolean;
|
557
|
+
reduce?: boolean;
|
558
|
+
reduceRight?: boolean;
|
559
|
+
find?: boolean;
|
560
|
+
findIndex?: boolean;
|
561
|
+
entries?: boolean;
|
562
|
+
keys?: boolean;
|
563
|
+
values?: boolean;
|
564
|
+
includes?: boolean;
|
565
|
+
flatMap?: boolean;
|
566
|
+
flat?: boolean;
|
567
|
+
[Symbol.iterator]?: boolean;
|
568
|
+
readonly [Symbol.unscopables]?: boolean;
|
569
|
+
at?: boolean;
|
570
|
+
};
|
571
|
+
at: (index: number) => string;
|
572
|
+
}>, never> | Omit<Readonly<{} & {
|
573
|
+
[x: string]: unknown;
|
574
|
+
[x: number]: unknown;
|
575
|
+
}>, never>;
|
576
|
+
};
|
577
|
+
export default _default;
|
@@ -7,8 +7,12 @@ declare const _default: {
|
|
7
7
|
$: import("vue").ComponentInternalInstance;
|
8
8
|
$data: {};
|
9
9
|
$props: {
|
10
|
+
container?: any;
|
11
|
+
blueprint?: any;
|
12
|
+
colorSchemaType?: any;
|
13
|
+
blueprintType?: any;
|
14
|
+
colors?: any;
|
10
15
|
readonly title?: string;
|
11
|
-
readonly container?: unknown;
|
12
16
|
style?: unknown;
|
13
17
|
class?: String | String[];
|
14
18
|
key?: string | number | symbol;
|
@@ -55,21 +59,13 @@ declare const _default: {
|
|
55
59
|
[key: string]: any;
|
56
60
|
}>) => void)[];
|
57
61
|
readonly closeButton?: boolean;
|
58
|
-
readonly
|
59
|
-
readonly colorSchemaType?: unknown;
|
60
|
-
readonly blueprintType?: unknown;
|
61
|
-
readonly "v-slots"?: ({
|
62
|
+
readonly "v-slots"?: {
|
62
63
|
default?: Func<[VNodeChild]>;
|
63
64
|
} & {
|
64
65
|
title?: Func<[VNodeChild]>;
|
65
66
|
customButtons?: Func<[VNodeChild]>;
|
66
|
-
}
|
67
|
-
default?: () => VNodeChild;
|
68
|
-
} & {
|
69
|
-
icon?: () => VNodeChild;
|
70
|
-
});
|
67
|
+
};
|
71
68
|
readonly variant?: string;
|
72
|
-
readonly colors?: unknown;
|
73
69
|
"onClick:close"?: () => any;
|
74
70
|
readonly backButton?: boolean;
|
75
71
|
"onClick:back"?: () => any;
|
@@ -88,43 +84,51 @@ declare const _default: {
|
|
88
84
|
$emit: ((event: "click:close") => void) & ((event: "click:back") => void);
|
89
85
|
$el: any;
|
90
86
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
91
|
-
"v-slots": import("vue").Prop<
|
92
|
-
default?: Func<[VNodeChild]>;
|
93
|
-
} & {
|
94
|
-
title?: Func<[VNodeChild]>;
|
95
|
-
customButtons?: Func<[VNodeChild]>;
|
96
|
-
}) | ({
|
97
|
-
default?: () => VNodeChild;
|
98
|
-
} & {
|
99
|
-
icon?: () => VNodeChild;
|
100
|
-
}), ({
|
87
|
+
"v-slots": import("vue").Prop<{
|
101
88
|
default?: Func<[VNodeChild]>;
|
102
89
|
} & {
|
103
90
|
title?: Func<[VNodeChild]>;
|
104
91
|
customButtons?: Func<[VNodeChild]>;
|
105
|
-
}
|
106
|
-
|
92
|
+
}>;
|
93
|
+
backButton: {
|
94
|
+
type: import("vue").PropType<boolean>;
|
95
|
+
};
|
96
|
+
closeButton: {
|
97
|
+
type: import("vue").PropType<boolean>;
|
98
|
+
};
|
99
|
+
icon: {
|
100
|
+
type: import("vue").PropType<IIcon>;
|
101
|
+
};
|
102
|
+
title: {
|
103
|
+
type: import("vue").PropType<string>;
|
104
|
+
};
|
105
|
+
variant: {
|
106
|
+
type: import("vue").PropType<string>;
|
107
107
|
} & {
|
108
|
-
|
109
|
-
}
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
blueprintType?: import("vue").Prop<unknown, unknown>;
|
120
|
-
blueprint?: import("vue").Prop<unknown, unknown>;
|
108
|
+
type: import("vue").PropType<string>;
|
109
|
+
};
|
110
|
+
class: {
|
111
|
+
type: import("vue").PropType<String | String[]>;
|
112
|
+
required: boolean;
|
113
|
+
};
|
114
|
+
colorSchemaType?: any;
|
115
|
+
container?: any;
|
116
|
+
colors?: any;
|
117
|
+
blueprintType?: any;
|
118
|
+
blueprint?: any;
|
121
119
|
}>> & {
|
122
120
|
"onClick:close"?: () => any;
|
123
121
|
"onClick:back"?: () => any;
|
124
|
-
}, () => JSX.Element,
|
122
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
125
123
|
"click:close": () => true;
|
126
124
|
"click:back": () => true;
|
127
|
-
}, string, {
|
125
|
+
}, string, {
|
126
|
+
container?: any;
|
127
|
+
blueprint?: any;
|
128
|
+
colorSchemaType?: any;
|
129
|
+
blueprintType?: any;
|
130
|
+
colors?: any;
|
131
|
+
}, {}, string, {}> & {
|
128
132
|
beforeCreate?: (() => void) | (() => void)[];
|
129
133
|
created?: (() => void) | (() => void)[];
|
130
134
|
beforeMount?: (() => void) | (() => void)[];
|
@@ -145,36 +149,38 @@ declare const _default: {
|
|
145
149
|
$nextTick: typeof import("vue").nextTick;
|
146
150
|
$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;
|
147
151
|
} & Readonly<import("vue").ExtractPropTypes<{
|
148
|
-
"v-slots": import("vue").Prop<
|
149
|
-
default?: Func<[VNodeChild]>;
|
150
|
-
} & {
|
151
|
-
title?: Func<[VNodeChild]>;
|
152
|
-
customButtons?: Func<[VNodeChild]>;
|
153
|
-
}) | ({
|
154
|
-
default?: () => VNodeChild;
|
155
|
-
} & {
|
156
|
-
icon?: () => VNodeChild;
|
157
|
-
}), ({
|
152
|
+
"v-slots": import("vue").Prop<{
|
158
153
|
default?: Func<[VNodeChild]>;
|
159
154
|
} & {
|
160
155
|
title?: Func<[VNodeChild]>;
|
161
156
|
customButtons?: Func<[VNodeChild]>;
|
162
|
-
}
|
163
|
-
|
157
|
+
}>;
|
158
|
+
backButton: {
|
159
|
+
type: import("vue").PropType<boolean>;
|
160
|
+
};
|
161
|
+
closeButton: {
|
162
|
+
type: import("vue").PropType<boolean>;
|
163
|
+
};
|
164
|
+
icon: {
|
165
|
+
type: import("vue").PropType<IIcon>;
|
166
|
+
};
|
167
|
+
title: {
|
168
|
+
type: import("vue").PropType<string>;
|
169
|
+
};
|
170
|
+
variant: {
|
171
|
+
type: import("vue").PropType<string>;
|
164
172
|
} & {
|
165
|
-
|
166
|
-
}
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
blueprintType?: import("vue").Prop<unknown, unknown>;
|
177
|
-
blueprint?: import("vue").Prop<unknown, unknown>;
|
173
|
+
type: import("vue").PropType<string>;
|
174
|
+
};
|
175
|
+
class: {
|
176
|
+
type: import("vue").PropType<String | String[]>;
|
177
|
+
required: boolean;
|
178
|
+
};
|
179
|
+
colorSchemaType?: any;
|
180
|
+
container?: any;
|
181
|
+
colors?: any;
|
182
|
+
blueprintType?: any;
|
183
|
+
blueprint?: any;
|
178
184
|
}>> & {
|
179
185
|
"onClick:close"?: () => any;
|
180
186
|
"onClick:back"?: () => any;
|
@@ -183,64 +189,69 @@ declare const _default: {
|
|
183
189
|
__isTeleport?: never;
|
184
190
|
__isSuspense?: never;
|
185
191
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
186
|
-
"v-slots": import("vue").Prop<
|
187
|
-
default?: Func<[VNodeChild]>;
|
188
|
-
} & {
|
189
|
-
title?: Func<[VNodeChild]>;
|
190
|
-
customButtons?: Func<[VNodeChild]>;
|
191
|
-
}) | ({
|
192
|
-
default?: () => VNodeChild;
|
193
|
-
} & {
|
194
|
-
icon?: () => VNodeChild;
|
195
|
-
}), ({
|
192
|
+
"v-slots": import("vue").Prop<{
|
196
193
|
default?: Func<[VNodeChild]>;
|
197
194
|
} & {
|
198
195
|
title?: Func<[VNodeChild]>;
|
199
196
|
customButtons?: Func<[VNodeChild]>;
|
200
|
-
}
|
201
|
-
|
197
|
+
}>;
|
198
|
+
backButton: {
|
199
|
+
type: import("vue").PropType<boolean>;
|
200
|
+
};
|
201
|
+
closeButton: {
|
202
|
+
type: import("vue").PropType<boolean>;
|
203
|
+
};
|
204
|
+
icon: {
|
205
|
+
type: import("vue").PropType<IIcon>;
|
206
|
+
};
|
207
|
+
title: {
|
208
|
+
type: import("vue").PropType<string>;
|
209
|
+
};
|
210
|
+
variant: {
|
211
|
+
type: import("vue").PropType<string>;
|
202
212
|
} & {
|
203
|
-
|
204
|
-
}
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
blueprintType?: import("vue").Prop<unknown, unknown>;
|
215
|
-
blueprint?: import("vue").Prop<unknown, unknown>;
|
213
|
+
type: import("vue").PropType<string>;
|
214
|
+
};
|
215
|
+
class: {
|
216
|
+
type: import("vue").PropType<String | String[]>;
|
217
|
+
required: boolean;
|
218
|
+
};
|
219
|
+
colorSchemaType?: any;
|
220
|
+
container?: any;
|
221
|
+
colors?: any;
|
222
|
+
blueprintType?: any;
|
223
|
+
blueprint?: any;
|
216
224
|
}>> & {
|
217
225
|
"onClick:close"?: () => any;
|
218
226
|
"onClick:back"?: () => any;
|
219
|
-
}, () => JSX.Element,
|
227
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
220
228
|
"click:close": () => true;
|
221
229
|
"click:back": () => true;
|
222
|
-
}, string, {
|
223
|
-
|
230
|
+
}, string, {
|
231
|
+
container?: any;
|
232
|
+
blueprint?: any;
|
233
|
+
colorSchemaType?: any;
|
234
|
+
blueprintType?: any;
|
235
|
+
colors?: any;
|
236
|
+
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
237
|
+
propsDefinition: Omit<Readonly<{
|
238
|
+
container?: any;
|
239
|
+
blueprint?: any;
|
240
|
+
colorSchemaType?: any;
|
241
|
+
blueprintType?: any;
|
242
|
+
colors?: any;
|
243
|
+
} & {
|
224
244
|
title?: string;
|
225
|
-
container?: unknown;
|
226
245
|
class?: String | String[];
|
227
246
|
icon?: IIcon;
|
228
247
|
closeButton?: boolean;
|
229
|
-
|
230
|
-
colorSchemaType?: unknown;
|
231
|
-
blueprintType?: unknown;
|
232
|
-
"v-slots"?: ({
|
248
|
+
"v-slots"?: {
|
233
249
|
default?: Func<[VNodeChild]>;
|
234
250
|
} & {
|
235
251
|
title?: Func<[VNodeChild]>;
|
236
252
|
customButtons?: Func<[VNodeChild]>;
|
237
|
-
}
|
238
|
-
default?: () => VNodeChild;
|
239
|
-
} & {
|
240
|
-
icon?: () => VNodeChild;
|
241
|
-
});
|
253
|
+
};
|
242
254
|
variant?: string;
|
243
|
-
colors?: unknown;
|
244
255
|
backButton?: boolean;
|
245
256
|
}>, "onClick:close" | "onClick:back"> & {
|
246
257
|
"onClick:close"?: () => any;
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import { ColorStyles } from "@omnia/fx-models";
|
2
2
|
import { useColorSchemaStore } from "../ColorSchemaStore";
|
3
3
|
export declare function useScrollStyling(colors: ReturnType<typeof useColorSchemaStore>, toned?: boolean, targetSelector?: string): string;
|
4
|
+
export declare function useDividingOpacity(dark: boolean): string;
|
4
5
|
export declare function useBackgroundOpacity(dark: boolean, opacity?: Number): string;
|
5
6
|
export declare function useBackgroundOpacityOnColor(color: string, dark: boolean, opacity?: Number): any;
|
6
7
|
export declare function useColorStyling(color: string, opacity?: number): ColorStyles;
|
@@ -112,6 +112,7 @@ import wc994b0ed2b0794f928849a3fb5c52c70a from './ux/oxide/main/Main';
|
|
112
112
|
import wce688539435a64ccf8569a6e05020ca94 from './ux/oxide/menu/Menu';
|
113
113
|
import wcd17d504fd4874d8bb50ab6a946859546 from './ux/oxide/navigationdrawer/NavigationDrawer';
|
114
114
|
import wcc51213da3caa4607b2fa435ae0c7acbf from './ux/oxide/panel/Panel';
|
115
|
+
import wc61e392c374cf4be6b9a1457b79a715ed from './ux/oxide/progress/Progress';
|
115
116
|
import wc6c9f088f52de491bbe36933530a1880a from './ux/oxide/radio/RadioGroup';
|
116
117
|
import wca156e0af12b3464082a7e9fd2cdab84a from './ux/oxide/radio/Radio';
|
117
118
|
import wc87b50e67ce504ec292925641cfb29016 from './ux/oxide/select/Select';
|
@@ -353,6 +354,7 @@ declare global {
|
|
353
354
|
"o-menu": typeof wce688539435a64ccf8569a6e05020ca94.propsDefinition & VueComponentBaseProps;
|
354
355
|
"o-navigation-drawer": typeof wcd17d504fd4874d8bb50ab6a946859546.propsDefinition & VueComponentBaseProps;
|
355
356
|
"o-panel": typeof wcc51213da3caa4607b2fa435ae0c7acbf.propsDefinition & VueComponentBaseProps;
|
357
|
+
"o-progress": typeof wc61e392c374cf4be6b9a1457b79a715ed.propsDefinition & VueComponentBaseProps;
|
356
358
|
"o-radio-group": typeof wc6c9f088f52de491bbe36933530a1880a.propsDefinition & VueComponentBaseProps;
|
357
359
|
"o-radio": typeof wca156e0af12b3464082a7e9fd2cdab84a.propsDefinition & VueComponentBaseProps;
|
358
360
|
"o-select": typeof wc87b50e67ce504ec292925641cfb29016.propsDefinition & VueComponentBaseProps;
|
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.34-vnext",
|
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": "Precio Fishbone",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.34-vnext",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|