dolphin-components 3.1.15-beta.9 → 3.1.16-beta.2
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 +66 -66
- package/dist/dolphin-components.css +2 -2
- package/dist/dolphin-components.es.js +19823 -19416
- package/dist/dolphin-components.umd.js +90 -90
- package/dist/index.d.ts +173 -0
- package/package.json +16 -17
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, {
|
|
@@ -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, {} & {
|
|
@@ -229,6 +298,38 @@ declare type __VLS_Slots_3 = {} & {
|
|
|
229
298
|
body2?: (props: typeof __VLS_21) => any;
|
|
230
299
|
};
|
|
231
300
|
|
|
301
|
+
declare type __VLS_Slots_4 = {} & {
|
|
302
|
+
caret?: (props: typeof __VLS_1) => any;
|
|
303
|
+
} & {
|
|
304
|
+
clear?: (props: typeof __VLS_3) => any;
|
|
305
|
+
} & {
|
|
306
|
+
selection?: (props: typeof __VLS_5) => any;
|
|
307
|
+
} & {
|
|
308
|
+
tag?: (props: typeof __VLS_7) => any;
|
|
309
|
+
} & {
|
|
310
|
+
limit?: (props: typeof __VLS_9) => any;
|
|
311
|
+
} & {
|
|
312
|
+
loading?: (props: typeof __VLS_17) => any;
|
|
313
|
+
} & {
|
|
314
|
+
singleLabel?: (props: typeof __VLS_19) => any;
|
|
315
|
+
} & {
|
|
316
|
+
placeholder?: (props: typeof __VLS_21) => any;
|
|
317
|
+
} & {
|
|
318
|
+
beforeList?: (props: typeof __VLS_35) => any;
|
|
319
|
+
} & {
|
|
320
|
+
maxElements?: (props: typeof __VLS_37) => any;
|
|
321
|
+
} & {
|
|
322
|
+
option?: (props: typeof __VLS_39) => any;
|
|
323
|
+
} & {
|
|
324
|
+
option?: (props: typeof __VLS_41) => any;
|
|
325
|
+
} & {
|
|
326
|
+
noResult?: (props: typeof __VLS_43) => any;
|
|
327
|
+
} & {
|
|
328
|
+
noOptions?: (props: typeof __VLS_45) => any;
|
|
329
|
+
} & {
|
|
330
|
+
afterList?: (props: typeof __VLS_47) => any;
|
|
331
|
+
};
|
|
332
|
+
|
|
232
333
|
declare type __VLS_WithSlots<T, S> = T & {
|
|
233
334
|
new (): {
|
|
234
335
|
$slots: S;
|
|
@@ -247,6 +348,12 @@ declare type __VLS_WithSlots_3<T, S> = T & {
|
|
|
247
348
|
};
|
|
248
349
|
};
|
|
249
350
|
|
|
351
|
+
declare type __VLS_WithSlots_4<T, S> = T & {
|
|
352
|
+
new (): {
|
|
353
|
+
$slots: S;
|
|
354
|
+
};
|
|
355
|
+
};
|
|
356
|
+
|
|
250
357
|
export declare interface ContentAction {
|
|
251
358
|
title: string;
|
|
252
359
|
emit: string;
|
|
@@ -396,6 +503,72 @@ export declare interface ModalTitle {
|
|
|
396
503
|
link?: string;
|
|
397
504
|
}
|
|
398
505
|
|
|
506
|
+
export declare const Multiselect: typeof __VLS_export_16;
|
|
507
|
+
|
|
508
|
+
declare interface MultiselectOption {
|
|
509
|
+
[key: string]: any;
|
|
510
|
+
$isLabel?: boolean;
|
|
511
|
+
$isDisabled?: boolean;
|
|
512
|
+
isTag?: boolean;
|
|
513
|
+
label?: string;
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
declare interface MultiselectProps {
|
|
517
|
+
modelValue?: any;
|
|
518
|
+
options: MultiselectOption[];
|
|
519
|
+
name?: string;
|
|
520
|
+
selectLabel?: string;
|
|
521
|
+
selectGroupLabel?: string;
|
|
522
|
+
selectedLabel?: string;
|
|
523
|
+
deselectLabel?: string;
|
|
524
|
+
deselectGroupLabel?: string;
|
|
525
|
+
showLabels?: boolean;
|
|
526
|
+
placeholder?: string;
|
|
527
|
+
tagPlaceholder?: string;
|
|
528
|
+
multiple?: boolean;
|
|
529
|
+
searchable?: boolean;
|
|
530
|
+
internalSearch?: boolean;
|
|
531
|
+
clearOnSelect?: boolean;
|
|
532
|
+
hideSelected?: boolean;
|
|
533
|
+
allowEmpty?: boolean;
|
|
534
|
+
resetAfter?: boolean;
|
|
535
|
+
closeOnSelect?: boolean;
|
|
536
|
+
taggable?: boolean;
|
|
537
|
+
tagPosition?: "top" | "bottom";
|
|
538
|
+
preselectFirst?: boolean;
|
|
539
|
+
preserveSearch?: boolean;
|
|
540
|
+
preventAutofocus?: boolean;
|
|
541
|
+
groupSelect?: boolean;
|
|
542
|
+
limit?: number;
|
|
543
|
+
max?: number | false;
|
|
544
|
+
optionsLimit?: number;
|
|
545
|
+
maxHeight?: number;
|
|
546
|
+
limitText?: (count: number) => string;
|
|
547
|
+
trackBy?: string;
|
|
548
|
+
label?: string;
|
|
549
|
+
id?: string | null;
|
|
550
|
+
tabindex?: number;
|
|
551
|
+
groupValues?: string;
|
|
552
|
+
groupLabel?: string;
|
|
553
|
+
blockKeys?: string[];
|
|
554
|
+
filteringSortFunc?: ((a: MultiselectOption, b: MultiselectOption) => number) | null;
|
|
555
|
+
customLabel?: (option: MultiselectOption, label?: string) => string;
|
|
556
|
+
loading?: boolean;
|
|
557
|
+
disabled?: boolean;
|
|
558
|
+
spellcheck?: boolean;
|
|
559
|
+
openDirection?: string;
|
|
560
|
+
showNoOptions?: boolean;
|
|
561
|
+
showNoResults?: boolean;
|
|
562
|
+
required?: boolean;
|
|
563
|
+
showPointer?: boolean;
|
|
564
|
+
optionHeight?: number;
|
|
565
|
+
useTeleport?: boolean;
|
|
566
|
+
teleportTarget?: string | object;
|
|
567
|
+
contentWrapperClass?: string | any[] | object;
|
|
568
|
+
debounceSearch?: boolean;
|
|
569
|
+
debounceSecond?: number;
|
|
570
|
+
}
|
|
571
|
+
|
|
399
572
|
export declare const NumbertoWordPlugin: {
|
|
400
573
|
install(app: App): void;
|
|
401
574
|
};
|
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.16-beta.2",
|
|
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.21.0",
|
|
46
|
+
"@tailwindcss/vite": "^4.3.1",
|
|
47
47
|
"@tinymce/tinymce-vue": "^6.3.0",
|
|
48
48
|
"@types/tabulator-tables": "^6.3.4",
|
|
49
|
-
"axios": "^1.
|
|
49
|
+
"axios": "^1.18.0",
|
|
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.1",
|
|
55
|
+
"tailwindcss": "^4.3.1",
|
|
56
56
|
"tinymce": "^8.6.0",
|
|
57
57
|
"utility-types": "^3.11.0",
|
|
58
|
-
"vue": "^3.5.
|
|
58
|
+
"vue": "^3.5.38",
|
|
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.0.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
78
|
"globals": "^17.6.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.8.
|
|
82
|
+
"prettier": "3.8.4",
|
|
84
83
|
"typescript": "~6.0.3",
|
|
85
|
-
"typescript-eslint": "^8.
|
|
84
|
+
"typescript-eslint": "^8.61.1",
|
|
86
85
|
"unplugin-dts": "^1.0.2",
|
|
87
86
|
"vite": "^8.0.16",
|
|
88
|
-
"vite-plugin-vue-devtools": "^8.1.
|
|
89
|
-
"vue-tsc": "^3.3.
|
|
87
|
+
"vite-plugin-vue-devtools": "^8.1.3",
|
|
88
|
+
"vue-tsc": "^3.3.5"
|
|
90
89
|
},
|
|
91
90
|
"keywords": [
|
|
92
91
|
"mavorion",
|