@v1nt1248/3nclient-lib 0.0.16 → 0.0.19
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/README.md +44 -4
- package/dist/components/ui3n-emoji.vue.d.ts +8 -1
- package/dist/components/ui3n-list.vue.d.ts +1 -1
- package/dist/components/ui3n-virtual-scroll.vue.d.ts +1 -1
- package/dist/constants/emoticons.d.ts +4 -649
- package/dist/libs/index.d.ts +2 -1
- package/dist/libs/serialization-for-ipc/protobuf-type.d.ts +1 -1
- package/dist/libs/serialization-for-ipc/types.d.ts +3 -0
- package/dist/libs/sqlite-on-3nstorage/types.d.ts +0 -1
- package/dist/stories/Ui3nButton.stories.d.ts +203 -0
- package/dist/stories/Ui3nDialog.stories.d.ts +41 -0
- package/dist/stories/Ui3nDropFiles.stories.d.ts +140 -0
- package/dist/stories/Ui3nEmoji.stories.d.ts +39 -0
- package/dist/stories/Ui3nIcon.stories.d.ts +80 -0
- package/dist/stories/Ui3nInput.stories.d.ts +456 -0
- package/dist/stories/Ui3nList.stories.d.ts +29 -0
- package/dist/stories/data/data-to-list.d.ts +8 -0
- package/dist/stories/data/icons.d.ts +1 -0
- package/dist/style.css +1 -1
- package/dist/ui-3n-lib.js +9487 -10373
- package/package.json +24 -7
- package/src/components/ui3n-button.vue +20 -4
- package/src/components/ui3n-drop-files.vue +34 -11
- package/src/components/ui3n-emoji.vue +34 -14
- package/src/components/ui3n-input.vue +3 -2
- package/src/components/ui3n-list.vue +1 -1
- package/src/libs/index.ts +0 -11
- package/src/libs/ipc-service-caller.ts +0 -121
- package/src/libs/ipc-service.ts +0 -422
- package/src/libs/serialization-for-ipc/copy-json.ts +0 -55
- package/src/libs/serialization-for-ipc/json-ipc.proto.d.ts +0 -432
- package/src/libs/serialization-for-ipc/json-ipc.proto.js +0 -1093
- package/src/libs/serialization-for-ipc/json-n-binary.ts +0 -275
- package/src/libs/serialization-for-ipc/protobuf-type.ts +0 -61
- package/src/libs/sqlite-on-3nstorage/deferred.ts +0 -32
- package/src/libs/sqlite-on-3nstorage/index.ts +0 -292
- package/src/libs/sqlite-on-3nstorage/sqljs.js +0 -225
- package/src/libs/sqlite-on-3nstorage/synced.ts +0 -194
- package/src/libs/sqlite-on-3nstorage/types.ts +0 -279
|
@@ -0,0 +1,456 @@
|
|
|
1
|
+
import type { Meta, StoryFn, StoryObj } from '@storybook/vue3';
|
|
2
|
+
import Ui3nInput from '../components/ui3n-input.vue';
|
|
3
|
+
declare const meta: Meta<typeof Ui3nInput>;
|
|
4
|
+
export default meta;
|
|
5
|
+
export declare const Default: StoryObj<typeof meta>;
|
|
6
|
+
export declare const With_label: StoryFn<import("vue").DefineComponent<{
|
|
7
|
+
value: {
|
|
8
|
+
type: import("vue").PropType<string>;
|
|
9
|
+
required: true;
|
|
10
|
+
};
|
|
11
|
+
label: {
|
|
12
|
+
type: import("vue").PropType<string>;
|
|
13
|
+
};
|
|
14
|
+
placeholder: {
|
|
15
|
+
type: import("vue").PropType<string>;
|
|
16
|
+
};
|
|
17
|
+
clearable: {
|
|
18
|
+
type: import("vue").PropType<boolean>;
|
|
19
|
+
};
|
|
20
|
+
autofocus: {
|
|
21
|
+
type: import("vue").PropType<boolean>;
|
|
22
|
+
};
|
|
23
|
+
rules: {
|
|
24
|
+
type: import("vue").PropType<((v: string) => any)[]>;
|
|
25
|
+
};
|
|
26
|
+
disabled: {
|
|
27
|
+
type: import("vue").PropType<boolean>;
|
|
28
|
+
};
|
|
29
|
+
icon: {
|
|
30
|
+
type: import("vue").PropType<string>;
|
|
31
|
+
};
|
|
32
|
+
iconColor: {
|
|
33
|
+
type: import("vue").PropType<string>;
|
|
34
|
+
};
|
|
35
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
36
|
+
input: (value: string) => void;
|
|
37
|
+
focus: (value: Event) => void;
|
|
38
|
+
blur: (value: Event) => void;
|
|
39
|
+
clear: (value: string) => void;
|
|
40
|
+
change: (value: string) => void;
|
|
41
|
+
"update:value": (value: string) => void;
|
|
42
|
+
"update:valid": (value: boolean) => void;
|
|
43
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
44
|
+
value: {
|
|
45
|
+
type: import("vue").PropType<string>;
|
|
46
|
+
required: true;
|
|
47
|
+
};
|
|
48
|
+
label: {
|
|
49
|
+
type: import("vue").PropType<string>;
|
|
50
|
+
};
|
|
51
|
+
placeholder: {
|
|
52
|
+
type: import("vue").PropType<string>;
|
|
53
|
+
};
|
|
54
|
+
clearable: {
|
|
55
|
+
type: import("vue").PropType<boolean>;
|
|
56
|
+
};
|
|
57
|
+
autofocus: {
|
|
58
|
+
type: import("vue").PropType<boolean>;
|
|
59
|
+
};
|
|
60
|
+
rules: {
|
|
61
|
+
type: import("vue").PropType<((v: string) => any)[]>;
|
|
62
|
+
};
|
|
63
|
+
disabled: {
|
|
64
|
+
type: import("vue").PropType<boolean>;
|
|
65
|
+
};
|
|
66
|
+
icon: {
|
|
67
|
+
type: import("vue").PropType<string>;
|
|
68
|
+
};
|
|
69
|
+
iconColor: {
|
|
70
|
+
type: import("vue").PropType<string>;
|
|
71
|
+
};
|
|
72
|
+
}>> & {
|
|
73
|
+
onFocus?: ((value: Event) => any) | undefined;
|
|
74
|
+
onBlur?: ((value: Event) => any) | undefined;
|
|
75
|
+
onChange?: ((value: string) => any) | undefined;
|
|
76
|
+
onInput?: ((value: string) => any) | undefined;
|
|
77
|
+
onClear?: ((value: string) => any) | undefined;
|
|
78
|
+
"onUpdate:value"?: ((value: string) => any) | undefined;
|
|
79
|
+
"onUpdate:valid"?: ((value: boolean) => any) | undefined;
|
|
80
|
+
}, {}, {}>>;
|
|
81
|
+
export declare const With_Placeholder: StoryFn<import("vue").DefineComponent<{
|
|
82
|
+
value: {
|
|
83
|
+
type: import("vue").PropType<string>;
|
|
84
|
+
required: true;
|
|
85
|
+
};
|
|
86
|
+
label: {
|
|
87
|
+
type: import("vue").PropType<string>;
|
|
88
|
+
};
|
|
89
|
+
placeholder: {
|
|
90
|
+
type: import("vue").PropType<string>;
|
|
91
|
+
};
|
|
92
|
+
clearable: {
|
|
93
|
+
type: import("vue").PropType<boolean>;
|
|
94
|
+
};
|
|
95
|
+
autofocus: {
|
|
96
|
+
type: import("vue").PropType<boolean>;
|
|
97
|
+
};
|
|
98
|
+
rules: {
|
|
99
|
+
type: import("vue").PropType<((v: string) => any)[]>;
|
|
100
|
+
};
|
|
101
|
+
disabled: {
|
|
102
|
+
type: import("vue").PropType<boolean>;
|
|
103
|
+
};
|
|
104
|
+
icon: {
|
|
105
|
+
type: import("vue").PropType<string>;
|
|
106
|
+
};
|
|
107
|
+
iconColor: {
|
|
108
|
+
type: import("vue").PropType<string>;
|
|
109
|
+
};
|
|
110
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
111
|
+
input: (value: string) => void;
|
|
112
|
+
focus: (value: Event) => void;
|
|
113
|
+
blur: (value: Event) => void;
|
|
114
|
+
clear: (value: string) => void;
|
|
115
|
+
change: (value: string) => void;
|
|
116
|
+
"update:value": (value: string) => void;
|
|
117
|
+
"update:valid": (value: boolean) => void;
|
|
118
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
119
|
+
value: {
|
|
120
|
+
type: import("vue").PropType<string>;
|
|
121
|
+
required: true;
|
|
122
|
+
};
|
|
123
|
+
label: {
|
|
124
|
+
type: import("vue").PropType<string>;
|
|
125
|
+
};
|
|
126
|
+
placeholder: {
|
|
127
|
+
type: import("vue").PropType<string>;
|
|
128
|
+
};
|
|
129
|
+
clearable: {
|
|
130
|
+
type: import("vue").PropType<boolean>;
|
|
131
|
+
};
|
|
132
|
+
autofocus: {
|
|
133
|
+
type: import("vue").PropType<boolean>;
|
|
134
|
+
};
|
|
135
|
+
rules: {
|
|
136
|
+
type: import("vue").PropType<((v: string) => any)[]>;
|
|
137
|
+
};
|
|
138
|
+
disabled: {
|
|
139
|
+
type: import("vue").PropType<boolean>;
|
|
140
|
+
};
|
|
141
|
+
icon: {
|
|
142
|
+
type: import("vue").PropType<string>;
|
|
143
|
+
};
|
|
144
|
+
iconColor: {
|
|
145
|
+
type: import("vue").PropType<string>;
|
|
146
|
+
};
|
|
147
|
+
}>> & {
|
|
148
|
+
onFocus?: ((value: Event) => any) | undefined;
|
|
149
|
+
onBlur?: ((value: Event) => any) | undefined;
|
|
150
|
+
onChange?: ((value: string) => any) | undefined;
|
|
151
|
+
onInput?: ((value: string) => any) | undefined;
|
|
152
|
+
onClear?: ((value: string) => any) | undefined;
|
|
153
|
+
"onUpdate:value"?: ((value: string) => any) | undefined;
|
|
154
|
+
"onUpdate:valid"?: ((value: boolean) => any) | undefined;
|
|
155
|
+
}, {}, {}>>;
|
|
156
|
+
export declare const Clearable: StoryFn<import("vue").DefineComponent<{
|
|
157
|
+
value: {
|
|
158
|
+
type: import("vue").PropType<string>;
|
|
159
|
+
required: true;
|
|
160
|
+
};
|
|
161
|
+
label: {
|
|
162
|
+
type: import("vue").PropType<string>;
|
|
163
|
+
};
|
|
164
|
+
placeholder: {
|
|
165
|
+
type: import("vue").PropType<string>;
|
|
166
|
+
};
|
|
167
|
+
clearable: {
|
|
168
|
+
type: import("vue").PropType<boolean>;
|
|
169
|
+
};
|
|
170
|
+
autofocus: {
|
|
171
|
+
type: import("vue").PropType<boolean>;
|
|
172
|
+
};
|
|
173
|
+
rules: {
|
|
174
|
+
type: import("vue").PropType<((v: string) => any)[]>;
|
|
175
|
+
};
|
|
176
|
+
disabled: {
|
|
177
|
+
type: import("vue").PropType<boolean>;
|
|
178
|
+
};
|
|
179
|
+
icon: {
|
|
180
|
+
type: import("vue").PropType<string>;
|
|
181
|
+
};
|
|
182
|
+
iconColor: {
|
|
183
|
+
type: import("vue").PropType<string>;
|
|
184
|
+
};
|
|
185
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
186
|
+
input: (value: string) => void;
|
|
187
|
+
focus: (value: Event) => void;
|
|
188
|
+
blur: (value: Event) => void;
|
|
189
|
+
clear: (value: string) => void;
|
|
190
|
+
change: (value: string) => void;
|
|
191
|
+
"update:value": (value: string) => void;
|
|
192
|
+
"update:valid": (value: boolean) => void;
|
|
193
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
194
|
+
value: {
|
|
195
|
+
type: import("vue").PropType<string>;
|
|
196
|
+
required: true;
|
|
197
|
+
};
|
|
198
|
+
label: {
|
|
199
|
+
type: import("vue").PropType<string>;
|
|
200
|
+
};
|
|
201
|
+
placeholder: {
|
|
202
|
+
type: import("vue").PropType<string>;
|
|
203
|
+
};
|
|
204
|
+
clearable: {
|
|
205
|
+
type: import("vue").PropType<boolean>;
|
|
206
|
+
};
|
|
207
|
+
autofocus: {
|
|
208
|
+
type: import("vue").PropType<boolean>;
|
|
209
|
+
};
|
|
210
|
+
rules: {
|
|
211
|
+
type: import("vue").PropType<((v: string) => any)[]>;
|
|
212
|
+
};
|
|
213
|
+
disabled: {
|
|
214
|
+
type: import("vue").PropType<boolean>;
|
|
215
|
+
};
|
|
216
|
+
icon: {
|
|
217
|
+
type: import("vue").PropType<string>;
|
|
218
|
+
};
|
|
219
|
+
iconColor: {
|
|
220
|
+
type: import("vue").PropType<string>;
|
|
221
|
+
};
|
|
222
|
+
}>> & {
|
|
223
|
+
onFocus?: ((value: Event) => any) | undefined;
|
|
224
|
+
onBlur?: ((value: Event) => any) | undefined;
|
|
225
|
+
onChange?: ((value: string) => any) | undefined;
|
|
226
|
+
onInput?: ((value: string) => any) | undefined;
|
|
227
|
+
onClear?: ((value: string) => any) | undefined;
|
|
228
|
+
"onUpdate:value"?: ((value: string) => any) | undefined;
|
|
229
|
+
"onUpdate:valid"?: ((value: boolean) => any) | undefined;
|
|
230
|
+
}, {}, {}>>;
|
|
231
|
+
export declare const With_Icon: StoryFn<import("vue").DefineComponent<{
|
|
232
|
+
value: {
|
|
233
|
+
type: import("vue").PropType<string>;
|
|
234
|
+
required: true;
|
|
235
|
+
};
|
|
236
|
+
label: {
|
|
237
|
+
type: import("vue").PropType<string>;
|
|
238
|
+
};
|
|
239
|
+
placeholder: {
|
|
240
|
+
type: import("vue").PropType<string>;
|
|
241
|
+
};
|
|
242
|
+
clearable: {
|
|
243
|
+
type: import("vue").PropType<boolean>;
|
|
244
|
+
};
|
|
245
|
+
autofocus: {
|
|
246
|
+
type: import("vue").PropType<boolean>;
|
|
247
|
+
};
|
|
248
|
+
rules: {
|
|
249
|
+
type: import("vue").PropType<((v: string) => any)[]>;
|
|
250
|
+
};
|
|
251
|
+
disabled: {
|
|
252
|
+
type: import("vue").PropType<boolean>;
|
|
253
|
+
};
|
|
254
|
+
icon: {
|
|
255
|
+
type: import("vue").PropType<string>;
|
|
256
|
+
};
|
|
257
|
+
iconColor: {
|
|
258
|
+
type: import("vue").PropType<string>;
|
|
259
|
+
};
|
|
260
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
261
|
+
input: (value: string) => void;
|
|
262
|
+
focus: (value: Event) => void;
|
|
263
|
+
blur: (value: Event) => void;
|
|
264
|
+
clear: (value: string) => void;
|
|
265
|
+
change: (value: string) => void;
|
|
266
|
+
"update:value": (value: string) => void;
|
|
267
|
+
"update:valid": (value: boolean) => void;
|
|
268
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
269
|
+
value: {
|
|
270
|
+
type: import("vue").PropType<string>;
|
|
271
|
+
required: true;
|
|
272
|
+
};
|
|
273
|
+
label: {
|
|
274
|
+
type: import("vue").PropType<string>;
|
|
275
|
+
};
|
|
276
|
+
placeholder: {
|
|
277
|
+
type: import("vue").PropType<string>;
|
|
278
|
+
};
|
|
279
|
+
clearable: {
|
|
280
|
+
type: import("vue").PropType<boolean>;
|
|
281
|
+
};
|
|
282
|
+
autofocus: {
|
|
283
|
+
type: import("vue").PropType<boolean>;
|
|
284
|
+
};
|
|
285
|
+
rules: {
|
|
286
|
+
type: import("vue").PropType<((v: string) => any)[]>;
|
|
287
|
+
};
|
|
288
|
+
disabled: {
|
|
289
|
+
type: import("vue").PropType<boolean>;
|
|
290
|
+
};
|
|
291
|
+
icon: {
|
|
292
|
+
type: import("vue").PropType<string>;
|
|
293
|
+
};
|
|
294
|
+
iconColor: {
|
|
295
|
+
type: import("vue").PropType<string>;
|
|
296
|
+
};
|
|
297
|
+
}>> & {
|
|
298
|
+
onFocus?: ((value: Event) => any) | undefined;
|
|
299
|
+
onBlur?: ((value: Event) => any) | undefined;
|
|
300
|
+
onChange?: ((value: string) => any) | undefined;
|
|
301
|
+
onInput?: ((value: string) => any) | undefined;
|
|
302
|
+
onClear?: ((value: string) => any) | undefined;
|
|
303
|
+
"onUpdate:value"?: ((value: string) => any) | undefined;
|
|
304
|
+
"onUpdate:valid"?: ((value: boolean) => any) | undefined;
|
|
305
|
+
}, {}, {}>>;
|
|
306
|
+
export declare const With_Color_Icon: StoryFn<import("vue").DefineComponent<{
|
|
307
|
+
value: {
|
|
308
|
+
type: import("vue").PropType<string>;
|
|
309
|
+
required: true;
|
|
310
|
+
};
|
|
311
|
+
label: {
|
|
312
|
+
type: import("vue").PropType<string>;
|
|
313
|
+
};
|
|
314
|
+
placeholder: {
|
|
315
|
+
type: import("vue").PropType<string>;
|
|
316
|
+
};
|
|
317
|
+
clearable: {
|
|
318
|
+
type: import("vue").PropType<boolean>;
|
|
319
|
+
};
|
|
320
|
+
autofocus: {
|
|
321
|
+
type: import("vue").PropType<boolean>;
|
|
322
|
+
};
|
|
323
|
+
rules: {
|
|
324
|
+
type: import("vue").PropType<((v: string) => any)[]>;
|
|
325
|
+
};
|
|
326
|
+
disabled: {
|
|
327
|
+
type: import("vue").PropType<boolean>;
|
|
328
|
+
};
|
|
329
|
+
icon: {
|
|
330
|
+
type: import("vue").PropType<string>;
|
|
331
|
+
};
|
|
332
|
+
iconColor: {
|
|
333
|
+
type: import("vue").PropType<string>;
|
|
334
|
+
};
|
|
335
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
336
|
+
input: (value: string) => void;
|
|
337
|
+
focus: (value: Event) => void;
|
|
338
|
+
blur: (value: Event) => void;
|
|
339
|
+
clear: (value: string) => void;
|
|
340
|
+
change: (value: string) => void;
|
|
341
|
+
"update:value": (value: string) => void;
|
|
342
|
+
"update:valid": (value: boolean) => void;
|
|
343
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
344
|
+
value: {
|
|
345
|
+
type: import("vue").PropType<string>;
|
|
346
|
+
required: true;
|
|
347
|
+
};
|
|
348
|
+
label: {
|
|
349
|
+
type: import("vue").PropType<string>;
|
|
350
|
+
};
|
|
351
|
+
placeholder: {
|
|
352
|
+
type: import("vue").PropType<string>;
|
|
353
|
+
};
|
|
354
|
+
clearable: {
|
|
355
|
+
type: import("vue").PropType<boolean>;
|
|
356
|
+
};
|
|
357
|
+
autofocus: {
|
|
358
|
+
type: import("vue").PropType<boolean>;
|
|
359
|
+
};
|
|
360
|
+
rules: {
|
|
361
|
+
type: import("vue").PropType<((v: string) => any)[]>;
|
|
362
|
+
};
|
|
363
|
+
disabled: {
|
|
364
|
+
type: import("vue").PropType<boolean>;
|
|
365
|
+
};
|
|
366
|
+
icon: {
|
|
367
|
+
type: import("vue").PropType<string>;
|
|
368
|
+
};
|
|
369
|
+
iconColor: {
|
|
370
|
+
type: import("vue").PropType<string>;
|
|
371
|
+
};
|
|
372
|
+
}>> & {
|
|
373
|
+
onFocus?: ((value: Event) => any) | undefined;
|
|
374
|
+
onBlur?: ((value: Event) => any) | undefined;
|
|
375
|
+
onChange?: ((value: string) => any) | undefined;
|
|
376
|
+
onInput?: ((value: string) => any) | undefined;
|
|
377
|
+
onClear?: ((value: string) => any) | undefined;
|
|
378
|
+
"onUpdate:value"?: ((value: string) => any) | undefined;
|
|
379
|
+
"onUpdate:valid"?: ((value: boolean) => any) | undefined;
|
|
380
|
+
}, {}, {}>>;
|
|
381
|
+
export declare const With_Rule: StoryFn<import("vue").DefineComponent<{
|
|
382
|
+
value: {
|
|
383
|
+
type: import("vue").PropType<string>;
|
|
384
|
+
required: true;
|
|
385
|
+
};
|
|
386
|
+
label: {
|
|
387
|
+
type: import("vue").PropType<string>;
|
|
388
|
+
};
|
|
389
|
+
placeholder: {
|
|
390
|
+
type: import("vue").PropType<string>;
|
|
391
|
+
};
|
|
392
|
+
clearable: {
|
|
393
|
+
type: import("vue").PropType<boolean>;
|
|
394
|
+
};
|
|
395
|
+
autofocus: {
|
|
396
|
+
type: import("vue").PropType<boolean>;
|
|
397
|
+
};
|
|
398
|
+
rules: {
|
|
399
|
+
type: import("vue").PropType<((v: string) => any)[]>;
|
|
400
|
+
};
|
|
401
|
+
disabled: {
|
|
402
|
+
type: import("vue").PropType<boolean>;
|
|
403
|
+
};
|
|
404
|
+
icon: {
|
|
405
|
+
type: import("vue").PropType<string>;
|
|
406
|
+
};
|
|
407
|
+
iconColor: {
|
|
408
|
+
type: import("vue").PropType<string>;
|
|
409
|
+
};
|
|
410
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
411
|
+
input: (value: string) => void;
|
|
412
|
+
focus: (value: Event) => void;
|
|
413
|
+
blur: (value: Event) => void;
|
|
414
|
+
clear: (value: string) => void;
|
|
415
|
+
change: (value: string) => void;
|
|
416
|
+
"update:value": (value: string) => void;
|
|
417
|
+
"update:valid": (value: boolean) => void;
|
|
418
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
419
|
+
value: {
|
|
420
|
+
type: import("vue").PropType<string>;
|
|
421
|
+
required: true;
|
|
422
|
+
};
|
|
423
|
+
label: {
|
|
424
|
+
type: import("vue").PropType<string>;
|
|
425
|
+
};
|
|
426
|
+
placeholder: {
|
|
427
|
+
type: import("vue").PropType<string>;
|
|
428
|
+
};
|
|
429
|
+
clearable: {
|
|
430
|
+
type: import("vue").PropType<boolean>;
|
|
431
|
+
};
|
|
432
|
+
autofocus: {
|
|
433
|
+
type: import("vue").PropType<boolean>;
|
|
434
|
+
};
|
|
435
|
+
rules: {
|
|
436
|
+
type: import("vue").PropType<((v: string) => any)[]>;
|
|
437
|
+
};
|
|
438
|
+
disabled: {
|
|
439
|
+
type: import("vue").PropType<boolean>;
|
|
440
|
+
};
|
|
441
|
+
icon: {
|
|
442
|
+
type: import("vue").PropType<string>;
|
|
443
|
+
};
|
|
444
|
+
iconColor: {
|
|
445
|
+
type: import("vue").PropType<string>;
|
|
446
|
+
};
|
|
447
|
+
}>> & {
|
|
448
|
+
onFocus?: ((value: Event) => any) | undefined;
|
|
449
|
+
onBlur?: ((value: Event) => any) | undefined;
|
|
450
|
+
onChange?: ((value: string) => any) | undefined;
|
|
451
|
+
onInput?: ((value: string) => any) | undefined;
|
|
452
|
+
onClear?: ((value: string) => any) | undefined;
|
|
453
|
+
"onUpdate:value"?: ((value: string) => any) | undefined;
|
|
454
|
+
"onUpdate:valid"?: ((value: boolean) => any) | undefined;
|
|
455
|
+
}, {}, {}>>;
|
|
456
|
+
export declare const Disabled: StoryObj<typeof meta>;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { Meta, StoryFn } from '@storybook/vue3';
|
|
2
|
+
import Ui3nList from '../components/ui3n-list.vue';
|
|
3
|
+
declare const meta: Meta<typeof Ui3nList>;
|
|
4
|
+
export default meta;
|
|
5
|
+
export declare const Default: StoryFn<(<T extends {
|
|
6
|
+
id?: string | undefined;
|
|
7
|
+
}>(__VLS_props: import("../components/ui3n-list.vue").Ui3nListProps<T> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: Pick<{
|
|
8
|
+
props: import("../components/ui3n-list.vue").Ui3nListProps<T>;
|
|
9
|
+
expose(exposed: {}): void;
|
|
10
|
+
attrs: any;
|
|
11
|
+
slots: import("../components/ui3n-list.vue").Ui3nListSlots<T>;
|
|
12
|
+
emit: import("../components/ui3n-list.vue").Ui3nListEmits<T>;
|
|
13
|
+
}, "attrs" | "slots" | "emit"> | undefined, __VLS_expose?: ((exposed: {}) => void) | undefined, __VLS_setup?: Promise<{
|
|
14
|
+
props: import("../components/ui3n-list.vue").Ui3nListProps<T>;
|
|
15
|
+
expose(exposed: {}): void;
|
|
16
|
+
attrs: any;
|
|
17
|
+
slots: import("../components/ui3n-list.vue").Ui3nListSlots<T>;
|
|
18
|
+
emit: import("../components/ui3n-list.vue").Ui3nListEmits<T>;
|
|
19
|
+
}>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
20
|
+
[key: string]: any;
|
|
21
|
+
}> & {
|
|
22
|
+
__ctx?: {
|
|
23
|
+
props: import("../components/ui3n-list.vue").Ui3nListProps<T>;
|
|
24
|
+
expose(exposed: {}): void;
|
|
25
|
+
attrs: any;
|
|
26
|
+
slots: import("../components/ui3n-list.vue").Ui3nListSlots<T>;
|
|
27
|
+
emit: import("../components/ui3n-list.vue").Ui3nListEmits<T>;
|
|
28
|
+
} | undefined;
|
|
29
|
+
})>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const icons: string[];
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.ui3n-button[data-v-5f7c3964]{--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;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);background-position:center;transition:background .5s ease-in-out}.ui3n-button--round[data-v-5f7c3964]{--ui3n-button-padding-vert: 4px;--ui3n-button-padding-horiz: 4px;border-radius:50%}.ui3n-button--elevation[data-v-5f7c3964]{box-shadow:0 2px 1px -1px var(--shadow-key-umbra-opacity),0 1px 1px 0 var(--shadow-key-penumbra-opacity),0 1px 3px 0 var(--shadow-key-ambient-opacity)}.ui3n-button[data-v-5f7c3964]:not([disabled]){cursor:pointer}.ui3n-button[data-v-5f7c3964]:not([disabled]):hover{background:var(--ui3n-button-background) radial-gradient(circle,transparent 1%,var(--ui3n-button-background) 1%) center/15000%}.ui3n-button:not([disabled]):hover .ui3n-button__icon[data-v-5f7c3964],.ui3n-button:not([disabled]):hover .ui3n-button__text[data-v-5f7c3964]{opacity:1}.ui3n-button[data-v-5f7c3964]:not([disabled]):active{opacity:1;background-color:var(--black-30, #b3b3b3);background-size:100%;transition:background 0s}.ui3n-button__icon[data-v-5f7c3964]{opacity:.85;transition:opacity .2s ease-in-out}.ui3n-button__text[data-v-5f7c3964]{display:block;opacity:.85;transition:opacity .2s ease-in-out}.ui3n-button__text--margin[data-v-5f7c3964]{margin-left:4px}.ui3n-button[disabled][data-v-5f7c3964]{opacity:.7}.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),0 1px 1px 0 var(--shadow-key-penumbra-opacity),0 1px 3px 0 var(--shadow-key-ambient-opacity)}.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-drop-files[data-v-3411ed77]{position:relative;width:100%;height:100%}.ui3n-drop-files__dropzone[data-v-3411ed77]{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-3411ed77]{position:absolute;width:calc(100% - var(--base-size, 8px) * 2);height:calc(100% - var(--base-size, 8px) * 2);top:var(--base-size, 8px);left:var(--base-size, 8px);border-radius:var(--base-size, 8px);border:2px dashed var(--gray-50, #f2f2f2);pointer-events:none}.ui3n-drop-files__dropzone-title[data-v-3411ed77]{margin:0 0 24px;font-size:var(--font-24, 24px);font-weight:600;color:var(--black-30, #b3b3b3);pointer-events:none}.ui3n-drop-files__dropzone-icon[data-v-3411ed77]{position:relative;width:160px;height:160px;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-3411ed77]{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-3411ed77]{margin-top:var(--half-size, 4px);font-size:var(--font-12, 12px);font-weight:500;color:var(--black-90, #212121)}.ui3n-emoji[data-v-cf691041]{--emoji-size: 16px;display:flex;width:var(--emoji-size);height:var(--emoji-size);justify-content:center;align-items:center;cursor:pointer}.ui3n-emoji--readonly[data-v-cf691041]{cursor:default}.ui3n-input[data-v-41c114f0]{--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-41c114f0]{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-input__input[data-v-41c114f0]{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-41c114f0]::placeholder{color:var(--black-30, #b3b3b3);font-style:italic;font-size:var(--font-13, 13px);font-weight:400}.ui3n-input__input[data-v-41c114f0]:focus-within{background-color:var(--blue-main-20, #d8edfd)}.ui3n-input__icon[data-v-41c114f0]{position:absolute;left:var(--half-size, 4px);top:var(--base-size, 8px)}.ui3n-input__clear-btn[data-v-41c114f0]{position:absolute;right:0;top:var(--half-size, 4px)}.ui3n-input__error-text[data-v-41c114f0]{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-41c114f0]{--ui3n-input-padding-right: calc(var(--base-size, 8px) * 3)}.ui3n-input--with-icon[data-v-41c114f0]{--ui3n-input-padding-left: calc(var(--base-size, 8px) * 3)}.ui3n-input--error[data-v-41c114f0]{--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-41c114f0]{border:1px solid var(--pear-100, #f75d53)}.ui3n-input--error.ui3n-input--clearable[data-v-41c114f0]{--ui3n-input-padding-right: calc(var(--base-size, 8px) * 2 - 1px)}.ui3n-input--error.ui3n-input--with-icon[data-v-41c114f0]{--ui3n-input-padding-left: calc(var(--base-size, 8px) * 2 - 1px)}.ui3n-input--disabled[data-v-41c114f0]{pointer-events:none;-webkit-user-select:none;user-select:none;opacity:.5}.ui3n-input--with-label .ui3n-input__icon[data-v-41c114f0]{top:calc(var(--base-size) * 3.5 + 1px)}.ui3n-input--with-label .ui3n-input__clear-btn[data-v-41c114f0]{top:calc(var(--base-size) * 3 + 1px)}.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-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-8ba1dfb9]{--menu-animation-duration: .4s;position:relative;overflow:visible}.ui3n-menu .menu-enter-active[data-v-8ba1dfb9],.ui3n-menu .menu-leave-active[data-v-8ba1dfb9]{transition:opacity var(--menu-animation-duration)}.ui3n-menu .menu-enter-from[data-v-8ba1dfb9],.ui3n-menu .menu-leave-to[data-v-8ba1dfb9]{opacity:0}.ui3n-menu__trigger[data-v-8ba1dfb9]{position:relative}.ui3n-menu__content[data-v-8ba1dfb9]{position:absolute;border-radius:4px;background-color:var(--system-white, #fff);box-shadow:0 3px 3px -2px var(--shadow-key-umbra-opacity),0 3px 4px 0 var(--shadow-key-penumbra-opacity),0 1px 8px 0 var(--shadow-key-ambient-opacity)}.ui3n-list[data-v-8ccc687f]{--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-8ccc687f]{position:relative;top:0;z-index:1}.ui3n-list__title--sticky[data-v-8ccc687f]{position:sticky}.ui3n-list__content[data-v-8ccc687f]{position:relative;flex-grow:1}.ui3n-list__title-content[data-v-8ccc687f],.ui3n-list__item[data-v-8ccc687f]{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-8ccc687f]{z-index:1;font-size:16px;font-weight:600;background-color:var(--ui3n-list-bg-color)}.ui3n-list__item-content[data-v-8ccc687f]{font-size:14px;font-weight:400;cursor:pointer}.ui3n-list__item-content--disabled[data-v-8ccc687f]{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}
|
|
1
|
+
.ui3n-button[data-v-c6485337]{--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;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);background-position:center;transition:background .5s ease-in-out}.ui3n-button--round[data-v-c6485337]{--ui3n-button-padding-vert: 6px;--ui3n-button-padding-horiz: 6px;border-radius:50%}.ui3n-button--elevation[data-v-c6485337]{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-c6485337]:not([disabled]){cursor:pointer}.ui3n-button[data-v-c6485337]:not([disabled]):hover{background:var(--ui3n-button-background) radial-gradient(circle,transparent 1%,var(--ui3n-button-background) 1%) center/15000%;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-c6485337],.ui3n-button:not([disabled]):hover .ui3n-button__text[data-v-c6485337]{opacity:1}.ui3n-button[data-v-c6485337]:not([disabled]):active{opacity:1;background-color:var(--black-30, #b3b3b3);background-size:100%;transition:background 0s}.ui3n-button__icon[data-v-c6485337]{opacity:.85;transition:opacity .2s ease-in-out}.ui3n-button__text[data-v-c6485337]{display:block;opacity:.85;transition:opacity .2s ease-in-out}.ui3n-button__text--margin[data-v-c6485337]{margin-left:4px}.ui3n-button[disabled][data-v-c6485337]{opacity:.7}.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-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-93a3cae9]{--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-93a3cae9]{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:calc(var(--base-size, 8px) / 2)}.ui3n-input__input[data-v-93a3cae9]{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-93a3cae9]::placeholder{color:var(--black-30, #b3b3b3);font-style:italic;font-size:var(--font-13, 13px);font-weight:400}.ui3n-input__input[data-v-93a3cae9]:focus-within{background-color:var(--blue-main-20, #d8edfd)}.ui3n-input__icon[data-v-93a3cae9]{position:absolute;left:var(--half-size, 4px);top:var(--base-size, 8px)}.ui3n-input__clear-btn[data-v-93a3cae9]{position:absolute;right:0;top:var(--half-size, 4px)}.ui3n-input__error-text[data-v-93a3cae9]{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-93a3cae9]{--ui3n-input-padding-right: calc(var(--base-size, 8px) * 3)}.ui3n-input--with-icon[data-v-93a3cae9]{--ui3n-input-padding-left: calc(var(--base-size, 8px) * 3)}.ui3n-input--error[data-v-93a3cae9]{--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-93a3cae9]{border:1px solid var(--pear-100, #f75d53)}.ui3n-input--error.ui3n-input--clearable[data-v-93a3cae9]{--ui3n-input-padding-right: calc(var(--base-size, 8px) * 2 - 1px)}.ui3n-input--error.ui3n-input--with-icon[data-v-93a3cae9]{--ui3n-input-padding-left: calc(var(--base-size, 8px) * 2 - 1px)}.ui3n-input--disabled[data-v-93a3cae9]{pointer-events:none;-webkit-user-select:none;user-select:none;opacity:.5}.ui3n-input--with-label .ui3n-input__icon[data-v-93a3cae9]{top:calc(var(--base-size, 8px) * 3.5 + 1px)}.ui3n-input--with-label .ui3n-input__clear-btn[data-v-93a3cae9]{top:calc(var(--base-size, 8px) * 3 + 1px)}.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-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-8ba1dfb9]{--menu-animation-duration: .4s;position:relative;overflow:visible}.ui3n-menu .menu-enter-active[data-v-8ba1dfb9],.ui3n-menu .menu-leave-active[data-v-8ba1dfb9]{transition:opacity var(--menu-animation-duration)}.ui3n-menu .menu-enter-from[data-v-8ba1dfb9],.ui3n-menu .menu-leave-to[data-v-8ba1dfb9]{opacity:0}.ui3n-menu__trigger[data-v-8ba1dfb9]{position:relative}.ui3n-menu__content[data-v-8ba1dfb9]{position:absolute;border-radius:4px;background-color:var(--system-white, #fff);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}
|