beeple-toolkit 0.1.0 → 1.0.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.
Files changed (53) hide show
  1. package/dist/beeple-toolkit.css +1 -1
  2. package/dist/beeple-toolkit.es.js +10581 -83
  3. package/dist/beeple-toolkit.umd.js +5 -1
  4. package/dist/components/Avatar/Avatar.vue.d.ts +8 -0
  5. package/dist/components/Breadcrumbs/Breadcrumbs.vue.d.ts +5 -0
  6. package/dist/components/Button/Button.vue.d.ts +24 -22
  7. package/dist/components/CheckboxInput/CheckboxInput.vue.d.ts +14 -0
  8. package/dist/components/ContextCard/ContextCard.vue.d.ts +21 -0
  9. package/dist/components/DatePicker/DatePicker.vue.d.ts +53 -0
  10. package/dist/components/DatePicker/DatePickerActions.vue.d.ts +9 -0
  11. package/dist/components/DatePicker/DatePickerCalendarSection.vue.d.ts +36 -0
  12. package/dist/components/DatePicker/DatePickerHeader.vue.d.ts +20 -0
  13. package/dist/components/DatePicker/DatePickerNavigation.vue.d.ts +23 -0
  14. package/dist/components/DatePicker/DatePickerPanel.vue.d.ts +80 -0
  15. package/dist/components/DatePicker/DatePickerTimeSection.vue.d.ts +21 -0
  16. package/dist/components/DatePicker/dateUtils.d.ts +91 -0
  17. package/dist/components/DatePicker/locales.d.ts +24 -0
  18. package/dist/components/DropDown/DropDown.vue.d.ts +34 -0
  19. package/dist/components/DropDown/DropDownMenu.vue.d.ts +61 -0
  20. package/dist/components/DropDown/DropDownMenuItem.vue.d.ts +26 -0
  21. package/dist/components/DropDown/DropDownTrigger.vue.d.ts +40 -0
  22. package/dist/components/FilterButton/FilterButton.vue.d.ts +26 -0
  23. package/dist/components/FilterButton/FilterButtonTrigger.vue.d.ts +22 -0
  24. package/dist/components/Icon/Icon.vue.d.ts +8 -0
  25. package/dist/components/Input/Input.vue.d.ts +41 -0
  26. package/dist/components/KeyboardInput/KeyboardInput.vue.d.ts +13 -0
  27. package/dist/components/Label/Label.vue.d.ts +8 -0
  28. package/dist/components/Menu/Menu.vue.d.ts +24 -0
  29. package/dist/components/Modal/Modal.vue.d.ts +30 -0
  30. package/dist/components/ProgressBar/ProgressBar.vue.d.ts +11 -0
  31. package/dist/components/ProgressBar/index.d.ts +1 -0
  32. package/dist/components/RadioInput/RadioInput.vue.d.ts +12 -0
  33. package/dist/components/Slider/Slider.vue.d.ts +17 -0
  34. package/dist/components/StatusDot/StatusDot.vue.d.ts +9 -0
  35. package/dist/components/Switch/Switch.vue.d.ts +19 -0
  36. package/dist/components/Textarea/Textarea.vue.d.ts +17 -0
  37. package/dist/components/TimeInput/TimeInput.vue.d.ts +19 -0
  38. package/dist/components/Toast/Toast.vue.d.ts +17 -0
  39. package/dist/components/{Page/Page.vue.d.ts → Toast/ToastContainer.vue.d.ts} +1 -1
  40. package/dist/components/Tooltip/Tooltip.vue.d.ts +21 -0
  41. package/dist/components/Typography/Subtitle.vue.d.ts +17 -0
  42. package/dist/components/Typography/Text.vue.d.ts +20 -0
  43. package/dist/components/Typography/Title.vue.d.ts +17 -0
  44. package/dist/components/constants.d.ts +19 -0
  45. package/dist/components/index.d.ts +31 -3
  46. package/dist/components/types.d.ts +242 -0
  47. package/dist/main.d.ts +1 -0
  48. package/dist/stores/index.d.ts +2 -0
  49. package/dist/stores/toast.d.ts +142 -0
  50. package/package.json +33 -13
  51. package/dist/components/Header/Header.vue.d.ts +0 -17
  52. package/dist/favicon.ico +0 -0
  53. package/dist/vite.svg +0 -1
@@ -0,0 +1,26 @@
1
+ import type { FilterButtonProps } from '../types';
2
+ import './filterButton.css';
3
+ declare const __VLS_export: import("vue").DefineComponent<FilterButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
4
+ close: () => any;
5
+ "update:modelValue": (value: unknown) => any;
6
+ change: (value: unknown) => any;
7
+ open: () => any;
8
+ }, string, import("vue").PublicProps, Readonly<FilterButtonProps> & Readonly<{
9
+ onClose?: (() => any) | undefined;
10
+ "onUpdate:modelValue"?: ((value: unknown) => any) | undefined;
11
+ onChange?: ((value: unknown) => any) | undefined;
12
+ onOpen?: (() => any) | undefined;
13
+ }>, {
14
+ size: import("../constants.ts").ButtonSize;
15
+ disabled: boolean;
16
+ searchable: boolean;
17
+ searchPlaceholder: string;
18
+ selectAllText: string;
19
+ clearAllText: string;
20
+ noOptionsText: string;
21
+ optionLabel: string;
22
+ optionValue: string;
23
+ filterName: string;
24
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
25
+ declare const _default: typeof __VLS_export;
26
+ export default _default;
@@ -0,0 +1,22 @@
1
+ import { type Ref } from 'vue';
2
+ import type { ButtonSize } from '../constants';
3
+ interface FilterButtonTriggerProps {
4
+ filterName: string;
5
+ selectedCount: number;
6
+ size?: ButtonSize;
7
+ disabled?: boolean;
8
+ isOpen?: boolean;
9
+ }
10
+ declare const __VLS_export: import("vue").DefineComponent<FilterButtonTriggerProps, {
11
+ triggerRef: Ref<HTMLElement | null, HTMLElement | null>;
12
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13
+ clear: () => any;
14
+ }, string, import("vue").PublicProps, Readonly<FilterButtonTriggerProps> & Readonly<{
15
+ onClear?: (() => any) | undefined;
16
+ }>, {
17
+ size: ButtonSize;
18
+ disabled: boolean;
19
+ isOpen: boolean;
20
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
+ declare const _default: typeof __VLS_export;
22
+ export default _default;
@@ -0,0 +1,8 @@
1
+ import type { IconProps } from '../types';
2
+ import 'eva-icons/style/eva-icons.css';
3
+ declare const __VLS_export: import("vue").DefineComponent<IconProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<IconProps> & Readonly<{}>, {
4
+ size: string | number;
5
+ customSvgComponent: import("vue").DefineComponent;
6
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
7
+ declare const _default: typeof __VLS_export;
8
+ export default _default;
@@ -0,0 +1,41 @@
1
+ import type { InputProps } from '../types';
2
+ import './input.css';
3
+ declare var __VLS_1: {}, __VLS_18: {};
4
+ type __VLS_Slots = {} & {
5
+ 'leading-icon'?: (props: typeof __VLS_1) => any;
6
+ } & {
7
+ 'trailing-icon'?: (props: typeof __VLS_18) => any;
8
+ };
9
+ declare const __VLS_base: import("vue").DefineComponent<InputProps, {
10
+ focus: () => void | undefined;
11
+ blur: () => void | undefined;
12
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
13
+ clear: () => any;
14
+ "update:modelValue": (value: string) => any;
15
+ focus: (event: FocusEvent) => any;
16
+ blur: (event: FocusEvent) => any;
17
+ increment: () => any;
18
+ decrement: () => any;
19
+ }, string, import("vue").PublicProps, Readonly<InputProps> & Readonly<{
20
+ onClear?: (() => any) | undefined;
21
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
22
+ onFocus?: ((event: FocusEvent) => any) | undefined;
23
+ onBlur?: ((event: FocusEvent) => any) | undefined;
24
+ onIncrement?: (() => any) | undefined;
25
+ onDecrement?: (() => any) | undefined;
26
+ }>, {
27
+ type: "text" | "email" | "password" | "number" | "tel" | "url" | "search";
28
+ size: import("../constants.ts").Size;
29
+ disabled: boolean;
30
+ clearable: boolean;
31
+ isError: boolean;
32
+ step: number;
33
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
34
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
35
+ declare const _default: typeof __VLS_export;
36
+ export default _default;
37
+ type __VLS_WithSlots<T, S> = T & {
38
+ new (): {
39
+ $slots: S;
40
+ };
41
+ };
@@ -0,0 +1,13 @@
1
+ import type { KeyboardInputProps } from '../types';
2
+ import './keyboardInput.css';
3
+ declare const __VLS_export: import("vue").DefineComponent<KeyboardInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<KeyboardInputProps> & Readonly<{}>, {
4
+ value: string;
5
+ size: "small" | "medium";
6
+ theme: "light" | "dark";
7
+ withCtrl: boolean;
8
+ withShift: boolean;
9
+ withAlt: boolean;
10
+ withOption: boolean;
11
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
@@ -0,0 +1,8 @@
1
+ import type { LabelProps } from '../types';
2
+ import './label.css';
3
+ declare const __VLS_export: import("vue").DefineComponent<LabelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<LabelProps> & Readonly<{}>, {
4
+ size: "small" | "medium" | "large";
5
+ color: "primary" | "primary-faded" | "success" | "success-faded" | "warning" | "warning-faded" | "error" | "error-faded" | "gray" | "gray-faded" | "black";
6
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
7
+ declare const _default: typeof __VLS_export;
8
+ export default _default;
@@ -0,0 +1,24 @@
1
+ import type { MenuProps, DropDownOption } from '../types';
2
+ import '../DropDown/dropdown.css';
3
+ import './menu.css';
4
+ declare var __VLS_1: {};
5
+ type __VLS_Slots = {} & {
6
+ trigger?: (props: typeof __VLS_1) => any;
7
+ };
8
+ declare const __VLS_base: import("vue").DefineComponent<MenuProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
9
+ select: (item: DropDownOption) => any;
10
+ close: () => any;
11
+ }, string, import("vue").PublicProps, Readonly<MenuProps> & Readonly<{
12
+ onSelect?: ((item: DropDownOption) => any) | undefined;
13
+ onClose?: (() => any) | undefined;
14
+ }>, {
15
+ position: "top" | "bottom" | "left" | "right";
16
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
18
+ declare const _default: typeof __VLS_export;
19
+ export default _default;
20
+ type __VLS_WithSlots<T, S> = T & {
21
+ new (): {
22
+ $slots: S;
23
+ };
24
+ };
@@ -0,0 +1,30 @@
1
+ import type { ModalProps } from '../types';
2
+ import './modal.css';
3
+ declare var __VLS_27: {}, __VLS_29: {}, __VLS_31: {}, __VLS_33: {};
4
+ type __VLS_Slots = {} & {
5
+ title?: (props: typeof __VLS_27) => any;
6
+ } & {
7
+ subtitle?: (props: typeof __VLS_29) => any;
8
+ } & {
9
+ default?: (props: typeof __VLS_31) => any;
10
+ } & {
11
+ footer?: (props: typeof __VLS_33) => any;
12
+ };
13
+ declare const __VLS_base: import("vue").DefineComponent<ModalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
14
+ "update:modelValue": (value: boolean) => any;
15
+ }, string, import("vue").PublicProps, Readonly<ModalProps> & Readonly<{
16
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
17
+ }>, {
18
+ size: "ultra-small" | "small" | "medium" | "large";
19
+ modelValue: boolean;
20
+ showCloseButton: boolean;
21
+ titleAlign: "left" | "center";
22
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
23
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
24
+ declare const _default: typeof __VLS_export;
25
+ export default _default;
26
+ type __VLS_WithSlots<T, S> = T & {
27
+ new (): {
28
+ $slots: S;
29
+ };
30
+ };
@@ -0,0 +1,11 @@
1
+ import type { ProgressBarProps } from '../types';
2
+ import type { ProgressBarSize } from '../constants';
3
+ import './progressBar.css';
4
+ declare const __VLS_export: import("vue").DefineComponent<ProgressBarProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ProgressBarProps> & Readonly<{}>, {
5
+ size: ProgressBarSize;
6
+ open: number;
7
+ confirmed: number;
8
+ unconfirmed: number;
9
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
10
+ declare const _default: typeof __VLS_export;
11
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default as ProgressBar } from './ProgressBar.vue';
@@ -0,0 +1,12 @@
1
+ import type { RadioInputProps } from '../types';
2
+ import './radioInput.css';
3
+ declare const __VLS_export: import("vue").DefineComponent<RadioInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
4
+ change: (value: string | number) => any;
5
+ }, string, import("vue").PublicProps, Readonly<RadioInputProps> & Readonly<{
6
+ onChange?: ((value: string | number) => any) | undefined;
7
+ }>, {
8
+ disabled: boolean;
9
+ checked: boolean;
10
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11
+ declare const _default: typeof __VLS_export;
12
+ export default _default;
@@ -0,0 +1,17 @@
1
+ import type { SliderProps } from '../types';
2
+ import './slider.css';
3
+ declare const __VLS_export: import("vue").DefineComponent<SliderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
4
+ "update:modelValue": (value: number | [number, number]) => any;
5
+ change: (value: number | [number, number]) => any;
6
+ }, string, import("vue").PublicProps, Readonly<SliderProps> & Readonly<{
7
+ "onUpdate:modelValue"?: ((value: number | [number, number]) => any) | undefined;
8
+ onChange?: ((value: number | [number, number]) => any) | undefined;
9
+ }>, {
10
+ disabled: boolean;
11
+ step: number;
12
+ variants: "single" | "double";
13
+ minValue: number;
14
+ maxValue: number;
15
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
16
+ declare const _default: typeof __VLS_export;
17
+ export default _default;
@@ -0,0 +1,9 @@
1
+ import type { StatusDotProps } from '../types';
2
+ import './statusDot.css';
3
+ declare const __VLS_export: import("vue").DefineComponent<StatusDotProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<StatusDotProps> & Readonly<{}>, {
4
+ color: "success" | "warning" | "danger" | "primary";
5
+ variant: "label-left" | "label-right" | "dot-only";
6
+ isShadow: boolean;
7
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
8
+ declare const _default: typeof __VLS_export;
9
+ export default _default;
@@ -0,0 +1,19 @@
1
+ import type { SwitchProps } from '../types';
2
+ import './switch.css';
3
+ declare const __VLS_export: import("vue").DefineComponent<SwitchProps, {
4
+ focus: () => void | undefined;
5
+ blur: () => void | undefined;
6
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
7
+ "update:checked": (value: boolean) => any;
8
+ change: (value: boolean) => any;
9
+ }, string, import("vue").PublicProps, Readonly<SwitchProps> & Readonly<{
10
+ "onUpdate:checked"?: ((value: boolean) => any) | undefined;
11
+ onChange?: ((value: boolean) => any) | undefined;
12
+ }>, {
13
+ size: "small" | "medium";
14
+ disabled: boolean;
15
+ checked: boolean;
16
+ labelPosition: "left" | "right";
17
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
18
+ declare const _default: typeof __VLS_export;
19
+ export default _default;
@@ -0,0 +1,17 @@
1
+ import type { TextareaProps } from '../types';
2
+ import './textarea.css';
3
+ declare const __VLS_export: import("vue").DefineComponent<TextareaProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
4
+ "update:modelValue": (value: string) => any;
5
+ focus: () => any;
6
+ blur: () => any;
7
+ }, string, import("vue").PublicProps, Readonly<TextareaProps> & Readonly<{
8
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
9
+ onFocus?: (() => any) | undefined;
10
+ onBlur?: (() => any) | undefined;
11
+ }>, {
12
+ isError: boolean;
13
+ minRows: number;
14
+ maxRows: number;
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 { TimeInputProps } from '../types';
2
+ import './timeinput.css';
3
+ declare const __VLS_export: import("vue").DefineComponent<TimeInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
4
+ "update:modelValue": (value: string) => any;
5
+ focus: () => any;
6
+ blur: () => any;
7
+ }, string, import("vue").PublicProps, Readonly<TimeInputProps> & Readonly<{
8
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
9
+ onFocus?: (() => any) | undefined;
10
+ onBlur?: (() => any) | undefined;
11
+ }>, {
12
+ size: "x-small" | "small" | "medium" | "large";
13
+ isError: boolean;
14
+ hoursPlaceholder: string;
15
+ minutesPlaceholder: string;
16
+ use24Hour: boolean;
17
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
18
+ declare const _default: typeof __VLS_export;
19
+ export default _default;
@@ -0,0 +1,17 @@
1
+ import type { Toast } from '../../stores/toast';
2
+ import './toast.css';
3
+ interface Props {
4
+ toast: Toast;
5
+ hideCloseButton?: boolean;
6
+ showProgress?: boolean;
7
+ }
8
+ declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
9
+ close: (id: string) => any;
10
+ }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
11
+ onClose?: ((id: string) => any) | undefined;
12
+ }>, {
13
+ hideCloseButton: boolean;
14
+ showProgress: boolean;
15
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
16
+ declare const _default: typeof __VLS_export;
17
+ export default _default;
@@ -1,4 +1,4 @@
1
- import './page.css';
1
+ import './toast.css';
2
2
  declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
3
3
  declare const _default: typeof __VLS_export;
4
4
  export default _default;
@@ -0,0 +1,21 @@
1
+ import type { TooltipProps } from '../types';
2
+ import './tooltip.css';
3
+ declare var __VLS_1: {}, __VLS_15: {};
4
+ type __VLS_Slots = {} & {
5
+ default?: (props: typeof __VLS_1) => any;
6
+ } & {
7
+ content?: (props: typeof __VLS_15) => any;
8
+ };
9
+ declare const __VLS_base: import("vue").DefineComponent<TooltipProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<TooltipProps> & Readonly<{}>, {
10
+ position: "top-left" | "top-middle" | "top-right" | "bottom-left" | "bottom-middle" | "bottom-right" | "left-top" | "left-middle" | "left-bottom" | "right-top" | "right-middle" | "right-bottom";
11
+ delay: number;
12
+ maxWidth: number;
13
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
14
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
15
+ declare const _default: typeof __VLS_export;
16
+ export default _default;
17
+ type __VLS_WithSlots<T, S> = T & {
18
+ new (): {
19
+ $slots: S;
20
+ };
21
+ };
@@ -0,0 +1,17 @@
1
+ import type { SubtitleProps } from '../types';
2
+ import './subtitle.css';
3
+ declare var __VLS_1: {};
4
+ type __VLS_Slots = {} & {
5
+ default?: (props: typeof __VLS_1) => any;
6
+ };
7
+ declare const __VLS_base: import("vue").DefineComponent<SubtitleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SubtitleProps> & Readonly<{}>, {
8
+ size: "large" | "small";
9
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
10
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
11
+ declare const _default: typeof __VLS_export;
12
+ export default _default;
13
+ type __VLS_WithSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -0,0 +1,20 @@
1
+ import type { TextProps } from '../types';
2
+ import './text.css';
3
+ declare var __VLS_8: {};
4
+ type __VLS_Slots = {} & {
5
+ default?: (props: typeof __VLS_8) => any;
6
+ };
7
+ declare const __VLS_base: import("vue").DefineComponent<TextProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<TextProps> & Readonly<{}>, {
8
+ size: "default" | "small" | "x-small";
9
+ tag: "p" | "span" | "div";
10
+ fontStyle: "normal" | "italic" | "oblique";
11
+ fontWeight: 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | "normal" | "bold" | "lighter" | "bolder";
12
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
13
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
14
+ declare const _default: typeof __VLS_export;
15
+ export default _default;
16
+ type __VLS_WithSlots<T, S> = T & {
17
+ new (): {
18
+ $slots: S;
19
+ };
20
+ };
@@ -0,0 +1,17 @@
1
+ import type { TitleProps } from '../types';
2
+ import './title.css';
3
+ declare var __VLS_8: {};
4
+ type __VLS_Slots = {} & {
5
+ default?: (props: typeof __VLS_8) => any;
6
+ };
7
+ declare const __VLS_base: import("vue").DefineComponent<TitleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<TitleProps> & Readonly<{}>, {
8
+ level: "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
9
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
10
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
11
+ declare const _default: typeof __VLS_export;
12
+ export default _default;
13
+ type __VLS_WithSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -0,0 +1,19 @@
1
+ import type { DefineComponent } from 'vue';
2
+ export declare const BUTTON_TYPES: readonly ["primary", "secondary", "tertiary", "primary-faded", "success", "warning", "danger", "success-faded", "warning-faded", "danger-faded", "link-color", "link-black"];
3
+ export type ButtonType = (typeof BUTTON_TYPES)[number];
4
+ export declare const BUTTON_SIZES: readonly ["x-small", "small", "medium", "large"];
5
+ export type ButtonSize = (typeof BUTTON_SIZES)[number];
6
+ export declare const SIZES: readonly ["x-small", "small", "medium", "large"];
7
+ export type Size = (typeof SIZES)[number];
8
+ export declare const PROGRESS_BAR_SIZES: readonly ["small", "medium"];
9
+ export type ProgressBarSize = (typeof PROGRESS_BAR_SIZES)[number];
10
+ export declare const EVA_ICONS: readonly ["activity-outline", "alert-circle-outline", "alert-triangle-outline", "archive-outline", "arrow-back-outline", "arrow-circle-down-outline", "arrow-circle-left-outline", "arrow-circle-right-outline", "arrow-circle-up-outline", "arrow-down-outline", "arrow-downward-outline", "arrow-forward-outline", "arrow-ios-back-outline", "arrow-ios-downward-outline", "arrow-ios-forward-outline", "arrow-ios-upward-outline", "arrow-left-outline", "arrow-right-outline", "arrow-up-outline", "arrow-upward-outline", "arrowhead-down-outline", "arrowhead-left-outline", "arrowhead-right-outline", "arrowhead-up-outline", "at-outline", "attach-2-outline", "attach-outline", "award-outline", "backspace-outline", "bar-chart-2-outline", "bar-chart-outline", "battery-outline", "behance-outline", "bell-off-outline", "bell-outline", "bluetooth-outline", "book-open-outline", "book-outline", "bookmark-outline", "briefcase-outline", "browser-outline", "brush-outline", "bulb-outline", "calendar-outline", "camera-outline", "car-outline", "cast-outline", "charging-outline", "checkmark-circle-2-outline", "checkmark-circle-outline", "checkmark-outline", "checkmark-square-2-outline", "checkmark-square-outline", "chevron-down-outline", "chevron-left-outline", "chevron-right-outline", "chevron-up-outline", "clipboard-outline", "clock-outline", "close-circle-outline", "close-outline", "close-square-outline", "cloud-download-outline", "cloud-upload-outline", "code-download-outline", "code-outline", "collapse-outline", "color-palette-outline", "color-picker-outline", "compass-outline", "copy-outline", "corner-down-left-outline", "corner-down-right-outline", "corner-left-down-outline", "corner-left-up-outline", "corner-right-down-outline", "corner-right-up-outline", "corner-up-left-outline", "corner-up-right-outline", "credit-card-outline", "crop-outline", "cube-outline", "diagonal-arrow-left-down-outline", "diagonal-arrow-left-up-outline", "diagonal-arrow-right-down-outline", "diagonal-arrow-right-up-outline", "done-all-outline", "download-outline", "droplet-off-outline", "droplet-outline", "edit-2-outline", "edit-outline", "email-outline", "expand-outline", "external-link-outline", "eye-off-2-outline", "eye-off-outline", "eye-outline", "facebook-outline", "file-add-outline", "file-outline", "file-remove-outline", "file-text-outline", "film-outline", "flag-outline", "flash-off-outline", "flash-outline", "flip-2-outline", "flip-outline", "folder-add-outline", "folder-outline", "folder-remove-outline", "funnel-outline", "gift-outline", "github-outline", "globe-2-outline", "globe-outline", "google-outline", "grid-outline", "hard-drive-outline", "hash-outline", "headphones-outline", "heart-outline", "home-outline", "image-outline", "inbox-outline", "info-outline", "keypad-outline", "layers-outline", "layout-outline", "link-2-outline", "link-outline", "linkedin-outline", "list-outline", "loader-outline", "lock-outline", "log-in-outline", "log-out-outline", "map-outline", "maximize-outline", "menu-2-outline", "menu-arrow-outline", "menu-outline", "message-circle-outline", "message-square-outline", "mic-off-outline", "mic-outline", "minimize-outline", "minus-circle-outline", "minus-outline", "minus-square-outline", "monitor-outline", "moon-outline", "more-horizontal-outline", "more-vertical-outline", "move-outline", "music-outline", "navigation-2-outline", "navigation-outline", "npm-outline", "options-2-outline", "options-outline", "pantone-outline", "paper-plane-outline", "pause-circle-outline", "people-outline", "percent-outline", "person-add-outline", "person-delete-outline", "person-done-outline", "person-outline", "person-remove-outline", "phone-call-outline", "phone-missed-outline", "phone-off-outline", "phone-outline", "pie-chart-outline", "pin-outline", "play-circle-outline", "plus-circle-outline", "plus-outline", "plus-square-outline", "power-outline", "pricetags-outline", "printer-outline", "question-mark-circle-outline", "question-mark-outline", "radio-button-off-outline", "radio-button-on-outline", "radio-outline", "recording-outline", "refresh-outline", "repeat-outline", "rewind-left-outline", "rewind-right-outline", "save-outline", "scissors-outline", "search-outline", "settings-2-outline", "settings-outline", "shake-outline", "share-outline", "shield-off-outline", "shield-outline", "shopping-bag-outline", "shopping-cart-outline", "shuffle-2-outline", "shuffle-outline", "skip-back-outline", "skip-forward-outline", "slash-outline", "smartphone-outline", "smiling-face-outline", "speaker-outline", "square-outline", "star-outline", "stop-circle-outline", "sun-outline", "swap-outline", "sync-outline", "text-outline", "thermometer-minus-outline", "thermometer-outline", "thermometer-plus-outline", "toggle-left-outline", "toggle-right-outline", "trash-2-outline", "trash-outline", "trending-down-outline", "trending-up-outline", "tv-outline", "twitter-outline", "umbrella-outline", "undo-outline", "unlock-outline", "upload-outline", "video-off-outline", "video-outline", "volume-down-outline", "volume-mute-outline", "volume-off-outline", "volume-up-outline", "wifi-off-outline", "wifi-outline"];
11
+ export type EvaIconName = (typeof EVA_ICONS)[number];
12
+ export declare const CUSTOM_ICONS: Record<string, DefineComponent>;
13
+ export type CustomIconName = keyof typeof CUSTOM_ICONS;
14
+ export declare const KEYBOARD_INPUT_THEMES: readonly ["light", "dark"];
15
+ export type KeyboardInputTheme = (typeof KEYBOARD_INPUT_THEMES)[number];
16
+ export declare const KEYBOARD_INPUT_SIZES: readonly ["small", "medium"];
17
+ export type KeyboardInputSize = (typeof KEYBOARD_INPUT_SIZES)[number];
18
+ export declare const KEYBOARD_INPUT_VARIANTS: readonly ["macValue", "winValue", "value"];
19
+ export type KeyboardInputVariant = (typeof KEYBOARD_INPUT_VARIANTS)[number];
@@ -1,4 +1,32 @@
1
+ import Avatar from './Avatar/Avatar.vue';
2
+ import Breadcrumbs from './Breadcrumbs/Breadcrumbs.vue';
1
3
  import Button from './Button/Button.vue';
2
- import Header from './Header/Header.vue';
3
- import Page from './Page/Page.vue';
4
- export { Button, Header, Page, };
4
+ import CheckboxInput from './CheckboxInput/CheckboxInput.vue';
5
+ import ContextCard from './ContextCard/ContextCard.vue';
6
+ import DatePicker from './DatePicker/DatePicker.vue';
7
+ import DatePickerPanel from './DatePicker/DatePickerPanel.vue';
8
+ import DropDown from './DropDown/DropDown.vue';
9
+ import FilterButton from './FilterButton/FilterButton.vue';
10
+ import Icon from './Icon/Icon.vue';
11
+ import Input from './Input/Input.vue';
12
+ import KeyboardInput from './KeyboardInput/KeyboardInput.vue';
13
+ import Label from './Label/Label.vue';
14
+ import Menu from './Menu/Menu.vue';
15
+ import Modal from './Modal/Modal.vue';
16
+ import ProgressBar from './ProgressBar/ProgressBar.vue';
17
+ import RadioInput from './RadioInput/RadioInput.vue';
18
+ import Slider from './Slider/Slider.vue';
19
+ import StatusDot from './StatusDot/StatusDot.vue';
20
+ import Subtitle from './Typography/Subtitle.vue';
21
+ import Switch from './Switch/Switch.vue';
22
+ import Text from './Typography/Text.vue';
23
+ import Textarea from './Textarea/Textarea.vue';
24
+ import TimeInput from './TimeInput/TimeInput.vue';
25
+ import Title from './Typography/Title.vue';
26
+ import Toast from './Toast/Toast.vue';
27
+ import ToastContainer from './Toast/ToastContainer.vue';
28
+ import Tooltip from './Tooltip/Tooltip.vue';
29
+ import '../styles/variables.css';
30
+ export type { ButtonType, ButtonSize, EvaIconName, Size, ProgressBarSize } from './constants';
31
+ export type { AvatarProps, BreadcrumbItem, BreadcrumbsProps, ButtonProps, DatePickerProps, DatePickerVariant, DropDownOption, DropDownProps, CheckboxInputProps, ContextCardProps, IconProps, InputProps, KeyboardInputProps, LabelProps, ModalProps, MenuProps, ProgressBarProps, RadioInputProps, SliderProps, StatusDotProps, SubtitleProps, SwitchProps, TextProps, TextareaProps, FilterButtonProps, TimeInputProps, TitleProps, TooltipProps, } from './types';
32
+ export { Avatar, Breadcrumbs, Button, CheckboxInput, ContextCard, DatePicker, DatePickerPanel, DropDown, FilterButton, Icon, Input, KeyboardInput, Label, Modal, Menu, ProgressBar, RadioInput, Slider, StatusDot, Subtitle, Switch, Text, Textarea, TimeInput, Title, Toast, ToastContainer, Tooltip, };