pdap-design-system 3.1.0-beta.21 → 3.1.0-beta.23

Sign up to get free protection for your applications and to get access to all the features.
@@ -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';
@@ -0,0 +1,6 @@
1
+ import { VueDatePickerProps } from '@vuepic/vue-datepicker';
2
+ export interface PdapDatePickerProps extends VueDatePickerProps {
3
+ id: string;
4
+ label?: string;
5
+ name: string;
6
+ }
@@ -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';