pdap-design-system 3.1.0-beta.14 → 3.1.0-beta.16
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/components/Button/PdapButton.vue.d.ts +2 -10
- package/dist/index.cjs +6 -6
- package/dist/index.js +924 -919
- package/dist/styles.css +1 -1
- package/package.json +1 -1
@@ -8,7 +8,7 @@ import { PdapButtonProps } from './types';
|
|
8
8
|
* @prop {boolean} isLoading loading state of button
|
9
9
|
*
|
10
10
|
*/
|
11
|
-
declare const _default:
|
11
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<PdapButtonProps>, {
|
12
12
|
intent: string;
|
13
13
|
isLoading: boolean;
|
14
14
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<PdapButtonProps>, {
|
@@ -17,10 +17,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
17
17
|
}>>>, {
|
18
18
|
intent: "primary" | "secondary" | "tertiary";
|
19
19
|
isLoading: boolean;
|
20
|
-
}, {}
|
21
|
-
default?(_: {}): any;
|
22
|
-
loading?(_: {}): any;
|
23
|
-
}>;
|
20
|
+
}, {}>;
|
24
21
|
export default _default;
|
25
22
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
26
23
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
@@ -39,8 +36,3 @@ type __VLS_WithDefaults<P, D> = {
|
|
39
36
|
type __VLS_Prettify<T> = {
|
40
37
|
[K in keyof T]: T[K];
|
41
38
|
} & {};
|
42
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
43
|
-
new (): {
|
44
|
-
$slots: S;
|
45
|
-
};
|
46
|
-
};
|