dolphin-components 3.1.16 → 3.1.18-beta.1
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/dolphin-components.cjs.js +70 -70
- package/dist/dolphin-components.css +2 -2
- package/dist/dolphin-components.es.js +20964 -20273
- package/dist/dolphin-components.umd.js +118 -118
- package/dist/index.d.ts +182 -1
- package/package.json +20 -21
package/dist/index.d.ts
CHANGED
|
@@ -41,6 +41,73 @@ declare const __VLS_base_3: DefineComponent<TowserProps, {}, {}, {}, {}, Compone
|
|
|
41
41
|
body2Width: number;
|
|
42
42
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
43
43
|
|
|
44
|
+
declare const __VLS_base_4: DefineComponent<MultiselectProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
45
|
+
select: (option: MultiselectOption | MultiselectOption[], id: string | null) => any;
|
|
46
|
+
close: (value: any, id: string | null) => any;
|
|
47
|
+
"update:modelValue": (value: any) => any;
|
|
48
|
+
open: (id: string | null) => any;
|
|
49
|
+
remove: (option: MultiselectOption | MultiselectOption[], id: string | null) => any;
|
|
50
|
+
tag: (label: string, id: string | null) => any;
|
|
51
|
+
"search-change": (query: string | null | undefined) => any;
|
|
52
|
+
}, string, PublicProps, Readonly<MultiselectProps> & Readonly<{
|
|
53
|
+
onSelect?: ((option: MultiselectOption | MultiselectOption[], id: string | null) => any) | undefined;
|
|
54
|
+
onClose?: ((value: any, id: string | null) => any) | undefined;
|
|
55
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
56
|
+
onOpen?: ((id: string | null) => any) | undefined;
|
|
57
|
+
onRemove?: ((option: MultiselectOption | MultiselectOption[], id: string | null) => any) | undefined;
|
|
58
|
+
onTag?: ((label: string, id: string | null) => any) | undefined;
|
|
59
|
+
"onSearch-change"?: ((query: string | null | undefined) => any) | undefined;
|
|
60
|
+
}>, {
|
|
61
|
+
id: string | null;
|
|
62
|
+
required: boolean;
|
|
63
|
+
disabled: boolean;
|
|
64
|
+
name: string;
|
|
65
|
+
maxHeight: number;
|
|
66
|
+
modelValue: any;
|
|
67
|
+
max: number | false;
|
|
68
|
+
tabindex: number;
|
|
69
|
+
placeholder: string;
|
|
70
|
+
allowEmpty: boolean;
|
|
71
|
+
multiple: boolean;
|
|
72
|
+
selectLabel: string;
|
|
73
|
+
selectGroupLabel: string;
|
|
74
|
+
selectedLabel: string;
|
|
75
|
+
deselectLabel: string;
|
|
76
|
+
deselectGroupLabel: string;
|
|
77
|
+
showLabels: boolean;
|
|
78
|
+
tagPlaceholder: string;
|
|
79
|
+
searchable: boolean;
|
|
80
|
+
internalSearch: boolean;
|
|
81
|
+
clearOnSelect: boolean;
|
|
82
|
+
hideSelected: boolean;
|
|
83
|
+
resetAfter: boolean;
|
|
84
|
+
closeOnSelect: boolean;
|
|
85
|
+
taggable: boolean;
|
|
86
|
+
tagPosition: "top" | "bottom";
|
|
87
|
+
preselectFirst: boolean;
|
|
88
|
+
preserveSearch: boolean;
|
|
89
|
+
preventAutofocus: boolean;
|
|
90
|
+
groupSelect: boolean;
|
|
91
|
+
limit: number;
|
|
92
|
+
optionsLimit: number;
|
|
93
|
+
limitText: (count: number) => string;
|
|
94
|
+
blockKeys: string[];
|
|
95
|
+
filteringSortFunc: ((a: MultiselectOption, b: MultiselectOption) => number) | null;
|
|
96
|
+
customLabel: (option: MultiselectOption, label?: string) => string;
|
|
97
|
+
loading: boolean;
|
|
98
|
+
spellcheck: boolean;
|
|
99
|
+
openDirection: string;
|
|
100
|
+
showNoOptions: boolean;
|
|
101
|
+
showNoResults: boolean;
|
|
102
|
+
showPointer: boolean;
|
|
103
|
+
optionHeight: number;
|
|
104
|
+
useTeleport: boolean;
|
|
105
|
+
teleportTarget: string | object;
|
|
106
|
+
contentWrapperClass: string | any[] | object;
|
|
107
|
+
debounceSearch: boolean;
|
|
108
|
+
debounceSecond: number;
|
|
109
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
110
|
+
|
|
44
111
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
45
112
|
|
|
46
113
|
declare const __VLS_export_10: DefineComponent<WizardProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
@@ -87,8 +154,8 @@ declare const __VLS_export_14: DefineComponent<UploadFileProps, {}, {}, {}, {},
|
|
|
87
154
|
}>, {
|
|
88
155
|
modelValue: File | File[] | null;
|
|
89
156
|
columns: number;
|
|
90
|
-
multiple: boolean;
|
|
91
157
|
accept: string;
|
|
158
|
+
multiple: boolean;
|
|
92
159
|
maxFiles: number;
|
|
93
160
|
dragAndDrop: boolean;
|
|
94
161
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
@@ -104,6 +171,8 @@ declare const __VLS_export_15: DefineComponent<TextEditorProps, {}, {}, {}, {},
|
|
|
104
171
|
min_height: number;
|
|
105
172
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
106
173
|
|
|
174
|
+
declare const __VLS_export_16: __VLS_WithSlots_4<typeof __VLS_base_4, __VLS_Slots_4>;
|
|
175
|
+
|
|
107
176
|
declare const __VLS_export_2: __VLS_WithSlots_2<typeof __VLS_base_2, __VLS_Slots_2>;
|
|
108
177
|
|
|
109
178
|
declare const __VLS_export_3: DefineComponent<SwitchProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
@@ -150,6 +219,10 @@ declare const __VLS_export_4: DefineComponent<TabulatorProps, {
|
|
|
150
219
|
enableFooterBlock: boolean;
|
|
151
220
|
enableSelectable: boolean;
|
|
152
221
|
disableFooter: boolean;
|
|
222
|
+
maxSelectableRows: number | boolean;
|
|
223
|
+
enableRangeSelect: boolean;
|
|
224
|
+
selectionOverflowMode: "block" | "rolling";
|
|
225
|
+
ajaxDelay: number;
|
|
153
226
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
154
227
|
|
|
155
228
|
declare const __VLS_export_5: DefineComponent<ToggleProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
@@ -229,6 +302,38 @@ declare type __VLS_Slots_3 = {} & {
|
|
|
229
302
|
body2?: (props: typeof __VLS_21) => any;
|
|
230
303
|
};
|
|
231
304
|
|
|
305
|
+
declare type __VLS_Slots_4 = {} & {
|
|
306
|
+
caret?: (props: typeof __VLS_1) => any;
|
|
307
|
+
} & {
|
|
308
|
+
clear?: (props: typeof __VLS_3) => any;
|
|
309
|
+
} & {
|
|
310
|
+
selection?: (props: typeof __VLS_5) => any;
|
|
311
|
+
} & {
|
|
312
|
+
tag?: (props: typeof __VLS_7) => any;
|
|
313
|
+
} & {
|
|
314
|
+
limit?: (props: typeof __VLS_9) => any;
|
|
315
|
+
} & {
|
|
316
|
+
loading?: (props: typeof __VLS_17) => any;
|
|
317
|
+
} & {
|
|
318
|
+
singleLabel?: (props: typeof __VLS_19) => any;
|
|
319
|
+
} & {
|
|
320
|
+
placeholder?: (props: typeof __VLS_21) => any;
|
|
321
|
+
} & {
|
|
322
|
+
beforeList?: (props: typeof __VLS_35) => any;
|
|
323
|
+
} & {
|
|
324
|
+
maxElements?: (props: typeof __VLS_37) => any;
|
|
325
|
+
} & {
|
|
326
|
+
option?: (props: typeof __VLS_39) => any;
|
|
327
|
+
} & {
|
|
328
|
+
option?: (props: typeof __VLS_41) => any;
|
|
329
|
+
} & {
|
|
330
|
+
noResult?: (props: typeof __VLS_43) => any;
|
|
331
|
+
} & {
|
|
332
|
+
noOptions?: (props: typeof __VLS_45) => any;
|
|
333
|
+
} & {
|
|
334
|
+
afterList?: (props: typeof __VLS_47) => any;
|
|
335
|
+
};
|
|
336
|
+
|
|
232
337
|
declare type __VLS_WithSlots<T, S> = T & {
|
|
233
338
|
new (): {
|
|
234
339
|
$slots: S;
|
|
@@ -247,6 +352,12 @@ declare type __VLS_WithSlots_3<T, S> = T & {
|
|
|
247
352
|
};
|
|
248
353
|
};
|
|
249
354
|
|
|
355
|
+
declare type __VLS_WithSlots_4<T, S> = T & {
|
|
356
|
+
new (): {
|
|
357
|
+
$slots: S;
|
|
358
|
+
};
|
|
359
|
+
};
|
|
360
|
+
|
|
250
361
|
export declare interface ContentAction {
|
|
251
362
|
title: string;
|
|
252
363
|
emit: string;
|
|
@@ -396,6 +507,72 @@ export declare interface ModalTitle {
|
|
|
396
507
|
link?: string;
|
|
397
508
|
}
|
|
398
509
|
|
|
510
|
+
export declare const Multiselect: typeof __VLS_export_16;
|
|
511
|
+
|
|
512
|
+
declare interface MultiselectOption {
|
|
513
|
+
[key: string]: any;
|
|
514
|
+
$isLabel?: boolean;
|
|
515
|
+
$isDisabled?: boolean;
|
|
516
|
+
isTag?: boolean;
|
|
517
|
+
label?: string;
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
declare interface MultiselectProps {
|
|
521
|
+
modelValue?: any;
|
|
522
|
+
options: MultiselectOption[];
|
|
523
|
+
name?: string;
|
|
524
|
+
selectLabel?: string;
|
|
525
|
+
selectGroupLabel?: string;
|
|
526
|
+
selectedLabel?: string;
|
|
527
|
+
deselectLabel?: string;
|
|
528
|
+
deselectGroupLabel?: string;
|
|
529
|
+
showLabels?: boolean;
|
|
530
|
+
placeholder?: string;
|
|
531
|
+
tagPlaceholder?: string;
|
|
532
|
+
multiple?: boolean;
|
|
533
|
+
searchable?: boolean;
|
|
534
|
+
internalSearch?: boolean;
|
|
535
|
+
clearOnSelect?: boolean;
|
|
536
|
+
hideSelected?: boolean;
|
|
537
|
+
allowEmpty?: boolean;
|
|
538
|
+
resetAfter?: boolean;
|
|
539
|
+
closeOnSelect?: boolean;
|
|
540
|
+
taggable?: boolean;
|
|
541
|
+
tagPosition?: "top" | "bottom";
|
|
542
|
+
preselectFirst?: boolean;
|
|
543
|
+
preserveSearch?: boolean;
|
|
544
|
+
preventAutofocus?: boolean;
|
|
545
|
+
groupSelect?: boolean;
|
|
546
|
+
limit?: number;
|
|
547
|
+
max?: number | false;
|
|
548
|
+
optionsLimit?: number;
|
|
549
|
+
maxHeight?: number;
|
|
550
|
+
limitText?: (count: number) => string;
|
|
551
|
+
trackBy?: string;
|
|
552
|
+
label?: string;
|
|
553
|
+
id?: string | null;
|
|
554
|
+
tabindex?: number;
|
|
555
|
+
groupValues?: string;
|
|
556
|
+
groupLabel?: string;
|
|
557
|
+
blockKeys?: string[];
|
|
558
|
+
filteringSortFunc?: ((a: MultiselectOption, b: MultiselectOption) => number) | null;
|
|
559
|
+
customLabel?: (option: MultiselectOption, label?: string) => string;
|
|
560
|
+
loading?: boolean;
|
|
561
|
+
disabled?: boolean;
|
|
562
|
+
spellcheck?: boolean;
|
|
563
|
+
openDirection?: string;
|
|
564
|
+
showNoOptions?: boolean;
|
|
565
|
+
showNoResults?: boolean;
|
|
566
|
+
required?: boolean;
|
|
567
|
+
showPointer?: boolean;
|
|
568
|
+
optionHeight?: number;
|
|
569
|
+
useTeleport?: boolean;
|
|
570
|
+
teleportTarget?: string | object;
|
|
571
|
+
contentWrapperClass?: string | any[] | object;
|
|
572
|
+
debounceSearch?: boolean;
|
|
573
|
+
debounceSecond?: number;
|
|
574
|
+
}
|
|
575
|
+
|
|
399
576
|
export declare const NumbertoWordPlugin: {
|
|
400
577
|
install(app: App): void;
|
|
401
578
|
};
|
|
@@ -496,6 +673,10 @@ export declare interface TabulatorProps {
|
|
|
496
673
|
enableFooterBlock?: boolean;
|
|
497
674
|
enableSelectable?: boolean;
|
|
498
675
|
disableFooter?: boolean;
|
|
676
|
+
maxSelectableRows?: number | boolean;
|
|
677
|
+
enableRangeSelect?: boolean;
|
|
678
|
+
selectionOverflowMode?: "block" | "rolling";
|
|
679
|
+
ajaxDelay?: number;
|
|
499
680
|
}
|
|
500
681
|
|
|
501
682
|
export declare const TextEditor: typeof __VLS_export_15;
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dolphin-components",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "3.1.
|
|
4
|
+
"version": "3.1.18-beta.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist",
|
|
8
8
|
"eslint"
|
|
9
9
|
],
|
|
10
10
|
"engines": {
|
|
11
|
-
"node": "
|
|
11
|
+
"node": "26.3.1"
|
|
12
12
|
},
|
|
13
13
|
"author": "<Mavorion Systems> (https://mavorion.com/)",
|
|
14
14
|
"homepage": "https://mavorion.com/",
|
|
@@ -42,22 +42,21 @@
|
|
|
42
42
|
"prepare": "git-sentry init"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@lucide/vue": "^1.
|
|
46
|
-
"@tailwindcss/vite": "^4.3.
|
|
45
|
+
"@lucide/vue": "^1.22.0",
|
|
46
|
+
"@tailwindcss/vite": "^4.3.2",
|
|
47
47
|
"@tinymce/tinymce-vue": "^6.3.0",
|
|
48
|
-
"@types/tabulator-tables": "^6.3.
|
|
49
|
-
"axios": "^1.
|
|
48
|
+
"@types/tabulator-tables": "^6.3.5",
|
|
49
|
+
"axios": "^1.18.1",
|
|
50
50
|
"moment": "^2.30.1",
|
|
51
51
|
"nepali-date-library": "^1.1.14",
|
|
52
52
|
"nepali-datepicker-vue": "^2.0.0",
|
|
53
53
|
"sweetalert2": "^11.26.25",
|
|
54
|
-
"tabulator-tables": "^6.
|
|
55
|
-
"tailwindcss": "^4.3.
|
|
54
|
+
"tabulator-tables": "^6.5.2",
|
|
55
|
+
"tailwindcss": "^4.3.2",
|
|
56
56
|
"tinymce": "^8.6.0",
|
|
57
57
|
"utility-types": "^3.11.0",
|
|
58
|
-
"vue": "^3.5.
|
|
58
|
+
"vue": "^3.5.39",
|
|
59
59
|
"vue-datepicker-next": "^1.0.3",
|
|
60
|
-
"vue-multiselect": "^3.5.0",
|
|
61
60
|
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
|
|
62
61
|
},
|
|
63
62
|
"peerDependencies": {
|
|
@@ -66,27 +65,27 @@
|
|
|
66
65
|
},
|
|
67
66
|
"devDependencies": {
|
|
68
67
|
"@eslint/js": "^10.0.1",
|
|
69
|
-
"@microsoft/api-extractor": "^7.58.
|
|
68
|
+
"@microsoft/api-extractor": "^7.58.9",
|
|
70
69
|
"@tsconfig/node24": "^24.0.4",
|
|
71
|
-
"@types/node": "^
|
|
70
|
+
"@types/node": "^26.1.0",
|
|
72
71
|
"@vitejs/plugin-vue": "^6.0.7",
|
|
73
72
|
"@vue/eslint-config-prettier": "^10.2.0",
|
|
74
|
-
"@vue/eslint-config-typescript": "^14.
|
|
73
|
+
"@vue/eslint-config-typescript": "^14.9.0",
|
|
75
74
|
"@vue/tsconfig": "^0.9.1",
|
|
76
75
|
"eslint-plugin-prettier": "^5.5.6",
|
|
77
76
|
"eslint-plugin-vue": "^10.9.2",
|
|
78
77
|
"git-sentry": "^1.0.2",
|
|
79
|
-
"globals": "^17.
|
|
78
|
+
"globals": "^17.7.0",
|
|
80
79
|
"jiti": "^2.7.0",
|
|
81
|
-
"npm-run-all2": "^9.0.
|
|
80
|
+
"npm-run-all2": "^9.0.2",
|
|
82
81
|
"path": "^0.12.7",
|
|
83
|
-
"prettier": "3.
|
|
82
|
+
"prettier": "3.9.4",
|
|
84
83
|
"typescript": "~6.0.3",
|
|
85
|
-
"typescript-eslint": "^8.
|
|
86
|
-
"unplugin-dts": "^1.0.
|
|
87
|
-
"vite": "^8.
|
|
88
|
-
"vite-plugin-vue-devtools": "^8.1.
|
|
89
|
-
"vue-tsc": "^3.3.
|
|
84
|
+
"typescript-eslint": "^8.62.1",
|
|
85
|
+
"unplugin-dts": "^1.0.3",
|
|
86
|
+
"vite": "^8.1.2",
|
|
87
|
+
"vite-plugin-vue-devtools": "^8.1.5",
|
|
88
|
+
"vue-tsc": "^3.3.6"
|
|
90
89
|
},
|
|
91
90
|
"keywords": [
|
|
92
91
|
"mavorion",
|