@rotki/ui-library 1.2.6 → 1.2.7
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/dist/{RuiNavigationDrawer-BOo7P6GM.js → RuiNavigationDrawer-Dp0FB9aL.js} +1497 -1493
- package/dist/components/forms/radio-button/radio/RuiRadio.vue.d.ts +20 -61
- package/dist/components/forms/radio-button/radio-group/RuiRadioGroup.vue.d.ts +17 -54
- package/dist/components/index.es.js +1 -1
- package/dist/index.es.js +2 -2
- package/dist/web-types.json +52 -54
- package/package.json +1 -1
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import type { ContextColorsType } from '../../../../consts/colors';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
value: ModelValue;
|
|
5
|
-
modelValue?: ModelValue;
|
|
2
|
+
export interface RadioProps<TValue> {
|
|
3
|
+
value: TValue;
|
|
6
4
|
disabled?: boolean;
|
|
7
5
|
color?: ContextColorsType;
|
|
8
6
|
size?: 'sm' | 'lg';
|
|
@@ -12,65 +10,26 @@ export interface RadioProps {
|
|
|
12
10
|
successMessages?: string | string[];
|
|
13
11
|
hideDetails?: boolean;
|
|
14
12
|
}
|
|
15
|
-
declare
|
|
16
|
-
|
|
13
|
+
declare const _default: <TValue>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_Prettify<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
14
|
+
props: __VLS_Prettify<Pick<Partial<{}> & Omit<{
|
|
15
|
+
"onUpdate:modelValue"?: ((modelValue: TValue) => any) | undefined;
|
|
16
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{}>> & {
|
|
17
|
+
"onUpdate:modelValue"?: ((modelValue: TValue) => any) | undefined;
|
|
18
|
+
}, never>, "onUpdate:modelValue"> & ({
|
|
19
|
+
modelValue?: TValue;
|
|
20
|
+
} & RadioProps<TValue>)> & import("vue").PublicProps;
|
|
21
|
+
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
22
|
+
attrs: any;
|
|
23
|
+
slots: ReturnType<() => {
|
|
24
|
+
default?(_: {}): any;
|
|
25
|
+
}>;
|
|
26
|
+
emit: (evt: "update:modelValue", modelValue: TValue) => void;
|
|
27
|
+
}>) => globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
28
|
+
[key: string]: any;
|
|
29
|
+
}> & {
|
|
30
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
17
31
|
};
|
|
18
|
-
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<RadioProps>, {
|
|
19
|
-
modelValue: string;
|
|
20
|
-
disabled: boolean;
|
|
21
|
-
color: undefined;
|
|
22
|
-
size: undefined;
|
|
23
|
-
label: string;
|
|
24
|
-
hint: string;
|
|
25
|
-
errorMessages: () => never[];
|
|
26
|
-
successMessages: () => never[];
|
|
27
|
-
hideDetails: boolean;
|
|
28
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
29
|
-
"update:modelValue": (modelValue: ModelValue) => void;
|
|
30
|
-
}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<RadioProps>, {
|
|
31
|
-
modelValue: string;
|
|
32
|
-
disabled: boolean;
|
|
33
|
-
color: undefined;
|
|
34
|
-
size: undefined;
|
|
35
|
-
label: string;
|
|
36
|
-
hint: string;
|
|
37
|
-
errorMessages: () => never[];
|
|
38
|
-
successMessages: () => never[];
|
|
39
|
-
hideDetails: boolean;
|
|
40
|
-
}>>> & {
|
|
41
|
-
"onUpdate:modelValue"?: ((modelValue: ModelValue) => any) | undefined;
|
|
42
|
-
}, {
|
|
43
|
-
size: "sm" | "lg";
|
|
44
|
-
color: ContextColorsType;
|
|
45
|
-
label: string;
|
|
46
|
-
disabled: boolean;
|
|
47
|
-
modelValue: ModelValue;
|
|
48
|
-
errorMessages: string | string[];
|
|
49
|
-
successMessages: string | string[];
|
|
50
|
-
hint: string;
|
|
51
|
-
hideDetails: boolean;
|
|
52
|
-
}, {}>;
|
|
53
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
54
32
|
export default _default;
|
|
55
|
-
type __VLS_WithDefaults<P, D> = {
|
|
56
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
57
|
-
default: D[K];
|
|
58
|
-
}> : P[K];
|
|
59
|
-
};
|
|
60
33
|
type __VLS_Prettify<T> = {
|
|
61
34
|
[K in keyof T]: T[K];
|
|
62
35
|
} & {};
|
|
63
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
64
|
-
new (): {
|
|
65
|
-
$slots: S;
|
|
66
|
-
};
|
|
67
|
-
};
|
|
68
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
69
|
-
type __VLS_TypePropsToOption<T> = {
|
|
70
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
71
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
72
|
-
} : {
|
|
73
|
-
type: import('vue').PropType<T[K]>;
|
|
74
|
-
required: true;
|
|
75
|
-
};
|
|
76
|
-
};
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import type { ContextColorsType } from '../../../../consts/colors';
|
|
2
|
-
type ModelValue = string | number | boolean;
|
|
3
2
|
export interface Props {
|
|
4
|
-
modelValue?: ModelValue;
|
|
5
3
|
inline?: boolean;
|
|
6
4
|
label?: string;
|
|
7
5
|
hint?: string;
|
|
@@ -12,59 +10,24 @@ export interface Props {
|
|
|
12
10
|
color?: ContextColorsType;
|
|
13
11
|
size?: 'sm' | 'lg';
|
|
14
12
|
}
|
|
15
|
-
declare const _default:
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
label: string;
|
|
32
|
-
hint: string;
|
|
33
|
-
errorMessages: () => never[];
|
|
34
|
-
successMessages: () => never[];
|
|
35
|
-
hideDetails: boolean;
|
|
36
|
-
disabled: boolean;
|
|
37
|
-
color: undefined;
|
|
38
|
-
size: undefined;
|
|
39
|
-
}>>> & {
|
|
40
|
-
"onUpdate:modelValue"?: ((value: ModelValue) => any) | undefined;
|
|
41
|
-
}, {
|
|
42
|
-
size: "sm" | "lg";
|
|
43
|
-
color: ContextColorsType;
|
|
44
|
-
label: string;
|
|
45
|
-
disabled: boolean;
|
|
46
|
-
modelValue: ModelValue;
|
|
47
|
-
inline: boolean;
|
|
48
|
-
errorMessages: string | string[];
|
|
49
|
-
successMessages: string | string[];
|
|
50
|
-
hint: string;
|
|
51
|
-
hideDetails: boolean;
|
|
52
|
-
}, {}>;
|
|
53
|
-
export default _default;
|
|
54
|
-
type __VLS_WithDefaults<P, D> = {
|
|
55
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
56
|
-
default: D[K];
|
|
57
|
-
}> : P[K];
|
|
13
|
+
declare const _default: <TValue>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_Prettify<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
14
|
+
props: __VLS_Prettify<Pick<Partial<{}> & Omit<{
|
|
15
|
+
"onUpdate:modelValue"?: ((modelValue: TValue) => any) | undefined;
|
|
16
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{}>> & {
|
|
17
|
+
"onUpdate:modelValue"?: ((modelValue: TValue) => any) | undefined;
|
|
18
|
+
}, never>, "onUpdate:modelValue"> & ({
|
|
19
|
+
modelValue?: TValue;
|
|
20
|
+
} & Props)> & import("vue").PublicProps;
|
|
21
|
+
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
22
|
+
attrs: any;
|
|
23
|
+
slots: ReturnType<() => {}>;
|
|
24
|
+
emit: (evt: "update:modelValue", modelValue: TValue) => void;
|
|
25
|
+
}>) => globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
26
|
+
[key: string]: any;
|
|
27
|
+
}> & {
|
|
28
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
58
29
|
};
|
|
30
|
+
export default _default;
|
|
59
31
|
type __VLS_Prettify<T> = {
|
|
60
32
|
[K in keyof T]: T[K];
|
|
61
33
|
} & {};
|
|
62
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
63
|
-
type __VLS_TypePropsToOption<T> = {
|
|
64
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
65
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
66
|
-
} : {
|
|
67
|
-
type: import('vue').PropType<T[K]>;
|
|
68
|
-
required: true;
|
|
69
|
-
};
|
|
70
|
-
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { I as u, H as s, R as e, a as R, b as o, J as t, c as r, d as l, u as d, v as n, e as p, f as c, K as T, r as b, t as S, D as g, g as m, h as x, _ as C, q as A, F as h, L as B, M as D, i as k, j as v, k as w, l as F, s as I, B as f, G, m as L, n as M, x as P, z as E, y as H, A as N, E as j, w as q, C as y, o as z, p as J } from "../RuiNavigationDrawer-
|
|
1
|
+
import { I as u, H as s, R as e, a as R, b as o, J as t, c as r, d as l, u as d, v as n, e as p, f as c, K as T, r as b, t as S, D as g, g as m, h as x, _ as C, q as A, F as h, L as B, M as D, i as k, j as v, k as w, l as F, s as I, B as f, G, m as L, n as M, x as P, z as E, y as H, A as N, E as j, w as q, C as y, o as z, p as J } from "../RuiNavigationDrawer-Dp0FB9aL.js";
|
|
2
2
|
export {
|
|
3
3
|
u as RuiAccordion,
|
|
4
4
|
s as RuiAccordions,
|
package/dist/index.es.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { u as a, a as r } from "./index-DIN-6VhY.js";
|
|
2
2
|
import { T as C } from "./index-DIN-6VhY.js";
|
|
3
|
-
import { N as F, T as L } from "./RuiNavigationDrawer-
|
|
4
|
-
import { I as S, H as g, R as m, a as k, b as B, J as w, c as f, d as P, u as y, v as D, e as M, f as b, K as A, r as T, t as x, D as H, g as U, h as E, _ as v, q as G, F as I, L as W, M as V, i as O, j as N, k as z, l as K, s as q, B as Q, G as j, m as Z, n as X, x as J, z as Y, y as _, A as $, E as ii, w as li, C as ei, o as Ri, p as ni, S as oi } from "./RuiNavigationDrawer-
|
|
3
|
+
import { N as F, T as L } from "./RuiNavigationDrawer-Dp0FB9aL.js";
|
|
4
|
+
import { I as S, H as g, R as m, a as k, b as B, J as w, c as f, d as P, u as y, v as D, e as M, f as b, K as A, r as T, t as x, D as H, g as U, h as E, _ as v, q as G, F as I, L as W, M as V, i as O, j as N, k as z, l as K, s as q, B as Q, G as j, m as Z, n as X, x as J, z as Y, y as _, A as $, E as ii, w as li, C as ei, o as Ri, p as ni, S as oi } from "./RuiNavigationDrawer-Dp0FB9aL.js";
|
|
5
5
|
import { u as ri } from "./breakpoint-sPlgsoXp.js";
|
|
6
6
|
import { RuiIcons as Li, isRuiIcon as ti } from "./icons/index.es.js";
|
|
7
7
|
import { c as di } from "./colors-D563Ic3q.js";
|
package/dist/web-types.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "http://json.schemastore.org/web-types",
|
|
3
3
|
"framework": "vue",
|
|
4
4
|
"name": "@rotki/ui-library",
|
|
5
|
-
"version": "1.2.
|
|
5
|
+
"version": "1.2.7",
|
|
6
6
|
"js-types-syntax": "typescript",
|
|
7
7
|
"description-markup": "markdown",
|
|
8
8
|
"contributions": {
|
|
@@ -5564,63 +5564,61 @@
|
|
|
5564
5564
|
},
|
|
5565
5565
|
"attributes": [
|
|
5566
5566
|
{
|
|
5567
|
-
"name": "
|
|
5567
|
+
"name": "model-value",
|
|
5568
5568
|
"description": "",
|
|
5569
5569
|
"required": false,
|
|
5570
|
-
"default": "false",
|
|
5571
5570
|
"value": {
|
|
5572
5571
|
"kind": "expression",
|
|
5573
|
-
"type": "
|
|
5572
|
+
"type": "unknown"
|
|
5574
5573
|
}
|
|
5575
5574
|
},
|
|
5576
5575
|
{
|
|
5577
|
-
"name": "
|
|
5576
|
+
"name": "value",
|
|
5578
5577
|
"description": "",
|
|
5579
|
-
"required":
|
|
5580
|
-
"default": "undefined",
|
|
5578
|
+
"required": true,
|
|
5581
5579
|
"value": {
|
|
5582
5580
|
"kind": "expression",
|
|
5583
|
-
"type": "
|
|
5581
|
+
"type": "unknown"
|
|
5584
5582
|
}
|
|
5585
5583
|
},
|
|
5586
5584
|
{
|
|
5587
|
-
"name": "
|
|
5585
|
+
"name": "disabled",
|
|
5588
5586
|
"description": "",
|
|
5589
5587
|
"required": false,
|
|
5590
|
-
"default": "
|
|
5588
|
+
"default": "false",
|
|
5591
5589
|
"value": {
|
|
5592
5590
|
"kind": "expression",
|
|
5593
|
-
"type": "
|
|
5591
|
+
"type": "boolean | undefined"
|
|
5594
5592
|
}
|
|
5595
5593
|
},
|
|
5596
5594
|
{
|
|
5597
|
-
"name": "
|
|
5595
|
+
"name": "color",
|
|
5598
5596
|
"description": "",
|
|
5599
5597
|
"required": false,
|
|
5600
|
-
"default": "
|
|
5598
|
+
"default": "undefined",
|
|
5601
5599
|
"value": {
|
|
5602
5600
|
"kind": "expression",
|
|
5603
|
-
"type": "
|
|
5601
|
+
"type": "ContextColorsType | undefined"
|
|
5604
5602
|
}
|
|
5605
5603
|
},
|
|
5606
5604
|
{
|
|
5607
|
-
"name": "
|
|
5605
|
+
"name": "size",
|
|
5608
5606
|
"description": "",
|
|
5609
5607
|
"required": false,
|
|
5610
|
-
"default": "
|
|
5608
|
+
"default": "undefined",
|
|
5611
5609
|
"value": {
|
|
5612
5610
|
"kind": "expression",
|
|
5613
|
-
"type": "
|
|
5611
|
+
"type": "'sm' | 'lg' | undefined"
|
|
5614
5612
|
}
|
|
5615
5613
|
},
|
|
5616
5614
|
{
|
|
5617
|
-
"name": "
|
|
5615
|
+
"name": "label",
|
|
5618
5616
|
"description": "",
|
|
5619
5617
|
"required": false,
|
|
5620
|
-
"default": "
|
|
5618
|
+
"default": "''",
|
|
5621
5619
|
"value": {
|
|
5622
5620
|
"kind": "expression",
|
|
5623
|
-
"type": "string |
|
|
5621
|
+
"type": "string | undefined"
|
|
5624
5622
|
}
|
|
5625
5623
|
},
|
|
5626
5624
|
{
|
|
@@ -5634,32 +5632,33 @@
|
|
|
5634
5632
|
}
|
|
5635
5633
|
},
|
|
5636
5634
|
{
|
|
5637
|
-
"name": "
|
|
5635
|
+
"name": "error-messages",
|
|
5638
5636
|
"description": "",
|
|
5639
5637
|
"required": false,
|
|
5640
|
-
"default": "
|
|
5638
|
+
"default": "[]",
|
|
5641
5639
|
"value": {
|
|
5642
5640
|
"kind": "expression",
|
|
5643
|
-
"type": "string | undefined"
|
|
5641
|
+
"type": "string | string[] | undefined"
|
|
5644
5642
|
}
|
|
5645
5643
|
},
|
|
5646
5644
|
{
|
|
5647
|
-
"name": "
|
|
5645
|
+
"name": "success-messages",
|
|
5648
5646
|
"description": "",
|
|
5649
5647
|
"required": false,
|
|
5650
|
-
"default": "
|
|
5648
|
+
"default": "[]",
|
|
5651
5649
|
"value": {
|
|
5652
5650
|
"kind": "expression",
|
|
5653
|
-
"type": "
|
|
5651
|
+
"type": "string | string[] | undefined"
|
|
5654
5652
|
}
|
|
5655
5653
|
},
|
|
5656
5654
|
{
|
|
5657
|
-
"name": "
|
|
5655
|
+
"name": "hide-details",
|
|
5658
5656
|
"description": "",
|
|
5659
|
-
"required":
|
|
5657
|
+
"required": false,
|
|
5658
|
+
"default": "false",
|
|
5660
5659
|
"value": {
|
|
5661
5660
|
"kind": "expression",
|
|
5662
|
-
"type": "
|
|
5661
|
+
"type": "boolean | undefined"
|
|
5663
5662
|
}
|
|
5664
5663
|
}
|
|
5665
5664
|
],
|
|
@@ -5675,7 +5674,7 @@
|
|
|
5675
5674
|
"arguments": [
|
|
5676
5675
|
{
|
|
5677
5676
|
"name": "argument",
|
|
5678
|
-
"type": "[modelValue:
|
|
5677
|
+
"type": "[modelValue: unknown]"
|
|
5679
5678
|
}
|
|
5680
5679
|
]
|
|
5681
5680
|
}
|
|
@@ -5694,43 +5693,42 @@
|
|
|
5694
5693
|
},
|
|
5695
5694
|
"attributes": [
|
|
5696
5695
|
{
|
|
5697
|
-
"name": "
|
|
5696
|
+
"name": "model-value",
|
|
5698
5697
|
"description": "",
|
|
5699
5698
|
"required": false,
|
|
5700
|
-
"default": "false",
|
|
5701
5699
|
"value": {
|
|
5702
5700
|
"kind": "expression",
|
|
5703
|
-
"type": "
|
|
5701
|
+
"type": "unknown"
|
|
5704
5702
|
}
|
|
5705
5703
|
},
|
|
5706
5704
|
{
|
|
5707
|
-
"name": "
|
|
5705
|
+
"name": "inline",
|
|
5708
5706
|
"description": "",
|
|
5709
5707
|
"required": false,
|
|
5710
|
-
"default": "
|
|
5708
|
+
"default": "false",
|
|
5711
5709
|
"value": {
|
|
5712
5710
|
"kind": "expression",
|
|
5713
|
-
"type": "
|
|
5711
|
+
"type": "boolean | undefined"
|
|
5714
5712
|
}
|
|
5715
5713
|
},
|
|
5716
5714
|
{
|
|
5717
|
-
"name": "
|
|
5715
|
+
"name": "label",
|
|
5718
5716
|
"description": "",
|
|
5719
5717
|
"required": false,
|
|
5720
|
-
"default": "
|
|
5718
|
+
"default": "''",
|
|
5721
5719
|
"value": {
|
|
5722
5720
|
"kind": "expression",
|
|
5723
|
-
"type": "
|
|
5721
|
+
"type": "string | undefined"
|
|
5724
5722
|
}
|
|
5725
5723
|
},
|
|
5726
5724
|
{
|
|
5727
|
-
"name": "
|
|
5725
|
+
"name": "hint",
|
|
5728
5726
|
"description": "",
|
|
5729
5727
|
"required": false,
|
|
5730
5728
|
"default": "''",
|
|
5731
5729
|
"value": {
|
|
5732
5730
|
"kind": "expression",
|
|
5733
|
-
"type": "
|
|
5731
|
+
"type": "string | undefined"
|
|
5734
5732
|
}
|
|
5735
5733
|
},
|
|
5736
5734
|
{
|
|
@@ -5754,43 +5752,43 @@
|
|
|
5754
5752
|
}
|
|
5755
5753
|
},
|
|
5756
5754
|
{
|
|
5757
|
-
"name": "
|
|
5755
|
+
"name": "hide-details",
|
|
5758
5756
|
"description": "",
|
|
5759
5757
|
"required": false,
|
|
5760
|
-
"default": "
|
|
5758
|
+
"default": "false",
|
|
5761
5759
|
"value": {
|
|
5762
5760
|
"kind": "expression",
|
|
5763
|
-
"type": "
|
|
5761
|
+
"type": "boolean | undefined"
|
|
5764
5762
|
}
|
|
5765
5763
|
},
|
|
5766
5764
|
{
|
|
5767
|
-
"name": "
|
|
5765
|
+
"name": "disabled",
|
|
5768
5766
|
"description": "",
|
|
5769
5767
|
"required": false,
|
|
5770
|
-
"default": "
|
|
5768
|
+
"default": "false",
|
|
5771
5769
|
"value": {
|
|
5772
5770
|
"kind": "expression",
|
|
5773
|
-
"type": "
|
|
5771
|
+
"type": "boolean | undefined"
|
|
5774
5772
|
}
|
|
5775
5773
|
},
|
|
5776
5774
|
{
|
|
5777
|
-
"name": "
|
|
5775
|
+
"name": "color",
|
|
5778
5776
|
"description": "",
|
|
5779
5777
|
"required": false,
|
|
5780
|
-
"default": "
|
|
5778
|
+
"default": "undefined",
|
|
5781
5779
|
"value": {
|
|
5782
5780
|
"kind": "expression",
|
|
5783
|
-
"type": "
|
|
5781
|
+
"type": "ContextColorsType | undefined"
|
|
5784
5782
|
}
|
|
5785
5783
|
},
|
|
5786
5784
|
{
|
|
5787
|
-
"name": "
|
|
5785
|
+
"name": "size",
|
|
5788
5786
|
"description": "",
|
|
5789
5787
|
"required": false,
|
|
5790
|
-
"default": "
|
|
5788
|
+
"default": "undefined",
|
|
5791
5789
|
"value": {
|
|
5792
5790
|
"kind": "expression",
|
|
5793
|
-
"type": "
|
|
5791
|
+
"type": "'sm' | 'lg' | undefined"
|
|
5794
5792
|
}
|
|
5795
5793
|
}
|
|
5796
5794
|
],
|
|
@@ -5802,7 +5800,7 @@
|
|
|
5802
5800
|
"arguments": [
|
|
5803
5801
|
{
|
|
5804
5802
|
"name": "argument",
|
|
5805
|
-
"type": "[
|
|
5803
|
+
"type": "[modelValue: unknown]"
|
|
5806
5804
|
}
|
|
5807
5805
|
]
|
|
5808
5806
|
}
|