beeple-toolkit 1.0.0 → 1.0.2

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.
Files changed (58) hide show
  1. package/dist/beeple-toolkit.css +1 -1
  2. package/dist/beeple-toolkit.es.js +3782 -3311
  3. package/dist/beeple-toolkit.umd.js +3 -3
  4. package/dist/components/Avatar/index.d.ts +1 -0
  5. package/dist/components/Breadcrumbs/index.d.ts +1 -0
  6. package/dist/components/Button/Button.vue.d.ts +2 -1
  7. package/dist/components/Button/index.d.ts +1 -0
  8. package/dist/components/CheckboxInput/CheckboxInput.vue.d.ts +1 -1
  9. package/dist/components/CheckboxInput/index.d.ts +1 -0
  10. package/dist/components/ContextCard/index.d.ts +1 -0
  11. package/dist/components/DatePicker/DatePicker.vue.d.ts +13 -33
  12. package/dist/components/DatePicker/DatePickerActions.vue.d.ts +1 -1
  13. package/dist/components/DatePicker/DatePickerCalendarSection.vue.d.ts +1 -1
  14. package/dist/components/DatePicker/DatePickerHeader.vue.d.ts +9 -2
  15. package/dist/components/DatePicker/DatePickerNavigation.vue.d.ts +1 -1
  16. package/dist/components/DatePicker/DatePickerPanel.vue.d.ts +19 -50
  17. package/dist/components/DatePicker/DatePickerTimeSection.vue.d.ts +3 -2
  18. package/dist/components/DatePicker/dateUtils.d.ts +4 -42
  19. package/dist/components/DatePicker/index.d.ts +1 -0
  20. package/dist/components/DropDown/DropDown.vue.d.ts +1 -1
  21. package/dist/components/DropDown/DropDownMenu.vue.d.ts +7 -5
  22. package/dist/components/DropDown/DropDownTrigger.vue.d.ts +1 -2
  23. package/dist/components/DropDown/index.d.ts +1 -0
  24. package/dist/components/FilterButton/FilterButton.vue.d.ts +1 -0
  25. package/dist/components/FilterButton/FilterButtonTrigger.vue.d.ts +1 -2
  26. package/dist/components/FilterButton/index.d.ts +1 -0
  27. package/dist/components/Icon/index.d.ts +1 -0
  28. package/dist/components/Input/Input.vue.d.ts +1 -1
  29. package/dist/components/Input/index.d.ts +1 -0
  30. package/dist/components/KeyboardInput/index.d.ts +1 -0
  31. package/dist/components/Label/index.d.ts +1 -0
  32. package/dist/components/Menu/Menu.vue.d.ts +1 -1
  33. package/dist/components/Menu/index.d.ts +1 -0
  34. package/dist/components/Modal/Modal.vue.d.ts +1 -1
  35. package/dist/components/Modal/index.d.ts +1 -0
  36. package/dist/components/ProgressBar/ProgressBar.vue.d.ts +1 -1
  37. package/dist/components/RadioInput/RadioInput.vue.d.ts +1 -1
  38. package/dist/components/RadioInput/index.d.ts +1 -0
  39. package/dist/components/Slider/Slider.vue.d.ts +1 -1
  40. package/dist/components/Slider/index.d.ts +1 -0
  41. package/dist/components/StatusDot/StatusDot.vue.d.ts +1 -0
  42. package/dist/components/StatusDot/index.d.ts +1 -0
  43. package/dist/components/Switch/Switch.vue.d.ts +1 -1
  44. package/dist/components/Switch/index.d.ts +1 -0
  45. package/dist/components/TeamCard/TeamCard.vue.d.ts +18 -0
  46. package/dist/components/TeamCard/TeamCardBody.vue.d.ts +20 -0
  47. package/dist/components/TeamCard/TeamCardHeader.vue.d.ts +17 -0
  48. package/dist/components/TeamCard/TeamCardMenu.vue.d.ts +19 -0
  49. package/dist/components/TeamCard/TeamCardRoles.vue.d.ts +7 -0
  50. package/dist/components/TeamCard/index.d.ts +1 -0
  51. package/dist/components/Textarea/index.d.ts +1 -0
  52. package/dist/components/TimeInput/index.d.ts +1 -0
  53. package/dist/components/Toast/Toast.vue.d.ts +1 -1
  54. package/dist/components/Toast/index.d.ts +1 -0
  55. package/dist/components/Tooltip/index.d.ts +1 -0
  56. package/dist/components/index.d.ts +3 -2
  57. package/dist/components/types.d.ts +55 -0
  58. package/package.json +8 -7
@@ -0,0 +1 @@
1
+ export { default } from './Avatar.vue';
@@ -0,0 +1 @@
1
+ export { default } from './Breadcrumbs.vue';
@@ -9,7 +9,7 @@ type __VLS_Slots = {} & {
9
9
  } & {
10
10
  trailingIcon?: (props: typeof __VLS_14) => any;
11
11
  };
12
- declare const __VLS_base: import("vue").DefineComponent<ButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
12
+ declare const __VLS_base: import("vue").DefineComponent<ButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13
13
  click: (event: MouseEvent) => any;
14
14
  }, string, import("vue").PublicProps, Readonly<ButtonProps> & Readonly<{
15
15
  onClick?: ((event: MouseEvent) => any) | undefined;
@@ -19,6 +19,7 @@ declare const __VLS_base: import("vue").DefineComponent<ButtonProps, {}, {}, {},
19
19
  iconVariant: "leading" | "text" | "trailing";
20
20
  disabled: boolean;
21
21
  isLoading: boolean;
22
+ isActive: boolean;
22
23
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
23
24
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
24
25
  declare const _default: typeof __VLS_export;
@@ -0,0 +1 @@
1
+ export { default } from './Button.vue';
@@ -1,6 +1,6 @@
1
1
  import type { CheckboxInputProps } from '../types';
2
2
  import './checkbox.css';
3
- declare const __VLS_export: import("vue").DefineComponent<CheckboxInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
3
+ declare const __VLS_export: import("vue").DefineComponent<CheckboxInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
4
4
  "update:checked": (checked: boolean) => any;
5
5
  change: (checked: boolean) => any;
6
6
  }, string, import("vue").PublicProps, Readonly<CheckboxInputProps> & Readonly<{
@@ -0,0 +1 @@
1
+ export { default } from './CheckboxInput.vue';
@@ -0,0 +1 @@
1
+ export { default } from './ContextCard.vue';
@@ -1,43 +1,23 @@
1
+ type DatePickerValue = Date | {
2
+ start: Date;
3
+ end: Date;
4
+ } | {
5
+ date: Date;
6
+ startTime: Date;
7
+ endTime: Date;
8
+ } | null;
1
9
  import type { DatePickerProps } from '../types';
2
10
  import './datepicker.css';
3
11
  declare var __VLS_1: {};
4
12
  type __VLS_Slots = {} & {
5
13
  trigger?: (props: typeof __VLS_1) => any;
6
14
  };
7
- declare const __VLS_base: import("vue").DefineComponent<DatePickerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
8
- "update:modelValue": (value: Date | {
9
- start: Date;
10
- end: Date;
11
- } | {
12
- date: Date;
13
- startTime: Date;
14
- endTime: Date;
15
- } | null) => any;
16
- change: (value: Date | {
17
- start: Date;
18
- end: Date;
19
- } | {
20
- date: Date;
21
- startTime: Date;
22
- endTime: Date;
23
- } | null) => any;
15
+ declare const __VLS_base: import("vue").DefineComponent<DatePickerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
16
+ "update:modelValue": (value: DatePickerValue) => any;
17
+ change: (value: DatePickerValue) => any;
24
18
  }, string, import("vue").PublicProps, Readonly<DatePickerProps> & Readonly<{
25
- "onUpdate:modelValue"?: ((value: Date | {
26
- start: Date;
27
- end: Date;
28
- } | {
29
- date: Date;
30
- startTime: Date;
31
- endTime: Date;
32
- } | null) => any) | undefined;
33
- onChange?: ((value: Date | {
34
- start: Date;
35
- end: Date;
36
- } | {
37
- date: Date;
38
- startTime: Date;
39
- endTime: Date;
40
- } | null) => any) | undefined;
19
+ "onUpdate:modelValue"?: ((value: DatePickerValue) => any) | undefined;
20
+ onChange?: ((value: DatePickerValue) => any) | undefined;
41
21
  }>, {
42
22
  locale: import("./locales").DatePickerLocale;
43
23
  placeholder: string;
@@ -1,4 +1,4 @@
1
- declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2
2
  cancel: () => any;
3
3
  apply: () => any;
4
4
  }, string, import("vue").PublicProps, Readonly<{}> & Readonly<{
@@ -9,7 +9,7 @@ interface DatePickerCalendarSectionProps {
9
9
  isInputEndError?: boolean;
10
10
  locale?: DatePickerLocale;
11
11
  }
12
- declare const __VLS_export: import("vue").DefineComponent<DatePickerCalendarSectionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
12
+ declare const __VLS_export: import("vue").DefineComponent<DatePickerCalendarSectionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13
13
  "update:inputValue": (value: string) => any;
14
14
  "update:inputEndValue": (value: string) => any;
15
15
  inputEnter: () => any;
@@ -1,20 +1,27 @@
1
1
  import { type DatePickerLocale } from './locales';
2
2
  interface DatePickerHeaderProps {
3
- displayText: string;
3
+ month: string;
4
+ year: string;
4
5
  locale?: DatePickerLocale;
6
+ view?: 'calendar' | 'month' | 'year';
5
7
  }
6
- declare const __VLS_export: import("vue").DefineComponent<DatePickerHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
8
+ declare const __VLS_export: import("vue").DefineComponent<DatePickerHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
9
  previousYear: () => any;
8
10
  previousMonth: () => any;
9
11
  nextMonth: () => any;
10
12
  nextYear: () => any;
13
+ selectMonth: () => any;
14
+ selectYear: () => any;
11
15
  }, string, import("vue").PublicProps, Readonly<DatePickerHeaderProps> & Readonly<{
12
16
  onPreviousYear?: (() => any) | undefined;
13
17
  onPreviousMonth?: (() => any) | undefined;
14
18
  onNextMonth?: (() => any) | undefined;
15
19
  onNextYear?: (() => any) | undefined;
20
+ onSelectMonth?: (() => any) | undefined;
21
+ onSelectYear?: (() => any) | undefined;
16
22
  }>, {
17
23
  locale: DatePickerLocale;
24
+ view: "calendar" | "month" | "year";
18
25
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
19
26
  declare const _default: typeof __VLS_export;
20
27
  export default _default;
@@ -2,7 +2,7 @@ import type { DatePickerLocale } from './locales';
2
2
  type __VLS_Props = {
3
3
  locale?: DatePickerLocale;
4
4
  };
5
- declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
6
  selectThisWeek: () => any;
7
7
  selectPreviousWeek: () => any;
8
8
  selectNextWeek: () => any;
@@ -1,15 +1,16 @@
1
- import type { DatePickerVariant } from '../types';
1
+ import type { DatePickerVariant, DatePickerTranslations } from '../types';
2
2
  import { type DatePickerLocale } from './locales';
3
+ type DatePickerValue = Date | {
4
+ start: Date;
5
+ end: Date;
6
+ } | {
7
+ date: Date;
8
+ startTime: Date;
9
+ endTime: Date;
10
+ } | null;
3
11
  export interface DatePickerPanelProps {
4
12
  variant?: DatePickerVariant;
5
- modelValue?: Date | {
6
- start: Date;
7
- end: Date;
8
- } | {
9
- date: Date;
10
- startTime: Date;
11
- endTime: Date;
12
- } | null;
13
+ modelValue?: DatePickerValue;
13
14
  isShowActions?: boolean;
14
15
  isExtended?: boolean;
15
16
  minDate?: Date;
@@ -19,53 +20,20 @@ export interface DatePickerPanelProps {
19
20
  defaultEndHours?: string;
20
21
  defaultEndMinutes?: string;
21
22
  locale?: DatePickerLocale;
23
+ translations?: DatePickerTranslations;
24
+ timezone?: string;
22
25
  }
23
- declare const __VLS_export: import("vue").DefineComponent<DatePickerPanelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
24
- "update:modelValue": (value: Date | {
25
- start: Date;
26
- end: Date;
27
- } | {
28
- date: Date;
29
- startTime: Date;
30
- endTime: Date;
31
- } | null) => any;
26
+ declare const __VLS_export: import("vue").DefineComponent<DatePickerPanelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
27
+ "update:modelValue": (value: DatePickerValue) => any;
32
28
  cancel: () => any;
33
- apply: (value: Date | {
34
- start: Date;
35
- end: Date;
36
- } | {
37
- date: Date;
38
- startTime: Date;
39
- endTime: Date;
40
- } | null) => any;
29
+ apply: (value: DatePickerValue) => any;
41
30
  }, string, import("vue").PublicProps, Readonly<DatePickerPanelProps> & Readonly<{
42
- "onUpdate:modelValue"?: ((value: Date | {
43
- start: Date;
44
- end: Date;
45
- } | {
46
- date: Date;
47
- startTime: Date;
48
- endTime: Date;
49
- } | null) => any) | undefined;
31
+ "onUpdate:modelValue"?: ((value: DatePickerValue) => any) | undefined;
50
32
  onCancel?: (() => any) | undefined;
51
- onApply?: ((value: Date | {
52
- start: Date;
53
- end: Date;
54
- } | {
55
- date: Date;
56
- startTime: Date;
57
- endTime: Date;
58
- } | null) => any) | undefined;
33
+ onApply?: ((value: DatePickerValue) => any) | undefined;
59
34
  }>, {
60
35
  locale: DatePickerLocale;
61
- modelValue: Date | {
62
- start: Date;
63
- end: Date;
64
- } | {
65
- date: Date;
66
- startTime: Date;
67
- endTime: Date;
68
- } | null;
36
+ modelValue: DatePickerValue;
69
37
  variant: DatePickerVariant;
70
38
  isShowActions: boolean;
71
39
  isExtended: boolean;
@@ -75,6 +43,7 @@ declare const __VLS_export: import("vue").DefineComponent<DatePickerPanelProps,
75
43
  defaultStartMinutes: string;
76
44
  defaultEndHours: string;
77
45
  defaultEndMinutes: string;
46
+ timezone: string;
78
47
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
79
48
  declare const _default: typeof __VLS_export;
80
49
  export default _default;
@@ -1,12 +1,13 @@
1
- import type { DatePickerVariant } from '../types';
1
+ import type { DatePickerVariant, DatePickerTranslations } from '../types';
2
2
  interface DatePickerTimeSectionProps {
3
3
  variant: DatePickerVariant;
4
4
  startHours: string;
5
5
  startMinutes: string;
6
6
  endHours: string;
7
7
  endMinutes: string;
8
+ translations?: DatePickerTranslations;
8
9
  }
9
- declare const __VLS_export: import("vue").DefineComponent<DatePickerTimeSectionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
10
+ declare const __VLS_export: import("vue").DefineComponent<DatePickerTimeSectionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
10
11
  "update:startHours": (value: string) => any;
11
12
  "update:startMinutes": (value: string) => any;
12
13
  "update:endHours": (value: string) => any;
@@ -1,53 +1,15 @@
1
1
  import type { Locale } from 'date-fns';
2
2
  import type { DatePickerVariant } from '../types';
3
+ /**
4
+ * Returns midnight of today's date in the given IANA timezone (or local time if omitted)
5
+ */
6
+ export declare function getTodayInTimezone(timezone?: string): Date;
3
7
  /**
4
8
  * Parses a date string in DD/MM/YYYY format
5
9
  * @param dateStr - Date string to parse
6
10
  * @returns Parsed date or null if invalid
7
11
  */
8
12
  export declare function parseDateString(dateStr: string): Date | null;
9
- /**
10
- * Parses a date range string in format "DD/MM/YYYY - DD/MM/YYYY"
11
- * @param rangeStr - Date range string to parse
12
- * @returns Parsed range or null if invalid
13
- */
14
- export declare function parseDateRangeString(rangeStr: string): {
15
- start: Date;
16
- end: Date;
17
- } | null;
18
- /**
19
- * Parses a time string in HH:MM format
20
- * @param timeStr - Time string to parse (e.g., "09:30")
21
- * @returns Parsed hours and minutes or null if invalid
22
- */
23
- export declare function parseTimeString(timeStr: string): {
24
- hours: string;
25
- minutes: string;
26
- } | null;
27
- /**
28
- * Formats hours and minutes into HH:MM string
29
- * @param hours - Hours (0-23)
30
- * @param minutes - Minutes (0-59)
31
- * @returns Formatted time string
32
- */
33
- export declare function formatTimeString(hours: string, minutes: string): string;
34
- /**
35
- * Applies time mask to input value, formatting as HH:MM
36
- * @param value - Raw input value
37
- * @returns Formatted time string
38
- */
39
- export declare function applyTimeMask(value: string): string;
40
- /**
41
- * Completes and validates partial time input
42
- * @param inputValue - Raw input time value
43
- * @param previousValue - Previous valid time value to fallback to
44
- * @returns Object with formatted time and parsed hours/minutes, or null if invalid
45
- */
46
- export declare function completeAndValidateTime(inputValue: string, previousValue: string): {
47
- time: string;
48
- hours: string;
49
- minutes: string;
50
- } | null;
51
13
  /**
52
14
  * Formats date input with validation and auto-formatting
53
15
  * @param value - Raw input value
@@ -0,0 +1 @@
1
+ export { default } from './DatePicker.vue';
@@ -16,8 +16,8 @@ declare const __VLS_export: import("vue").DefineComponent<DropDownProps, {}, {},
16
16
  label: string;
17
17
  size: "x-small" | "small" | "medium" | "large";
18
18
  disabled: boolean;
19
- isMulti: boolean;
20
19
  placeholder: string;
20
+ isMulti: boolean;
21
21
  clearable: boolean;
22
22
  isError: boolean;
23
23
  errorMessage: string;
@@ -1,5 +1,6 @@
1
- import { type Ref, type StyleValue } from 'vue';
1
+ import { type StyleValue } from 'vue';
2
2
  import type { DropDownOption } from '../types';
3
+ type Option = string | number | DropDownOption | Record<string, unknown>;
3
4
  interface DropDownMenuProps {
4
5
  isOpen: boolean;
5
6
  dropdownStyle: StyleValue;
@@ -10,7 +11,8 @@ interface DropDownMenuProps {
10
11
  selectAllText: string;
11
12
  clearAllText: string;
12
13
  areAllOptionsSelected: boolean;
13
- filteredOptions: Array<string | number | DropDownOption | Record<string, unknown>>;
14
+ filteredOptions: Option[];
15
+ navigableOptions: Option[];
14
16
  highlightedIndex: number;
15
17
  noOptionsText: string;
16
18
  optionLabel: string;
@@ -29,9 +31,9 @@ interface DropDownMenuProps {
29
31
  isSelected: (option: string | number | DropDownOption | Record<string, unknown>) => boolean;
30
32
  }
31
33
  declare const __VLS_export: import("vue").DefineComponent<DropDownMenuProps, {
32
- dropdownRef: Ref<HTMLElement | null, HTMLElement | null>;
33
- optionsRef: Ref<HTMLElement | null, HTMLElement | null>;
34
- searchRef: Ref<HTMLInputElement | null, HTMLInputElement | null>;
34
+ dropdownRef: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
35
+ optionsRef: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
36
+ searchRef: import("vue").Ref<HTMLInputElement | null, HTMLInputElement | null>;
35
37
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
36
38
  close: () => any;
37
39
  checkboxChange: (option: string | number | DropDownOption | Record<string, unknown>, checked: boolean) => any;
@@ -1,4 +1,3 @@
1
- import { type Ref } from 'vue';
2
1
  interface DropDownTriggerProps {
3
2
  isOpen: boolean;
4
3
  isMulti: boolean;
@@ -24,7 +23,7 @@ interface DropDownTriggerProps {
24
23
  getTagLeadingIcon: (value: unknown) => string | undefined;
25
24
  }
26
25
  declare const __VLS_export: import("vue").DefineComponent<DropDownTriggerProps, {
27
- triggerRef: Ref<HTMLElement | null, HTMLElement | null>;
26
+ triggerRef: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
28
27
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
29
28
  toggle: (source: string) => any;
30
29
  close: () => any;
@@ -0,0 +1 @@
1
+ export { default } from './DropDown.vue';
@@ -1,4 +1,5 @@
1
1
  import type { FilterButtonProps } from '../types';
2
+ import '../DropDown/dropdown.css';
2
3
  import './filterButton.css';
3
4
  declare const __VLS_export: import("vue").DefineComponent<FilterButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
4
5
  close: () => any;
@@ -1,4 +1,3 @@
1
- import { type Ref } from 'vue';
2
1
  import type { ButtonSize } from '../constants';
3
2
  interface FilterButtonTriggerProps {
4
3
  filterName: string;
@@ -8,7 +7,7 @@ interface FilterButtonTriggerProps {
8
7
  isOpen?: boolean;
9
8
  }
10
9
  declare const __VLS_export: import("vue").DefineComponent<FilterButtonTriggerProps, {
11
- triggerRef: Ref<HTMLElement | null, HTMLElement | null>;
10
+ triggerRef: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
12
11
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13
12
  clear: () => any;
14
13
  }, string, import("vue").PublicProps, Readonly<FilterButtonTriggerProps> & Readonly<{
@@ -0,0 +1 @@
1
+ export { default } from './FilterButton.vue';
@@ -0,0 +1 @@
1
+ export { default } from './Icon.vue';
@@ -9,7 +9,7 @@ type __VLS_Slots = {} & {
9
9
  declare const __VLS_base: import("vue").DefineComponent<InputProps, {
10
10
  focus: () => void | undefined;
11
11
  blur: () => void | undefined;
12
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
12
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13
13
  clear: () => any;
14
14
  "update:modelValue": (value: string) => any;
15
15
  focus: (event: FocusEvent) => any;
@@ -0,0 +1 @@
1
+ export { default } from './Input.vue';
@@ -0,0 +1 @@
1
+ export { default } from './KeyboardInput.vue';
@@ -0,0 +1 @@
1
+ export { default } from './Label.vue';
@@ -5,7 +5,7 @@ declare var __VLS_1: {};
5
5
  type __VLS_Slots = {} & {
6
6
  trigger?: (props: typeof __VLS_1) => any;
7
7
  };
8
- declare const __VLS_base: import("vue").DefineComponent<MenuProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
8
+ declare const __VLS_base: import("vue").DefineComponent<MenuProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
9
  select: (item: DropDownOption) => any;
10
10
  close: () => any;
11
11
  }, string, import("vue").PublicProps, Readonly<MenuProps> & Readonly<{
@@ -0,0 +1 @@
1
+ export { default } from './Menu.vue';
@@ -10,7 +10,7 @@ type __VLS_Slots = {} & {
10
10
  } & {
11
11
  footer?: (props: typeof __VLS_33) => any;
12
12
  };
13
- declare const __VLS_base: import("vue").DefineComponent<ModalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
13
+ declare const __VLS_base: import("vue").DefineComponent<ModalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
14
14
  "update:modelValue": (value: boolean) => any;
15
15
  }, string, import("vue").PublicProps, Readonly<ModalProps> & Readonly<{
16
16
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -0,0 +1 @@
1
+ export { default } from './Modal.vue';
@@ -2,9 +2,9 @@ import type { ProgressBarProps } from '../types';
2
2
  import type { ProgressBarSize } from '../constants';
3
3
  import './progressBar.css';
4
4
  declare const __VLS_export: import("vue").DefineComponent<ProgressBarProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ProgressBarProps> & Readonly<{}>, {
5
+ confirmed: number;
5
6
  size: ProgressBarSize;
6
7
  open: number;
7
- confirmed: number;
8
8
  unconfirmed: number;
9
9
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
10
10
  declare const _default: typeof __VLS_export;
@@ -1,6 +1,6 @@
1
1
  import type { RadioInputProps } from '../types';
2
2
  import './radioInput.css';
3
- declare const __VLS_export: import("vue").DefineComponent<RadioInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
3
+ declare const __VLS_export: import("vue").DefineComponent<RadioInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
4
4
  change: (value: string | number) => any;
5
5
  }, string, import("vue").PublicProps, Readonly<RadioInputProps> & Readonly<{
6
6
  onChange?: ((value: string | number) => any) | undefined;
@@ -0,0 +1 @@
1
+ export { default } from './RadioInput.vue';
@@ -1,6 +1,6 @@
1
1
  import type { SliderProps } from '../types';
2
2
  import './slider.css';
3
- declare const __VLS_export: import("vue").DefineComponent<SliderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
3
+ declare const __VLS_export: import("vue").DefineComponent<SliderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
4
4
  "update:modelValue": (value: number | [number, number]) => any;
5
5
  change: (value: number | [number, number]) => any;
6
6
  }, string, import("vue").PublicProps, Readonly<SliderProps> & Readonly<{
@@ -0,0 +1 @@
1
+ export { default } from './Slider.vue';
@@ -1,6 +1,7 @@
1
1
  import type { StatusDotProps } from '../types';
2
2
  import './statusDot.css';
3
3
  declare const __VLS_export: import("vue").DefineComponent<StatusDotProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<StatusDotProps> & Readonly<{}>, {
4
+ size: "small" | "medium";
4
5
  color: "success" | "warning" | "danger" | "primary";
5
6
  variant: "label-left" | "label-right" | "dot-only";
6
7
  isShadow: boolean;
@@ -0,0 +1 @@
1
+ export { default } from './StatusDot.vue';
@@ -3,7 +3,7 @@ import './switch.css';
3
3
  declare const __VLS_export: import("vue").DefineComponent<SwitchProps, {
4
4
  focus: () => void | undefined;
5
5
  blur: () => void | undefined;
6
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
6
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
7
  "update:checked": (value: boolean) => any;
8
8
  change: (value: boolean) => any;
9
9
  }, string, import("vue").PublicProps, Readonly<SwitchProps> & Readonly<{
@@ -0,0 +1 @@
1
+ export { default } from './Switch.vue';
@@ -0,0 +1,18 @@
1
+ import type { TeamCardProps, TeamCardColor } from '../types';
2
+ import './teamCard.css';
3
+ declare const __VLS_export: import("vue").DefineComponent<TeamCardProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
4
+ click: (event: MouseEvent) => any;
5
+ "add-collaborator": () => any;
6
+ "menu-action": (action: "copy" | "delete" | "move" | "edit") => any;
7
+ "update:status": (status: "published" | "unpublished") => any;
8
+ }, string, import("vue").PublicProps, Readonly<TeamCardProps> & Readonly<{
9
+ onClick?: ((event: MouseEvent) => any) | undefined;
10
+ "onAdd-collaborator"?: (() => any) | undefined;
11
+ "onMenu-action"?: ((action: "copy" | "delete" | "move" | "edit") => any) | undefined;
12
+ "onUpdate:status"?: ((status: "published" | "unpublished") => any) | undefined;
13
+ }>, {
14
+ color: TeamCardColor;
15
+ selected: boolean;
16
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
+ declare const _default: typeof __VLS_export;
18
+ export default _default;
@@ -0,0 +1,20 @@
1
+ import type { TeamCardRole, TeamCardUser, TeamCardTranslations } from '../types';
2
+ type __VLS_Props = {
3
+ progressBar?: {
4
+ open: number;
5
+ confirmed?: number;
6
+ unconfirmed?: number;
7
+ size?: 'small' | 'medium';
8
+ };
9
+ shiftSummary?: string;
10
+ roles?: TeamCardRole[];
11
+ users?: TeamCardUser[];
12
+ translations?: TeamCardTranslations;
13
+ };
14
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
15
+ "add-collaborator": () => any;
16
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
17
+ "onAdd-collaborator"?: (() => any) | undefined;
18
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
19
+ declare const _default: typeof __VLS_export;
20
+ export default _default;
@@ -0,0 +1,17 @@
1
+ import type { TeamCardLabel, TeamCardColor, TeamCardStatus, TeamCardTranslations } from '../types';
2
+ type MenuAction = 'move' | 'copy' | 'edit' | 'delete';
3
+ type __VLS_Props = {
4
+ labels?: TeamCardLabel[];
5
+ status?: TeamCardStatus;
6
+ color?: TeamCardColor;
7
+ translations?: TeamCardTranslations;
8
+ };
9
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
10
+ "menu-action": (action: MenuAction) => any;
11
+ "update:status": (status: TeamCardStatus) => any;
12
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
13
+ "onMenu-action"?: ((action: MenuAction) => any) | undefined;
14
+ "onUpdate:status"?: ((status: TeamCardStatus) => any) | undefined;
15
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
16
+ declare const _default: typeof __VLS_export;
17
+ export default _default;
@@ -0,0 +1,19 @@
1
+ import type { TeamCardTranslations } from '../types';
2
+ type MenuAction = 'move' | 'copy' | 'edit' | 'delete';
3
+ type __VLS_Props = {
4
+ isOpen: boolean;
5
+ anchorEl: HTMLElement | null;
6
+ isPublished?: boolean;
7
+ translations?: TeamCardTranslations;
8
+ };
9
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
10
+ close: () => any;
11
+ action: (action: MenuAction) => any;
12
+ "update:published": (value: boolean) => any;
13
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
14
+ onClose?: (() => any) | undefined;
15
+ onAction?: ((action: MenuAction) => any) | undefined;
16
+ "onUpdate:published"?: ((value: boolean) => any) | undefined;
17
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
18
+ declare const _default: typeof __VLS_export;
19
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import type { TeamCardRole } from '../types';
2
+ type __VLS_Props = {
3
+ roles: TeamCardRole[];
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ declare const _default: typeof __VLS_export;
7
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default } from './TeamCard.vue';
@@ -0,0 +1 @@
1
+ export { default } from './Textarea.vue';
@@ -0,0 +1 @@
1
+ export { default } from './TimeInput.vue';