@ironsource/shared-ui 2.1.8-rc.7 → 2.1.8-rc.8
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/Chart.vue_vue_type_style_index_0_scoped_df85e0af_lang.css +1 -0
- package/ChartHeader.vue_vue_type_style_index_0_scoped_2e3de9c5_lang.css +1 -0
- package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_fd7a490e_lang.css +1 -0
- package/SettingsHeader.vue_vue_type_style_index_0_scoped_1791e4fe_lang.css +1 -0
- package/components/chart/Chart.vue.d.ts +15 -2
- package/components/chart/Chart.vue.js +3 -3
- package/components/chart/Chart.vue2.js +160 -141
- package/components/chart/ChartHeader.vue.d.ts +5 -0
- package/components/chart/ChartHeader.vue.js +2 -2
- package/components/chart/ChartHeader.vue2.js +31 -29
- package/components/chart/SettingsHeader.vue.d.ts +30 -0
- package/components/chart/SettingsHeader.vue.js +7 -0
- package/components/chart/SettingsHeader.vue2.js +57 -0
- package/components/chart/consts.d.ts +2 -0
- package/components/chart/consts.js +17 -11
- package/components/chart/index.d.ts +320 -74
- package/components/chart/types.d.ts +4 -0
- package/components/dropdown/v4/DefaultDropdownTrigger.vue.d.ts +1 -0
- package/components/dropdown/v4/DefaultDropdownTrigger.vue.js +2 -2
- package/components/dropdown/v4/DefaultDropdownTrigger.vue2.js +33 -31
- package/components/dropdown/v4/index.d.ts +1 -0
- package/components/loader/v4/index.js +6 -0
- package/index.d.ts +262 -0
- package/index.js +128 -126
- package/package.json +4 -1
- package/Chart.vue_vue_type_style_index_0_scoped_f06a4764_lang.css +0 -1
- package/ChartHeader.vue_vue_type_style_index_0_scoped_88d4532f_lang.css +0 -1
- package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_1726ad49_lang.css +0 -1
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import "../../../DefaultDropdownTrigger.
|
|
1
|
+
import "../../../DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_fd7a490e_lang.css"; import { defineComponent as O, computed as c, openBlock as a, createElementBlock as n, createBlock as k, createCommentVNode as d, createElementVNode as u, mergeProps as m, unref as l, renderSlot as i, createVNode as r, withCtx as I, createTextVNode as B, toDisplayString as w } from "vue";
|
|
2
2
|
import V from "../../typography/v4/Typography.vue.js";
|
|
3
3
|
import { DropdownTestIdModifiers as p } from "../../../testids/index.js";
|
|
4
4
|
import h from "../../icon/v4/IconV4.vue.js";
|
|
5
5
|
import "../../icon/v4/IconFlag.vue.js";
|
|
6
|
-
import
|
|
7
|
-
import { useTestIdAttrs as
|
|
8
|
-
import
|
|
9
|
-
const
|
|
6
|
+
import A from "../../shared/FieldLabel.vue.js";
|
|
7
|
+
import { useTestIdAttrs as $ } from "../../../utils/testIds.js";
|
|
8
|
+
import x from "../../statusDot/StatusDot.vue.js";
|
|
9
|
+
const D = { class: "default-dropdown-wrapper" }, N = { class: "content" }, K = {
|
|
10
10
|
key: 0,
|
|
11
11
|
class: "image"
|
|
12
12
|
}, C = ["src"], S = {
|
|
@@ -46,11 +46,11 @@ const $ = { class: "default-dropdown-wrapper" }, N = { class: "content" }, K = {
|
|
|
46
46
|
},
|
|
47
47
|
emits: ["click"],
|
|
48
48
|
setup(t, { emit: T }) {
|
|
49
|
-
const e = t, g =
|
|
49
|
+
const e = t, g = c(
|
|
50
50
|
() => e.feedbackVariant ? `state-${e.feedbackVariant}` : ""
|
|
51
|
-
),
|
|
51
|
+
), v = () => {
|
|
52
52
|
T("click");
|
|
53
|
-
}, f =
|
|
53
|
+
}, f = $(e.testId, p), b = c(() => e.multi ? !Array.isArray(e.selectedOption) || !e.selectedOption?.length ? e.placeholder : e.showAllSelectedText && e.options?.length === e.selectedOption.length ? `All selected (${e.selectedOption.length})` : e.selectedOption?.length === 1 && e.displayValue ? e.displayValue(e.selectedOption[0]) : `${e.selectedOption.length} selected` : e.selectedOption ? e.displayValue(e.selectedOption) : e.placeholder), s = c(() => {
|
|
54
54
|
if (!e.selectedOption)
|
|
55
55
|
return null;
|
|
56
56
|
if (!e.multi)
|
|
@@ -58,8 +58,8 @@ const $ = { class: "default-dropdown-wrapper" }, N = { class: "content" }, K = {
|
|
|
58
58
|
if (Array.isArray(e.selectedOption))
|
|
59
59
|
return e.selectedOption.length === 1 ? e.selectedOption[0] : null;
|
|
60
60
|
});
|
|
61
|
-
return (
|
|
62
|
-
t.label ? (
|
|
61
|
+
return (o, y) => (a(), n("div", D, [
|
|
62
|
+
t.label ? (a(), k(A, {
|
|
63
63
|
key: 0,
|
|
64
64
|
label: t.label,
|
|
65
65
|
mandatory: t.mandatory,
|
|
@@ -69,44 +69,46 @@ const $ = { class: "default-dropdown-wrapper" }, N = { class: "content" }, K = {
|
|
|
69
69
|
"test-id": t.testId,
|
|
70
70
|
class: "dropdown-field-label"
|
|
71
71
|
}, null, 8, ["label", "mandatory", "hover-help-text", "hover-help-text-placement", "disabled", "test-id"])) : d("", !0),
|
|
72
|
-
|
|
72
|
+
u("div", m({
|
|
73
73
|
class: ["dropdown-trigger", [t.size, l(g), { open: t.open, disabled: t.disabled }]]
|
|
74
74
|
}, l(f)[l(p).BUTTON_WRAPPER], {
|
|
75
|
-
onClick: y[0] || (y[0] = (H) =>
|
|
75
|
+
onClick: y[0] || (y[0] = (H) => v())
|
|
76
76
|
}), [
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
t.optionImageKey ? (
|
|
77
|
+
u("div", N, [
|
|
78
|
+
o.$slots.image || l(s) && t.optionImageKey ? (a(), n("div", K, [
|
|
79
|
+
i(o.$slots, "image", {}, () => [
|
|
80
|
+
t.optionImageKey ? (a(), n("img", {
|
|
81
81
|
key: 0,
|
|
82
82
|
src: l(s)[t.optionImageKey]
|
|
83
83
|
}, null, 8, C)) : d("", !0)
|
|
84
84
|
], !0)
|
|
85
85
|
])) : d("", !0),
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
86
|
+
o.$slots["icon-start"] || l(s) && t.optionIconKey ? (a(), n("div", S, [
|
|
87
|
+
i(o.$slots, "icon-start", {}, () => [
|
|
88
|
+
r(l(h), {
|
|
89
89
|
type: t.optionIconType,
|
|
90
90
|
name: l(s)[t.optionIconKey],
|
|
91
91
|
size: "20px"
|
|
92
92
|
}, null, 8, ["type", "name"])
|
|
93
93
|
], !0)
|
|
94
94
|
])) : d("", !0),
|
|
95
|
-
t.statusDotType ? (
|
|
96
|
-
|
|
95
|
+
t.statusDotType ? (a(), n("div", P, [
|
|
96
|
+
r(l(x), { type: t.statusDotType }, null, 8, ["type"])
|
|
97
97
|
])) : d("", !0),
|
|
98
|
-
i(
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
98
|
+
i(o.$slots, "displayed-value", {}, () => [
|
|
99
|
+
r(l(V), m({ variant: "body1" }, l(f)[l(p).BUTTON_CONTENT], { class: "displayed-value" }), {
|
|
100
|
+
default: I(() => [
|
|
101
|
+
B(w(l(b)), 1)
|
|
102
|
+
]),
|
|
103
|
+
_: 1
|
|
104
|
+
}, 16)
|
|
105
|
+
], !0)
|
|
104
106
|
]),
|
|
105
|
-
|
|
106
|
-
|
|
107
|
+
o.$slots["end-icon"] ? (a(), n("div", z, [
|
|
108
|
+
i(o.$slots, "end-icon", {}, void 0, !0)
|
|
107
109
|
])) : d("", !0),
|
|
108
|
-
|
|
109
|
-
|
|
110
|
+
u("div", E, [
|
|
111
|
+
r(l(h), {
|
|
110
112
|
name: "caret-down",
|
|
111
113
|
size: "20px"
|
|
112
114
|
})
|
package/index.d.ts
CHANGED
|
@@ -4181,6 +4181,266 @@ declare const _default: {
|
|
|
4181
4181
|
destroy: () => boolean;
|
|
4182
4182
|
};
|
|
4183
4183
|
snackbarTypes: readonly ["success", "info", "error"];
|
|
4184
|
+
Loader: {
|
|
4185
|
+
new (...args: any[]): {
|
|
4186
|
+
$: import("vue").ComponentInternalInstance;
|
|
4187
|
+
$data: {};
|
|
4188
|
+
$props: Partial<{
|
|
4189
|
+
maxWidth: number;
|
|
4190
|
+
strokeWidth: number;
|
|
4191
|
+
paddingOffsetPx: number;
|
|
4192
|
+
paddingOffsetPercentage: number;
|
|
4193
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
4194
|
+
maxWidth: {
|
|
4195
|
+
type: import("vue").PropType<number>;
|
|
4196
|
+
default: any;
|
|
4197
|
+
};
|
|
4198
|
+
strokeWidth: {
|
|
4199
|
+
type: import("vue").PropType<number>;
|
|
4200
|
+
default: number;
|
|
4201
|
+
};
|
|
4202
|
+
paddingOffsetPx: {
|
|
4203
|
+
type: import("vue").PropType<number>;
|
|
4204
|
+
default: number;
|
|
4205
|
+
};
|
|
4206
|
+
paddingOffsetPercentage: {
|
|
4207
|
+
type: import("vue").PropType<number>;
|
|
4208
|
+
default: number;
|
|
4209
|
+
};
|
|
4210
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "maxWidth" | "strokeWidth" | "paddingOffsetPx" | "paddingOffsetPercentage">;
|
|
4211
|
+
$attrs: {
|
|
4212
|
+
[x: string]: unknown;
|
|
4213
|
+
};
|
|
4214
|
+
$refs: {
|
|
4215
|
+
[x: string]: unknown;
|
|
4216
|
+
};
|
|
4217
|
+
$slots: Readonly<{
|
|
4218
|
+
[name: string]: import("vue").Slot;
|
|
4219
|
+
}>;
|
|
4220
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
4221
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
4222
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
4223
|
+
$el: any;
|
|
4224
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
4225
|
+
maxWidth: {
|
|
4226
|
+
type: import("vue").PropType<number>;
|
|
4227
|
+
default: any;
|
|
4228
|
+
};
|
|
4229
|
+
strokeWidth: {
|
|
4230
|
+
type: import("vue").PropType<number>;
|
|
4231
|
+
default: number;
|
|
4232
|
+
};
|
|
4233
|
+
paddingOffsetPx: {
|
|
4234
|
+
type: import("vue").PropType<number>;
|
|
4235
|
+
default: number;
|
|
4236
|
+
};
|
|
4237
|
+
paddingOffsetPercentage: {
|
|
4238
|
+
type: import("vue").PropType<number>;
|
|
4239
|
+
default: number;
|
|
4240
|
+
};
|
|
4241
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
4242
|
+
maxWidth: number;
|
|
4243
|
+
strokeWidth: number;
|
|
4244
|
+
paddingOffsetPx: number;
|
|
4245
|
+
paddingOffsetPercentage: number;
|
|
4246
|
+
}, {}, string> & {
|
|
4247
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
4248
|
+
created?: (() => void) | (() => void)[];
|
|
4249
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
4250
|
+
mounted?: (() => void) | (() => void)[];
|
|
4251
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
4252
|
+
updated?: (() => void) | (() => void)[];
|
|
4253
|
+
activated?: (() => void) | (() => void)[];
|
|
4254
|
+
deactivated?: (() => void) | (() => void)[];
|
|
4255
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
4256
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
4257
|
+
destroyed?: (() => void) | (() => void)[];
|
|
4258
|
+
unmounted?: (() => void) | (() => void)[];
|
|
4259
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
4260
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
4261
|
+
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)[];
|
|
4262
|
+
};
|
|
4263
|
+
$forceUpdate: () => void;
|
|
4264
|
+
$nextTick: typeof import("vue").nextTick;
|
|
4265
|
+
$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;
|
|
4266
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
4267
|
+
maxWidth: {
|
|
4268
|
+
type: import("vue").PropType<number>;
|
|
4269
|
+
default: any;
|
|
4270
|
+
};
|
|
4271
|
+
strokeWidth: {
|
|
4272
|
+
type: import("vue").PropType<number>;
|
|
4273
|
+
default: number;
|
|
4274
|
+
};
|
|
4275
|
+
paddingOffsetPx: {
|
|
4276
|
+
type: import("vue").PropType<number>;
|
|
4277
|
+
default: number;
|
|
4278
|
+
};
|
|
4279
|
+
paddingOffsetPercentage: {
|
|
4280
|
+
type: import("vue").PropType<number>;
|
|
4281
|
+
default: number;
|
|
4282
|
+
};
|
|
4283
|
+
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
4284
|
+
__isFragment?: never;
|
|
4285
|
+
__isTeleport?: never;
|
|
4286
|
+
__isSuspense?: never;
|
|
4287
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
4288
|
+
maxWidth: {
|
|
4289
|
+
type: import("vue").PropType<number>;
|
|
4290
|
+
default: any;
|
|
4291
|
+
};
|
|
4292
|
+
strokeWidth: {
|
|
4293
|
+
type: import("vue").PropType<number>;
|
|
4294
|
+
default: number;
|
|
4295
|
+
};
|
|
4296
|
+
paddingOffsetPx: {
|
|
4297
|
+
type: import("vue").PropType<number>;
|
|
4298
|
+
default: number;
|
|
4299
|
+
};
|
|
4300
|
+
paddingOffsetPercentage: {
|
|
4301
|
+
type: import("vue").PropType<number>;
|
|
4302
|
+
default: number;
|
|
4303
|
+
};
|
|
4304
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
4305
|
+
maxWidth: number;
|
|
4306
|
+
strokeWidth: number;
|
|
4307
|
+
paddingOffsetPx: number;
|
|
4308
|
+
paddingOffsetPercentage: number;
|
|
4309
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
4310
|
+
$slots: {
|
|
4311
|
+
default?(_: {}): any;
|
|
4312
|
+
};
|
|
4313
|
+
});
|
|
4314
|
+
LoaderTypes: () => ({
|
|
4315
|
+
new (...args: any[]): {
|
|
4316
|
+
$: import("vue").ComponentInternalInstance;
|
|
4317
|
+
$data: {};
|
|
4318
|
+
$props: Partial<{
|
|
4319
|
+
maxWidth: number;
|
|
4320
|
+
strokeWidth: number;
|
|
4321
|
+
paddingOffsetPx: number;
|
|
4322
|
+
paddingOffsetPercentage: number;
|
|
4323
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
4324
|
+
maxWidth: {
|
|
4325
|
+
type: import("vue").PropType<number>;
|
|
4326
|
+
default: any;
|
|
4327
|
+
};
|
|
4328
|
+
strokeWidth: {
|
|
4329
|
+
type: import("vue").PropType<number>;
|
|
4330
|
+
default: number;
|
|
4331
|
+
};
|
|
4332
|
+
paddingOffsetPx: {
|
|
4333
|
+
type: import("vue").PropType<number>;
|
|
4334
|
+
default: number;
|
|
4335
|
+
};
|
|
4336
|
+
paddingOffsetPercentage: {
|
|
4337
|
+
type: import("vue").PropType<number>;
|
|
4338
|
+
default: number;
|
|
4339
|
+
};
|
|
4340
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "maxWidth" | "strokeWidth" | "paddingOffsetPx" | "paddingOffsetPercentage">;
|
|
4341
|
+
$attrs: {
|
|
4342
|
+
[x: string]: unknown;
|
|
4343
|
+
};
|
|
4344
|
+
$refs: {
|
|
4345
|
+
[x: string]: unknown;
|
|
4346
|
+
};
|
|
4347
|
+
$slots: Readonly<{
|
|
4348
|
+
[name: string]: import("vue").Slot;
|
|
4349
|
+
}>;
|
|
4350
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
4351
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
4352
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
4353
|
+
$el: any;
|
|
4354
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
4355
|
+
maxWidth: {
|
|
4356
|
+
type: import("vue").PropType<number>;
|
|
4357
|
+
default: any;
|
|
4358
|
+
};
|
|
4359
|
+
strokeWidth: {
|
|
4360
|
+
type: import("vue").PropType<number>;
|
|
4361
|
+
default: number;
|
|
4362
|
+
};
|
|
4363
|
+
paddingOffsetPx: {
|
|
4364
|
+
type: import("vue").PropType<number>;
|
|
4365
|
+
default: number;
|
|
4366
|
+
};
|
|
4367
|
+
paddingOffsetPercentage: {
|
|
4368
|
+
type: import("vue").PropType<number>;
|
|
4369
|
+
default: number;
|
|
4370
|
+
};
|
|
4371
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
4372
|
+
maxWidth: number;
|
|
4373
|
+
strokeWidth: number;
|
|
4374
|
+
paddingOffsetPx: number;
|
|
4375
|
+
paddingOffsetPercentage: number;
|
|
4376
|
+
}, {}, string> & {
|
|
4377
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
4378
|
+
created?: (() => void) | (() => void)[];
|
|
4379
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
4380
|
+
mounted?: (() => void) | (() => void)[];
|
|
4381
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
4382
|
+
updated?: (() => void) | (() => void)[];
|
|
4383
|
+
activated?: (() => void) | (() => void)[];
|
|
4384
|
+
deactivated?: (() => void) | (() => void)[];
|
|
4385
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
4386
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
4387
|
+
destroyed?: (() => void) | (() => void)[];
|
|
4388
|
+
unmounted?: (() => void) | (() => void)[];
|
|
4389
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
4390
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
4391
|
+
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)[];
|
|
4392
|
+
};
|
|
4393
|
+
$forceUpdate: () => void;
|
|
4394
|
+
$nextTick: typeof import("vue").nextTick;
|
|
4395
|
+
$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;
|
|
4396
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
4397
|
+
maxWidth: {
|
|
4398
|
+
type: import("vue").PropType<number>;
|
|
4399
|
+
default: any;
|
|
4400
|
+
};
|
|
4401
|
+
strokeWidth: {
|
|
4402
|
+
type: import("vue").PropType<number>;
|
|
4403
|
+
default: number;
|
|
4404
|
+
};
|
|
4405
|
+
paddingOffsetPx: {
|
|
4406
|
+
type: import("vue").PropType<number>;
|
|
4407
|
+
default: number;
|
|
4408
|
+
};
|
|
4409
|
+
paddingOffsetPercentage: {
|
|
4410
|
+
type: import("vue").PropType<number>;
|
|
4411
|
+
default: number;
|
|
4412
|
+
};
|
|
4413
|
+
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
4414
|
+
__isFragment?: never;
|
|
4415
|
+
__isTeleport?: never;
|
|
4416
|
+
__isSuspense?: never;
|
|
4417
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
4418
|
+
maxWidth: {
|
|
4419
|
+
type: import("vue").PropType<number>;
|
|
4420
|
+
default: any;
|
|
4421
|
+
};
|
|
4422
|
+
strokeWidth: {
|
|
4423
|
+
type: import("vue").PropType<number>;
|
|
4424
|
+
default: number;
|
|
4425
|
+
};
|
|
4426
|
+
paddingOffsetPx: {
|
|
4427
|
+
type: import("vue").PropType<number>;
|
|
4428
|
+
default: number;
|
|
4429
|
+
};
|
|
4430
|
+
paddingOffsetPercentage: {
|
|
4431
|
+
type: import("vue").PropType<number>;
|
|
4432
|
+
default: number;
|
|
4433
|
+
};
|
|
4434
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
4435
|
+
maxWidth: number;
|
|
4436
|
+
strokeWidth: number;
|
|
4437
|
+
paddingOffsetPx: number;
|
|
4438
|
+
paddingOffsetPercentage: number;
|
|
4439
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
4440
|
+
$slots: {
|
|
4441
|
+
default?(_: {}): any;
|
|
4442
|
+
};
|
|
4443
|
+
}))[];
|
|
4184
4444
|
SkeletonTypes: () => ({
|
|
4185
4445
|
new (...args: any[]): {
|
|
4186
4446
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -17033,6 +17293,7 @@ declare const _default: {
|
|
|
17033
17293
|
$slots: {
|
|
17034
17294
|
image?(_: {}): any;
|
|
17035
17295
|
"icon-start"?(_: {}): any;
|
|
17296
|
+
"displayed-value"?(_: {}): any;
|
|
17036
17297
|
"end-icon"?(_: {}): any;
|
|
17037
17298
|
};
|
|
17038
17299
|
});
|
|
@@ -18339,6 +18600,7 @@ declare const _default: {
|
|
|
18339
18600
|
$slots: {
|
|
18340
18601
|
image?(_: {}): any;
|
|
18341
18602
|
"icon-start"?(_: {}): any;
|
|
18603
|
+
"displayed-value"?(_: {}): any;
|
|
18342
18604
|
"end-icon"?(_: {}): any;
|
|
18343
18605
|
};
|
|
18344
18606
|
})) | ({
|