@ironsource/shared-ui 2.1.8-rc.4 → 2.1.8-rc.6
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/ChipV4.vue_vue_type_style_index_0_scoped_a4d3a12e_lang.css +1 -0
- package/DataGrid.vue_vue_type_style_index_0_scoped_2f666594_lang.css +1 -0
- package/IconButtonV4.vue_vue_type_style_index_0_scoped_06e26be2_lang.css +1 -0
- package/components/button/v4/IconButtonV4.vue.js +2 -2
- package/components/button/v4/IconButtonV4.vue2.js +1 -1
- package/components/chip/v4/ChipV4.vue.d.ts +19 -13
- package/components/chip/v4/ChipV4.vue.js +3 -3
- package/components/chip/v4/ChipV4.vue2.js +15 -13
- package/components/chip/v4/index.d.ts +138 -30
- package/components/table/v4/DataGrid.vue.d.ts +4 -0
- package/components/table/v4/DataGrid.vue.js +2 -2
- package/components/table/v4/DataGrid.vue2.js +140 -131
- package/components/table/v4/MultipleDataGrid.vue.d.ts +2 -2
- package/components/table/v4/index.d.ts +6 -2
- package/index.d.ts +287 -64
- package/index.js +105 -109
- package/package.json +1 -5
- package/ChipV4.vue_vue_type_style_index_0_scoped_12c0f396_lang.css +0 -1
- package/CssBaseline.vue_vue_type_style_index_0_scoped_f7dd256b_lang.css +0 -1
- package/CssBaseline.vue_vue_type_style_index_1_lang.css +0 -1
- package/DataGrid.vue_vue_type_style_index_0_scoped_46d53424_lang.css +0 -1
- package/IconButtonV4.vue_vue_type_style_index_0_scoped_4eefa06b_lang.css +0 -1
- package/components/cssBaseline/CssBaseline.vue.d.ts +0 -9
- package/components/cssBaseline/CssBaseline.vue.js +0 -10
- package/components/cssBaseline/CssBaseline.vue2.js +0 -0
- package/components/cssBaseline/index.d.ts +0 -49
- package/components/cssBaseline/index.js +0 -6
package/index.d.ts
CHANGED
|
@@ -5,7 +5,6 @@ export * from '@/components/menu';
|
|
|
5
5
|
export * from '@/components/appIcon';
|
|
6
6
|
export * from '@/components/floatingToolbar';
|
|
7
7
|
export * from '@/components/includeExclude';
|
|
8
|
-
export * from '@/components/cssBaseline';
|
|
9
8
|
export * from '@/composables/useId';
|
|
10
9
|
export * from '@/components/filterDropdown';
|
|
11
10
|
export * from '@/components/typography';
|
|
@@ -5860,6 +5859,10 @@ declare const _default: {
|
|
|
5860
5859
|
row: import("@vueuse/core").UseVirtualListItem<import("./components/table/common/Table.types").Row>;
|
|
5861
5860
|
gridColumnTemplate: any;
|
|
5862
5861
|
}): any;
|
|
5862
|
+
"floating-row"?(_: {
|
|
5863
|
+
row: import("@vueuse/core").UseVirtualListItem<import("./components/table/common/Table.types").Row>;
|
|
5864
|
+
rowIndex: number;
|
|
5865
|
+
}): any;
|
|
5863
5866
|
"empty-state"?(_: {}): any;
|
|
5864
5867
|
footer?(_: {}): any;
|
|
5865
5868
|
};
|
|
@@ -6641,6 +6644,10 @@ declare const _default: {
|
|
|
6641
6644
|
row: import("@vueuse/core").UseVirtualListItem<import("./components/table/common/Table.types").Row>;
|
|
6642
6645
|
gridColumnTemplate: any;
|
|
6643
6646
|
}): any;
|
|
6647
|
+
"floating-row"?(_: {
|
|
6648
|
+
row: import("@vueuse/core").UseVirtualListItem<import("./components/table/common/Table.types").Row>;
|
|
6649
|
+
rowIndex: number;
|
|
6650
|
+
}): any;
|
|
6644
6651
|
"empty-state"?(_: {}): any;
|
|
6645
6652
|
footer?(_: {}): any;
|
|
6646
6653
|
};
|
|
@@ -7182,8 +7189,8 @@ declare const _default: {
|
|
|
7182
7189
|
search?(_: {}): any;
|
|
7183
7190
|
"table-header-actions"?(_: {}): any;
|
|
7184
7191
|
"floating-row"?(_: {
|
|
7185
|
-
row:
|
|
7186
|
-
rowIndex:
|
|
7192
|
+
row: import("@vueuse/core").UseVirtualListItem<import("./components/table/common/Table.types").Row>;
|
|
7193
|
+
rowIndex: number;
|
|
7187
7194
|
}): any;
|
|
7188
7195
|
"empty-state"?(_: {}): any;
|
|
7189
7196
|
};
|
|
@@ -7633,8 +7640,8 @@ declare const _default: {
|
|
|
7633
7640
|
search?(_: {}): any;
|
|
7634
7641
|
"table-header-actions"?(_: {}): any;
|
|
7635
7642
|
"floating-row"?(_: {
|
|
7636
|
-
row:
|
|
7637
|
-
rowIndex:
|
|
7643
|
+
row: import("@vueuse/core").UseVirtualListItem<import("./components/table/common/Table.types").Row>;
|
|
7644
|
+
rowIndex: number;
|
|
7638
7645
|
}): any;
|
|
7639
7646
|
"empty-state"?(_: {}): any;
|
|
7640
7647
|
};
|
|
@@ -22994,36 +23001,140 @@ declare const _default: {
|
|
|
22994
23001
|
testId: string;
|
|
22995
23002
|
iconKey: string;
|
|
22996
23003
|
}>[];
|
|
22997
|
-
Chip:
|
|
22998
|
-
|
|
22999
|
-
|
|
23000
|
-
|
|
23001
|
-
|
|
23002
|
-
|
|
23003
|
-
|
|
23004
|
-
|
|
23005
|
-
|
|
23006
|
-
|
|
23007
|
-
|
|
23008
|
-
|
|
23009
|
-
|
|
23010
|
-
|
|
23011
|
-
|
|
23012
|
-
|
|
23013
|
-
|
|
23014
|
-
|
|
23015
|
-
|
|
23016
|
-
|
|
23017
|
-
|
|
23018
|
-
|
|
23019
|
-
|
|
23020
|
-
|
|
23021
|
-
|
|
23022
|
-
|
|
23023
|
-
|
|
23004
|
+
Chip: {
|
|
23005
|
+
new (...args: any[]): {
|
|
23006
|
+
$: import("vue").ComponentInternalInstance;
|
|
23007
|
+
$data: {};
|
|
23008
|
+
$props: Partial<{
|
|
23009
|
+
label: string;
|
|
23010
|
+
testId: string;
|
|
23011
|
+
variant: "filled" | "outlined";
|
|
23012
|
+
disabled: boolean;
|
|
23013
|
+
color: "dark" | "default" | "primary" | "info" | "success" | "warning" | "error";
|
|
23014
|
+
size: "small" | "medium";
|
|
23015
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
23016
|
+
label: {
|
|
23017
|
+
type: import("vue").PropType<string>;
|
|
23018
|
+
default: string;
|
|
23019
|
+
};
|
|
23020
|
+
testId: {
|
|
23021
|
+
type: import("vue").PropType<string>;
|
|
23022
|
+
default: string;
|
|
23023
|
+
};
|
|
23024
|
+
variant: {
|
|
23025
|
+
type: import("vue").PropType<"filled" | "outlined">;
|
|
23026
|
+
default: string;
|
|
23027
|
+
};
|
|
23028
|
+
disabled: {
|
|
23029
|
+
type: import("vue").PropType<boolean>;
|
|
23030
|
+
default: boolean;
|
|
23031
|
+
};
|
|
23032
|
+
color: {
|
|
23033
|
+
type: import("vue").PropType<"dark" | "default" | "primary" | "info" | "success" | "warning" | "error">;
|
|
23034
|
+
default: string;
|
|
23035
|
+
};
|
|
23036
|
+
size: {
|
|
23037
|
+
type: import("vue").PropType<"small" | "medium">;
|
|
23038
|
+
default: string;
|
|
23039
|
+
};
|
|
23040
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "testId" | "variant" | "disabled" | "color" | "size">;
|
|
23041
|
+
$attrs: {
|
|
23042
|
+
[x: string]: unknown;
|
|
23043
|
+
};
|
|
23044
|
+
$refs: {
|
|
23045
|
+
[x: string]: unknown;
|
|
23046
|
+
};
|
|
23047
|
+
$slots: Readonly<{
|
|
23048
|
+
[name: string]: import("vue").Slot;
|
|
23049
|
+
}>;
|
|
23050
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
23051
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
23052
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
23053
|
+
$el: any;
|
|
23054
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
23055
|
+
label: {
|
|
23056
|
+
type: import("vue").PropType<string>;
|
|
23057
|
+
default: string;
|
|
23058
|
+
};
|
|
23059
|
+
testId: {
|
|
23060
|
+
type: import("vue").PropType<string>;
|
|
23061
|
+
default: string;
|
|
23062
|
+
};
|
|
23063
|
+
variant: {
|
|
23064
|
+
type: import("vue").PropType<"filled" | "outlined">;
|
|
23065
|
+
default: string;
|
|
23066
|
+
};
|
|
23067
|
+
disabled: {
|
|
23068
|
+
type: import("vue").PropType<boolean>;
|
|
23069
|
+
default: boolean;
|
|
23070
|
+
};
|
|
23071
|
+
color: {
|
|
23072
|
+
type: import("vue").PropType<"dark" | "default" | "primary" | "info" | "success" | "warning" | "error">;
|
|
23073
|
+
default: string;
|
|
23074
|
+
};
|
|
23075
|
+
size: {
|
|
23076
|
+
type: import("vue").PropType<"small" | "medium">;
|
|
23077
|
+
default: string;
|
|
23078
|
+
};
|
|
23079
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
23080
|
+
label: string;
|
|
23081
|
+
testId: string;
|
|
23082
|
+
variant: "filled" | "outlined";
|
|
23083
|
+
disabled: boolean;
|
|
23084
|
+
color: "dark" | "default" | "primary" | "info" | "success" | "warning" | "error";
|
|
23085
|
+
size: "small" | "medium";
|
|
23086
|
+
}, {}, string> & {
|
|
23087
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
23088
|
+
created?: (() => void) | (() => void)[];
|
|
23089
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
23090
|
+
mounted?: (() => void) | (() => void)[];
|
|
23091
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
23092
|
+
updated?: (() => void) | (() => void)[];
|
|
23093
|
+
activated?: (() => void) | (() => void)[];
|
|
23094
|
+
deactivated?: (() => void) | (() => void)[];
|
|
23095
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
23096
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
23097
|
+
destroyed?: (() => void) | (() => void)[];
|
|
23098
|
+
unmounted?: (() => void) | (() => void)[];
|
|
23099
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
23100
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
23101
|
+
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)[];
|
|
23102
|
+
};
|
|
23103
|
+
$forceUpdate: () => void;
|
|
23104
|
+
$nextTick: typeof import("vue").nextTick;
|
|
23105
|
+
$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;
|
|
23106
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
23107
|
+
label: {
|
|
23108
|
+
type: import("vue").PropType<string>;
|
|
23109
|
+
default: string;
|
|
23110
|
+
};
|
|
23111
|
+
testId: {
|
|
23112
|
+
type: import("vue").PropType<string>;
|
|
23113
|
+
default: string;
|
|
23114
|
+
};
|
|
23115
|
+
variant: {
|
|
23116
|
+
type: import("vue").PropType<"filled" | "outlined">;
|
|
23117
|
+
default: string;
|
|
23118
|
+
};
|
|
23119
|
+
disabled: {
|
|
23120
|
+
type: import("vue").PropType<boolean>;
|
|
23121
|
+
default: boolean;
|
|
23122
|
+
};
|
|
23123
|
+
color: {
|
|
23124
|
+
type: import("vue").PropType<"dark" | "default" | "primary" | "info" | "success" | "warning" | "error">;
|
|
23125
|
+
default: string;
|
|
23126
|
+
};
|
|
23127
|
+
size: {
|
|
23128
|
+
type: import("vue").PropType<"small" | "medium">;
|
|
23129
|
+
default: string;
|
|
23130
|
+
};
|
|
23131
|
+
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
23132
|
+
__isFragment?: never;
|
|
23133
|
+
__isTeleport?: never;
|
|
23134
|
+
__isSuspense?: never;
|
|
23135
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
23024
23136
|
label: {
|
|
23025
23137
|
type: import("vue").PropType<string>;
|
|
23026
|
-
required: true;
|
|
23027
23138
|
default: string;
|
|
23028
23139
|
};
|
|
23029
23140
|
testId: {
|
|
@@ -23046,44 +23157,152 @@ declare const _default: {
|
|
|
23046
23157
|
type: import("vue").PropType<"small" | "medium">;
|
|
23047
23158
|
default: string;
|
|
23048
23159
|
};
|
|
23049
|
-
}>>, {
|
|
23160
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
23050
23161
|
label: string;
|
|
23051
23162
|
testId: string;
|
|
23052
23163
|
variant: "filled" | "outlined";
|
|
23053
23164
|
disabled: boolean;
|
|
23054
23165
|
color: "dark" | "default" | "primary" | "info" | "success" | "warning" | "error";
|
|
23055
23166
|
size: "small" | "medium";
|
|
23056
|
-
}
|
|
23057
|
-
|
|
23058
|
-
|
|
23059
|
-
type: import("vue").PropType<string>;
|
|
23060
|
-
required: true;
|
|
23061
|
-
default: string;
|
|
23062
|
-
};
|
|
23063
|
-
testId: {
|
|
23064
|
-
type: import("vue").PropType<string>;
|
|
23065
|
-
default: string;
|
|
23066
|
-
};
|
|
23067
|
-
variant: {
|
|
23068
|
-
type: import("vue").PropType<"filled" | "outlined">;
|
|
23069
|
-
default: string;
|
|
23070
|
-
};
|
|
23071
|
-
disabled: {
|
|
23072
|
-
type: import("vue").PropType<boolean>;
|
|
23073
|
-
default: boolean;
|
|
23074
|
-
};
|
|
23075
|
-
color: {
|
|
23076
|
-
type: import("vue").PropType<"dark" | "default" | "primary" | "info" | "success" | "warning" | "error">;
|
|
23077
|
-
default: string;
|
|
23078
|
-
};
|
|
23079
|
-
size: {
|
|
23080
|
-
type: import("vue").PropType<"small" | "medium">;
|
|
23081
|
-
default: string;
|
|
23167
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
23168
|
+
$slots: {
|
|
23169
|
+
default?(_: {}): any;
|
|
23082
23170
|
};
|
|
23083
|
-
}
|
|
23171
|
+
});
|
|
23172
|
+
ChipTypes: () => ({
|
|
23173
|
+
new (...args: any[]): {
|
|
23174
|
+
$: import("vue").ComponentInternalInstance;
|
|
23175
|
+
$data: {};
|
|
23176
|
+
$props: Partial<{
|
|
23177
|
+
label: string;
|
|
23178
|
+
testId: string;
|
|
23179
|
+
variant: "filled" | "outlined";
|
|
23180
|
+
disabled: boolean;
|
|
23181
|
+
color: "dark" | "default" | "primary" | "info" | "success" | "warning" | "error";
|
|
23182
|
+
size: "small" | "medium";
|
|
23183
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
23184
|
+
label: {
|
|
23185
|
+
type: import("vue").PropType<string>;
|
|
23186
|
+
default: string;
|
|
23187
|
+
};
|
|
23188
|
+
testId: {
|
|
23189
|
+
type: import("vue").PropType<string>;
|
|
23190
|
+
default: string;
|
|
23191
|
+
};
|
|
23192
|
+
variant: {
|
|
23193
|
+
type: import("vue").PropType<"filled" | "outlined">;
|
|
23194
|
+
default: string;
|
|
23195
|
+
};
|
|
23196
|
+
disabled: {
|
|
23197
|
+
type: import("vue").PropType<boolean>;
|
|
23198
|
+
default: boolean;
|
|
23199
|
+
};
|
|
23200
|
+
color: {
|
|
23201
|
+
type: import("vue").PropType<"dark" | "default" | "primary" | "info" | "success" | "warning" | "error">;
|
|
23202
|
+
default: string;
|
|
23203
|
+
};
|
|
23204
|
+
size: {
|
|
23205
|
+
type: import("vue").PropType<"small" | "medium">;
|
|
23206
|
+
default: string;
|
|
23207
|
+
};
|
|
23208
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "testId" | "variant" | "disabled" | "color" | "size">;
|
|
23209
|
+
$attrs: {
|
|
23210
|
+
[x: string]: unknown;
|
|
23211
|
+
};
|
|
23212
|
+
$refs: {
|
|
23213
|
+
[x: string]: unknown;
|
|
23214
|
+
};
|
|
23215
|
+
$slots: Readonly<{
|
|
23216
|
+
[name: string]: import("vue").Slot;
|
|
23217
|
+
}>;
|
|
23218
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
23219
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
23220
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
23221
|
+
$el: any;
|
|
23222
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
23223
|
+
label: {
|
|
23224
|
+
type: import("vue").PropType<string>;
|
|
23225
|
+
default: string;
|
|
23226
|
+
};
|
|
23227
|
+
testId: {
|
|
23228
|
+
type: import("vue").PropType<string>;
|
|
23229
|
+
default: string;
|
|
23230
|
+
};
|
|
23231
|
+
variant: {
|
|
23232
|
+
type: import("vue").PropType<"filled" | "outlined">;
|
|
23233
|
+
default: string;
|
|
23234
|
+
};
|
|
23235
|
+
disabled: {
|
|
23236
|
+
type: import("vue").PropType<boolean>;
|
|
23237
|
+
default: boolean;
|
|
23238
|
+
};
|
|
23239
|
+
color: {
|
|
23240
|
+
type: import("vue").PropType<"dark" | "default" | "primary" | "info" | "success" | "warning" | "error">;
|
|
23241
|
+
default: string;
|
|
23242
|
+
};
|
|
23243
|
+
size: {
|
|
23244
|
+
type: import("vue").PropType<"small" | "medium">;
|
|
23245
|
+
default: string;
|
|
23246
|
+
};
|
|
23247
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
23248
|
+
label: string;
|
|
23249
|
+
testId: string;
|
|
23250
|
+
variant: "filled" | "outlined";
|
|
23251
|
+
disabled: boolean;
|
|
23252
|
+
color: "dark" | "default" | "primary" | "info" | "success" | "warning" | "error";
|
|
23253
|
+
size: "small" | "medium";
|
|
23254
|
+
}, {}, string> & {
|
|
23255
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
23256
|
+
created?: (() => void) | (() => void)[];
|
|
23257
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
23258
|
+
mounted?: (() => void) | (() => void)[];
|
|
23259
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
23260
|
+
updated?: (() => void) | (() => void)[];
|
|
23261
|
+
activated?: (() => void) | (() => void)[];
|
|
23262
|
+
deactivated?: (() => void) | (() => void)[];
|
|
23263
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
23264
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
23265
|
+
destroyed?: (() => void) | (() => void)[];
|
|
23266
|
+
unmounted?: (() => void) | (() => void)[];
|
|
23267
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
23268
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
23269
|
+
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)[];
|
|
23270
|
+
};
|
|
23271
|
+
$forceUpdate: () => void;
|
|
23272
|
+
$nextTick: typeof import("vue").nextTick;
|
|
23273
|
+
$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;
|
|
23274
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
23275
|
+
label: {
|
|
23276
|
+
type: import("vue").PropType<string>;
|
|
23277
|
+
default: string;
|
|
23278
|
+
};
|
|
23279
|
+
testId: {
|
|
23280
|
+
type: import("vue").PropType<string>;
|
|
23281
|
+
default: string;
|
|
23282
|
+
};
|
|
23283
|
+
variant: {
|
|
23284
|
+
type: import("vue").PropType<"filled" | "outlined">;
|
|
23285
|
+
default: string;
|
|
23286
|
+
};
|
|
23287
|
+
disabled: {
|
|
23288
|
+
type: import("vue").PropType<boolean>;
|
|
23289
|
+
default: boolean;
|
|
23290
|
+
};
|
|
23291
|
+
color: {
|
|
23292
|
+
type: import("vue").PropType<"dark" | "default" | "primary" | "info" | "success" | "warning" | "error">;
|
|
23293
|
+
default: string;
|
|
23294
|
+
};
|
|
23295
|
+
size: {
|
|
23296
|
+
type: import("vue").PropType<"small" | "medium">;
|
|
23297
|
+
default: string;
|
|
23298
|
+
};
|
|
23299
|
+
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
23300
|
+
__isFragment?: never;
|
|
23301
|
+
__isTeleport?: never;
|
|
23302
|
+
__isSuspense?: never;
|
|
23303
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
23084
23304
|
label: {
|
|
23085
23305
|
type: import("vue").PropType<string>;
|
|
23086
|
-
required: true;
|
|
23087
23306
|
default: string;
|
|
23088
23307
|
};
|
|
23089
23308
|
testId: {
|
|
@@ -23106,14 +23325,18 @@ declare const _default: {
|
|
|
23106
23325
|
type: import("vue").PropType<"small" | "medium">;
|
|
23107
23326
|
default: string;
|
|
23108
23327
|
};
|
|
23109
|
-
}>>, {
|
|
23328
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
23110
23329
|
label: string;
|
|
23111
23330
|
testId: string;
|
|
23112
23331
|
variant: "filled" | "outlined";
|
|
23113
23332
|
disabled: boolean;
|
|
23114
23333
|
color: "dark" | "default" | "primary" | "info" | "success" | "warning" | "error";
|
|
23115
23334
|
size: "small" | "medium";
|
|
23116
|
-
}>
|
|
23335
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
23336
|
+
$slots: {
|
|
23337
|
+
default?(_: {}): any;
|
|
23338
|
+
};
|
|
23339
|
+
}))[];
|
|
23117
23340
|
};
|
|
23118
23341
|
export default _default;
|
|
23119
23342
|
export * from '@/composables/useToggle';
|