dolphin-components 2.0.5 → 2.1.0
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 +1 -129
- package/dist/dolphin-components.cjs.js +1651 -1587
- package/dist/dolphin-components.css +1 -1
- package/dist/dolphin-components.es.js +16971 -11078
- package/dist/dolphin-components.umd.js +1651 -1587
- package/dist/index.d.ts +364 -12
- package/package.json +6 -1
- package/dist/Directives/ErrorDirective.d.ts +0 -5
- package/dist/components/ContentLayout.vue.d.ts +0 -51
- package/dist/components/Icons.vue.d.ts +0 -9
- package/dist/components/Modal.vue.d.ts +0 -57
- package/dist/components/Switch.vue.d.ts +0 -11
- package/dist/components/Tabulator.vue.d.ts +0 -15
- package/dist/components/Toggle.vue.d.ts +0 -13
- package/dist/components/Towser.vue.d.ts +0 -45
- package/dist/types.d.ts +0 -115
package/dist/index.d.ts
CHANGED
|
@@ -1,12 +1,364 @@
|
|
|
1
|
-
import '
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
1
|
+
import { App } from 'vue';
|
|
2
|
+
import { CellComponent } from 'tabulator-tables';
|
|
3
|
+
import { ColumnDefinitionAlign } from 'tabulator-tables';
|
|
4
|
+
import { ComponentOptionsMixin } from 'vue';
|
|
5
|
+
import { ComponentProvideOptions } from 'vue';
|
|
6
|
+
import { ContentTitle as ContentTitle_2 } from '..';
|
|
7
|
+
import { DefineComponent } from 'vue';
|
|
8
|
+
import { DirectiveBinding } from 'vue';
|
|
9
|
+
import { Editor } from 'tabulator-tables';
|
|
10
|
+
import { ModalTitle as ModalTitle_2 } from '..';
|
|
11
|
+
import { PublicProps } from 'vue';
|
|
12
|
+
import { TabulatorAction as TabulatorAction_2 } from '..';
|
|
13
|
+
import { TabulatorData as TabulatorData_2 } from '..';
|
|
14
|
+
import { VerticalAlign } from 'tabulator-tables';
|
|
15
|
+
|
|
16
|
+
declare const __VLS_component: DefineComponent<ContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
17
|
+
[x: string]: never;
|
|
18
|
+
}, string, PublicProps, Readonly<ContentProps> & Readonly<{
|
|
19
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
20
|
+
}>, {
|
|
21
|
+
title: ContentTitle_2[];
|
|
22
|
+
bodyClass: string;
|
|
23
|
+
titleClass: string;
|
|
24
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
25
|
+
|
|
26
|
+
declare const __VLS_component_2: DefineComponent<ModalProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
27
|
+
[x: string]: never;
|
|
28
|
+
}, string, PublicProps, Readonly<ModalProps> & Readonly<{
|
|
29
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
30
|
+
}>, {
|
|
31
|
+
title: ModalTitle_2[];
|
|
32
|
+
actions: ModalAction[];
|
|
33
|
+
width: string;
|
|
34
|
+
show: boolean;
|
|
35
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
36
|
+
dynamicDiv: HTMLDivElement;
|
|
37
|
+
}, HTMLDivElement>;
|
|
38
|
+
|
|
39
|
+
declare const __VLS_component_3: DefineComponent<TowserProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
40
|
+
[x: string]: never;
|
|
41
|
+
}, string, PublicProps, Readonly<TowserProps> & Readonly<{
|
|
42
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
43
|
+
}>, {
|
|
44
|
+
show: boolean;
|
|
45
|
+
double: boolean;
|
|
46
|
+
bodyWidth: number;
|
|
47
|
+
body2Width: number;
|
|
48
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
49
|
+
|
|
50
|
+
declare function __VLS_template(): {
|
|
51
|
+
attrs: Partial<{}>;
|
|
52
|
+
slots: {
|
|
53
|
+
'action-before'?(_: {}): any;
|
|
54
|
+
'action-after'?(_: {}): any;
|
|
55
|
+
body?(_: {}): any;
|
|
56
|
+
};
|
|
57
|
+
refs: {};
|
|
58
|
+
rootEl: HTMLDivElement;
|
|
59
|
+
};
|
|
60
|
+
|
|
61
|
+
declare function __VLS_template_2(): {
|
|
62
|
+
attrs: Partial<{}>;
|
|
63
|
+
slots: {
|
|
64
|
+
default?(_: {}): any;
|
|
65
|
+
};
|
|
66
|
+
refs: {
|
|
67
|
+
dynamicDiv: HTMLDivElement;
|
|
68
|
+
};
|
|
69
|
+
rootEl: HTMLDivElement;
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
declare function __VLS_template_3(): {
|
|
73
|
+
attrs: Partial<{}>;
|
|
74
|
+
slots: {
|
|
75
|
+
default?(_: {}): any;
|
|
76
|
+
body2?(_: {}): any;
|
|
77
|
+
};
|
|
78
|
+
refs: {};
|
|
79
|
+
rootEl: any;
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
83
|
+
|
|
84
|
+
declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
|
|
85
|
+
|
|
86
|
+
declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
|
|
87
|
+
|
|
88
|
+
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
89
|
+
new (): {
|
|
90
|
+
$slots: S;
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
declare type __VLS_WithTemplateSlots_2<T, S> = T & {
|
|
95
|
+
new (): {
|
|
96
|
+
$slots: S;
|
|
97
|
+
};
|
|
98
|
+
};
|
|
99
|
+
|
|
100
|
+
declare type __VLS_WithTemplateSlots_3<T, S> = T & {
|
|
101
|
+
new (): {
|
|
102
|
+
$slots: S;
|
|
103
|
+
};
|
|
104
|
+
};
|
|
105
|
+
|
|
106
|
+
export declare interface ContentAction {
|
|
107
|
+
title: string;
|
|
108
|
+
emit: string;
|
|
109
|
+
class?: string;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
export declare const ContentLayout: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
113
|
+
|
|
114
|
+
export declare interface ContentProps {
|
|
115
|
+
title: ContentTitle[];
|
|
116
|
+
actions?: ContentAction[];
|
|
117
|
+
bodyClass?: string;
|
|
118
|
+
titleClass?: string;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
export declare interface ContentTitle {
|
|
122
|
+
name: string;
|
|
123
|
+
link?: string;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
export declare const DateRange: DefineComponent<DateRangeProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
127
|
+
search: (...args: any[]) => void;
|
|
128
|
+
"update:modelValue": (...args: any[]) => void;
|
|
129
|
+
}, string, PublicProps, Readonly<DateRangeProps> & Readonly<{
|
|
130
|
+
onSearch?: ((...args: any[]) => any) | undefined;
|
|
131
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
132
|
+
}>, {
|
|
133
|
+
modelValue: {
|
|
134
|
+
startDate: string;
|
|
135
|
+
endDate: string;
|
|
136
|
+
dateType: string;
|
|
137
|
+
isBS: boolean;
|
|
138
|
+
};
|
|
139
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
140
|
+
|
|
141
|
+
export declare interface DateRangeProps {
|
|
142
|
+
modelValue: {
|
|
143
|
+
startDate: string;
|
|
144
|
+
endDate: string;
|
|
145
|
+
dateType: string;
|
|
146
|
+
isBS: boolean;
|
|
147
|
+
};
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
export declare const DateSelector: DefineComponent<DateSelectorProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
151
|
+
"update:modelValue": (...args: any[]) => void;
|
|
152
|
+
}, string, PublicProps, Readonly<DateSelectorProps> & Readonly<{
|
|
153
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
154
|
+
}>, {
|
|
155
|
+
modelValue: string;
|
|
156
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
157
|
+
|
|
158
|
+
export declare interface DateSelectorProps {
|
|
159
|
+
modelValue: string;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
export declare const FocusNext: {
|
|
163
|
+
install(app: App): void;
|
|
164
|
+
};
|
|
165
|
+
|
|
166
|
+
export declare interface IconProps {
|
|
167
|
+
name: string;
|
|
168
|
+
size?: number;
|
|
169
|
+
color?: string;
|
|
170
|
+
strokeWidth?: number;
|
|
171
|
+
absoluteStrokeWidth?: boolean;
|
|
172
|
+
classValue?: string;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
export declare const Icons: DefineComponent<IconProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<IconProps> & Readonly<{}>, {
|
|
176
|
+
color: string;
|
|
177
|
+
size: number;
|
|
178
|
+
strokeWidth: number;
|
|
179
|
+
absoluteStrokeWidth: boolean;
|
|
180
|
+
classValue: string;
|
|
181
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
182
|
+
|
|
183
|
+
export declare const InputError: {
|
|
184
|
+
mounted: (el: HTMLElement, binding: DirectiveBinding) => void;
|
|
185
|
+
updated: (el: HTMLElement, binding: DirectiveBinding) => void;
|
|
186
|
+
};
|
|
187
|
+
|
|
188
|
+
export declare const Modal: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
|
|
189
|
+
|
|
190
|
+
export declare interface ModalAction {
|
|
191
|
+
emit: string;
|
|
192
|
+
title: string;
|
|
193
|
+
class?: string;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
export declare interface ModalProps {
|
|
197
|
+
title: ModalTitle[];
|
|
198
|
+
actions: ModalAction[];
|
|
199
|
+
show: boolean;
|
|
200
|
+
width?: string;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
export declare interface ModalTitle {
|
|
204
|
+
name: string;
|
|
205
|
+
link?: string;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
export declare const Switch: DefineComponent<SwitchProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
209
|
+
"update:modelValue": (value: boolean) => any;
|
|
210
|
+
}, string, PublicProps, Readonly<SwitchProps> & Readonly<{
|
|
211
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
212
|
+
}>, {
|
|
213
|
+
modelValue: boolean;
|
|
214
|
+
background: string;
|
|
215
|
+
disable: boolean;
|
|
216
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
217
|
+
|
|
218
|
+
export declare interface SwitchProps {
|
|
219
|
+
modelValue: boolean;
|
|
220
|
+
background?: string;
|
|
221
|
+
disable?: boolean;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
export declare const Tabulator: DefineComponent<TabulatorProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
225
|
+
[x: string]: never;
|
|
226
|
+
}, string, PublicProps, Readonly<TabulatorProps> & Readonly<{
|
|
227
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
228
|
+
}>, {
|
|
229
|
+
action: boolean;
|
|
230
|
+
data: TabulatorData_2[];
|
|
231
|
+
columns: TabulatorHeader[];
|
|
232
|
+
placeholder: string;
|
|
233
|
+
paginationSize: number;
|
|
234
|
+
paginationSizeSelector: number[];
|
|
235
|
+
actionButtons: TabulatorAction_2[];
|
|
236
|
+
heightOffset: number;
|
|
237
|
+
actionMode: "frontend" | "api";
|
|
238
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
239
|
+
table: HTMLDivElement;
|
|
240
|
+
}, HTMLDivElement>;
|
|
241
|
+
|
|
242
|
+
export declare interface TabulatorAction {
|
|
243
|
+
name: string;
|
|
244
|
+
emit: string;
|
|
245
|
+
class: string;
|
|
246
|
+
hide: boolean;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
export declare interface TabulatorData {
|
|
250
|
+
id: string | number;
|
|
251
|
+
action?: {
|
|
252
|
+
name: string;
|
|
253
|
+
emit: string;
|
|
254
|
+
class?: string;
|
|
255
|
+
}[];
|
|
256
|
+
[key: string]: any;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
export declare interface TabulatorHeader {
|
|
260
|
+
title: string;
|
|
261
|
+
field: string;
|
|
262
|
+
headerFilter?: Editor;
|
|
263
|
+
headerFilterPlaceholder?: string;
|
|
264
|
+
isNotMandatory?: boolean;
|
|
265
|
+
width?: number;
|
|
266
|
+
vertAlign?: VerticalAlign;
|
|
267
|
+
hozAlign?: ColumnDefinitionAlign;
|
|
268
|
+
headerSort?: boolean;
|
|
269
|
+
formatter?: (cell: CellComponent) => string;
|
|
270
|
+
cellClick?: (e: UIEvent, cell: CellComponent) => void;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
export declare interface TabulatorModalSettings {
|
|
274
|
+
title: Array<{
|
|
275
|
+
name: string;
|
|
276
|
+
}>;
|
|
277
|
+
action: Array<{
|
|
278
|
+
title: string;
|
|
279
|
+
emit: string;
|
|
280
|
+
class?: string;
|
|
281
|
+
}>;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
export declare interface TabulatorProps {
|
|
285
|
+
data: TabulatorData[];
|
|
286
|
+
columns: TabulatorHeader[];
|
|
287
|
+
placeholder: string;
|
|
288
|
+
paginationSize: number;
|
|
289
|
+
paginationSizeSelector: number[];
|
|
290
|
+
action: boolean;
|
|
291
|
+
actionButtons: TabulatorAction[];
|
|
292
|
+
heightOffset: number;
|
|
293
|
+
actionMode: 'frontend' | 'api';
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
export declare const Toast: {
|
|
297
|
+
error(msg: string, delay?: number): void;
|
|
298
|
+
warn(msg: string, delay?: number): void;
|
|
299
|
+
success(msg: string, delay?: number): void;
|
|
300
|
+
info(msg: string, delay?: number): void;
|
|
301
|
+
};
|
|
302
|
+
|
|
303
|
+
export declare const Toggle: DefineComponent<ToggleProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
304
|
+
"update:modelValue": (value: boolean) => any;
|
|
305
|
+
}, string, PublicProps, Readonly<ToggleProps> & Readonly<{
|
|
306
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
307
|
+
}>, {
|
|
308
|
+
width: string;
|
|
309
|
+
modelValue: boolean;
|
|
310
|
+
disable: boolean;
|
|
311
|
+
onText: string;
|
|
312
|
+
offText: string;
|
|
313
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
314
|
+
|
|
315
|
+
export declare interface ToggleProps {
|
|
316
|
+
modelValue: boolean;
|
|
317
|
+
onText?: string;
|
|
318
|
+
offText?: string;
|
|
319
|
+
width?: string;
|
|
320
|
+
disable?: boolean;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
export declare const Towser: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
324
|
+
|
|
325
|
+
export declare interface TowserAction {
|
|
326
|
+
emit: string;
|
|
327
|
+
title: string;
|
|
328
|
+
class?: string;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
export declare interface TowserProps {
|
|
332
|
+
show: boolean;
|
|
333
|
+
title: TowserTitle[];
|
|
334
|
+
actions?: TowserAction[];
|
|
335
|
+
double?: boolean;
|
|
336
|
+
bodyWidth?: number;
|
|
337
|
+
body2Width?: number;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
export declare interface TowserTitle {
|
|
341
|
+
name: string;
|
|
342
|
+
link?: string;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
export declare class WebSocketWrapper {
|
|
346
|
+
private socket;
|
|
347
|
+
private url;
|
|
348
|
+
private isConnected;
|
|
349
|
+
setURL(url: string): void;
|
|
350
|
+
init(): Promise<WebSocketWrapper>;
|
|
351
|
+
onMessage(callback: (message: string) => void): Promise<WebSocketWrapper>;
|
|
352
|
+
sendMessage(message: string): Promise<void>;
|
|
353
|
+
close(): void;
|
|
354
|
+
getConnectionStatus(): boolean;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
export { }
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
declare module '@vue/runtime-core' {
|
|
361
|
+
interface ComponentCustomProperties {
|
|
362
|
+
$focusNext: (nextElementId: string) => void;
|
|
363
|
+
}
|
|
364
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dolphin-components",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "2.0
|
|
4
|
+
"version": "2.1.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist"
|
|
@@ -29,10 +29,15 @@
|
|
|
29
29
|
"@tailwindcss/vite": "^4.0.3",
|
|
30
30
|
"@types/tabulator-tables": "^6.2.3",
|
|
31
31
|
"lucide-vue-next": "^0.484.0",
|
|
32
|
+
"moment": "^2.30.1",
|
|
33
|
+
"nepali-date-library": "^1.1.1",
|
|
34
|
+
"nepali-datepicker-vue": "^1.0.2",
|
|
32
35
|
"sweetalert2": "^11.15.10",
|
|
33
36
|
"tabulator-tables": "^6.3.1",
|
|
34
37
|
"tailwindcss": "^4.0.3",
|
|
38
|
+
"utility-types": "^3.11.0",
|
|
35
39
|
"vue": "^3.5.13",
|
|
40
|
+
"vue-datepicker-next": "^1.0.3",
|
|
36
41
|
"vue-multiselect": "^3.2.0"
|
|
37
42
|
},
|
|
38
43
|
"peerDependencies": {
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
import type { ContentAction, ContentProps } from '../types';
|
|
2
|
-
type __VLS_Emit = {
|
|
3
|
-
(event: string, data?: string | number): void;
|
|
4
|
-
};
|
|
5
|
-
declare const emit: __VLS_Emit;
|
|
6
|
-
declare const currentActions: import("vue").Ref<{
|
|
7
|
-
title: string;
|
|
8
|
-
emit: string;
|
|
9
|
-
class?: string;
|
|
10
|
-
}[], ContentAction[] | {
|
|
11
|
-
title: string;
|
|
12
|
-
emit: string;
|
|
13
|
-
class?: string;
|
|
14
|
-
}[]>;
|
|
15
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
16
|
-
declare var __VLS_5: {}, __VLS_7: {}, __VLS_9: {};
|
|
17
|
-
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
18
|
-
'action-before'?: (props: typeof __VLS_5) => any;
|
|
19
|
-
} & {
|
|
20
|
-
'action-after'?: (props: typeof __VLS_7) => any;
|
|
21
|
-
} & {
|
|
22
|
-
body?: (props: typeof __VLS_9) => any;
|
|
23
|
-
}>;
|
|
24
|
-
declare const __VLS_self: import("vue").DefineComponent<ContentProps, {
|
|
25
|
-
emit: typeof emit;
|
|
26
|
-
currentActions: typeof currentActions;
|
|
27
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
28
|
-
[x: string]: never;
|
|
29
|
-
}, string, import("vue").PublicProps, Readonly<ContentProps> & Readonly<{
|
|
30
|
-
[x: `on${Capitalize<string>}`]: (...args: unknown[]) => any;
|
|
31
|
-
}>, {
|
|
32
|
-
title: import("../types").ContentTitle[];
|
|
33
|
-
bodyClass: string;
|
|
34
|
-
titleClass: string;
|
|
35
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
36
|
-
declare const __VLS_component: import("vue").DefineComponent<ContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
37
|
-
[x: string]: never;
|
|
38
|
-
}, string, import("vue").PublicProps, Readonly<ContentProps> & Readonly<{
|
|
39
|
-
[x: `on${Capitalize<string>}`]: (...args: unknown[]) => any;
|
|
40
|
-
}>, {
|
|
41
|
-
title: import("../types").ContentTitle[];
|
|
42
|
-
bodyClass: string;
|
|
43
|
-
titleClass: string;
|
|
44
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
45
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
46
|
-
export default _default;
|
|
47
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
48
|
-
new (): {
|
|
49
|
-
$slots: S;
|
|
50
|
-
};
|
|
51
|
-
};
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { IconProps } from '@/types';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<IconProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<IconProps> & Readonly<{}>, {
|
|
3
|
-
color: string;
|
|
4
|
-
strokeWidth: number;
|
|
5
|
-
size: number;
|
|
6
|
-
absoluteStrokeWidth: boolean;
|
|
7
|
-
classValue: string;
|
|
8
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
9
|
-
export default _default;
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
import type { ModalAction, ModalProps } from '../types';
|
|
2
|
-
type __VLS_Emit = {
|
|
3
|
-
(event: string, data?: string | number): void;
|
|
4
|
-
};
|
|
5
|
-
declare const emit: __VLS_Emit;
|
|
6
|
-
declare const screenHeight: import("vue").Ref<number, number>;
|
|
7
|
-
declare const dynamicDiv: import("vue").Ref<HTMLElement, HTMLElement>;
|
|
8
|
-
declare const shouldApplyOverflow: import("vue").Ref<boolean, boolean>;
|
|
9
|
-
declare const handleAction: (action: ModalAction) => void;
|
|
10
|
-
declare const currentActions: import("vue").Ref<{
|
|
11
|
-
emit: string;
|
|
12
|
-
title: string;
|
|
13
|
-
class?: string;
|
|
14
|
-
}[], ModalAction[] | {
|
|
15
|
-
emit: string;
|
|
16
|
-
title: string;
|
|
17
|
-
class?: string;
|
|
18
|
-
}[]>;
|
|
19
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
20
|
-
declare var __VLS_9: {};
|
|
21
|
-
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
22
|
-
default?: (props: typeof __VLS_9) => any;
|
|
23
|
-
}>;
|
|
24
|
-
declare const __VLS_self: import("vue").DefineComponent<ModalProps, {
|
|
25
|
-
emit: typeof emit;
|
|
26
|
-
screenHeight: typeof screenHeight;
|
|
27
|
-
dynamicDiv: typeof dynamicDiv;
|
|
28
|
-
shouldApplyOverflow: typeof shouldApplyOverflow;
|
|
29
|
-
handleAction: typeof handleAction;
|
|
30
|
-
currentActions: typeof currentActions;
|
|
31
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
32
|
-
[x: string]: never;
|
|
33
|
-
}, string, import("vue").PublicProps, Readonly<ModalProps> & Readonly<{
|
|
34
|
-
[x: `on${Capitalize<string>}`]: (...args: unknown[]) => any;
|
|
35
|
-
}>, {
|
|
36
|
-
show: boolean;
|
|
37
|
-
width: string;
|
|
38
|
-
title: import("../types").ModalTitle[];
|
|
39
|
-
actions: ModalAction[];
|
|
40
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
41
|
-
declare const __VLS_component: import("vue").DefineComponent<ModalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
42
|
-
[x: string]: never;
|
|
43
|
-
}, string, import("vue").PublicProps, Readonly<ModalProps> & Readonly<{
|
|
44
|
-
[x: `on${Capitalize<string>}`]: (...args: unknown[]) => any;
|
|
45
|
-
}>, {
|
|
46
|
-
show: boolean;
|
|
47
|
-
width: string;
|
|
48
|
-
title: import("../types").ModalTitle[];
|
|
49
|
-
actions: ModalAction[];
|
|
50
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
51
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
52
|
-
export default _default;
|
|
53
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
54
|
-
new (): {
|
|
55
|
-
$slots: S;
|
|
56
|
-
};
|
|
57
|
-
};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import type { SwitchProps } from '../types';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<SwitchProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
3
|
-
"update:modelValue": (value: boolean) => any;
|
|
4
|
-
}, string, import("vue").PublicProps, Readonly<SwitchProps> & Readonly<{
|
|
5
|
-
"onUpdate:modelValue"?: (value: boolean) => any;
|
|
6
|
-
}>, {
|
|
7
|
-
background: string;
|
|
8
|
-
modelValue: boolean;
|
|
9
|
-
disable: boolean;
|
|
10
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
11
|
-
export default _default;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { type TabulatorHeader, type TabulatorProps } from '../types';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<TabulatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
3
|
-
[x: string]: never;
|
|
4
|
-
}, string, import("vue").PublicProps, Readonly<TabulatorProps> & Readonly<{
|
|
5
|
-
[x: `on${Capitalize<string>}`]: (...args: unknown[]) => any;
|
|
6
|
-
}>, {
|
|
7
|
-
data: import("../types").TabulatorData[];
|
|
8
|
-
columns: TabulatorHeader[];
|
|
9
|
-
action: boolean;
|
|
10
|
-
placeholder: string;
|
|
11
|
-
paginationSize: number;
|
|
12
|
-
paginationSizeSelector: number[];
|
|
13
|
-
heightOffset: number;
|
|
14
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
|
-
export default _default;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import type { ToggleProps } from '../types';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<ToggleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
3
|
-
"update:modelValue": (value: boolean) => any;
|
|
4
|
-
}, string, import("vue").PublicProps, Readonly<ToggleProps> & Readonly<{
|
|
5
|
-
"onUpdate:modelValue"?: (value: boolean) => any;
|
|
6
|
-
}>, {
|
|
7
|
-
width: string;
|
|
8
|
-
modelValue: boolean;
|
|
9
|
-
disable: boolean;
|
|
10
|
-
onText: string;
|
|
11
|
-
offText: string;
|
|
12
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
|
-
export default _default;
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import type { TowserProps } from '../types';
|
|
2
|
-
type __VLS_Emit = {
|
|
3
|
-
(event: string, data?: string | number): void;
|
|
4
|
-
};
|
|
5
|
-
declare const emit: __VLS_Emit;
|
|
6
|
-
declare const bodyStyle: import("vue").ComputedRef<string>;
|
|
7
|
-
declare const body2Style: import("vue").ComputedRef<string>;
|
|
8
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
9
|
-
declare var __VLS_9: {}, __VLS_11: {};
|
|
10
|
-
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
11
|
-
default?: (props: typeof __VLS_9) => any;
|
|
12
|
-
} & {
|
|
13
|
-
body2?: (props: typeof __VLS_11) => any;
|
|
14
|
-
}>;
|
|
15
|
-
declare const __VLS_self: import("vue").DefineComponent<TowserProps, {
|
|
16
|
-
emit: typeof emit;
|
|
17
|
-
bodyStyle: typeof bodyStyle;
|
|
18
|
-
body2Style: typeof body2Style;
|
|
19
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
20
|
-
[x: string]: never;
|
|
21
|
-
}, string, import("vue").PublicProps, Readonly<TowserProps> & Readonly<{
|
|
22
|
-
[x: `on${Capitalize<string>}`]: (...args: unknown[]) => any;
|
|
23
|
-
}>, {
|
|
24
|
-
show: boolean;
|
|
25
|
-
double: boolean;
|
|
26
|
-
bodyWidth: number;
|
|
27
|
-
body2Width: number;
|
|
28
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
29
|
-
declare const __VLS_component: import("vue").DefineComponent<TowserProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
30
|
-
[x: string]: never;
|
|
31
|
-
}, string, import("vue").PublicProps, Readonly<TowserProps> & Readonly<{
|
|
32
|
-
[x: `on${Capitalize<string>}`]: (...args: unknown[]) => any;
|
|
33
|
-
}>, {
|
|
34
|
-
show: boolean;
|
|
35
|
-
double: boolean;
|
|
36
|
-
bodyWidth: number;
|
|
37
|
-
body2Width: number;
|
|
38
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
39
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
40
|
-
export default _default;
|
|
41
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
42
|
-
new (): {
|
|
43
|
-
$slots: S;
|
|
44
|
-
};
|
|
45
|
-
};
|