dolphin-components 2.2.3 → 2.2.4
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 +79 -79
- package/dist/dolphin-components.css +1 -1
- package/dist/dolphin-components.es.js +1079 -1010
- package/dist/dolphin-components.umd.js +83 -83
- package/dist/index.d.ts +22 -0
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -403,6 +403,28 @@ export declare class WebSocketWrapper {
|
|
|
403
403
|
getConnectionStatus(): boolean;
|
|
404
404
|
}
|
|
405
405
|
|
|
406
|
+
export declare const Wizard: DefineComponent<WizardProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
407
|
+
"step-change": (step: number) => any;
|
|
408
|
+
}, string, PublicProps, Readonly<WizardProps> & Readonly<{
|
|
409
|
+
"onStep-change"?: ((step: number) => any) | undefined;
|
|
410
|
+
}>, {
|
|
411
|
+
totalSteps: number;
|
|
412
|
+
currentStep: number;
|
|
413
|
+
className: string;
|
|
414
|
+
stepLabels: string[] | null;
|
|
415
|
+
onStepChange: ((step: number) => void) | null;
|
|
416
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
417
|
+
containerRef: HTMLDivElement;
|
|
418
|
+
}, HTMLDivElement>;
|
|
419
|
+
|
|
420
|
+
export declare interface WizardProps {
|
|
421
|
+
totalSteps?: number;
|
|
422
|
+
currentStep?: number;
|
|
423
|
+
className?: string;
|
|
424
|
+
stepLabels?: string[] | null;
|
|
425
|
+
onStepChange?: ((step: number) => void) | null;
|
|
426
|
+
}
|
|
427
|
+
|
|
406
428
|
export { }
|
|
407
429
|
|
|
408
430
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dolphin-components",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "2.2.
|
|
4
|
+
"version": "2.2.4",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist"
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"lucide-vue-next": "^0.511.0",
|
|
35
35
|
"moment": "^2.30.1",
|
|
36
36
|
"nepali-datepicker-vue": "^1.0.7",
|
|
37
|
-
"sweetalert2": "^11.
|
|
37
|
+
"sweetalert2": "^11.22.0",
|
|
38
38
|
"tabulator-tables": "^6.3.1",
|
|
39
39
|
"tailwindcss": "^4.1.7",
|
|
40
40
|
"utility-types": "^3.11.0",
|