dolphin-components 2.2.3 → 2.2.5
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 +83 -83
- package/dist/dolphin-components.css +1 -1
- package/dist/dolphin-components.es.js +2353 -2201
- package/dist/dolphin-components.umd.js +87 -87
- package/dist/index.d.ts +41 -0
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -135,6 +135,14 @@ declare interface CurrencyInputElement extends HTMLInputElement {
|
|
|
135
135
|
|
|
136
136
|
export declare const CurrencyUnformatter: (formattedValue: string, withDisplayCurrency?: boolean, displayCurrency?: string, format?: FormatType, structure?: StructureType) => number;
|
|
137
137
|
|
|
138
|
+
declare interface CustomHTMLElement extends HTMLElement {
|
|
139
|
+
__tooltipHandlers?: {
|
|
140
|
+
showTooltip: () => void;
|
|
141
|
+
hideTooltip: () => void;
|
|
142
|
+
clearShowTimeout: () => void;
|
|
143
|
+
};
|
|
144
|
+
}
|
|
145
|
+
|
|
138
146
|
export declare const DateRange: DefineComponent<DateRangeProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
139
147
|
search: (...args: any[]) => void;
|
|
140
148
|
"update:modelValue": (...args: any[]) => void;
|
|
@@ -369,6 +377,17 @@ export declare interface ToggleProps {
|
|
|
369
377
|
disable?: boolean;
|
|
370
378
|
}
|
|
371
379
|
|
|
380
|
+
export declare const Tooltip: {
|
|
381
|
+
mounted(el: CustomHTMLElement, binding: DirectiveBinding<TooltipBindingValue>): void;
|
|
382
|
+
unmounted(el: CustomHTMLElement): void;
|
|
383
|
+
};
|
|
384
|
+
|
|
385
|
+
declare interface TooltipBindingValue {
|
|
386
|
+
content: string;
|
|
387
|
+
raw?: boolean;
|
|
388
|
+
preferredPosition?: 'top' | 'bottom' | 'left' | 'right';
|
|
389
|
+
}
|
|
390
|
+
|
|
372
391
|
export declare const Towser: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
373
392
|
|
|
374
393
|
export declare interface TowserAction {
|
|
@@ -403,6 +422,28 @@ export declare class WebSocketWrapper {
|
|
|
403
422
|
getConnectionStatus(): boolean;
|
|
404
423
|
}
|
|
405
424
|
|
|
425
|
+
export declare const Wizard: DefineComponent<WizardProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
426
|
+
"step-change": (step: number) => any;
|
|
427
|
+
}, string, PublicProps, Readonly<WizardProps> & Readonly<{
|
|
428
|
+
"onStep-change"?: ((step: number) => any) | undefined;
|
|
429
|
+
}>, {
|
|
430
|
+
totalSteps: number;
|
|
431
|
+
currentStep: number;
|
|
432
|
+
className: string;
|
|
433
|
+
stepLabels: string[] | null;
|
|
434
|
+
onStepChange: ((step: number) => void) | null;
|
|
435
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
436
|
+
containerRef: HTMLDivElement;
|
|
437
|
+
}, HTMLDivElement>;
|
|
438
|
+
|
|
439
|
+
export declare interface WizardProps {
|
|
440
|
+
totalSteps?: number;
|
|
441
|
+
currentStep?: number;
|
|
442
|
+
className?: string;
|
|
443
|
+
stepLabels?: string[] | null;
|
|
444
|
+
onStepChange?: ((step: number) => void) | null;
|
|
445
|
+
}
|
|
446
|
+
|
|
406
447
|
export { }
|
|
407
448
|
|
|
408
449
|
|
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.5",
|
|
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",
|