@maltjoy/core-vue 3.19.5 → 3.19.6

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.
@@ -1,6 +1,6 @@
1
1
  import { SIZES } from '../../types';
2
2
  import VJoyTag from './VJoyTag.vue';
3
- export declare const TAG_VARIANTS: readonly ["important", "inactive", "pending", "pricing", "primary", "secondary"];
3
+ export declare const TAG_VARIANTS: readonly ["important", "inactive", "pending", "pricing", "special", "primary", "secondary"];
4
4
  export type TJoyTagVariants = (typeof TAG_VARIANTS)[number];
5
5
  export type TJoyTagSizes = Exclude<(typeof SIZES)[number], 'xlarge' | 'xxsmall'>;
6
6
  export declare const TAG_SIZES: TJoyTagSizes[];
@@ -11,7 +11,7 @@ declare const _default: import("vue").DefineComponent<{
11
11
  default: string;
12
12
  };
13
13
  variant: {
14
- type: PropType<"primary" | "secondary" | "important" | "inactive" | "pending" | "pricing">;
14
+ type: PropType<"primary" | "secondary" | "important" | "inactive" | "pending" | "pricing" | "special">;
15
15
  default: string;
16
16
  };
17
17
  /** Use v-model:selected */
@@ -51,7 +51,7 @@ declare const _default: import("vue").DefineComponent<{
51
51
  default: string;
52
52
  };
53
53
  variant: {
54
- type: PropType<"primary" | "secondary" | "important" | "inactive" | "pending" | "pricing">;
54
+ type: PropType<"primary" | "secondary" | "important" | "inactive" | "pending" | "pricing" | "special">;
55
55
  default: string;
56
56
  };
57
57
  /** Use v-model:selected */
@@ -83,7 +83,7 @@ declare const _default: import("vue").DefineComponent<{
83
83
  }, {
84
84
  link: boolean;
85
85
  size: TJoyTagSizes;
86
- variant: "primary" | "secondary" | "important" | "inactive" | "pending" | "pricing";
86
+ variant: "primary" | "secondary" | "important" | "inactive" | "pending" | "pricing" | "special";
87
87
  value: string;
88
88
  selected: boolean;
89
89
  selectable: boolean;
@@ -25,7 +25,7 @@ declare const _default: import("vue").DefineComponent<{
25
25
  };
26
26
  /** Apply variant for all VJoyTag. Can be overriden by setting a variant property in specific tags entry. */
27
27
  variant: {
28
- type: PropType<"primary" | "secondary" | "important" | "inactive" | "pending" | "pricing">;
28
+ type: PropType<"primary" | "secondary" | "important" | "inactive" | "pending" | "pricing" | "special">;
29
29
  default: string;
30
30
  };
31
31
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -56,14 +56,14 @@ declare const _default: import("vue").DefineComponent<{
56
56
  };
57
57
  /** Apply variant for all VJoyTag. Can be overriden by setting a variant property in specific tags entry. */
58
58
  variant: {
59
- type: PropType<"primary" | "secondary" | "important" | "inactive" | "pending" | "pricing">;
59
+ type: PropType<"primary" | "secondary" | "important" | "inactive" | "pending" | "pricing" | "special">;
60
60
  default: string;
61
61
  };
62
62
  }>> & {
63
63
  "onUpdate:modelValue"?: ((tags: TJoyTagsListModel) => any) | undefined;
64
64
  onRemoveTag?: ((tagValue: string) => any) | undefined;
65
65
  }, {
66
- variant: "primary" | "secondary" | "important" | "inactive" | "pending" | "pricing";
66
+ variant: "primary" | "secondary" | "important" | "inactive" | "pending" | "pricing" | "special";
67
67
  selectable: boolean;
68
68
  removable: boolean;
69
69
  align: "left" | "right" | "center";