voiptime-components 1.12.51 → 1.12.53
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/index.cjs.js +24 -24
- package/dist/index.d.ts +8 -2
- package/dist/index.es.js +728 -704
- package/dist/index.umd.js +24 -24
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -25,7 +25,10 @@ declare const __VLS_component: DefineComponent<VButtonProps, {}, {}, {}, {}, Com
|
|
|
25
25
|
tooltip: boolean;
|
|
26
26
|
tooltipPlacement: TooltipPlacement;
|
|
27
27
|
htmlType: "button" | "submit" | "reset";
|
|
28
|
-
|
|
28
|
+
adaptive: boolean;
|
|
29
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
30
|
+
buttonRef: HTMLButtonElement;
|
|
31
|
+
}, HTMLButtonElement>;
|
|
29
32
|
|
|
30
33
|
declare const __VLS_component_10: DefineComponent<CollapseProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
31
34
|
change: (value: string[]) => any;
|
|
@@ -407,7 +410,9 @@ declare function __VLS_template(): {
|
|
|
407
410
|
slots: {
|
|
408
411
|
default?(_: {}): any;
|
|
409
412
|
};
|
|
410
|
-
refs: {
|
|
413
|
+
refs: {
|
|
414
|
+
buttonRef: HTMLButtonElement;
|
|
415
|
+
};
|
|
411
416
|
rootEl: HTMLButtonElement;
|
|
412
417
|
};
|
|
413
418
|
|
|
@@ -1311,6 +1316,7 @@ export declare interface VButtonProps {
|
|
|
1311
1316
|
tooltipPlacement?: TooltipPlacement;
|
|
1312
1317
|
htmlType?: 'button' | 'submit' | 'reset';
|
|
1313
1318
|
color?: string;
|
|
1319
|
+
adaptive?: boolean;
|
|
1314
1320
|
}
|
|
1315
1321
|
|
|
1316
1322
|
declare type VButtonShape = 'circle' | 'square';
|