@rocketui/vue 0.0.96 → 0.0.98
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/rocket-ui-vue.d.ts +2 -18
- package/dist/rocket-ui-vue.js +377 -383
- package/dist/rocket-ui-vue.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +12 -12
package/dist/rocket-ui-vue.d.ts
CHANGED
|
@@ -1578,17 +1578,6 @@ declare interface Props_2 {
|
|
|
1578
1578
|
* <Button block />
|
|
1579
1579
|
*/
|
|
1580
1580
|
block?: boolean;
|
|
1581
|
-
/**
|
|
1582
|
-
* Duration of the Button
|
|
1583
|
-
* @type { number }
|
|
1584
|
-
* @default 300
|
|
1585
|
-
* @example
|
|
1586
|
-
* <Button duration="300" />
|
|
1587
|
-
*/
|
|
1588
|
-
duration?: number | {
|
|
1589
|
-
enter: number;
|
|
1590
|
-
leave: number;
|
|
1591
|
-
};
|
|
1592
1581
|
}
|
|
1593
1582
|
|
|
1594
1583
|
declare interface Props_3 {
|
|
@@ -2055,7 +2044,6 @@ export declare const RButton: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_Wi
|
|
|
2055
2044
|
size: string;
|
|
2056
2045
|
height: string;
|
|
2057
2046
|
block: boolean;
|
|
2058
|
-
duration: number;
|
|
2059
2047
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2060
2048
|
click: (...args: any[]) => void;
|
|
2061
2049
|
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_4<__VLS_TypePropsToRuntimeProps_5<Props_2>, {
|
|
@@ -2068,7 +2056,6 @@ export declare const RButton: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_Wi
|
|
|
2068
2056
|
size: string;
|
|
2069
2057
|
height: string;
|
|
2070
2058
|
block: boolean;
|
|
2071
|
-
duration: number;
|
|
2072
2059
|
}>>> & {
|
|
2073
2060
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
2074
2061
|
}, {
|
|
@@ -2081,13 +2068,10 @@ export declare const RButton: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_Wi
|
|
|
2081
2068
|
appendIcon: string;
|
|
2082
2069
|
icon: boolean;
|
|
2083
2070
|
block: boolean;
|
|
2084
|
-
duration: number | {
|
|
2085
|
-
enter: number;
|
|
2086
|
-
leave: number;
|
|
2087
|
-
};
|
|
2088
2071
|
}, {}>, {
|
|
2089
|
-
|
|
2072
|
+
prepend?(_: {}): any;
|
|
2090
2073
|
default?(_: {}): any;
|
|
2074
|
+
append?(_: {}): any;
|
|
2091
2075
|
}>;
|
|
2092
2076
|
|
|
2093
2077
|
export declare const RCheckbox: DefineComponent<__VLS_WithDefaults_5<__VLS_TypePropsToRuntimeProps_6<Props_3>, {
|