@firstnoodle-ui/bui 0.0.57 → 0.0.59
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/bui.css +1 -1
- package/dist/components/avatar-upload/AvatarUpload.vue.d.ts +173 -0
- package/dist/components/avatar-upload/index.d.ts +1 -0
- package/dist/components/button/Button.vue.d.ts +2 -2
- package/dist/components/confirm-cancel/ConfirmCancel.vue.d.ts +2 -2
- package/dist/components/horizontal-layout/Aside.vue.d.ts +1 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/components/inline-form-wrapper/InlineFormWrapper.vue.d.ts +2 -2
- package/dist/components/modal/Modal.vue.d.ts +2 -2
- package/dist/components/panel-layout/ResizablePanel.vue.d.ts +2 -2
- package/dist/components/pop-calendar/PopCalendar.vue.d.ts +2 -2
- package/dist/components/pop-confirm/PopConfirm.vue.d.ts +2 -2
- package/dist/components/pop-select/option.vue.d.ts +2 -2
- package/dist/components/screen-overlay/ScreenOverlay.vue.d.ts +2 -2
- package/dist/components/scrollbar/Bar.vue.d.ts +2 -2
- package/dist/components/scrollbar/Scrollbar.vue.d.ts +2 -2
- package/dist/components/select-list/SelectList.vue.d.ts +10 -10
- package/dist/components/select-list/components/select-list-option/SelectListOption.vue.d.ts +2 -2
- package/dist/components/tab/Tab.vue.d.ts +2 -2
- package/dist/components/text-editor/TextEditor.vue.d.ts +5 -5
- package/dist/components/text-editor/components/InserLink.vue.d.ts +11 -11
- package/dist/components/tiptap-editor/TiptapEditor.vue.d.ts +9 -4
- package/dist/components/toggle-button/ToggleButton.vue.d.ts +1 -1
- package/dist/components/types.d.ts +1 -1
- package/dist/components/vertical-layout/RunningSection.vue.d.ts +1 -1
- package/dist/components/vertical-layout/VerticalLayout.vue.d.ts +1 -1
- package/dist/index.mjs +10337 -9910
- package/dist/utils/getModifierKeyIcon.d.ts +2 -0
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/tiptap/enterKeyBehaviour.d.ts +4 -0
- package/dist/{components/text-editor/utils.ts → utils/tiptap}/index.d.ts +2 -0
- package/dist/utils/tiptap/useExtensionStorage.d.ts +2 -0
- package/package.json +3 -2
- /package/dist/{components/text-editor/utils.ts → utils/tiptap}/getCurrentWord.d.ts +0 -0
- /package/dist/{components/text-editor/utils.ts → utils/tiptap}/pasteImage.d.ts +0 -0
- /package/dist/{components/text-editor/utils.ts → utils/tiptap}/replaceCurrentWord.d.ts +0 -0
|
@@ -22,8 +22,8 @@ declare const _default: <T extends SelectListOption>(__VLS_props: NonNullable<Aw
|
|
|
22
22
|
triggers?: import('../..').ScrollTrigger[];
|
|
23
23
|
windowResize?: boolean;
|
|
24
24
|
}> & Readonly<{
|
|
25
|
-
onScroll?: ((value: number) => any) | undefined;
|
|
26
25
|
onIntersect?: ((args_0: ScrollIntersectionEvent) => any) | undefined;
|
|
26
|
+
onScroll?: ((value: number) => any) | undefined;
|
|
27
27
|
onScrollXActive?: ((value: boolean) => any) | undefined;
|
|
28
28
|
onScrollYActive?: ((value: boolean) => any) | undefined;
|
|
29
29
|
}>, {
|
|
@@ -33,8 +33,8 @@ declare const _default: <T extends SelectListOption>(__VLS_props: NonNullable<Aw
|
|
|
33
33
|
scrollToPercentage: (axis: "x" | "y", percentage: number) => void;
|
|
34
34
|
update: () => Promise<void>;
|
|
35
35
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
36
|
-
scroll: (value: number) => any;
|
|
37
36
|
intersect: (args_0: ScrollIntersectionEvent) => any;
|
|
37
|
+
scroll: (value: number) => any;
|
|
38
38
|
scrollXActive: (value: boolean) => any;
|
|
39
39
|
scrollYActive: (value: boolean) => any;
|
|
40
40
|
}, import('vue').PublicProps, {
|
|
@@ -69,8 +69,8 @@ declare const _default: <T extends SelectListOption>(__VLS_props: NonNullable<Aw
|
|
|
69
69
|
triggers?: import('../..').ScrollTrigger[];
|
|
70
70
|
windowResize?: boolean;
|
|
71
71
|
}> & Readonly<{
|
|
72
|
-
onScroll?: ((value: number) => any) | undefined;
|
|
73
72
|
onIntersect?: ((args_0: ScrollIntersectionEvent) => any) | undefined;
|
|
73
|
+
onScroll?: ((value: number) => any) | undefined;
|
|
74
74
|
onScrollXActive?: ((value: boolean) => any) | undefined;
|
|
75
75
|
onScrollYActive?: ((value: boolean) => any) | undefined;
|
|
76
76
|
}>, {
|
|
@@ -105,8 +105,8 @@ declare const _default: <T extends SelectListOption>(__VLS_props: NonNullable<Aw
|
|
|
105
105
|
triggers?: import('../..').ScrollTrigger[];
|
|
106
106
|
windowResize?: boolean;
|
|
107
107
|
}> & Readonly<{
|
|
108
|
-
onScroll?: ((value: number) => any) | undefined;
|
|
109
108
|
onIntersect?: ((args_0: ScrollIntersectionEvent) => any) | undefined;
|
|
109
|
+
onScroll?: ((value: number) => any) | undefined;
|
|
110
110
|
onScrollXActive?: ((value: boolean) => any) | undefined;
|
|
111
111
|
onScrollYActive?: ((value: boolean) => any) | undefined;
|
|
112
112
|
}>, {
|
|
@@ -116,8 +116,8 @@ declare const _default: <T extends SelectListOption>(__VLS_props: NonNullable<Aw
|
|
|
116
116
|
scrollToPercentage: (axis: "x" | "y", percentage: number) => void;
|
|
117
117
|
update: () => Promise<void>;
|
|
118
118
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
119
|
-
scroll: (value: number) => any;
|
|
120
119
|
intersect: (args_0: ScrollIntersectionEvent) => any;
|
|
120
|
+
scroll: (value: number) => any;
|
|
121
121
|
scrollXActive: (value: boolean) => any;
|
|
122
122
|
scrollYActive: (value: boolean) => any;
|
|
123
123
|
}, string, {
|
|
@@ -147,8 +147,8 @@ declare const _default: <T extends SelectListOption>(__VLS_props: NonNullable<Aw
|
|
|
147
147
|
triggers?: import('../..').ScrollTrigger[];
|
|
148
148
|
windowResize?: boolean;
|
|
149
149
|
}> & Readonly<{
|
|
150
|
-
onScroll?: ((value: number) => any) | undefined;
|
|
151
150
|
onIntersect?: ((args_0: ScrollIntersectionEvent) => any) | undefined;
|
|
151
|
+
onScroll?: ((value: number) => any) | undefined;
|
|
152
152
|
onScrollXActive?: ((value: boolean) => any) | undefined;
|
|
153
153
|
onScrollYActive?: ((value: boolean) => any) | undefined;
|
|
154
154
|
}>, {
|
|
@@ -158,8 +158,8 @@ declare const _default: <T extends SelectListOption>(__VLS_props: NonNullable<Aw
|
|
|
158
158
|
scrollToPercentage: (axis: "x" | "y", percentage: number) => void;
|
|
159
159
|
update: () => Promise<void>;
|
|
160
160
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
161
|
-
scroll: (value: number) => any;
|
|
162
161
|
intersect: (args_0: ScrollIntersectionEvent) => any;
|
|
162
|
+
scroll: (value: number) => any;
|
|
163
163
|
scrollXActive: (value: boolean) => any;
|
|
164
164
|
scrollYActive: (value: boolean) => any;
|
|
165
165
|
}, import('vue').PublicProps, {
|
|
@@ -194,8 +194,8 @@ declare const _default: <T extends SelectListOption>(__VLS_props: NonNullable<Aw
|
|
|
194
194
|
triggers?: import('../..').ScrollTrigger[];
|
|
195
195
|
windowResize?: boolean;
|
|
196
196
|
}> & Readonly<{
|
|
197
|
-
onScroll?: ((value: number) => any) | undefined;
|
|
198
197
|
onIntersect?: ((args_0: ScrollIntersectionEvent) => any) | undefined;
|
|
198
|
+
onScroll?: ((value: number) => any) | undefined;
|
|
199
199
|
onScrollXActive?: ((value: boolean) => any) | undefined;
|
|
200
200
|
onScrollYActive?: ((value: boolean) => any) | undefined;
|
|
201
201
|
}>, {
|
|
@@ -230,8 +230,8 @@ declare const _default: <T extends SelectListOption>(__VLS_props: NonNullable<Aw
|
|
|
230
230
|
triggers?: import('../..').ScrollTrigger[];
|
|
231
231
|
windowResize?: boolean;
|
|
232
232
|
}> & Readonly<{
|
|
233
|
-
onScroll?: ((value: number) => any) | undefined;
|
|
234
233
|
onIntersect?: ((args_0: ScrollIntersectionEvent) => any) | undefined;
|
|
234
|
+
onScroll?: ((value: number) => any) | undefined;
|
|
235
235
|
onScrollXActive?: ((value: boolean) => any) | undefined;
|
|
236
236
|
onScrollYActive?: ((value: boolean) => any) | undefined;
|
|
237
237
|
}>, {
|
|
@@ -241,8 +241,8 @@ declare const _default: <T extends SelectListOption>(__VLS_props: NonNullable<Aw
|
|
|
241
241
|
scrollToPercentage: (axis: "x" | "y", percentage: number) => void;
|
|
242
242
|
update: () => Promise<void>;
|
|
243
243
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
244
|
-
scroll: (value: number) => any;
|
|
245
244
|
intersect: (args_0: ScrollIntersectionEvent) => any;
|
|
245
|
+
scroll: (value: number) => any;
|
|
246
246
|
scrollXActive: (value: boolean) => any;
|
|
247
247
|
scrollYActive: (value: boolean) => any;
|
|
248
248
|
}, string, {
|
|
@@ -9,13 +9,13 @@ type __VLS_Props = {
|
|
|
9
9
|
};
|
|
10
10
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
11
|
click: (...args: any[]) => void;
|
|
12
|
-
hover: (...args: any[]) => void;
|
|
13
12
|
focus: (...args: any[]) => void;
|
|
14
13
|
delete: (...args: any[]) => void;
|
|
14
|
+
hover: (...args: any[]) => void;
|
|
15
15
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
16
16
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
17
|
-
onHover?: ((...args: any[]) => any) | undefined;
|
|
18
17
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
19
18
|
onDelete?: ((...args: any[]) => any) | undefined;
|
|
19
|
+
onHover?: ((...args: any[]) => any) | undefined;
|
|
20
20
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLLIElement>;
|
|
21
21
|
export default _default;
|
|
@@ -14,9 +14,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
14
14
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
15
15
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
16
16
|
}>, {
|
|
17
|
-
notification: boolean;
|
|
18
|
-
type: "default" | "pill";
|
|
19
17
|
size: "small" | "default";
|
|
18
|
+
type: "default" | "pill";
|
|
19
|
+
notification: boolean;
|
|
20
20
|
grow: boolean;
|
|
21
21
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
22
22
|
tabRef: HTMLButtonElement;
|
|
@@ -42,18 +42,18 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
42
42
|
focus: (position: TFocusPosition) => void;
|
|
43
43
|
setContent: (value: string) => boolean | undefined;
|
|
44
44
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
45
|
-
focus: (...args: any[]) => void;
|
|
46
|
-
blur: (...args: any[]) => void;
|
|
47
45
|
change: (...args: any[]) => void;
|
|
46
|
+
blur: (...args: any[]) => void;
|
|
47
|
+
focus: (...args: any[]) => void;
|
|
48
48
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
49
|
-
onFocus?: ((...args: any[]) => any) | undefined;
|
|
50
|
-
onBlur?: ((...args: any[]) => any) | undefined;
|
|
51
49
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
50
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
51
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
52
52
|
}>, {
|
|
53
53
|
link: boolean;
|
|
54
|
+
expandVertically: boolean;
|
|
54
55
|
heading: boolean;
|
|
55
56
|
history: boolean;
|
|
56
|
-
expandVertically: boolean;
|
|
57
57
|
highlight: boolean;
|
|
58
58
|
insert: boolean;
|
|
59
59
|
autoHideMenu: boolean;
|
|
@@ -29,7 +29,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
29
29
|
readonly sameWidthAsTrigger?: boolean | undefined;
|
|
30
30
|
readonly show?: boolean | undefined;
|
|
31
31
|
readonly teleportTarget?: string | undefined;
|
|
32
|
-
readonly trigger?: import('
|
|
32
|
+
readonly trigger?: import('../..').TPopperTrigger | undefined;
|
|
33
33
|
readonly triggerClass?: string | string[] | undefined;
|
|
34
34
|
readonly onClose?: ((...args: any[]) => any) | undefined;
|
|
35
35
|
readonly onOpen?: ((...args: any[]) => any) | undefined;
|
|
@@ -69,7 +69,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
69
69
|
sameWidthAsTrigger?: boolean;
|
|
70
70
|
show?: boolean;
|
|
71
71
|
teleportTarget?: string;
|
|
72
|
-
trigger?: import('
|
|
72
|
+
trigger?: import('../..').TPopperTrigger;
|
|
73
73
|
triggerClass?: string | string[];
|
|
74
74
|
}> & Readonly<{
|
|
75
75
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
@@ -87,7 +87,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
87
87
|
}, string, {
|
|
88
88
|
disabled: boolean;
|
|
89
89
|
placement: import('@floating-ui/utils').Placement;
|
|
90
|
-
trigger: import('
|
|
90
|
+
trigger: import('../..').TPopperTrigger;
|
|
91
91
|
closeDelay: number;
|
|
92
92
|
closeOnClickOutside: boolean;
|
|
93
93
|
flipOptions: Partial<{
|
|
@@ -146,7 +146,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
146
146
|
} & Readonly<{
|
|
147
147
|
disabled: boolean;
|
|
148
148
|
placement: import('@floating-ui/utils').Placement;
|
|
149
|
-
trigger: import('
|
|
149
|
+
trigger: import('../..').TPopperTrigger;
|
|
150
150
|
closeDelay: number;
|
|
151
151
|
closeOnClickOutside: boolean;
|
|
152
152
|
flipOptions: Partial<{
|
|
@@ -198,7 +198,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
198
198
|
sameWidthAsTrigger?: boolean;
|
|
199
199
|
show?: boolean;
|
|
200
200
|
teleportTarget?: string;
|
|
201
|
-
trigger?: import('
|
|
201
|
+
trigger?: import('../..').TPopperTrigger;
|
|
202
202
|
triggerClass?: string | string[];
|
|
203
203
|
}> & Readonly<{
|
|
204
204
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
@@ -226,7 +226,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
226
226
|
$props: {
|
|
227
227
|
readonly disabled?: boolean | undefined;
|
|
228
228
|
readonly clearable?: boolean | undefined;
|
|
229
|
-
readonly icon?: import('
|
|
229
|
+
readonly icon?: import('../..').TIcon | undefined;
|
|
230
230
|
readonly multiline?: boolean | undefined;
|
|
231
231
|
readonly placeholder?: string | undefined;
|
|
232
232
|
readonly size?: "default" | "small" | undefined;
|
|
@@ -257,7 +257,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
257
257
|
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
258
258
|
disabled?: boolean;
|
|
259
259
|
clearable?: boolean;
|
|
260
|
-
icon?: import('
|
|
260
|
+
icon?: import('../..').TIcon;
|
|
261
261
|
multiline?: boolean;
|
|
262
262
|
placeholder?: string;
|
|
263
263
|
size?: "default" | "small";
|
|
@@ -296,7 +296,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
296
296
|
} & Readonly<{}> & Omit<Readonly<{
|
|
297
297
|
disabled?: boolean;
|
|
298
298
|
clearable?: boolean;
|
|
299
|
-
icon?: import('
|
|
299
|
+
icon?: import('../..').TIcon;
|
|
300
300
|
multiline?: boolean;
|
|
301
301
|
placeholder?: string;
|
|
302
302
|
size?: "default" | "small";
|
|
@@ -320,7 +320,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
320
320
|
$props: {
|
|
321
321
|
readonly disabled?: boolean | undefined;
|
|
322
322
|
readonly clearable?: boolean | undefined;
|
|
323
|
-
readonly icon?: import('
|
|
323
|
+
readonly icon?: import('../..').TIcon | undefined;
|
|
324
324
|
readonly multiline?: boolean | undefined;
|
|
325
325
|
readonly placeholder?: string | undefined;
|
|
326
326
|
readonly size?: "default" | "small" | undefined;
|
|
@@ -351,7 +351,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
351
351
|
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
352
352
|
disabled?: boolean;
|
|
353
353
|
clearable?: boolean;
|
|
354
|
-
icon?: import('
|
|
354
|
+
icon?: import('../..').TIcon;
|
|
355
355
|
multiline?: boolean;
|
|
356
356
|
placeholder?: string;
|
|
357
357
|
size?: "default" | "small";
|
|
@@ -390,7 +390,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
390
390
|
} & Readonly<{}> & Omit<Readonly<{
|
|
391
391
|
disabled?: boolean;
|
|
392
392
|
clearable?: boolean;
|
|
393
|
-
icon?: import('
|
|
393
|
+
icon?: import('../..').TIcon;
|
|
394
394
|
multiline?: boolean;
|
|
395
395
|
placeholder?: string;
|
|
396
396
|
size?: "default" | "small";
|
|
@@ -13,6 +13,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
13
13
|
indentLeft: () => boolean;
|
|
14
14
|
indentRight: () => boolean;
|
|
15
15
|
redo: () => boolean;
|
|
16
|
+
reset: () => void;
|
|
16
17
|
toggleBold: () => boolean;
|
|
17
18
|
toggleBulletList: () => boolean;
|
|
18
19
|
toggleItalic: () => boolean;
|
|
@@ -23,14 +24,18 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
23
24
|
toggleUnderline: () => boolean;
|
|
24
25
|
undo: () => boolean;
|
|
25
26
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
26
|
-
focus: () => any;
|
|
27
|
-
blur: () => any;
|
|
28
27
|
change: (value: string) => any;
|
|
28
|
+
blur: () => any;
|
|
29
|
+
focus: () => any;
|
|
29
30
|
"editor-ready": () => any;
|
|
31
|
+
"new-line-state-changed": (state: boolean) => any;
|
|
32
|
+
"enter-key": () => any;
|
|
30
33
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
31
|
-
onFocus?: (() => any) | undefined;
|
|
32
|
-
onBlur?: (() => any) | undefined;
|
|
33
34
|
onChange?: ((value: string) => any) | undefined;
|
|
35
|
+
onBlur?: (() => any) | undefined;
|
|
36
|
+
onFocus?: (() => any) | undefined;
|
|
34
37
|
"onEditor-ready"?: (() => any) | undefined;
|
|
38
|
+
"onNew-line-state-changed"?: ((state: boolean) => any) | undefined;
|
|
39
|
+
"onEnter-key"?: (() => any) | undefined;
|
|
35
40
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
36
41
|
export default _default;
|
|
@@ -20,8 +20,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
20
20
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
21
21
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
22
22
|
}>, {
|
|
23
|
-
focus: boolean;
|
|
24
23
|
disabled: boolean;
|
|
24
|
+
focus: boolean;
|
|
25
25
|
stopPropagation: boolean;
|
|
26
26
|
tooltipDelay: number;
|
|
27
27
|
tooltipPlacement: Placement;
|
|
@@ -56,5 +56,5 @@ export type TTreeListNode = {
|
|
|
56
56
|
value: unknown;
|
|
57
57
|
open: boolean;
|
|
58
58
|
};
|
|
59
|
-
export declare const icons: readonly ["admin", "agent", "agent-message", "agent-reply", "arrow-deviate", "arrow-down-plus", "arrow-down", "arrow-from", "arrow-left", "arrow-move", "arrow-right", "arrow-sub", "arrow-trend", "arrow-up-plus", "arrow-up", "at-symbol", "audio", "authority", "beams", "bell", "bold", "books", "box", "building", "bullet-list", "calendar", "camera", "categories", "check-circled", "check-outline", "check", "chevron-down", "chevron-down-small", "chevron-left-double", "chevron-left", "chevron-left-small", "chevron-right-double", "chevron-right", "chevron-right-small", "chevron-up", "chevron-up-small", "clock", "close-outline", "close", "columns", "conclusion", "conversation", "copy", "crosshair", "dash", "dashboard", "delete", "delta", "download", "drag", "drag-vertical", "drilldown", "edit", "envelope", "error", "export-document", "filter", "filters", "flag", "folder", "frequency", "fullscreen-off", "fullscreen-on", "graduate", "hamburger", "handshake", "hash-symbol", "heading-1", "heading-2", "heading", "history", "home", "id-card", "id", "incognito", "indent-left", "indent-right", "information", "insert-below", "italics", "itenary", "keyboard", "lightning", "link", "list-collapse", "list-expand", "location", "lock-locked", "lock-unlocked", "magnifying-glass", "map", "match-case", "match-diacritics", "match-full-word", "megaphone", "message", "message-question", "microscope", "moon", "new-document", "news", "numbered-list", "open-link", "options", "page", "panel-left-show", "panel-left-hide", "panel-right-show", "panel-right-hide", "paper-plane", "paper", "pdf", "pen-and-paper", "phase", "photo", "pie-chart", "plus", "point-left", "point-up", "popup", "question", "radio-tower", "recycle", "redo", "refresh", "route", "rows", "scope", "settings", "share", "sign-in", "sign-out", "sign-up", "slideshow", "sort-down", "sort-up", "sort", "square-solid", "star-solid", "star", "stop-watch", "structure", "sun", "table", "tag", "teacher", "team", "telescope", "text-select", "trash", "triangle-angle", "triangle-side", "underline", "undo", "user", "venn", "video", "visibility-off-alt", "visibility-off", "visibility-on", "warning", "zoom"];
|
|
59
|
+
export declare const icons: readonly ["admin", "agent", "agent-message", "agent-reply", "arrow-deviate", "arrow-down-plus", "arrow-down", "arrow-from", "arrow-left", "arrow-move", "arrow-right", "arrow-sub", "arrow-trend", "arrow-up-plus", "arrow-up", "at-symbol", "audio", "authority", "beams", "bell", "bold", "books", "box", "building", "bullet-list", "calendar", "camera", "categories", "check-circled", "check-outline", "check", "chevron-down", "chevron-down-small", "chevron-left-double", "chevron-left", "chevron-left-small", "chevron-right-double", "chevron-right", "chevron-right-small", "chevron-up", "chevron-up-small", "clock", "close-outline", "close", "columns", "conclusion", "conversation", "copy", "crosshair", "dash", "dashboard", "delete", "delta", "download", "drag", "drag-vertical", "drilldown", "edit", "envelope", "error", "export-document", "filter", "filters", "flag", "folder", "frequency", "fullscreen-off", "fullscreen-on", "graduate", "hamburger", "handshake", "hash-symbol", "heading-1", "heading-2", "heading", "history", "home", "id-card", "id", "incognito", "indent-left", "indent-right", "information", "insert-below", "italics", "itenary", "keyboard", "key-cmd", "key-ctrl", "key-return", "key-shift", "lightning", "link", "list-collapse", "list-expand", "location", "lock-locked", "lock-unlocked", "magnifying-glass", "map", "match-case", "match-diacritics", "match-full-word", "megaphone", "message", "message-question", "microscope", "moon", "new-document", "news", "numbered-list", "open-link", "options", "page", "panel-left-show", "panel-left-hide", "panel-right-show", "panel-right-hide", "paper-plane", "paper", "pdf", "pen-and-paper", "phase", "photo", "pie-chart", "plus", "point-left", "point-up", "popup", "question", "radio-tower", "recycle", "redo", "refresh", "route", "rows", "scope", "settings", "share", "sign-in", "sign-out", "sign-up", "slideshow", "sort-down", "sort-up", "sort", "square-solid", "star-solid", "star", "stop-watch", "structure", "sun", "table", "tag", "teacher", "team", "telescope", "text-select", "trash", "triangle-angle", "triangle-side", "underline", "undo", "user", "venn", "video", "visibility-off-alt", "visibility-off", "visibility-on", "warning", "zoom"];
|
|
60
60
|
export type TIcon = (typeof icons)[number];
|
|
@@ -16,8 +16,8 @@ declare function __VLS_template(): {
|
|
|
16
16
|
};
|
|
17
17
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
18
18
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
19
|
-
border: boolean;
|
|
20
19
|
type: TSectionType;
|
|
20
|
+
border: boolean;
|
|
21
21
|
heightClass: string;
|
|
22
22
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
23
23
|
containerRef: unknown;
|
|
@@ -17,10 +17,10 @@ declare function __VLS_template(): {
|
|
|
17
17
|
};
|
|
18
18
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
19
19
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
20
|
+
widthClass: string;
|
|
20
21
|
borders: boolean;
|
|
21
22
|
footerHeightClass: string;
|
|
22
23
|
headerHeightClass: string;
|
|
23
|
-
widthClass: string;
|
|
24
24
|
windowFrame: boolean;
|
|
25
25
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
26
26
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|