@davincihealthcare/elty-design-system-vue 1.66.0 → 2.0.1

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,41 +1,43 @@
1
1
  import { ElIconProps } from './ElIcon.vue';
2
2
 
3
- export declare const elTagColors: readonly ["primary", "rose", "pink", "purple", "indigo", "blue", "cyan", "gray", "teal", "green", "yellow", "orange", "red"];
3
+ export declare const elTagColors: readonly ["brand-blue", "rose", "pink", "purple", "indigo", "blue", "cyan", "gray", "brand-green", "green", "yellow", "orange", "red"];
4
4
  export type ElTagColor = (typeof elTagColors)[number];
5
5
  export declare const elTagSizes: readonly ["xxs", "xs"];
6
6
  export type ElTagSize = (typeof elTagSizes)[number];
7
+ export declare const elTagAppearance: readonly ["filled", "outlined"];
8
+ export type ElTagAppearance = (typeof elTagAppearance)[number];
7
9
  declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
8
10
  text: string;
9
11
  color?: ElTagColor;
10
12
  size?: ElTagSize;
11
- outlined?: boolean;
13
+ appearance?: ElTagAppearance;
12
14
  leadingIcon?: ElIconProps;
13
15
  trailingIcon?: ElIconProps;
14
16
  }>, {
15
17
  color: string;
16
18
  size: string;
17
- outlined: boolean;
19
+ appearance: string;
18
20
  leadingIcon: undefined;
19
21
  trailingIcon: undefined;
20
22
  }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
21
23
  text: string;
22
24
  color?: ElTagColor;
23
25
  size?: ElTagSize;
24
- outlined?: boolean;
26
+ appearance?: ElTagAppearance;
25
27
  leadingIcon?: ElIconProps;
26
28
  trailingIcon?: ElIconProps;
27
29
  }>, {
28
30
  color: string;
29
31
  size: string;
30
- outlined: boolean;
32
+ appearance: string;
31
33
  leadingIcon: undefined;
32
34
  trailingIcon: undefined;
33
35
  }>>>, {
34
36
  color: ElTagColor;
35
37
  size: ElTagSize;
38
+ appearance: ElTagAppearance;
36
39
  leadingIcon: ElIconProps;
37
40
  trailingIcon: ElIconProps;
38
- outlined: boolean;
39
41
  }, {}>;
40
42
  export default _default;
41
43
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;