@v1nt1248/3nclient-lib 0.0.37 → 0.0.39
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/components/ui3n-badge-simple.vue.d.ts +4 -1
- package/dist/components/ui3n-badge.vue.d.ts +4 -1
- package/dist/components/ui3n-button.vue.d.ts +4 -1
- package/dist/components/ui3n-checkbox.vue.d.ts +6 -3
- package/dist/components/ui3n-chip.vue.d.ts +5 -2
- package/dist/components/ui3n-dialog.vue.d.ts +1 -1
- package/dist/components/ui3n-drop-files.vue.d.ts +1 -1
- package/dist/components/ui3n-emoji.vue.d.ts +4 -1
- package/dist/components/ui3n-icon.vue.d.ts +1 -1
- package/dist/components/ui3n-input.vue.d.ts +1 -1
- package/dist/components/ui3n-list.vue.d.ts +6 -3
- package/dist/components/ui3n-menu.vue.d.ts +5 -2
- package/dist/components/ui3n-notification.vue.d.ts +1 -1
- package/dist/components/ui3n-table-sort-icon.vue.d.ts +1 -1
- package/dist/components/ui3n-table.vue.d.ts +1 -1
- package/dist/components/ui3n-tabs.vue.d.ts +4 -1
- package/dist/components/ui3n-text.vue.d.ts +2 -2
- package/dist/components/ui3n-virtual-scroll.vue.d.ts +6 -3
- package/dist/stories/Ui3nBadge.stories.d.ts +60 -96
- package/dist/stories/Ui3nButton.stories.d.ts +77 -113
- package/dist/stories/Ui3nCheckbox.stories.d.ts +100 -140
- package/dist/stories/Ui3nChip.stories.d.ts +300 -420
- package/dist/stories/Ui3nDialog.stories.d.ts +1 -1
- package/dist/stories/Ui3nDropFiles.stories.d.ts +32 -67
- package/dist/stories/Ui3nEmoji.stories.d.ts +1 -1
- package/dist/stories/Ui3nIcon.stories.d.ts +1 -1
- package/dist/stories/Ui3nInput.stories.d.ts +6 -6
- package/dist/stories/Ui3nList.stories.d.ts +3 -3
- package/dist/stories/Ui3nTabs.stories.d.ts +91 -130
- package/dist/style.css +1 -1
- package/dist/ui-3n-lib.js +2706 -2716
- package/package.json +38 -37
- package/src/components/ui3n-button.vue +8 -5
- package/src/components/ui3n-dialog.vue +12 -2
|
@@ -20,7 +20,7 @@ export declare const Default: StoryFn<import("vue").DefineComponent<{
|
|
|
20
20
|
confirm: (value?: any) => void;
|
|
21
21
|
cancel: (value?: any) => void;
|
|
22
22
|
"click-overlay": (value?: any) => void;
|
|
23
|
-
}, string, import("vue").
|
|
23
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
24
24
|
component: {
|
|
25
25
|
type: import("vue").PropType<import("vue").Component>;
|
|
26
26
|
required: true;
|
|
@@ -3,75 +3,40 @@ import Ui3nDropFiles from '../components/ui3n-drop-files.vue';
|
|
|
3
3
|
declare const meta: Meta<typeof Ui3nDropFiles>;
|
|
4
4
|
export default meta;
|
|
5
5
|
export declare const Default: StoryFn<{
|
|
6
|
-
new (...args: any[]): {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
$props: Partial<{}> & Omit<{
|
|
10
|
-
readonly title?: string | undefined;
|
|
11
|
-
readonly text?: string | undefined;
|
|
12
|
-
readonly additionalText?: string | undefined;
|
|
13
|
-
onSelect?: ((fileList: FileList) => any) | undefined;
|
|
14
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
-
title: {
|
|
16
|
-
type: import("vue").PropType<string>;
|
|
17
|
-
};
|
|
18
|
-
text: {
|
|
19
|
-
type: import("vue").PropType<string>;
|
|
20
|
-
};
|
|
21
|
-
additionalText: {
|
|
22
|
-
type: import("vue").PropType<string>;
|
|
23
|
-
};
|
|
24
|
-
}>> & {
|
|
25
|
-
onSelect?: ((fileList: FileList) => any) | undefined;
|
|
26
|
-
}, never>;
|
|
27
|
-
$attrs: {
|
|
28
|
-
[x: string]: unknown;
|
|
6
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
+
title: {
|
|
8
|
+
type: import("vue").PropType<string>;
|
|
29
9
|
};
|
|
30
|
-
|
|
31
|
-
|
|
10
|
+
text: {
|
|
11
|
+
type: import("vue").PropType<string>;
|
|
32
12
|
};
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
}>;
|
|
36
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
37
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
38
|
-
$emit: (event: "select", fileList: FileList) => void;
|
|
39
|
-
$el: any;
|
|
40
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
41
|
-
title: {
|
|
42
|
-
type: import("vue").PropType<string>;
|
|
43
|
-
};
|
|
44
|
-
text: {
|
|
45
|
-
type: import("vue").PropType<string>;
|
|
46
|
-
};
|
|
47
|
-
additionalText: {
|
|
48
|
-
type: import("vue").PropType<string>;
|
|
49
|
-
};
|
|
50
|
-
}>> & {
|
|
51
|
-
onSelect?: ((fileList: FileList) => any) | undefined;
|
|
52
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
53
|
-
select: (fileList: FileList) => void;
|
|
54
|
-
}, string, {}, {}, string, {}> & {
|
|
55
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
56
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
57
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
58
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
59
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
60
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
61
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
62
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
63
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
64
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
65
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
66
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
67
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
68
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
69
|
-
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
13
|
+
additionalText: {
|
|
14
|
+
type: import("vue").PropType<string>;
|
|
70
15
|
};
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
16
|
+
}>> & {
|
|
17
|
+
onSelect?: ((fileList: FileList) => any) | undefined;
|
|
18
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
19
|
+
select: (fileList: FileList) => void;
|
|
20
|
+
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
21
|
+
title: {
|
|
22
|
+
type: import("vue").PropType<string>;
|
|
23
|
+
};
|
|
24
|
+
text: {
|
|
25
|
+
type: import("vue").PropType<string>;
|
|
26
|
+
};
|
|
27
|
+
additionalText: {
|
|
28
|
+
type: import("vue").PropType<string>;
|
|
29
|
+
};
|
|
30
|
+
}>> & {
|
|
31
|
+
onSelect?: ((fileList: FileList) => any) | undefined;
|
|
32
|
+
}, {}, true, {}, {}, {
|
|
33
|
+
P: {};
|
|
34
|
+
B: {};
|
|
35
|
+
D: {};
|
|
36
|
+
C: {};
|
|
37
|
+
M: {};
|
|
38
|
+
Defaults: {};
|
|
39
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
75
40
|
title: {
|
|
76
41
|
type: import("vue").PropType<string>;
|
|
77
42
|
};
|
|
@@ -83,7 +48,7 @@ export declare const Default: StoryFn<{
|
|
|
83
48
|
};
|
|
84
49
|
}>> & {
|
|
85
50
|
onSelect?: ((fileList: FileList) => any) | undefined;
|
|
86
|
-
}
|
|
51
|
+
}, {}, {}, {}, {}, {}>;
|
|
87
52
|
__isFragment?: undefined;
|
|
88
53
|
__isTeleport?: undefined;
|
|
89
54
|
__isSuspense?: undefined;
|
|
@@ -18,7 +18,7 @@ export declare const All: StoryFn<import("vue").DefineComponent<{
|
|
|
18
18
|
};
|
|
19
19
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
20
20
|
click: (value: Event) => void;
|
|
21
|
-
}, string, import("vue").
|
|
21
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
22
22
|
size: {
|
|
23
23
|
type: import("vue").PropType<string | number>;
|
|
24
24
|
default: number;
|
|
@@ -40,7 +40,7 @@ export declare const All: StoryFn<import("vue").DefineComponent<{
|
|
|
40
40
|
};
|
|
41
41
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
42
42
|
click: (value: Event) => void;
|
|
43
|
-
}, string, import("vue").
|
|
43
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
44
44
|
icon: {
|
|
45
45
|
type: import("vue").PropType<string>;
|
|
46
46
|
required: true;
|
|
@@ -40,7 +40,7 @@ export declare const With_label: StoryFn<import("vue").DefineComponent<{
|
|
|
40
40
|
change: (value: string) => void;
|
|
41
41
|
"update:value": (value: string) => void;
|
|
42
42
|
"update:valid": (value: boolean) => void;
|
|
43
|
-
}, string, import("vue").
|
|
43
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
44
44
|
value: {
|
|
45
45
|
type: import("vue").PropType<string>;
|
|
46
46
|
required: true;
|
|
@@ -115,7 +115,7 @@ export declare const With_Placeholder: StoryFn<import("vue").DefineComponent<{
|
|
|
115
115
|
change: (value: string) => void;
|
|
116
116
|
"update:value": (value: string) => void;
|
|
117
117
|
"update:valid": (value: boolean) => void;
|
|
118
|
-
}, string, import("vue").
|
|
118
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
119
119
|
value: {
|
|
120
120
|
type: import("vue").PropType<string>;
|
|
121
121
|
required: true;
|
|
@@ -190,7 +190,7 @@ export declare const Clearable: StoryFn<import("vue").DefineComponent<{
|
|
|
190
190
|
change: (value: string) => void;
|
|
191
191
|
"update:value": (value: string) => void;
|
|
192
192
|
"update:valid": (value: boolean) => void;
|
|
193
|
-
}, string, import("vue").
|
|
193
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
194
194
|
value: {
|
|
195
195
|
type: import("vue").PropType<string>;
|
|
196
196
|
required: true;
|
|
@@ -265,7 +265,7 @@ export declare const With_Icon: StoryFn<import("vue").DefineComponent<{
|
|
|
265
265
|
change: (value: string) => void;
|
|
266
266
|
"update:value": (value: string) => void;
|
|
267
267
|
"update:valid": (value: boolean) => void;
|
|
268
|
-
}, string, import("vue").
|
|
268
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
269
269
|
value: {
|
|
270
270
|
type: import("vue").PropType<string>;
|
|
271
271
|
required: true;
|
|
@@ -340,7 +340,7 @@ export declare const With_Color_Icon: StoryFn<import("vue").DefineComponent<{
|
|
|
340
340
|
change: (value: string) => void;
|
|
341
341
|
"update:value": (value: string) => void;
|
|
342
342
|
"update:valid": (value: boolean) => void;
|
|
343
|
-
}, string, import("vue").
|
|
343
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
344
344
|
value: {
|
|
345
345
|
type: import("vue").PropType<string>;
|
|
346
346
|
required: true;
|
|
@@ -415,7 +415,7 @@ export declare const With_Rule: StoryFn<import("vue").DefineComponent<{
|
|
|
415
415
|
change: (value: string) => void;
|
|
416
416
|
"update:value": (value: string) => void;
|
|
417
417
|
"update:valid": (value: boolean) => void;
|
|
418
|
-
}, string, import("vue").
|
|
418
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
419
419
|
value: {
|
|
420
420
|
type: import("vue").PropType<string>;
|
|
421
421
|
required: true;
|
|
@@ -15,7 +15,7 @@ export declare const Default: StoryFn<(<T extends {
|
|
|
15
15
|
items: T[];
|
|
16
16
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: {
|
|
17
17
|
attrs: any;
|
|
18
|
-
slots: Readonly<import("../components/ui3n-list.vue").Ui3nListSlots<T
|
|
18
|
+
slots: Readonly<import("../components/ui3n-list.vue").Ui3nListSlots<T>> & import("../components/ui3n-list.vue").Ui3nListSlots<T>;
|
|
19
19
|
emit: import("../components/ui3n-list.vue").Ui3nListEmits<T>;
|
|
20
20
|
} | undefined, __VLS_expose?: ((exposed: import("vue").ShallowUnwrapRef<{}>) => void) | undefined, __VLS_setup?: Promise<{
|
|
21
21
|
props: {
|
|
@@ -30,7 +30,7 @@ export declare const Default: StoryFn<(<T extends {
|
|
|
30
30
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
31
31
|
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
32
32
|
attrs: any;
|
|
33
|
-
slots: Readonly<import("../components/ui3n-list.vue").Ui3nListSlots<T
|
|
33
|
+
slots: Readonly<import("../components/ui3n-list.vue").Ui3nListSlots<T>> & import("../components/ui3n-list.vue").Ui3nListSlots<T>;
|
|
34
34
|
emit: import("../components/ui3n-list.vue").Ui3nListEmits<T>;
|
|
35
35
|
}>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
36
36
|
[key: string]: any;
|
|
@@ -48,7 +48,7 @@ export declare const Default: StoryFn<(<T extends {
|
|
|
48
48
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
49
49
|
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
50
50
|
attrs: any;
|
|
51
|
-
slots: Readonly<import("../components/ui3n-list.vue").Ui3nListSlots<T
|
|
51
|
+
slots: Readonly<import("../components/ui3n-list.vue").Ui3nListSlots<T>> & import("../components/ui3n-list.vue").Ui3nListSlots<T>;
|
|
52
52
|
emit: import("../components/ui3n-list.vue").Ui3nListEmits<T>;
|
|
53
53
|
} | undefined;
|
|
54
54
|
})>;
|
|
@@ -3,135 +3,7 @@ import Ui3nTabs from '../components/ui3n-tabs.vue';
|
|
|
3
3
|
declare const meta: Meta<typeof Ui3nTabs>;
|
|
4
4
|
export default meta;
|
|
5
5
|
export declare const Default: StoryFn<{
|
|
6
|
-
new (...args: any[]): {
|
|
7
|
-
$: import("vue").ComponentInternalInstance;
|
|
8
|
-
$data: {};
|
|
9
|
-
$props: Partial<{
|
|
10
|
-
modelValue: number;
|
|
11
|
-
itemDirection: "horizontal" | "vertical";
|
|
12
|
-
activeColor: string;
|
|
13
|
-
inactiveColor: string;
|
|
14
|
-
indicatorColor: string;
|
|
15
|
-
indicatorSize: string | number;
|
|
16
|
-
indicatorPosition: "reverse" | "normal";
|
|
17
|
-
}> & Omit<{
|
|
18
|
-
readonly modelValue: number;
|
|
19
|
-
readonly itemDirection: "horizontal" | "vertical";
|
|
20
|
-
readonly activeColor: string;
|
|
21
|
-
readonly inactiveColor: string;
|
|
22
|
-
readonly indicatorColor: string;
|
|
23
|
-
readonly indicatorSize: string | number;
|
|
24
|
-
readonly indicatorPosition: "reverse" | "normal";
|
|
25
|
-
"onUpdate:modelValue"?: ((val: number) => any) | undefined;
|
|
26
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
27
|
-
modelValue: {
|
|
28
|
-
type: import("vue").PropType<number>;
|
|
29
|
-
required: true;
|
|
30
|
-
default: number;
|
|
31
|
-
};
|
|
32
|
-
itemDirection: {
|
|
33
|
-
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
34
|
-
default: string;
|
|
35
|
-
};
|
|
36
|
-
activeColor: {
|
|
37
|
-
type: import("vue").PropType<string>;
|
|
38
|
-
default: string;
|
|
39
|
-
};
|
|
40
|
-
inactiveColor: {
|
|
41
|
-
type: import("vue").PropType<string>;
|
|
42
|
-
default: string;
|
|
43
|
-
};
|
|
44
|
-
indicatorColor: {
|
|
45
|
-
type: import("vue").PropType<string>;
|
|
46
|
-
default: string;
|
|
47
|
-
};
|
|
48
|
-
indicatorSize: {
|
|
49
|
-
type: import("vue").PropType<string | number>;
|
|
50
|
-
default: number;
|
|
51
|
-
};
|
|
52
|
-
indicatorPosition: {
|
|
53
|
-
type: import("vue").PropType<"reverse" | "normal">;
|
|
54
|
-
default: string;
|
|
55
|
-
};
|
|
56
|
-
}>> & {
|
|
57
|
-
"onUpdate:modelValue"?: ((val: number) => any) | undefined;
|
|
58
|
-
}, "modelValue" | "itemDirection" | "activeColor" | "inactiveColor" | "indicatorColor" | "indicatorSize" | "indicatorPosition">;
|
|
59
|
-
$attrs: {
|
|
60
|
-
[x: string]: unknown;
|
|
61
|
-
};
|
|
62
|
-
$refs: {
|
|
63
|
-
[x: string]: unknown;
|
|
64
|
-
};
|
|
65
|
-
$slots: Readonly<{
|
|
66
|
-
[name: string]: import("vue").Slot<any> | undefined;
|
|
67
|
-
}>;
|
|
68
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
69
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
70
|
-
$emit: (event: "update:modelValue", val: number) => void;
|
|
71
|
-
$el: any;
|
|
72
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
73
|
-
modelValue: {
|
|
74
|
-
type: import("vue").PropType<number>;
|
|
75
|
-
required: true;
|
|
76
|
-
default: number;
|
|
77
|
-
};
|
|
78
|
-
itemDirection: {
|
|
79
|
-
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
80
|
-
default: string;
|
|
81
|
-
};
|
|
82
|
-
activeColor: {
|
|
83
|
-
type: import("vue").PropType<string>;
|
|
84
|
-
default: string;
|
|
85
|
-
};
|
|
86
|
-
inactiveColor: {
|
|
87
|
-
type: import("vue").PropType<string>;
|
|
88
|
-
default: string;
|
|
89
|
-
};
|
|
90
|
-
indicatorColor: {
|
|
91
|
-
type: import("vue").PropType<string>;
|
|
92
|
-
default: string;
|
|
93
|
-
};
|
|
94
|
-
indicatorSize: {
|
|
95
|
-
type: import("vue").PropType<string | number>;
|
|
96
|
-
default: number;
|
|
97
|
-
};
|
|
98
|
-
indicatorPosition: {
|
|
99
|
-
type: import("vue").PropType<"reverse" | "normal">;
|
|
100
|
-
default: string;
|
|
101
|
-
};
|
|
102
|
-
}>> & {
|
|
103
|
-
"onUpdate:modelValue"?: ((val: number) => any) | undefined;
|
|
104
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
105
|
-
"update:modelValue": (val: number) => void;
|
|
106
|
-
}, string, {
|
|
107
|
-
modelValue: number;
|
|
108
|
-
itemDirection: "horizontal" | "vertical";
|
|
109
|
-
activeColor: string;
|
|
110
|
-
inactiveColor: string;
|
|
111
|
-
indicatorColor: string;
|
|
112
|
-
indicatorSize: string | number;
|
|
113
|
-
indicatorPosition: "reverse" | "normal";
|
|
114
|
-
}, {}, string, {}> & {
|
|
115
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
116
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
117
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
118
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
119
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
120
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
121
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
122
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
123
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
124
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
125
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
126
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
127
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
128
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
129
|
-
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
130
|
-
};
|
|
131
|
-
$forceUpdate: () => void;
|
|
132
|
-
$nextTick: typeof import("vue").nextTick;
|
|
133
|
-
$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> | undefined): import("vue").WatchStopHandle;
|
|
134
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
6
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
135
7
|
modelValue: {
|
|
136
8
|
type: import("vue").PropType<number>;
|
|
137
9
|
required: true;
|
|
@@ -163,7 +35,96 @@ export declare const Default: StoryFn<{
|
|
|
163
35
|
};
|
|
164
36
|
}>> & {
|
|
165
37
|
"onUpdate:modelValue"?: ((val: number) => any) | undefined;
|
|
166
|
-
}
|
|
38
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
39
|
+
"update:modelValue": (val: number) => void;
|
|
40
|
+
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
41
|
+
modelValue: {
|
|
42
|
+
type: import("vue").PropType<number>;
|
|
43
|
+
required: true;
|
|
44
|
+
default: number;
|
|
45
|
+
};
|
|
46
|
+
itemDirection: {
|
|
47
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
48
|
+
default: string;
|
|
49
|
+
};
|
|
50
|
+
activeColor: {
|
|
51
|
+
type: import("vue").PropType<string>;
|
|
52
|
+
default: string;
|
|
53
|
+
};
|
|
54
|
+
inactiveColor: {
|
|
55
|
+
type: import("vue").PropType<string>;
|
|
56
|
+
default: string;
|
|
57
|
+
};
|
|
58
|
+
indicatorColor: {
|
|
59
|
+
type: import("vue").PropType<string>;
|
|
60
|
+
default: string;
|
|
61
|
+
};
|
|
62
|
+
indicatorSize: {
|
|
63
|
+
type: import("vue").PropType<string | number>;
|
|
64
|
+
default: number;
|
|
65
|
+
};
|
|
66
|
+
indicatorPosition: {
|
|
67
|
+
type: import("vue").PropType<"reverse" | "normal">;
|
|
68
|
+
default: string;
|
|
69
|
+
};
|
|
70
|
+
}>> & {
|
|
71
|
+
"onUpdate:modelValue"?: ((val: number) => any) | undefined;
|
|
72
|
+
}, {
|
|
73
|
+
modelValue: number;
|
|
74
|
+
itemDirection: "horizontal" | "vertical";
|
|
75
|
+
activeColor: string;
|
|
76
|
+
inactiveColor: string;
|
|
77
|
+
indicatorColor: string;
|
|
78
|
+
indicatorSize: string | number;
|
|
79
|
+
indicatorPosition: "reverse" | "normal";
|
|
80
|
+
}, true, {}, {}, {
|
|
81
|
+
P: {};
|
|
82
|
+
B: {};
|
|
83
|
+
D: {};
|
|
84
|
+
C: {};
|
|
85
|
+
M: {};
|
|
86
|
+
Defaults: {};
|
|
87
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
88
|
+
modelValue: {
|
|
89
|
+
type: import("vue").PropType<number>;
|
|
90
|
+
required: true;
|
|
91
|
+
default: number;
|
|
92
|
+
};
|
|
93
|
+
itemDirection: {
|
|
94
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
95
|
+
default: string;
|
|
96
|
+
};
|
|
97
|
+
activeColor: {
|
|
98
|
+
type: import("vue").PropType<string>;
|
|
99
|
+
default: string;
|
|
100
|
+
};
|
|
101
|
+
inactiveColor: {
|
|
102
|
+
type: import("vue").PropType<string>;
|
|
103
|
+
default: string;
|
|
104
|
+
};
|
|
105
|
+
indicatorColor: {
|
|
106
|
+
type: import("vue").PropType<string>;
|
|
107
|
+
default: string;
|
|
108
|
+
};
|
|
109
|
+
indicatorSize: {
|
|
110
|
+
type: import("vue").PropType<string | number>;
|
|
111
|
+
default: number;
|
|
112
|
+
};
|
|
113
|
+
indicatorPosition: {
|
|
114
|
+
type: import("vue").PropType<"reverse" | "normal">;
|
|
115
|
+
default: string;
|
|
116
|
+
};
|
|
117
|
+
}>> & {
|
|
118
|
+
"onUpdate:modelValue"?: ((val: number) => any) | undefined;
|
|
119
|
+
}, {}, {}, {}, {}, {
|
|
120
|
+
modelValue: number;
|
|
121
|
+
itemDirection: "horizontal" | "vertical";
|
|
122
|
+
activeColor: string;
|
|
123
|
+
inactiveColor: string;
|
|
124
|
+
indicatorColor: string;
|
|
125
|
+
indicatorSize: string | number;
|
|
126
|
+
indicatorPosition: "reverse" | "normal";
|
|
127
|
+
}>;
|
|
167
128
|
__isFragment?: undefined;
|
|
168
129
|
__isTeleport?: undefined;
|
|
169
130
|
__isSuspense?: undefined;
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.ui3n-button[data-v-30734a5d]{--ui3n-button-text-size: 12px;--ui3n-button-text-height: 16px;--ui3n-button-text-color: var(--system-white, #fff);--ui3n-button-background: var(--blue-main, #0090ec);--ui3n-button-padding-vert: 8px;--ui3n-button-padding-horiz: 16px;display:flex;justify-content:center;align-items:center;border:none;outline:none;padding:var(--ui3n-button-padding-vert) var(--ui3n-button-padding-horiz);border-radius:4px;background:var(--ui3n-button-background);font-size:var(--ui3n-button-text-size);line-height:var(--ui3n-button-text-height);font-weight:600;color:var(--ui3n-button-text-color);-webkit-user-select:none;user-select:none;background-position:center;transition:background .5s ease-in-out}.ui3n-button--round[data-v-30734a5d]{--ui3n-button-padding-vert: 6px;--ui3n-button-padding-horiz: 6px;border-radius:50%}.ui3n-button--elevation[data-v-30734a5d]{box-shadow:0 2px 1px -1px var(--shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 1px 1px 0 var(--shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 3px 0 var(--shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.ui3n-button[data-v-30734a5d]:not([disabled]):hover{box-shadow:0 0 4px var(--shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.ui3n-button:not([disabled]):hover .ui3n-button__icon[data-v-30734a5d],.ui3n-button:not([disabled]):hover .ui3n-button__text[data-v-30734a5d]{opacity:1}.ui3n-button__icon[data-v-30734a5d]{opacity:.85;transition:opacity .2s ease-in-out}.ui3n-button__text[data-v-30734a5d]{display:block;opacity:.85;transition:opacity .2s ease-in-out}.ui3n-button__text--margin[data-v-30734a5d]{margin-left:4px}.ui3n-button[disabled][data-v-30734a5d]{opacity:.7}.ui3n-button:not(.ui3n-button--round) .ui3n-button__icon[data-v-30734a5d],.ui3n-button:not(.ui3n-button--round) .ui3n-button__text[data-v-30734a5d]{pointer-events:none}.ui3n-button[data-v-30734a5d]:not([disabled]){cursor:pointer}.ui3n-button[data-v-30734a5d]:not([disabled]):hover{background:var(--ui3n-button-background) radial-gradient(circle,transparent 1%,var(--ui3n-button-background) 1%) center/15000%}.ui3n-button[data-v-30734a5d]:not([disabled]):active{opacity:1;background-color:var(--black-30, #b3b3b3);background-size:100%;transition:background 0s}.ui3n-notification[data-v-436fa887]{display:flex;position:relative;z-index:5000;border-radius:var(--half-size, 4px);padding:var(--base-size, 8px);max-width:400px;margin-bottom:var(--base-size)}.ui3n-notification--with-icon[data-v-436fa887]{display:flex;justify-content:flex-start;align-items:center}.ui3n-notification--with-icon .ui3n-notification__content[data-v-436fa887]{padding-left:var(--base-size, 8px)}.ui3n-notification__content[data-v-436fa887]{position:relative;flex-grow:2;font-size:var(--font-13, 13px);font-weight:400;line-height:1.5;color:var(--system-white, #fff)}.ui3n-notification__close[data-v-436fa887]{position:absolute;z-index:1;top:0;right:0}.ui3n-notification--success[data-v-436fa887]{background-color:#10c48f}.ui3n-notification--warning[data-v-436fa887]{background-color:#f80}.ui3n-notification--info[data-v-436fa887]{background-color:#10afef}.ui3n-notification--error[data-v-436fa887]{background-color:#ef5350}.ui3n-notification--left[data-v-436fa887]{margin-left:0;margin-right:auto}.ui3n-notification--center[data-v-436fa887]{margin-left:auto;margin-right:auto}.ui3n-notification--right[data-v-436fa887]{margin-left:auto;margin-right:0}.ui3n-dialog__overlay{position:fixed;z-index:1000;top:0;right:0;bottom:0;left:0;display:flex;justify-content:center;align-items:center;background-color:#0006}.ui3n-dialog{--dialog-border-radius: 8px;--dialog-title-padding: 16px 24px 16px;--dialog-title-font-size: 14px;--dialog-actions-padding: 16px;--dialog-confirm-button-color: var(--system-white, #fff);--dialog-cancel-button-color: var(--blue-main, #0090ec);--dialog-confirm-background-color: var(--blue-main, #0090ec);--dialog-cancel-background-color: var(--system-white, #fff);position:relative;display:flex;flex-direction:column;height:auto;max-height:95%;background-color:var(--system-white, #fff);border-radius:var(--dialog-border-radius);box-shadow:0 2px 1px -1px var(--shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 1px 1px 0 var(--shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 3px 0 var(--shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.ui3n-dialog__title{padding:var(--dialog-title-padding);font-size:var(--dialog-title-font-size);font-weight:600;line-height:1.3;color:var(--black-90, #212121);border-bottom:1px solid var(--grey-50, #f2f2f2);max-width:100%;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.ui3n-dialog__close{position:absolute;right:4px;top:4px}.ui3n-dialog__content{flex-grow:2;overflow-y:auto}.ui3n-dialog__actions{padding:var(--dialog-actions-padding);display:flex;justify-content:flex-end;align-items:center}.ui3n-dialog__actions--both .ui3n-button{margin-left:8px}.ui3n-chip[data-v-9724bd82]{position:relative;height:var(--58a8ea39);padding:0 var(--5c8b053f);width:max-content;max-width:var(--1e9bb354);background-color:var(--ff364168);display:flex;justify-content:flex-start;align-items:center}.ui3n-chip__body[data-v-9724bd82]{font-size:var(--6a28d140);line-height:1;font-weight:400;color:var(--dcaf3838);overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.ui3n-chip__close[data-v-9724bd82]{margin-left:var(--half-size, 4px)}.ui3n-chip--with-icon .ui3n-chip__icon[data-v-9724bd82]{display:flex;margin-right:5px}.ui3n-chip--round[data-v-9724bd82]{border-radius:calc(var(--58a8ea39) / 2)}.ui3n-chip--closeble[data-v-9724bd82]{min-width:24px;padding-right:0}.ui3n-chip--plain[data-v-9724bd82]{border:1px solid var(--dcaf3838)}.ui3n-chip.ui3n-chip--closable:not(.ui3n-chip--with-icon) .ui3n-chip__body[data-v-9724bd82]{max-width:calc(100% - 24px)}.ui3n-chip.ui3n-chip--with-icon:not(.ui3n-chip--closable) .ui3n-chip__body[data-v-9724bd82]{max-width:calc(100% - var(--58a8ea39) - 5px)}.ui3n-chip.ui3n-chip--closable.ui3n-chip--with-icon .ui3n-chip__body[data-v-9724bd82]{max-width:calc(100% - var(--58a8ea39) - 29px)}.ui3n-drop-files[data-v-0210fe5c]{--dropzone-height: 0;--dropzone-title-font: 0;position:relative;box-sizing:border-box;width:100%;height:100%}.ui3n-drop-files__dropzone[data-v-0210fe5c]{box-sizing:border-box;position:absolute;background-color:var(--system-white, #fff);display:flex;flex-direction:column;justify-content:center;align-items:center;inset:var(--half-size, 4px) var(--base-size, 8px);border-radius:var(--base-size, 8px);z-index:5}.ui3n-drop-files__dropzone-border[data-v-0210fe5c]{box-sizing:border-box;position:absolute;top:calc(var(--base-size, 8px) + 1px);bottom:calc(var(--base-size, 8px) + 1px);left:calc(var(--base-size, 8px) + 1px);right:calc(var(--base-size, 8px) + 1px);border-radius:var(--base-size, 8px);border:2px dashed var(--gray-50, #f2f2f2);pointer-events:none}.ui3n-drop-files__dropzone-title[data-v-0210fe5c]{margin:0 0 var(--dropzone-title-font);font-size:var(--dropzone-title-font);font-weight:600;color:var(--black-30, #b3b3b3);pointer-events:none}.ui3n-drop-files__dropzone-icon[data-v-0210fe5c]{position:relative;width:calc(var(--dropzone-height) * .4);height:calc(var(--dropzone-height) * .4);border-radius:50%;background-color:var(--gray-50, #f2f2f2);display:flex;justify-content:center;align-items:center;pointer-events:none}.ui3n-drop-files__dropzone-text[data-v-0210fe5c]{margin-top:calc(var(--base-size, 8px) * 3);font-size:var(--font-12, 12px);line-height:var(--font-16, 16px);font-weight:400;color:var(--black-30, #b3b3b3)}.ui3n-drop-files__dropzone-additional[data-v-0210fe5c]{margin-top:var(--half-size, 4px);font-size:var(--font-12, 12px);font-weight:500;color:var(--black-90, #212121)}.ui3n-emoji[data-v-f39ee37a]{--emoji-size: 16px;display:flex;width:var(--emoji-size);height:var(--emoji-size);font-size:var(--emoji-size);justify-content:center;align-items:center;cursor:pointer}.ui3n-emoji--readonly[data-v-f39ee37a]{cursor:default}.ui3n-input[data-v-7a07d4ee]{--ui3n-input-height: calc(var(--base-size, 8px) * 4);--ui3n-input-padding-left: var(--base-size, 8px);--ui3n-input-padding-right: var(--base-size, 8px);position:relative;width:100%}.ui3n-input__label[data-v-7a07d4ee]{display:block;width:100%;font-size:var(--font-12, 12px);line-height:var(--font-16, 16px);font-weight:600;color:var(--black-90, #212121);margin-bottom:var(--half-size, 4px)}.ui3n-input__input[data-v-7a07d4ee]{display:block;box-sizing:border-box;width:100%;position:relative;border:none;outline:none;height:var(--ui3n-input-height);padding:0 var(--ui3n-input-padding-right) 0 var(--ui3n-input-padding-left);border-radius:var(--half-size, 4px);background-color:var(--gray-50, #f2f2f2);font-size:var(--font-13, 13px);font-weight:400;line-height:1;color:var(--black-90, #212121)}.ui3n-input__input[data-v-7a07d4ee]::placeholder{color:var(--black-30, #b3b3b3);font-style:italic;font-size:var(--font-13, 13px);font-weight:400}.ui3n-input__input[data-v-7a07d4ee]:focus-within{background-color:var(--blue-main-20, #d8edfd)}.ui3n-input__icon[data-v-7a07d4ee]{position:absolute;left:var(--half-size, 4px);top:calc((var(--ui3n-input-height) - 16px) / 2)}.ui3n-input__clear-btn[data-v-7a07d4ee]{position:absolute;right:0;top:calc((var(--ui3n-input-height) - 28px) / 2)}.ui3n-input__error-text[data-v-7a07d4ee]{font-style:italic;font-size:var(--font-10, 10px);font-weight:400;line-height:1.5;color:var(--pear-100, #f75d53)}.ui3n-input--clearable[data-v-7a07d4ee]{--ui3n-input-padding-right: calc(var(--base-size, 8px) * 3)}.ui3n-input--with-icon[data-v-7a07d4ee]{--ui3n-input-padding-left: calc(var(--base-size, 8px) * 3)}.ui3n-input--error[data-v-7a07d4ee]{--ui3n-input-padding-left: calc(var(--base-size, 8px) - 1px);--ui3n-input-padding-right: calc(var(--base-size, 8px) - 1px)}.ui3n-input--error .ui3n-input__input[data-v-7a07d4ee]{border:1px solid var(--pear-100, #f75d53)}.ui3n-input--error.ui3n-input--clearable[data-v-7a07d4ee]{--ui3n-input-padding-right: calc(var(--base-size, 8px) * 2 - 1px)}.ui3n-input--error.ui3n-input--with-icon[data-v-7a07d4ee]{--ui3n-input-padding-left: calc(var(--base-size, 8px) * 2 - 1px)}.ui3n-input--disabled[data-v-7a07d4ee]{pointer-events:none;-webkit-user-select:none;user-select:none;opacity:.5}.ui3n-input--with-label .ui3n-input__icon[data-v-7a07d4ee]{top:calc((var(--ui3n-input-height) - 16px) / 2 + 20px)}.ui3n-input--with-label .ui3n-input__clear-btn[data-v-7a07d4ee]{top:calc((var(--ui3n-input-height) - 28px) / 2 + 20px)}.ui3n-text[data-v-33487f04]{position:relative;width:100%}.ui3n-text__label[data-v-33487f04]{display:block;width:100%;font-size:var(--font-12, 12px);font-weight:600;color:var(--black-90, #212121);margin-bottom:calc(var(--base-size, 8px) / 2)}.ui3n-text__body[data-v-33487f04]{position:relative;width:100%;padding:var(--base-size, 8px) 0;background-color:var(--gray-50, #f2f2f2);border-radius:4px}.ui3n-text__content[data-v-33487f04]{resize:none;display:block;box-sizing:border-box;position:relative;width:100%;border-radius:4px;background-color:var(--gray-50, #f2f2f2);padding:0 var(--base-size, 8px);font-family:OpenSans,sans-serif;font-size:var(--font-13, 13px);font-weight:400;line-height:var(--font-16, 16px);color:var(--black-90, #212121);border:none}.ui3n-text__content[data-v-33487f04]::placeholder{font-size:var(--font-13, 13px);font-weight:300;font-style:italic;color:var(--gray-90, #212121)}.ui3n-text--disabled[data-v-33487f04]{pointer-events:none;-webkit-user-select:none;user-select:none;opacity:.5}.ui3n-text--focused .ui3n-text__body[data-v-33487f04],.ui3n-text--focused .ui3n-text__content[data-v-33487f04]{background-color:var(--blue-main-20, #d8edfd);outline:none;border:none}.ui3n-checkbox[data-v-d377a283]{--ui3n-checkbox-size: 16px;--ui3n-checkbox-text-size: 12px;--ui3n-checkbox-text-color: var(--black-90, #212121);--ui3n-checkbox-text-weight: 500;position:relative;display:flex;justify-content:flex-start;align-items:center}.ui3n-checkbox__wrapper[data-v-d377a283]{position:relative;display:flex;width:calc(var(--ui3n-checkbox-size) * 1.5);height:calc(var(--ui3n-checkbox-size) * 1.5);justify-content:center;align-items:center;border-radius:50%;cursor:pointer;background-position:center;transition:background .5s ease-in-out}.ui3n-checkbox__wrapper[data-v-d377a283]:not([disabled]){cursor:pointer}.ui3n-checkbox__wrapper[data-v-d377a283]:not([disabled]):hover{background:transparent radial-gradient(circle,transparent 1%,transparent 1%) center/15000%}.ui3n-checkbox__wrapper[data-v-d377a283]:not([disabled]):active{opacity:1;background-color:var(--black-30, #b3b3b3);background-size:100%;transition:background 0s}.ui3n-checkbox__label[data-v-d377a283]{font-size:var(--ui3n-checkbox-text-size);font-weight:var(--ui3n-checkbox-text-weight);color:var(--ui3n-checkbox-text-color);-webkit-user-select:none;user-select:none;cursor:pointer}.ui3n-checkbox--disabled[data-v-d377a283]{pointer-events:none;opacity:.5}.ui3n-table[data-v-5a78ec1c]{--table-header-height: 36px;--table-row-height: 28px;position:relative;width:100%;height:100%;overflow-x:hidden;overflow-y:auto}.ui3n-table__header[data-v-5a78ec1c]{position:sticky;top:0;display:flex;width:100%;height:var(--table-header-height);justify-content:flex-start;align-items:center;padding:0 calc(var(--base-size) * 2);background-color:var(--gray-50)}.ui3n-table__header-cell[data-v-5a78ec1c]{display:flex;justify-content:flex-start;align-items:center;font-size:var(--font-13);line-height:var(--font-18);font-weight:500;color:var(--black-90)}.ui3n-table__header-cell--sortable[data-v-5a78ec1c]{cursor:pointer}.ui3n-table__header-text[data-v-5a78ec1c]{display:block;position:relative;max-width:100%;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.ui3n-table__item[data-v-5a78ec1c]{display:flex;width:100%;height:var(--table-row-height);justify-content:flex-start;align-items:center;padding:0 calc(var(--base-size) * 2) 0 calc(var(--base-size) * 5);cursor:pointer;border-bottom:1px solid var(--gray-50)}.ui3n-table__item-bookmark[data-v-5a78ec1c],.ui3n-table__item-rename[data-v-5a78ec1c]{display:none;position:absolute;z-index:1;color:var(--black-30)}.ui3n-table__item-bookmark[data-v-5a78ec1c]{left:2px}.ui3n-table__item-rename[data-v-5a78ec1c]{right:calc(var(--base-size) * 13 + 24px)}.ui3n-table__item-icon[data-v-5a78ec1c]{position:absolute;left:calc(var(--base-size) * 2);color:var(--black-30);pointer-events:none}.ui3n-table__item-cell[data-v-5a78ec1c]{position:relative;font-weight:400;pointer-events:none}.ui3n-table__item[data-v-5a78ec1c]:hover{background-color:var(--blue-main-30)}.ui3n-table__item:hover .ui3n-table__item-bookmark[data-v-5a78ec1c],.ui3n-table__item:hover .ui3n-table__item-rename[data-v-5a78ec1c]{display:block}.ui3n-table__item:hover .ui3n-table__item-icon[data-v-5a78ec1c]{color:var(--blue-main)}.ui3n-table__name[data-v-5a78ec1c]{flex:1 0}.ui3n-table__name.ui3n-table__item-cell[data-v-5a78ec1c]{font-size:var(--font-12)}.ui3n-table__type[data-v-5a78ec1c]{width:calc(var(--base-size) * 7);text-align:center}.ui3n-table__type.ui3n-table__item-cell[data-v-5a78ec1c]{font-size:var(--font-10)}.ui3n-table__changedAt[data-v-5a78ec1c]{width:calc(var(--base-size) * 13)}.ui3n-table__changedAt.ui3n-table__item-cell[data-v-5a78ec1c]{font-size:var(--font-11)}.ui3n-table__empty[data-v-5a78ec1c]{font-size:var(--font-20);font-style:italic;color:var(--black-30);text-align:center;padding-top:calc(var(--base-size) * 10)}.ui3n-menu[data-v-c9616aad]{--menu-animation-duration: .4s;position:relative;overflow:visible}.ui3n-menu .menu-enter-active[data-v-c9616aad],.ui3n-menu .menu-leave-active[data-v-c9616aad]{transition:opacity var(--menu-animation-duration)}.ui3n-menu .menu-enter-from[data-v-c9616aad],.ui3n-menu .menu-leave-to[data-v-c9616aad]{opacity:0}.ui3n-menu__trigger[data-v-c9616aad]{position:relative}.ui3n-menu__content[data-v-c9616aad]{position:absolute;border-radius:4px;background-color:var(--system-white, #fff);z-index:1000;box-shadow:0 3px 3px -2px var(--shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 3px 4px 0 var(--shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 8px 0 var(--shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.ui3n-list[data-v-9aff363c]{--ui3n-list-item-height: 28px;--ui3n-list-bg-color: var(--system-white, #fff);position:relative;width:100%;height:100%;background-color:var(--ui3n-list-bg-color);display:flex;flex-direction:column;justify-content:flex-start;align-items:stretch}.ui3n-list__title[data-v-9aff363c]{position:relative;top:0;z-index:1}.ui3n-list__title--sticky[data-v-9aff363c]{position:sticky}.ui3n-list__content[data-v-9aff363c]{position:relative;flex-grow:1}.ui3n-list__title-content[data-v-9aff363c],.ui3n-list__item[data-v-9aff363c]{position:relative;width:100%;min-height:var(--ui3n-list-item-height);padding:4px 0;display:flex;justify-content:flex-start;align-items:center}.ui3n-list__title-content[data-v-9aff363c]{z-index:1;font-size:16px;font-weight:600;background-color:var(--ui3n-list-bg-color)}.ui3n-list__item-content[data-v-9aff363c]{font-size:14px;font-weight:400;cursor:pointer}.ui3n-list__item-content--disabled[data-v-9aff363c]{pointer-events:none;cursor:default}.ui3n-virtual-scroll[data-v-6a998153]{position:relative;width:100%;height:100%;overflow-y:auto}.ui3n-virtual-scroll__viewport[data-v-6a998153]{position:relative;overflow:hidden;will-change:transform}.ui3n-virtual-scroll__content[data-v-6a998153]{will-change:transform}.ui3n-virtual-scroll__item[data-v-6a998153]{position:relative;min-height:16px}.ui3n-tabs[data-v-ea3e9bad]{--ui3n-tabs-height: 48px;position:relative;height:var(--ui3n-tabs-height);display:flex;justify-content:center;align-items:stretch}.ui3n-tabs[data-v-ea3e9bad] .ui3n-tabs__item{cursor:pointer}.ui3n-tabs[data-v-ea3e9bad] .ui3n-tabs__item.ui3n-tabs__item{position:relative;-webkit-user-select:none;user-select:none;color:var(--77348130);background-position:center;transition:background .5s ease-in-out}.ui3n-tabs[data-v-ea3e9bad] .ui3n-tabs__item.ui3n-tabs__item:hover{background-color:var(--blue-main-20, #d8edfd)}.ui3n-tabs[data-v-ea3e9bad] .ui3n-tabs__item.ui3n-tabs__item:after{position:absolute;content:"";left:0;width:100%;bottom:var(--fb6a93f0);height:var(--61f57740);background-color:transparent;transition:background-color .25s ease-in-out}.ui3n-tabs[data-v-ea3e9bad] .ui3n-tabs__item.ui3n-tabs__item[disabled]{opacity:.5;cursor:default;pointer-events:none}.ui3n-tabs[data-v-ea3e9bad] .ui3n-tabs__item.ui3n-tabs__item:not([disabled]){cursor:pointer}.ui3n-tabs[data-v-ea3e9bad] .ui3n-tabs__item.ui3n-tabs__item:not([disabled]):hover{background:#d8edfd radial-gradient(circle,transparent 1%,#d8edfd 1%) center/15000%}.ui3n-tabs[data-v-ea3e9bad] .ui3n-tabs__item.ui3n-tabs__item:not([disabled]):active{opacity:1;background-color:var(--black-30, #b3b3b3);background-size:100%;transition:background 0s}.ui3n-tabs[data-v-ea3e9bad] .ui3n-tabs__item.ui3n-tabs__item--active{color:var(--24fbb1ad)}.ui3n-tabs[data-v-ea3e9bad] .ui3n-tabs__item.ui3n-tabs__item--active:after{background-color:var(--10c456e4);transition:background-color .25s ease-in-out}.ui3n-tabs--vertical[data-v-ea3e9bad]{height:auto;flex-direction:column}.ui3n-tabs--vertical[data-v-ea3e9bad] .ui3n-tabs__item.ui3n-tabs__item:after{left:var(--fb6a93f0);width:var(--61f57740);bottom:0;height:100%}.ui3n-badge-simple[data-v-ed52e72c]{--ui3n-badge-size: 20px;position:relative;box-sizing:border-box;background-color:var(--5b2d62a4);outline:1px var(--system-white, #fff) solid}.ui3n-badge-simple__dot[data-v-ed52e72c]{min-width:8px;width:8px;max-width:8px;min-height:8px;height:8px;max-height:8px;border-radius:50%}.ui3n-badge-simple__text[data-v-ed52e72c]{display:block;color:var(--1556b001);font-size:12px;line-height:var(--ui3n-badge-size);text-align:center}.ui3n-badge-simple[data-v-ed52e72c]:not(.ui3n-badge-simple__dot){min-height:var(--ui3n-badge-size);height:var(--ui3n-badge-size);width:max-content;padding:0 6px;border-radius:10px}.ui3n-badge[data-v-40242fbe]{--ui3n-badge-size: 20px;position:relative}.ui3n-badge__wrapper[data-v-40242fbe]{position:relative;width:max-content}.ui3n-badge__content[data-v-40242fbe]{position:absolute;z-index:5}
|
|
1
|
+
.ui3n-button[data-v-ecd91dd9]{--ui3n-button-text-size: 12px;--ui3n-button-text-height: 16px;--ui3n-button-text-color: var(--system-white, #fff);--ui3n-button-background: var(--blue-main, #0090ec);--ui3n-button-padding-vert: 8px;--ui3n-button-padding-horiz: 16px;display:flex;justify-content:center;align-items:center;border:none;outline:none;padding:var(--ui3n-button-padding-vert) var(--ui3n-button-padding-horiz);border-radius:4px;background:var(--ui3n-button-background);font-size:var(--ui3n-button-text-size);line-height:var(--ui3n-button-text-height);font-weight:600;color:var(--ui3n-button-text-color);-webkit-user-select:none;user-select:none;background-position:center;transition:background .5s ease-in-out}.ui3n-button--round[data-v-ecd91dd9]{--ui3n-button-padding-vert: 6px;--ui3n-button-padding-horiz: 6px;border-radius:50%}.ui3n-button--elevation[data-v-ecd91dd9]{box-shadow:0 2px 1px -1px var(--shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 1px 1px 0 var(--shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 3px 0 var(--shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.ui3n-button[data-v-ecd91dd9]:not([disabled]):hover{box-shadow:0 0 4px var(--shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.ui3n-button:not([disabled]):hover .ui3n-button__icon[data-v-ecd91dd9],.ui3n-button:not([disabled]):hover .ui3n-button__text[data-v-ecd91dd9]{opacity:1}.ui3n-button__icon[data-v-ecd91dd9]{opacity:.85;transition:opacity .2s ease-in-out}.ui3n-button__text[data-v-ecd91dd9]{display:flex;opacity:.85;transition:opacity .2s ease-in-out}.ui3n-button__text--margin[data-v-ecd91dd9]{margin-left:4px}.ui3n-button[disabled][data-v-ecd91dd9]{opacity:.7}.ui3n-button:not(.ui3n-button--round) .ui3n-button__icon[data-v-ecd91dd9],.ui3n-button:not(.ui3n-button--round) .ui3n-button__text[data-v-ecd91dd9]{pointer-events:none}.ui3n-button[data-v-ecd91dd9]:not([disabled]){cursor:pointer}.ui3n-button[data-v-ecd91dd9]:not([disabled]):hover{background:var(--ui3n-button-background) radial-gradient(circle,transparent 1%,var(--ui3n-button-background) 1%) center/15000%}.ui3n-button[data-v-ecd91dd9]:not([disabled]):active{opacity:1;background-color:var(--black-30, #b3b3b3);background-size:100%;transition:background 0s}.ui3n-notification[data-v-436fa887]{display:flex;position:relative;z-index:5000;border-radius:var(--half-size, 4px);padding:var(--base-size, 8px);max-width:400px;margin-bottom:var(--base-size)}.ui3n-notification--with-icon[data-v-436fa887]{display:flex;justify-content:flex-start;align-items:center}.ui3n-notification--with-icon .ui3n-notification__content[data-v-436fa887]{padding-left:var(--base-size, 8px)}.ui3n-notification__content[data-v-436fa887]{position:relative;flex-grow:2;font-size:var(--font-13, 13px);font-weight:400;line-height:1.5;color:var(--system-white, #fff)}.ui3n-notification__close[data-v-436fa887]{position:absolute;z-index:1;top:0;right:0}.ui3n-notification--success[data-v-436fa887]{background-color:#10c48f}.ui3n-notification--warning[data-v-436fa887]{background-color:#f80}.ui3n-notification--info[data-v-436fa887]{background-color:#10afef}.ui3n-notification--error[data-v-436fa887]{background-color:#ef5350}.ui3n-notification--left[data-v-436fa887]{margin-left:0;margin-right:auto}.ui3n-notification--center[data-v-436fa887]{margin-left:auto;margin-right:auto}.ui3n-notification--right[data-v-436fa887]{margin-left:auto;margin-right:0}.ui3n-dialog__overlay{position:fixed;z-index:1000;top:0;right:0;bottom:0;left:0;display:flex;justify-content:center;align-items:center;background-color:#0006}.ui3n-dialog{--dialog-border-radius: 8px;--dialog-title-padding: 16px 24px 16px;--dialog-title-font-size: 14px;--dialog-actions-padding: 16px;--dialog-confirm-button-color: var(--system-white, #fff);--dialog-cancel-button-color: var(--blue-main, #0090ec);--dialog-confirm-background-color: var(--blue-main, #0090ec);--dialog-cancel-background-color: var(--system-white, #fff);position:relative;display:flex;flex-direction:column;height:auto;max-height:95%;background-color:var(--system-white, #fff);border-radius:var(--dialog-border-radius);outline:none;box-shadow:0 2px 1px -1px var(--shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 1px 1px 0 var(--shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 3px 0 var(--shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.ui3n-dialog__title{padding:var(--dialog-title-padding);font-size:var(--dialog-title-font-size);font-weight:600;line-height:1.3;color:var(--black-90, #212121);border-bottom:1px solid var(--grey-50, #f2f2f2);max-width:100%;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.ui3n-dialog__close{position:absolute;right:4px;top:4px}.ui3n-dialog__content{flex-grow:2;overflow-y:auto}.ui3n-dialog__actions{padding:var(--dialog-actions-padding);display:flex;justify-content:flex-end;align-items:center}.ui3n-dialog__actions--both .ui3n-button{margin-left:8px}.ui3n-chip[data-v-9724bd82]{position:relative;height:var(--58a8ea39);padding:0 var(--5c8b053f);width:max-content;max-width:var(--1e9bb354);background-color:var(--ff364168);display:flex;justify-content:flex-start;align-items:center}.ui3n-chip__body[data-v-9724bd82]{font-size:var(--6a28d140);line-height:1;font-weight:400;color:var(--dcaf3838);overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.ui3n-chip__close[data-v-9724bd82]{margin-left:var(--half-size, 4px)}.ui3n-chip--with-icon .ui3n-chip__icon[data-v-9724bd82]{display:flex;margin-right:5px}.ui3n-chip--round[data-v-9724bd82]{border-radius:calc(var(--58a8ea39) / 2)}.ui3n-chip--closeble[data-v-9724bd82]{min-width:24px;padding-right:0}.ui3n-chip--plain[data-v-9724bd82]{border:1px solid var(--dcaf3838)}.ui3n-chip.ui3n-chip--closable:not(.ui3n-chip--with-icon) .ui3n-chip__body[data-v-9724bd82]{max-width:calc(100% - 24px)}.ui3n-chip.ui3n-chip--with-icon:not(.ui3n-chip--closable) .ui3n-chip__body[data-v-9724bd82]{max-width:calc(100% - var(--58a8ea39) - 5px)}.ui3n-chip.ui3n-chip--closable.ui3n-chip--with-icon .ui3n-chip__body[data-v-9724bd82]{max-width:calc(100% - var(--58a8ea39) - 29px)}.ui3n-drop-files[data-v-0210fe5c]{--dropzone-height: 0;--dropzone-title-font: 0;position:relative;box-sizing:border-box;width:100%;height:100%}.ui3n-drop-files__dropzone[data-v-0210fe5c]{box-sizing:border-box;position:absolute;background-color:var(--system-white, #fff);display:flex;flex-direction:column;justify-content:center;align-items:center;inset:var(--half-size, 4px) var(--base-size, 8px);border-radius:var(--base-size, 8px);z-index:5}.ui3n-drop-files__dropzone-border[data-v-0210fe5c]{box-sizing:border-box;position:absolute;top:calc(var(--base-size, 8px) + 1px);bottom:calc(var(--base-size, 8px) + 1px);left:calc(var(--base-size, 8px) + 1px);right:calc(var(--base-size, 8px) + 1px);border-radius:var(--base-size, 8px);border:2px dashed var(--gray-50, #f2f2f2);pointer-events:none}.ui3n-drop-files__dropzone-title[data-v-0210fe5c]{margin:0 0 var(--dropzone-title-font);font-size:var(--dropzone-title-font);font-weight:600;color:var(--black-30, #b3b3b3);pointer-events:none}.ui3n-drop-files__dropzone-icon[data-v-0210fe5c]{position:relative;width:calc(var(--dropzone-height) * .4);height:calc(var(--dropzone-height) * .4);border-radius:50%;background-color:var(--gray-50, #f2f2f2);display:flex;justify-content:center;align-items:center;pointer-events:none}.ui3n-drop-files__dropzone-text[data-v-0210fe5c]{margin-top:calc(var(--base-size, 8px) * 3);font-size:var(--font-12, 12px);line-height:var(--font-16, 16px);font-weight:400;color:var(--black-30, #b3b3b3)}.ui3n-drop-files__dropzone-additional[data-v-0210fe5c]{margin-top:var(--half-size, 4px);font-size:var(--font-12, 12px);font-weight:500;color:var(--black-90, #212121)}.ui3n-emoji[data-v-f39ee37a]{--emoji-size: 16px;display:flex;width:var(--emoji-size);height:var(--emoji-size);font-size:var(--emoji-size);justify-content:center;align-items:center;cursor:pointer}.ui3n-emoji--readonly[data-v-f39ee37a]{cursor:default}.ui3n-input[data-v-7a07d4ee]{--ui3n-input-height: calc(var(--base-size, 8px) * 4);--ui3n-input-padding-left: var(--base-size, 8px);--ui3n-input-padding-right: var(--base-size, 8px);position:relative;width:100%}.ui3n-input__label[data-v-7a07d4ee]{display:block;width:100%;font-size:var(--font-12, 12px);line-height:var(--font-16, 16px);font-weight:600;color:var(--black-90, #212121);margin-bottom:var(--half-size, 4px)}.ui3n-input__input[data-v-7a07d4ee]{display:block;box-sizing:border-box;width:100%;position:relative;border:none;outline:none;height:var(--ui3n-input-height);padding:0 var(--ui3n-input-padding-right) 0 var(--ui3n-input-padding-left);border-radius:var(--half-size, 4px);background-color:var(--gray-50, #f2f2f2);font-size:var(--font-13, 13px);font-weight:400;line-height:1;color:var(--black-90, #212121)}.ui3n-input__input[data-v-7a07d4ee]::placeholder{color:var(--black-30, #b3b3b3);font-style:italic;font-size:var(--font-13, 13px);font-weight:400}.ui3n-input__input[data-v-7a07d4ee]:focus-within{background-color:var(--blue-main-20, #d8edfd)}.ui3n-input__icon[data-v-7a07d4ee]{position:absolute;left:var(--half-size, 4px);top:calc((var(--ui3n-input-height) - 16px) / 2)}.ui3n-input__clear-btn[data-v-7a07d4ee]{position:absolute;right:0;top:calc((var(--ui3n-input-height) - 28px) / 2)}.ui3n-input__error-text[data-v-7a07d4ee]{font-style:italic;font-size:var(--font-10, 10px);font-weight:400;line-height:1.5;color:var(--pear-100, #f75d53)}.ui3n-input--clearable[data-v-7a07d4ee]{--ui3n-input-padding-right: calc(var(--base-size, 8px) * 3)}.ui3n-input--with-icon[data-v-7a07d4ee]{--ui3n-input-padding-left: calc(var(--base-size, 8px) * 3)}.ui3n-input--error[data-v-7a07d4ee]{--ui3n-input-padding-left: calc(var(--base-size, 8px) - 1px);--ui3n-input-padding-right: calc(var(--base-size, 8px) - 1px)}.ui3n-input--error .ui3n-input__input[data-v-7a07d4ee]{border:1px solid var(--pear-100, #f75d53)}.ui3n-input--error.ui3n-input--clearable[data-v-7a07d4ee]{--ui3n-input-padding-right: calc(var(--base-size, 8px) * 2 - 1px)}.ui3n-input--error.ui3n-input--with-icon[data-v-7a07d4ee]{--ui3n-input-padding-left: calc(var(--base-size, 8px) * 2 - 1px)}.ui3n-input--disabled[data-v-7a07d4ee]{pointer-events:none;-webkit-user-select:none;user-select:none;opacity:.5}.ui3n-input--with-label .ui3n-input__icon[data-v-7a07d4ee]{top:calc((var(--ui3n-input-height) - 16px) / 2 + 20px)}.ui3n-input--with-label .ui3n-input__clear-btn[data-v-7a07d4ee]{top:calc((var(--ui3n-input-height) - 28px) / 2 + 20px)}.ui3n-text[data-v-33487f04]{position:relative;width:100%}.ui3n-text__label[data-v-33487f04]{display:block;width:100%;font-size:var(--font-12, 12px);font-weight:600;color:var(--black-90, #212121);margin-bottom:calc(var(--base-size, 8px) / 2)}.ui3n-text__body[data-v-33487f04]{position:relative;width:100%;padding:var(--base-size, 8px) 0;background-color:var(--gray-50, #f2f2f2);border-radius:4px}.ui3n-text__content[data-v-33487f04]{resize:none;display:block;box-sizing:border-box;position:relative;width:100%;border-radius:4px;background-color:var(--gray-50, #f2f2f2);padding:0 var(--base-size, 8px);font-family:OpenSans,sans-serif;font-size:var(--font-13, 13px);font-weight:400;line-height:var(--font-16, 16px);color:var(--black-90, #212121);border:none}.ui3n-text__content[data-v-33487f04]::placeholder{font-size:var(--font-13, 13px);font-weight:300;font-style:italic;color:var(--gray-90, #212121)}.ui3n-text--disabled[data-v-33487f04]{pointer-events:none;-webkit-user-select:none;user-select:none;opacity:.5}.ui3n-text--focused .ui3n-text__body[data-v-33487f04],.ui3n-text--focused .ui3n-text__content[data-v-33487f04]{background-color:var(--blue-main-20, #d8edfd);outline:none;border:none}.ui3n-checkbox[data-v-d377a283]{--ui3n-checkbox-size: 16px;--ui3n-checkbox-text-size: 12px;--ui3n-checkbox-text-color: var(--black-90, #212121);--ui3n-checkbox-text-weight: 500;position:relative;display:flex;justify-content:flex-start;align-items:center}.ui3n-checkbox__wrapper[data-v-d377a283]{position:relative;display:flex;width:calc(var(--ui3n-checkbox-size) * 1.5);height:calc(var(--ui3n-checkbox-size) * 1.5);justify-content:center;align-items:center;border-radius:50%;cursor:pointer;background-position:center;transition:background .5s ease-in-out}.ui3n-checkbox__wrapper[data-v-d377a283]:not([disabled]){cursor:pointer}.ui3n-checkbox__wrapper[data-v-d377a283]:not([disabled]):hover{background:transparent radial-gradient(circle,transparent 1%,transparent 1%) center/15000%}.ui3n-checkbox__wrapper[data-v-d377a283]:not([disabled]):active{opacity:1;background-color:var(--black-30, #b3b3b3);background-size:100%;transition:background 0s}.ui3n-checkbox__label[data-v-d377a283]{font-size:var(--ui3n-checkbox-text-size);font-weight:var(--ui3n-checkbox-text-weight);color:var(--ui3n-checkbox-text-color);-webkit-user-select:none;user-select:none;cursor:pointer}.ui3n-checkbox--disabled[data-v-d377a283]{pointer-events:none;opacity:.5}.ui3n-table[data-v-5a78ec1c]{--table-header-height: 36px;--table-row-height: 28px;position:relative;width:100%;height:100%;overflow-x:hidden;overflow-y:auto}.ui3n-table__header[data-v-5a78ec1c]{position:sticky;top:0;display:flex;width:100%;height:var(--table-header-height);justify-content:flex-start;align-items:center;padding:0 calc(var(--base-size) * 2);background-color:var(--gray-50)}.ui3n-table__header-cell[data-v-5a78ec1c]{display:flex;justify-content:flex-start;align-items:center;font-size:var(--font-13);line-height:var(--font-18);font-weight:500;color:var(--black-90)}.ui3n-table__header-cell--sortable[data-v-5a78ec1c]{cursor:pointer}.ui3n-table__header-text[data-v-5a78ec1c]{display:block;position:relative;max-width:100%;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.ui3n-table__item[data-v-5a78ec1c]{display:flex;width:100%;height:var(--table-row-height);justify-content:flex-start;align-items:center;padding:0 calc(var(--base-size) * 2) 0 calc(var(--base-size) * 5);cursor:pointer;border-bottom:1px solid var(--gray-50)}.ui3n-table__item-bookmark[data-v-5a78ec1c],.ui3n-table__item-rename[data-v-5a78ec1c]{display:none;position:absolute;z-index:1;color:var(--black-30)}.ui3n-table__item-bookmark[data-v-5a78ec1c]{left:2px}.ui3n-table__item-rename[data-v-5a78ec1c]{right:calc(var(--base-size) * 13 + 24px)}.ui3n-table__item-icon[data-v-5a78ec1c]{position:absolute;left:calc(var(--base-size) * 2);color:var(--black-30);pointer-events:none}.ui3n-table__item-cell[data-v-5a78ec1c]{position:relative;font-weight:400;pointer-events:none}.ui3n-table__item[data-v-5a78ec1c]:hover{background-color:var(--blue-main-30)}.ui3n-table__item:hover .ui3n-table__item-bookmark[data-v-5a78ec1c],.ui3n-table__item:hover .ui3n-table__item-rename[data-v-5a78ec1c]{display:block}.ui3n-table__item:hover .ui3n-table__item-icon[data-v-5a78ec1c]{color:var(--blue-main)}.ui3n-table__name[data-v-5a78ec1c]{flex:1 0}.ui3n-table__name.ui3n-table__item-cell[data-v-5a78ec1c]{font-size:var(--font-12)}.ui3n-table__type[data-v-5a78ec1c]{width:calc(var(--base-size) * 7);text-align:center}.ui3n-table__type.ui3n-table__item-cell[data-v-5a78ec1c]{font-size:var(--font-10)}.ui3n-table__changedAt[data-v-5a78ec1c]{width:calc(var(--base-size) * 13)}.ui3n-table__changedAt.ui3n-table__item-cell[data-v-5a78ec1c]{font-size:var(--font-11)}.ui3n-table__empty[data-v-5a78ec1c]{font-size:var(--font-20);font-style:italic;color:var(--black-30);text-align:center;padding-top:calc(var(--base-size) * 10)}.ui3n-menu[data-v-c9616aad]{--menu-animation-duration: .4s;position:relative;overflow:visible}.ui3n-menu .menu-enter-active[data-v-c9616aad],.ui3n-menu .menu-leave-active[data-v-c9616aad]{transition:opacity var(--menu-animation-duration)}.ui3n-menu .menu-enter-from[data-v-c9616aad],.ui3n-menu .menu-leave-to[data-v-c9616aad]{opacity:0}.ui3n-menu__trigger[data-v-c9616aad]{position:relative}.ui3n-menu__content[data-v-c9616aad]{position:absolute;border-radius:4px;background-color:var(--system-white, #fff);z-index:1000;box-shadow:0 3px 3px -2px var(--shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 3px 4px 0 var(--shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 8px 0 var(--shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.ui3n-list[data-v-9aff363c]{--ui3n-list-item-height: 28px;--ui3n-list-bg-color: var(--system-white, #fff);position:relative;width:100%;height:100%;background-color:var(--ui3n-list-bg-color);display:flex;flex-direction:column;justify-content:flex-start;align-items:stretch}.ui3n-list__title[data-v-9aff363c]{position:relative;top:0;z-index:1}.ui3n-list__title--sticky[data-v-9aff363c]{position:sticky}.ui3n-list__content[data-v-9aff363c]{position:relative;flex-grow:1}.ui3n-list__title-content[data-v-9aff363c],.ui3n-list__item[data-v-9aff363c]{position:relative;width:100%;min-height:var(--ui3n-list-item-height);padding:4px 0;display:flex;justify-content:flex-start;align-items:center}.ui3n-list__title-content[data-v-9aff363c]{z-index:1;font-size:16px;font-weight:600;background-color:var(--ui3n-list-bg-color)}.ui3n-list__item-content[data-v-9aff363c]{font-size:14px;font-weight:400;cursor:pointer}.ui3n-list__item-content--disabled[data-v-9aff363c]{pointer-events:none;cursor:default}.ui3n-virtual-scroll[data-v-6a998153]{position:relative;width:100%;height:100%;overflow-y:auto}.ui3n-virtual-scroll__viewport[data-v-6a998153]{position:relative;overflow:hidden;will-change:transform}.ui3n-virtual-scroll__content[data-v-6a998153]{will-change:transform}.ui3n-virtual-scroll__item[data-v-6a998153]{position:relative;min-height:16px}.ui3n-tabs[data-v-ea3e9bad]{--ui3n-tabs-height: 48px;position:relative;height:var(--ui3n-tabs-height);display:flex;justify-content:center;align-items:stretch}.ui3n-tabs[data-v-ea3e9bad] .ui3n-tabs__item{cursor:pointer}.ui3n-tabs[data-v-ea3e9bad] .ui3n-tabs__item.ui3n-tabs__item{position:relative;-webkit-user-select:none;user-select:none;color:var(--77348130);background-position:center;transition:background .5s ease-in-out}.ui3n-tabs[data-v-ea3e9bad] .ui3n-tabs__item.ui3n-tabs__item:hover{background-color:var(--blue-main-20, #d8edfd)}.ui3n-tabs[data-v-ea3e9bad] .ui3n-tabs__item.ui3n-tabs__item:after{position:absolute;content:"";left:0;width:100%;bottom:var(--fb6a93f0);height:var(--61f57740);background-color:transparent;transition:background-color .25s ease-in-out}.ui3n-tabs[data-v-ea3e9bad] .ui3n-tabs__item.ui3n-tabs__item[disabled]{opacity:.5;cursor:default;pointer-events:none}.ui3n-tabs[data-v-ea3e9bad] .ui3n-tabs__item.ui3n-tabs__item:not([disabled]){cursor:pointer}.ui3n-tabs[data-v-ea3e9bad] .ui3n-tabs__item.ui3n-tabs__item:not([disabled]):hover{background:#d8edfd radial-gradient(circle,transparent 1%,#d8edfd 1%) center/15000%}.ui3n-tabs[data-v-ea3e9bad] .ui3n-tabs__item.ui3n-tabs__item:not([disabled]):active{opacity:1;background-color:var(--black-30, #b3b3b3);background-size:100%;transition:background 0s}.ui3n-tabs[data-v-ea3e9bad] .ui3n-tabs__item.ui3n-tabs__item--active{color:var(--24fbb1ad)}.ui3n-tabs[data-v-ea3e9bad] .ui3n-tabs__item.ui3n-tabs__item--active:after{background-color:var(--10c456e4);transition:background-color .25s ease-in-out}.ui3n-tabs--vertical[data-v-ea3e9bad]{height:auto;flex-direction:column}.ui3n-tabs--vertical[data-v-ea3e9bad] .ui3n-tabs__item.ui3n-tabs__item:after{left:var(--fb6a93f0);width:var(--61f57740);bottom:0;height:100%}.ui3n-badge-simple[data-v-ed52e72c]{--ui3n-badge-size: 20px;position:relative;box-sizing:border-box;background-color:var(--5b2d62a4);outline:1px var(--system-white, #fff) solid}.ui3n-badge-simple__dot[data-v-ed52e72c]{min-width:8px;width:8px;max-width:8px;min-height:8px;height:8px;max-height:8px;border-radius:50%}.ui3n-badge-simple__text[data-v-ed52e72c]{display:block;color:var(--1556b001);font-size:12px;line-height:var(--ui3n-badge-size);text-align:center}.ui3n-badge-simple[data-v-ed52e72c]:not(.ui3n-badge-simple__dot){min-height:var(--ui3n-badge-size);height:var(--ui3n-badge-size);width:max-content;padding:0 6px;border-radius:10px}.ui3n-badge[data-v-40242fbe]{--ui3n-badge-size: 20px;position:relative}.ui3n-badge__wrapper[data-v-40242fbe]{position:relative;width:max-content}.ui3n-badge__content[data-v-40242fbe]{position:absolute;z-index:5}
|