voiptime-components 1.12.8 → 1.12.10
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 +1205 -1186
- 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;
|
|
@@ -990,6 +991,7 @@ declare const icons: {
|
|
|
990
991
|
readonly excel: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
991
992
|
readonly freeze: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
992
993
|
readonly listAdd: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
994
|
+
readonly numberList: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
993
995
|
readonly tableSettings: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
994
996
|
readonly twoColumns: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
995
997
|
readonly twoRows: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
@@ -1221,6 +1223,7 @@ export declare interface VButtonProps {
|
|
|
1221
1223
|
tooltip?: boolean;
|
|
1222
1224
|
tooltipPlacement?: TooltipPlacement;
|
|
1223
1225
|
htmlType?: 'button' | 'submit' | 'reset';
|
|
1226
|
+
color?: string;
|
|
1224
1227
|
}
|
|
1225
1228
|
|
|
1226
1229
|
declare type VButtonShape = 'circle' | 'square';
|