voiptime-components 1.12.9 → 1.12.11
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 +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.es.js +986 -942
- package/dist/index.umd.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ declare const __VLS_component: DefineComponent<VButtonProps, {}, {}, {}, {}, Com
|
|
|
18
18
|
}, string, PublicProps, Readonly<VButtonProps> & Readonly<{
|
|
19
19
|
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
20
20
|
}>, {
|
|
21
|
+
color: string;
|
|
21
22
|
type: VButtonType;
|
|
22
23
|
disabled: boolean;
|
|
23
24
|
loading: boolean;
|
|
@@ -883,6 +884,7 @@ export declare type IconName = keyof typeof icons;
|
|
|
883
884
|
|
|
884
885
|
declare const icons: {
|
|
885
886
|
readonly addLine: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
887
|
+
readonly channelsChange: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
886
888
|
readonly circleChecked: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
887
889
|
readonly circleClose: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
888
890
|
readonly close: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
@@ -1222,6 +1224,7 @@ export declare interface VButtonProps {
|
|
|
1222
1224
|
tooltip?: boolean;
|
|
1223
1225
|
tooltipPlacement?: TooltipPlacement;
|
|
1224
1226
|
htmlType?: 'button' | 'submit' | 'reset';
|
|
1227
|
+
color?: string;
|
|
1225
1228
|
}
|
|
1226
1229
|
|
|
1227
1230
|
declare type VButtonShape = 'circle' | 'square';
|