pdap-design-system 3.1.0-beta.21 → 3.1.0-beta.22
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/components/InputDatePicker/PdapInputDatePicker.vue.d.ts +21 -0
- package/dist/components/InputDatePicker/index.d.ts +1 -0
- package/dist/components/InputDatePicker/types.d.ts +6 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/index.cjs +7 -7
- package/dist/index.d.ts +1 -0
- package/dist/index.js +11356 -2546
- package/dist/styles.css +1 -1
- package/docs/components.md +1 -0
- package/package.json +3 -1
@@ -0,0 +1,21 @@
|
|
1
|
+
import '@vuepic/vue-datepicker/dist/main.css';
|
2
|
+
import { PdapDatePickerProps } from './types';
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<PdapDatePickerProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<PdapDatePickerProps>>>, {}, {}>, {
|
4
|
+
label?(_: {}): any;
|
5
|
+
error?(_: {}): any;
|
6
|
+
}>;
|
7
|
+
export default _default;
|
8
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
9
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
10
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
11
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
12
|
+
} : {
|
13
|
+
type: import('vue').PropType<T[K]>;
|
14
|
+
required: true;
|
15
|
+
};
|
16
|
+
};
|
17
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
18
|
+
new (): {
|
19
|
+
$slots: S;
|
20
|
+
};
|
21
|
+
};
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as InputDatePicker } from './PdapInputDatePicker.vue';
|
@@ -5,6 +5,7 @@ export { Form } from './Form';
|
|
5
5
|
export { FormV2 } from './FormV2';
|
6
6
|
export { Input } from './Input';
|
7
7
|
export { InputCheckbox } from './InputCheckbox';
|
8
|
+
export { InputDatePicker } from './InputDatePicker';
|
8
9
|
export { InputPassword } from './InputPassword';
|
9
10
|
export { InputText } from './InputText';
|
10
11
|
export { InputSelect } from './InputSelect';
|