pdap-design-system 3.1.0-beta.17 → 3.1.0-beta.19
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 +9 -2
- package/dist/index.cjs +6 -6
- package/dist/index.js +1022 -1016
- 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: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<PdapButtonProps>, {
|
11
|
+
declare const _default: __VLS_WithTemplateSlots<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,7 +17,9 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
17
17
|
}>>>, {
|
18
18
|
intent: "primary" | "secondary" | "tertiary";
|
19
19
|
isLoading: boolean;
|
20
|
-
}, {}
|
20
|
+
}, {}>, {
|
21
|
+
default?(_: {}): any;
|
22
|
+
}>;
|
21
23
|
export default _default;
|
22
24
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
23
25
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
@@ -36,3 +38,8 @@ type __VLS_WithDefaults<P, D> = {
|
|
36
38
|
type __VLS_Prettify<T> = {
|
37
39
|
[K in keyof T]: T[K];
|
38
40
|
} & {};
|
41
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
42
|
+
new (): {
|
43
|
+
$slots: S;
|
44
|
+
};
|
45
|
+
};
|