@toife/vue 3.4.1 → 3.4.3

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 (74) hide show
  1. package/dist/components/action/action.composable.d.ts +0 -4
  2. package/dist/components/action/action.vue.d.ts +0 -1
  3. package/dist/components/app/app.vue.d.ts +0 -1
  4. package/dist/components/button/button.vue.d.ts +0 -1
  5. package/dist/components/checkbox/checkbox.vue.d.ts +0 -1
  6. package/dist/components/dropdown/dropdown.vue.d.ts +0 -1
  7. package/dist/components/field/field.vue.d.ts +0 -1
  8. package/dist/components/radio/radio/radio.vue.d.ts +0 -1
  9. package/dist/components/radio/radio-group/radio-group.vue.d.ts +0 -1
  10. package/dist/components/segmented-field/segmented-field.vue.d.ts +0 -1
  11. package/dist/components/select/select.vue.d.ts +0 -1
  12. package/dist/components/switch/switch.vue.d.ts +0 -1
  13. package/dist/core/features/action/action.constants.d.ts +0 -1
  14. package/dist/core/features/action/action.logic.d.ts +0 -1
  15. package/dist/core/features/action/action.type.d.ts +0 -3
  16. package/dist/core/features/app/app.constants.d.ts +0 -1
  17. package/dist/core/features/app/app.type.d.ts +0 -2
  18. package/dist/core/features/button/button.constants.d.ts +0 -1
  19. package/dist/core/features/button/button.logic.d.ts +0 -1
  20. package/dist/core/features/button/button.type.d.ts +0 -2
  21. package/dist/core/features/checkbox/checkbox.constants.d.ts +0 -1
  22. package/dist/core/features/checkbox/checkbox.logic.d.ts +0 -1
  23. package/dist/core/features/checkbox/checkbox.type.d.ts +0 -2
  24. package/dist/core/features/dropdown/dropdown.constants.d.ts +0 -1
  25. package/dist/core/features/dropdown/dropdown.logic.d.ts +0 -1
  26. package/dist/core/features/dropdown/dropdown.type.d.ts +0 -2
  27. package/dist/core/features/field/field.constants.d.ts +0 -1
  28. package/dist/core/features/field/field.logic.d.ts +0 -1
  29. package/dist/core/features/field/field.type.d.ts +0 -2
  30. package/dist/core/features/radio/radio-group.constants.d.ts +0 -1
  31. package/dist/core/features/radio/radio-group.type.d.ts +0 -2
  32. package/dist/core/features/radio/radio.constants.d.ts +0 -1
  33. package/dist/core/features/radio/radio.logic.d.ts +0 -1
  34. package/dist/core/features/radio/radio.type.d.ts +0 -2
  35. package/dist/core/features/segmented-field/segmented-field.constants.d.ts +0 -1
  36. package/dist/core/features/segmented-field/segmented-field.type.d.ts +0 -1
  37. package/dist/core/features/select/select.constants.d.ts +0 -1
  38. package/dist/core/features/select/select.type.d.ts +0 -1
  39. package/dist/core/features/switch/switch.constants.d.ts +0 -1
  40. package/dist/core/features/switch/switch.logic.d.ts +0 -2
  41. package/dist/core/features/switch/switch.type.d.ts +0 -2
  42. package/dist/index.es.js +1126 -1170
  43. package/dist/index.umd.js +1 -1
  44. package/dist/styles/action.css +1 -1
  45. package/dist/styles/app.css +1 -1
  46. package/dist/styles/avatar.css +1 -1
  47. package/dist/styles/button.css +1 -1
  48. package/dist/styles/card-body.css +1 -1
  49. package/dist/styles/card-footer.css +1 -1
  50. package/dist/styles/card-header.css +1 -1
  51. package/dist/styles/card.css +1 -1
  52. package/dist/styles/checkbox.css +1 -1
  53. package/dist/styles/collapse.css +1 -1
  54. package/dist/styles/decision-modal.css +1 -1
  55. package/dist/styles/divider.css +1 -1
  56. package/dist/styles/dropdown.css +1 -1
  57. package/dist/styles/field.css +1 -1
  58. package/dist/styles/gesture-indicator.css +1 -1
  59. package/dist/styles/modal.css +1 -1
  60. package/dist/styles/present.css +1 -1
  61. package/dist/styles/radio-group.css +1 -1
  62. package/dist/styles/radio.css +1 -1
  63. package/dist/styles/route-navigator.css +1 -1
  64. package/dist/styles/segmented-field.css +1 -1
  65. package/dist/styles/select.css +1 -1
  66. package/dist/styles/skeleton.css +1 -1
  67. package/dist/styles/slide-range.css +1 -1
  68. package/dist/styles/switch.css +1 -1
  69. package/dist/styles/tabs.css +1 -1
  70. package/dist/styles/tag.css +1 -1
  71. package/dist/styles/toast-content.css +1 -1
  72. package/dist/styles/toolbar.css +1 -1
  73. package/dist/styles/tooltip.css +1 -1
  74. package/package.json +1 -1
@@ -11,14 +11,12 @@ export declare const useAction: () => {
11
11
  text?: string | undefined;
12
12
  role?: string | undefined;
13
13
  variant?: import('../../core').ButtonVariant | undefined;
14
- shadow?: boolean | undefined;
15
14
  handler?: (() => void) | undefined;
16
15
  data?: unknown;
17
16
  }[][];
18
17
  role?: string | undefined;
19
18
  shape?: string | undefined;
20
19
  divider?: boolean | undefined;
21
- shadow?: boolean | undefined;
22
20
  placement?: import('../../core').ActionPlacement | undefined;
23
21
  onClose?: ((type?: string) => void) | undefined;
24
22
  onChoose?: ((btn?: ActionButton) => void) | undefined;
@@ -29,14 +27,12 @@ export declare const useAction: () => {
29
27
  text?: string | undefined;
30
28
  role?: string | undefined;
31
29
  variant?: import('../../core').ButtonVariant | undefined;
32
- shadow?: boolean | undefined;
33
30
  handler?: (() => void) | undefined;
34
31
  data?: unknown;
35
32
  }[][];
36
33
  role?: string | undefined;
37
34
  shape?: string | undefined;
38
35
  divider?: boolean | undefined;
39
- shadow?: boolean | undefined;
40
36
  placement?: import('../../core').ActionPlacement | undefined;
41
37
  onClose?: ((type?: string) => void) | undefined;
42
38
  onChoose?: ((btn?: ActionButton) => void) | undefined;
@@ -10,7 +10,6 @@ declare const _default: import('vue').DefineComponent<ActionProps, {}, {}, {}, {
10
10
  shape: string;
11
11
  divider: boolean;
12
12
  placement: import('../../core').ActionPlacement;
13
- shadow: boolean;
14
13
  visible: boolean;
15
14
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
16
15
  export default _default;
@@ -4,7 +4,6 @@ declare const _default: import('vue').DefineComponent<AppProps, {}, {}, {}, {},
4
4
  shape: string;
5
5
  divider: boolean;
6
6
  direction: import('../../core').AppDirection;
7
- shadow: boolean;
8
7
  triple: boolean;
9
8
  data: import('../../core').AppData;
10
9
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
@@ -2,7 +2,6 @@ import { ButtonProps } from '../../core';
2
2
  declare const _default: import('vue').DefineComponent<ButtonProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ButtonProps> & Readonly<{}>, {
3
3
  size: import('../../core').ButtonSize;
4
4
  variant: import('../../core').ButtonVariant;
5
- shadow: boolean;
6
5
  block: boolean;
7
6
  loading: boolean;
8
7
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
@@ -11,7 +11,6 @@ declare const _default: import('vue').DefineComponent<CheckboxProps, {}, {}, {},
11
11
  size: import('../../core').CheckboxSize;
12
12
  variant: import('../../core').CheckboxVariant;
13
13
  disabled: boolean;
14
- shadow: boolean;
15
14
  modelValue: boolean;
16
15
  readonly: boolean;
17
16
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
@@ -14,7 +14,6 @@ declare const _default: import('vue').DefineComponent<DropdownProps, {}, {}, {},
14
14
  direction: import('../../core').AppDirection;
15
15
  disabled: boolean;
16
16
  placement: import('../../core').DropdownPlacement;
17
- shadow: boolean;
18
17
  modelValue: boolean;
19
18
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
20
19
  export default _default;
@@ -20,7 +20,6 @@ declare const _default: import('vue').DefineComponent<FieldProps, {}, {}, {}, {}
20
20
  variant: import('../../core').FieldVariant;
21
21
  disabled: boolean;
22
22
  message: string;
23
- shadow: boolean;
24
23
  type: import('../../core').FieldType;
25
24
  modelValue: string | number;
26
25
  readonly: boolean;
@@ -2,6 +2,5 @@ import { RadioProps } from '../../../core';
2
2
  declare const _default: import('vue').DefineComponent<RadioProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<RadioProps> & Readonly<{}>, {
3
3
  size: import('../../../core').RadioSize;
4
4
  disabled: boolean;
5
- shadow: boolean;
6
5
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
7
6
  export default _default;
@@ -7,7 +7,6 @@ declare const _default: import('vue').DefineComponent<RadioGroupProps, {}, {}, {
7
7
  direction: import('../../../core').RadioGroupDirection;
8
8
  variant: import('../../../core').RadioVariant;
9
9
  disabled: boolean;
10
- shadow: boolean;
11
10
  readonly: boolean;
12
11
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
13
12
  export default _default;
@@ -18,7 +18,6 @@ declare const _default: import('vue').DefineComponent<SegmentedFieldProps, {}, {
18
18
  disabled: boolean;
19
19
  length: number;
20
20
  message: string;
21
- shadow: boolean;
22
21
  type: string;
23
22
  pattern: string[];
24
23
  modelValue: string[];
@@ -11,7 +11,6 @@ declare const _default: import('vue').DefineComponent<SelectProps, {}, {}, {}, {
11
11
  variant: import('../../core').FieldVariant;
12
12
  disabled: boolean;
13
13
  message: string;
14
- shadow: boolean;
15
14
  options: Array<SelectOption>;
16
15
  modelValue: string;
17
16
  placeholder: string;
@@ -6,7 +6,6 @@ declare const _default: import('vue').DefineComponent<SwitchProps, {}, {}, {}, {
6
6
  }>, {
7
7
  size: import('../../core').SwitchSize;
8
8
  bounce: number | string;
9
- shadow: boolean;
10
9
  modelValue: boolean;
11
10
  readonly: boolean;
12
11
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
@@ -7,5 +7,4 @@ export declare const ACTION_DEFAULT_PROPS: {
7
7
  readonly role: undefined;
8
8
  readonly placement: "bottom";
9
9
  readonly divider: undefined;
10
- readonly shadow: undefined;
11
10
  };
@@ -3,6 +3,5 @@ export declare const getActionAttrs: (options: ActionAttrOptions) => {
3
3
  class: (string | {
4
4
  pop: boolean;
5
5
  divider: boolean;
6
- shadow: boolean;
7
6
  })[];
8
7
  };
@@ -5,7 +5,6 @@ export type ActionButton = {
5
5
  text?: string;
6
6
  role?: string;
7
7
  variant?: ButtonVariant;
8
- shadow?: boolean;
9
8
  handler?: () => void;
10
9
  data?: unknown;
11
10
  };
@@ -19,7 +18,6 @@ export type ActionProps = {
19
18
  role?: string;
20
19
  shape?: string;
21
20
  divider?: boolean;
22
- shadow?: boolean;
23
21
  placement?: ActionPlacement;
24
22
  };
25
23
  /**
@@ -41,6 +39,5 @@ export type ActionAttrOptions = {
41
39
  shape: string;
42
40
  placement: string;
43
41
  divider: boolean;
44
- shadow: boolean;
45
42
  pop: boolean;
46
43
  };
@@ -9,7 +9,6 @@ export declare const APP_DEFAULT_PROPS: {
9
9
  readonly shape: "pill";
10
10
  readonly divider: false;
11
11
  readonly role: "mode";
12
- readonly shadow: false;
13
12
  readonly triple: false;
14
13
  readonly direction: "left";
15
14
  readonly data: () => {};
@@ -13,7 +13,6 @@ export type AppProps = {
13
13
  shape?: string;
14
14
  divider?: boolean;
15
15
  role?: string;
16
- shadow?: boolean;
17
16
  triple?: boolean;
18
17
  direction?: AppDirection;
19
18
  data?: AppData;
@@ -25,7 +24,6 @@ export type AppProviderState = {
25
24
  shape: string;
26
25
  divider: boolean;
27
26
  role: string;
28
- shadow: boolean;
29
27
  triple: boolean;
30
28
  direction: AppDirection;
31
29
  rootEl: HTMLElement | undefined;
@@ -6,5 +6,4 @@ export declare const BUTTON_DEFAULT_PROPS: {
6
6
  readonly block: false;
7
7
  readonly loading: false;
8
8
  readonly variant: "fill";
9
- readonly shadow: undefined;
10
9
  };
@@ -2,7 +2,6 @@ import { ButtonAttrOptions } from './button.type';
2
2
  export declare const getButtonAttrs: (options: ButtonAttrOptions) => {
3
3
  class: (string | {
4
4
  block: boolean;
5
- shadow: boolean;
6
5
  focus: boolean;
7
6
  })[];
8
7
  };
@@ -7,7 +7,6 @@ export type ButtonProps = {
7
7
  block?: boolean;
8
8
  loading?: boolean;
9
9
  variant?: ButtonVariant;
10
- shadow?: boolean;
11
10
  };
12
11
  export type ButtonAttrOptions = {
13
12
  role: string;
@@ -15,6 +14,5 @@ export type ButtonAttrOptions = {
15
14
  size: string;
16
15
  block: boolean;
17
16
  variant: ButtonVariant;
18
- shadow: boolean;
19
17
  focus: boolean;
20
18
  };
@@ -7,5 +7,4 @@ export declare const CHECKBOX_DEFAULT_PROPS: {
7
7
  readonly size: "standard";
8
8
  readonly variant: "fill";
9
9
  readonly readonly: false;
10
- readonly shadow: undefined;
11
10
  };
@@ -4,7 +4,6 @@ export declare const getCheckboxAttrs: (options: CheckboxAttrOptions) => {
4
4
  on: boolean;
5
5
  disabled: boolean;
6
6
  readonly: boolean;
7
- shadow: boolean;
8
7
  focus: boolean;
9
8
  })[];
10
9
  };
@@ -8,7 +8,6 @@ export type CheckboxProps = {
8
8
  variant?: CheckboxVariant;
9
9
  readonly?: boolean;
10
10
  disabled?: boolean;
11
- shadow?: boolean;
12
11
  };
13
12
  export type CheckboxEvent = {
14
13
  (e: "update:modelValue", value: boolean): void;
@@ -23,6 +22,5 @@ export type CheckboxAttrOptions = {
23
22
  modelValue: boolean;
24
23
  disabled: boolean;
25
24
  readonly: boolean;
26
- shadow: boolean;
27
25
  focus: boolean;
28
26
  };
@@ -6,7 +6,6 @@ export declare const DROPDOWN_DEFAULT_PROPS: {
6
6
  readonly disabled: false;
7
7
  readonly placement: "bottom-start";
8
8
  readonly role: undefined;
9
- readonly shadow: undefined;
10
9
  readonly shape: undefined;
11
10
  readonly direction: undefined;
12
11
  readonly size: "standard";
@@ -3,7 +3,6 @@ export declare const getDropdownAttrs: (options: DropdownAttrOptions) => {
3
3
  class: (string | {
4
4
  open: boolean;
5
5
  disabled: boolean;
6
- shadow: boolean;
7
6
  })[];
8
7
  };
9
8
  export declare const getDropdownPanelAttrs: (options: DropdownPanelAttrOptions) => {
@@ -6,7 +6,6 @@ export type DropdownProps = {
6
6
  disabled?: boolean;
7
7
  placement?: DropdownPlacement;
8
8
  role?: string;
9
- shadow?: boolean;
10
9
  shape?: string;
11
10
  direction?: AppDirection;
12
11
  size?: DropdownSize;
@@ -22,7 +21,6 @@ export type DropdownAttrOptions = {
22
21
  size: string;
23
22
  open: boolean;
24
23
  disabled: boolean;
25
- shadow: boolean;
26
24
  };
27
25
  export type DropdownPanelAttrOptions = {
28
26
  placement: string;
@@ -12,7 +12,6 @@ export declare const FIELD_DEFAULT_PROPS: {
12
12
  readonly message: "";
13
13
  readonly variant: "outline";
14
14
  readonly placeholder: "";
15
- readonly shadow: undefined;
16
15
  readonly direction: undefined;
17
16
  readonly line: 1;
18
17
  readonly maxLine: 1;
@@ -3,7 +3,6 @@ export declare const getFieldAttrs: (options: FieldAttrOptions) => {
3
3
  class: (string | {
4
4
  disabled: boolean;
5
5
  focus: boolean;
6
- shadow: boolean;
7
6
  readonly: boolean;
8
7
  })[];
9
8
  style: {
@@ -9,7 +9,6 @@ export type FieldProps = {
9
9
  role?: string;
10
10
  shape?: string;
11
11
  size?: FieldSize;
12
- shadow?: boolean;
13
12
  direction?: AppDirection;
14
13
  id?: string;
15
14
  value?: string | number;
@@ -40,7 +39,6 @@ export type FieldAttrOptions = {
40
39
  type: string;
41
40
  disabled: boolean;
42
41
  focus: boolean;
43
- shadow: boolean;
44
42
  readonly: boolean;
45
43
  line: number;
46
44
  maxLine?: number;
@@ -4,5 +4,4 @@ export declare const RADIO_GROUP_DEFAULT_PROPS: {
4
4
  readonly readonly: false;
5
5
  readonly variant: "fill";
6
6
  readonly direction: "vertical";
7
- readonly shadow: undefined;
8
7
  };
@@ -7,7 +7,6 @@ export type RadioGroupProps = {
7
7
  variant?: RadioVariant;
8
8
  disabled?: boolean;
9
9
  readonly?: boolean;
10
- shadow?: boolean;
11
10
  direction?: RadioGroupDirection;
12
11
  };
13
12
  export type RadioGroupEvent = {
@@ -20,7 +19,6 @@ export type RadioGroupProviderState = {
20
19
  variant: RadioVariant;
21
20
  disabled: boolean;
22
21
  readonly: boolean;
23
- shadow: boolean;
24
22
  setValue: (val: string | number) => void;
25
23
  };
26
24
  export type RadioGroupAttrOptions = {
@@ -4,5 +4,4 @@
4
4
  export declare const RADIO_DEFAULT_PROPS: {
5
5
  readonly disabled: false;
6
6
  readonly size: "standard";
7
- readonly shadow: undefined;
8
7
  };
@@ -4,7 +4,6 @@ export declare const getRadioAttrs: (options: RadioAttrOptions) => {
4
4
  on: boolean;
5
5
  disabled: boolean;
6
6
  readonly: boolean;
7
- shadow: boolean;
8
7
  focus: boolean;
9
8
  })[];
10
9
  };
@@ -9,7 +9,6 @@ export type RadioProps = {
9
9
  variant?: RadioVariant;
10
10
  disabled?: boolean;
11
11
  readonly?: boolean;
12
- shadow?: boolean;
13
12
  };
14
13
  export type RadioAttrOptions = {
15
14
  role: string;
@@ -19,6 +18,5 @@ export type RadioAttrOptions = {
19
18
  checked: boolean;
20
19
  disabled: boolean;
21
20
  readonly: boolean;
22
- shadow: boolean;
23
21
  focus: boolean;
24
22
  };
@@ -11,7 +11,6 @@ export declare const SEGMENTED_FIELD_DEFAULT_PROPS: {
11
11
  readonly disabled: false;
12
12
  readonly readonly: false;
13
13
  readonly type: "text";
14
- readonly shadow: undefined;
15
14
  readonly message: "";
16
15
  readonly pattern: () => string[];
17
16
  };
@@ -13,7 +13,6 @@ export type SegmentedFieldProps = {
13
13
  type?: string;
14
14
  role?: string;
15
15
  shape?: string;
16
- shadow?: boolean;
17
16
  message?: string;
18
17
  pattern?: string[];
19
18
  direction?: AppDirection;
@@ -9,7 +9,6 @@ export declare const SELECT_DEFAULT_PROPS: {
9
9
  readonly message: "";
10
10
  readonly variant: "outline";
11
11
  readonly placeholder: "";
12
- readonly shadow: undefined;
13
12
  readonly direction: undefined;
14
13
  readonly options: () => Array<SelectOption>;
15
14
  };
@@ -14,7 +14,6 @@ export type SelectProps = {
14
14
  role?: string;
15
15
  shape?: string;
16
16
  size?: FieldSize;
17
- shadow?: boolean;
18
17
  direction?: AppDirection;
19
18
  id?: string;
20
19
  value?: string;
@@ -5,6 +5,5 @@ export declare const SWITCH_DEFAULT_PROPS: {
5
5
  readonly modelValue: false;
6
6
  readonly size: "standard";
7
7
  readonly readonly: false;
8
- readonly shadow: undefined;
9
8
  readonly bounce: 1.5;
10
9
  };
@@ -3,7 +3,6 @@ export declare const getSwitchWrapperAttrs: (options: SwitchWrapperAttrOptions)
3
3
  class: (string | {
4
4
  disabled: boolean;
5
5
  readonly: boolean;
6
- shadow: boolean;
7
6
  focus: boolean;
8
7
  on: boolean;
9
8
  transition?: undefined;
@@ -11,7 +10,6 @@ export declare const getSwitchWrapperAttrs: (options: SwitchWrapperAttrOptions)
11
10
  transition: boolean;
12
11
  disabled?: undefined;
13
12
  readonly?: undefined;
14
- shadow?: undefined;
15
13
  focus?: undefined;
16
14
  on?: undefined;
17
15
  })[];
@@ -6,7 +6,6 @@ export type SwitchProps = {
6
6
  shape?: string;
7
7
  disabled?: boolean;
8
8
  readonly?: boolean;
9
- shadow?: boolean;
10
9
  bounce?: number | string;
11
10
  };
12
11
  export type SwitchEvent = {
@@ -15,7 +14,6 @@ export type SwitchEvent = {
15
14
  export type SwitchWrapperAttrOptions = {
16
15
  disabled: boolean;
17
16
  readonly: boolean;
18
- shadow: boolean;
19
17
  focus: boolean;
20
18
  modelValue: boolean;
21
19
  transition: boolean;