@club-employes/utopia 4.66.0 → 4.67.0

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.
@@ -0,0 +1,26 @@
1
+ import { DatePickerProps } from './types';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare const _default: DefineComponent<DatePickerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
4
+ change: (value: string | Date | null) => any;
5
+ "update:modelValue": (value: string | Date | null) => any;
6
+ }, string, PublicProps, Readonly<DatePickerProps> & Readonly<{
7
+ onChange?: ((value: string | Date | null) => any) | undefined;
8
+ "onUpdate:modelValue"?: ((value: string | Date | null) => any) | undefined;
9
+ }>, {
10
+ label: string;
11
+ message: string;
12
+ size: "small" | "medium" | "large";
13
+ disabled: boolean;
14
+ modelValue: string | Date | null;
15
+ placeholder: string;
16
+ state: "default" | "valid" | "error";
17
+ readonly: boolean;
18
+ clearable: boolean;
19
+ format: string;
20
+ enableTime: boolean;
21
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
22
+ containerRef: HTMLDivElement;
23
+ triggerRef: HTMLDivElement;
24
+ menuRef: HTMLDivElement;
25
+ }, HTMLDivElement>;
26
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default as DatePicker } from './DatePicker';
@@ -0,0 +1,15 @@
1
+ export interface DatePickerProps {
2
+ modelValue?: string | Date | null;
3
+ label?: string;
4
+ placeholder?: string;
5
+ disabled?: boolean;
6
+ readonly?: boolean;
7
+ clearable?: boolean;
8
+ state?: 'default' | 'valid' | 'error';
9
+ message?: string;
10
+ size?: 'small' | 'medium' | 'large';
11
+ format?: string;
12
+ minDate?: Date | string;
13
+ maxDate?: Date | string;
14
+ enableTime?: boolean;
15
+ }
@@ -19,3 +19,5 @@ export { FilterSelect, type FilterSelectOption, type FilterSelectProps } from '.
19
19
  export { Tabs } from './Tabs';
20
20
  export { Tab } from './Tabs';
21
21
  export type { TabsProps, TabProps } from './Tabs/types';
22
+ export { DatePicker } from './DatePicker';
23
+ export type { DatePickerProps } from './DatePicker';
@@ -1,5 +1,5 @@
1
1
  {
2
- "generated": "2025-12-17T15:06:47.178Z",
2
+ "generated": "2025-12-19T10:30:00.901Z",
3
3
  "count": 1239,
4
4
  "icons": [
5
5
  "Accessibility",
package/dist/index.d.ts CHANGED
@@ -24,6 +24,7 @@ export type { ModalChangeReason, ModalProps } from './components/molecules/Modal
24
24
  export type { PriceTagProps } from './components/molecules/PriceTag/types';
25
25
  export type { TooltipProps } from './components/molecules/Tooltip/types';
26
26
  export type { FilterSelectOption, FilterSelectProps } from './components/molecules/FilterSelect/types';
27
+ export type { DatePickerProps } from './components/molecules/DatePicker/types';
27
28
  export type { BreadcrumbsItem, BreadcrumbsProps } from './components/organisms/Breadcrumbs/types';
28
29
  export type { FilterPriceProps } from './components/organisms/FilterPrice/types';
29
30
  export type { PageNavigationProps } from './components/organisms/PageNavigation/types';