@weni/unnnic-system 3.8.2-alpha.1 → 3.8.2-alpha.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 (37) hide show
  1. package/dist/assets/tokens/colors.json.d.ts +376 -0
  2. package/dist/components/Card/CardCompany.vue.d.ts +11 -414
  3. package/dist/components/Carousel/Carousel.vue.d.ts +11 -414
  4. package/dist/components/Carousel/TagCarousel.vue.d.ts +11 -414
  5. package/dist/components/ChatsContact/ChatsContact.vue.d.ts +0 -418
  6. package/dist/components/ModalUpload/ModalUpload.vue.d.ts +1 -1
  7. package/dist/components/SelectSmart/SelectSmart.vue.d.ts +12 -415
  8. package/dist/components/SelectSmart/SelectSmartMultipleHeader.vue.d.ts +11 -414
  9. package/dist/components/Tag/DefaultTag.vue.d.ts +4 -83
  10. package/dist/components/Tag/DefaultTag.vue.d.ts.map +1 -1
  11. package/dist/components/Tag/Tag.vue.d.ts +12 -414
  12. package/dist/components/Tag/Tag.vue.d.ts.map +1 -1
  13. package/dist/components/Tag/types.d.ts +18 -0
  14. package/dist/components/Tag/types.d.ts.map +1 -0
  15. package/dist/components/index.d.ts +12229 -15483
  16. package/dist/components/index.d.ts.map +1 -1
  17. package/dist/{es-dc440fef.mjs → es-4f3d094b.mjs} +1 -1
  18. package/dist/{index-6b5eeee8.mjs → index-43281ff3.mjs} +6991 -6829
  19. package/dist/{pt-br-a2cfd62d.mjs → pt-br-8a34ccb7.mjs} +1 -1
  20. package/dist/style.css +1 -1
  21. package/dist/unnnic.mjs +1 -1
  22. package/dist/unnnic.umd.js +32 -36
  23. package/package.json +1 -1
  24. package/src/components/ChatsContact/ChatsContact.vue +10 -6
  25. package/src/components/Tag/DefaultTag.vue +46 -107
  26. package/src/components/Tag/Tag.vue +32 -79
  27. package/src/components/Tag/types.ts +19 -0
  28. package/src/stories/Tag.stories.js +24 -43
  29. package/dist/components/Tag/BrandTag.vue.d.ts +0 -51
  30. package/dist/components/Tag/BrandTag.vue.d.ts.map +0 -1
  31. package/dist/components/Tag/IndicatorTag.vue.d.ts +0 -151
  32. package/dist/components/Tag/IndicatorTag.vue.d.ts.map +0 -1
  33. package/dist/components/Tag/TagNext.vue.d.ts +0 -24
  34. package/dist/components/Tag/TagNext.vue.d.ts.map +0 -1
  35. package/src/components/Tag/BrandTag.vue +0 -96
  36. package/src/components/Tag/IndicatorTag.vue +0 -107
  37. package/src/components/Tag/TagNext.vue +0 -60
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@weni/unnnic-system",
3
- "version": "3.8.2-alpha.1",
3
+ "version": "3.8.2-alpha.2",
4
4
  "type": "commonjs",
5
5
  "files": [
6
6
  "dist",
@@ -45,12 +45,12 @@
45
45
  {{ title }}
46
46
  </h1>
47
47
 
48
- <UnnnicTag
48
+ <p
49
49
  v-if="projectName"
50
50
  class="chats-contact__infos__project-tag"
51
- :text="projectName"
52
- scheme="neutral-white"
53
- />
51
+ >
52
+ {{ projectName }}
53
+ </p>
54
54
  </section>
55
55
  <div
56
56
  class="chats-contact__infos__additional-information"
@@ -145,7 +145,6 @@ import UnnnicIcon from '../Icon.vue';
145
145
  import TransitionRipple from '../TransitionRipple/TransitionRipple.vue';
146
146
  import UnnnicI18n from '../../mixins/i18n';
147
147
  import Checkbox from '../Checkbox/Checkbox.vue';
148
- import UnnnicTag from '../Tag/Tag.vue';
149
148
 
150
149
  import('moment/dist/locale/es.js');
151
150
  import('moment/dist/locale/pt-br.js');
@@ -160,7 +159,6 @@ export default {
160
159
  UnnnicIcon,
161
160
  TransitionRipple,
162
161
  Checkbox,
163
- UnnnicTag,
164
162
  },
165
163
 
166
164
  mixins: [UnnnicI18n],
@@ -505,6 +503,12 @@ export default {
505
503
  display: block;
506
504
  flex-shrink: 1;
507
505
  border: 1px solid $unnnic-color-neutral-cleanest;
506
+
507
+ font: $unnnic-font-caption-1;
508
+ color: $unnnic-color-fg-emphasized;
509
+
510
+ border-radius: $unnnic-radius-4;
511
+ padding: 1px $unnnic-space-2;
508
512
  }
509
513
 
510
514
  &__media {
@@ -1,144 +1,83 @@
1
1
  <template>
2
- <section
3
- :class="`unnnic-tag
4
- ${!disabled ? `unnnic-tag-scheme--${scheme}` : `unnnic-tag--disabled`}
5
- ${clickable ? 'unnnic-tag--clickable' : ''}`"
6
- >
2
+ <section :class="`unnnic-tag unnnic-tag--${size}`">
7
3
  <section
8
4
  v-if="leftIcon"
9
5
  class="unnnic-tag__icon"
10
6
  >
11
7
  <UnnnicIcon
12
8
  :icon="leftIcon"
13
- :scheme="scheme"
14
- size="sm"
15
- />
16
- </section>
17
- <span
18
- :class="`unnnic-tag__label
19
- ${disabled ? 'unnnic-tag__label--disabled' : ''}`"
20
- >{{ text }}</span
21
- >
22
- <section
23
- v-if="rightIcon || hasCloseIcon"
24
- :class="{ 'unnnic-tag__icon': true, clickable: !rightIcon }"
25
- @click.stop="hasCloseIcon ? emitClose() : () => {}"
26
- >
27
- <UnnnicIcon
28
- :icon="rightIcon || 'close'"
29
- :scheme="rightIcon ? scheme : 'neutral-darkest'"
9
+ scheme="fg-emphasized"
30
10
  size="sm"
31
11
  />
32
12
  </section>
13
+ <p :class="`unnnic-tag__label`">{{ text }}</p>
33
14
  </section>
34
15
  </template>
35
16
 
36
- <script>
17
+ <script setup lang="ts">
18
+ import { computed } from 'vue';
19
+
20
+ import { color as colors } from '@/assets/tokens/colors.json';
21
+
37
22
  import UnnnicIcon from '../Icon.vue';
38
23
 
39
- export default {
40
- name: 'UnnnicTag',
41
- components: {
42
- UnnnicIcon,
43
- },
44
- props: {
45
- text: {
46
- type: String,
47
- default: null,
48
- },
49
- clickable: {
50
- type: Boolean,
51
- default: false,
52
- },
53
- disabled: {
54
- type: Boolean,
55
- default: false,
56
- },
57
- hasCloseIcon: {
58
- type: Boolean,
59
- default: false,
60
- },
61
- scheme: {
62
- type: String,
63
- default: 'aux-purple',
64
- },
65
- leftIcon: {
66
- type: String,
67
- default: null,
68
- },
69
- rightIcon: {
70
- type: String,
71
- default: null,
72
- },
73
- },
74
- methods: {
75
- closeClicked() {
76
- if (!this.closeClicked) return;
77
- this.$emit('close-click');
78
- },
79
- emitClose() {
80
- this.$emit('close');
81
- },
82
- },
83
- };
24
+ import type { DefaultTagProps } from './types';
25
+
26
+ const props = withDefaults(defineProps<DefaultTagProps>(), {
27
+ text: undefined,
28
+ size: 'medium',
29
+ scheme: 'aux-purple',
30
+ leftIcon: undefined,
31
+ });
32
+
33
+ const COLOR_MAPPING = [
34
+ { keywords: ['green'], color: colors.green[200].value },
35
+ { keywords: ['blue'], color: colors.blue[200].value },
36
+ { keywords: ['purple'], color: colors.purple[200].value },
37
+ { keywords: ['red', 'pink'], color: colors.red[200].value },
38
+ { keywords: ['orange'], color: colors.orange[200].value },
39
+ { keywords: ['yellow'], color: colors.yellow[200].value },
40
+ { keywords: ['gray'], color: colors.gray[200].value },
41
+ { keywords: ['teal', 'weni'], color: colors.teal[200].value },
42
+ ];
43
+
44
+ const color = computed(() => {
45
+ const scheme = props.scheme.toLowerCase();
46
+
47
+ const match = COLOR_MAPPING.find(({ keywords }) =>
48
+ keywords.some((keyword) => scheme.includes(keyword)),
49
+ );
50
+
51
+ return match?.color ?? colors.gray[200].value;
52
+ });
84
53
  </script>
85
54
 
86
55
  <style lang="scss" scoped>
87
56
  @use '@/assets/scss/unnnic' as *;
88
57
 
89
- @each $name, $color in $scheme-colors {
90
- .unnnic-tag-scheme--#{$name} {
91
- background-color: rgba($color, $unnnic-opacity-level-light);
92
- outline-style: solid;
93
- outline-color: rgba($color, $unnnic-opacity-level-extra-light);
94
- outline-width: $unnnic-border-width-thinner;
95
- outline-offset: -$unnnic-border-width-thinner;
96
- }
97
- }
98
-
99
58
  .unnnic-tag {
100
59
  display: flex;
101
60
  align-items: center;
102
61
  justify-content: center;
62
+ gap: $unnnic-space-1;
103
63
  border-radius: $unnnic-border-radius-pill;
104
- padding: 0 $unnnic-spacing-xs;
64
+ padding: calc($unnnic-space-1 * 1.5) $unnnic-space-3;
105
65
 
106
- &--disabled {
107
- background-color: $unnnic-color-background-sky;
108
- }
66
+ background-color: v-bind(color);
109
67
 
110
- &--clickable {
111
- cursor: pointer;
112
-
113
- @each $name, $color in $scheme-colors {
114
- &.unnnic-tag-scheme--#{$name}:hover {
115
- outline-style: solid;
116
- outline-color: $unnnic-color-neutral-cleanest;
117
- outline-width: $unnnic-border-width-thinner;
118
- outline-offset: -$unnnic-border-width-thinner;
119
- }
120
- }
68
+ &--small {
69
+ padding: calc($unnnic-space-1 * 0.5) $unnnic-space-3;
121
70
  }
122
71
 
123
72
  &__label {
124
- font-family: $unnnic-font-family-secondary;
125
- font-size: $unnnic-font-size-body-md;
126
- font-weight: $unnnic-font-weight-regular;
127
- line-height: ($unnnic-font-size-body-md + $unnnic-line-height-medium);
128
- padding: $unnnic-spacing-stack-nano;
129
- color: $unnnic-color-neutral-darkest;
130
-
131
- &--disabled {
132
- color: $unnnic-color-neutral-cloudy;
133
- }
73
+ margin: 0;
74
+
75
+ font: $unnnic-font-caption-1;
76
+ color: $unnnic-color-fg-emphasized;
134
77
  }
135
78
 
136
79
  &__icon {
137
80
  display: flex;
138
81
  }
139
-
140
- .clickable {
141
- cursor: pointer;
142
- }
143
82
  }
144
83
  </style>
@@ -1,90 +1,43 @@
1
1
  <template>
2
- <component
3
- :is="currentComponent"
4
- class="unnnic-tag-content"
5
- v-bind="$attrs"
2
+ <UnnnicChip
3
+ v-if="type === 'brand' || hasCloseIcon"
4
+ :text="text"
5
+ type="multiple"
6
+ :isSelected="disabled || hasCloseIcon"
7
+ isClickable
8
+ @click="hasCloseIcon ? $emit('close') : $emit('click')"
9
+ />
10
+
11
+ <DefaultTag
12
+ v-else
13
+ :size="type === 'next' ? 'small' : size"
6
14
  :text="text"
7
- :disabled="disabled"
8
- :hasCloseIcon="hasCloseIcon"
9
15
  :scheme="scheme"
10
- :count="count"
11
- :hasBackButton="hasBackButton"
12
- :clickable="clickable"
13
- :tooltipText="tooltipText"
14
- :enableTooltip="enableTooltip"
15
16
  :leftIcon="leftIcon"
16
- :rightIcon="rightIcon"
17
17
  />
18
18
  </template>
19
19
 
20
- <script>
20
+ <script setup lang="ts">
21
+ import UnnnicChip from '../Chip/Chip.vue';
21
22
  import DefaultTag from './DefaultTag.vue';
22
- import IndicatorTag from './IndicatorTag.vue';
23
- import BrandTag from './BrandTag.vue';
24
- import TagNext from './TagNext.vue';
23
+ import type { TagProps } from './types';
25
24
 
26
- export default {
25
+ defineOptions({
27
26
  name: 'UnnnicTag',
28
- props: {
29
- type: {
30
- type: String,
31
- default: 'default',
32
- validator(value) {
33
- return ['default', 'indicator', 'brand', 'next'].indexOf(value) !== -1;
34
- },
35
- },
36
- text: {
37
- type: String,
38
- default: null,
39
- },
40
- tooltipText: {
41
- type: String,
42
- default: null,
43
- },
44
- clickable: {
45
- type: Boolean,
46
- default: false,
47
- },
48
- count: {
49
- type: Number,
50
- default: 0,
51
- },
52
- disabled: {
53
- type: Boolean,
54
- default: false,
55
- },
56
- hasCloseIcon: {
57
- type: Boolean,
58
- default: false,
59
- },
60
- scheme: {
61
- type: String,
62
- default: 'aux-purple',
63
- },
64
- hasBackButton: {
65
- type: Boolean,
66
- default: false,
67
- },
68
- enableTooltip: {
69
- type: Boolean,
70
- default: false,
71
- },
72
- leftIcon: {
73
- type: String,
74
- default: '',
75
- },
76
- rightIcon: {
77
- type: String,
78
- default: '',
79
- },
80
- },
81
- computed: {
82
- currentComponent() {
83
- if (this.type === 'indicator') return IndicatorTag;
84
- if (this.type === 'brand') return BrandTag;
85
- if (this.type === 'next') return TagNext;
86
- return DefaultTag;
87
- },
88
- },
89
- };
27
+ });
28
+
29
+ withDefaults(defineProps<TagProps>(), {
30
+ type: 'default',
31
+ size: 'medium',
32
+ text: undefined,
33
+ disabled: false,
34
+ scheme: 'aux-purple',
35
+ leftIcon: '',
36
+ hasCloseIcon: false,
37
+ });
38
+
39
+ defineEmits<{
40
+ close: [];
41
+ click: [];
42
+ }>();
90
43
  </script>
@@ -0,0 +1,19 @@
1
+ export type TagType = 'default' | 'brand' | 'next';
2
+ export type TagSize = 'small' | 'medium';
3
+
4
+ export interface TagProps {
5
+ type?: TagType;
6
+ size?: TagSize;
7
+ text?: string;
8
+ disabled?: boolean;
9
+ scheme?: string;
10
+ leftIcon?: string;
11
+ hasCloseIcon?: boolean;
12
+ }
13
+
14
+ export interface DefaultTagProps {
15
+ text?: string;
16
+ size?: TagSize;
17
+ scheme?: string;
18
+ leftIcon?: string;
19
+ }
@@ -1,5 +1,4 @@
1
1
  import UnnnicTag from '../components/Tag/Tag.vue';
2
- import colorsList from '../utils/colorsList';
3
2
 
4
3
  export default {
5
4
  title: 'Data Display/Tag',
@@ -8,13 +7,30 @@ export default {
8
7
  argTypes: {
9
8
  text: { control: { type: 'text' } },
10
9
  type: {
11
- control: { type: 'select', options: ['default', 'indicator', 'brand'] },
10
+ control: 'select',
11
+ options: ['default', 'brand', 'next'],
12
12
  },
13
13
  scheme: {
14
- control: {
15
- type: 'select',
16
- options: colorsList,
17
- },
14
+ control: 'select',
15
+ options: [
16
+ 'green',
17
+ 'blue',
18
+ 'purple',
19
+ 'red',
20
+ 'orange',
21
+ 'yellow',
22
+ 'gray',
23
+ 'teal',
24
+ ],
25
+ },
26
+ size: {
27
+ control: 'select',
28
+ options: ['small', 'medium'],
29
+ },
30
+ hasCloseIcon: { control: 'boolean' },
31
+ leftIcon: {
32
+ control: 'select',
33
+ options: [null, 'check_circle', 'sentiment_satisfied'],
18
34
  },
19
35
  },
20
36
  };
@@ -34,45 +50,10 @@ export const LeftIcon = {
34
50
  },
35
51
  };
36
52
 
37
- export const RightIcon = {
53
+ export const Small = {
38
54
  args: {
39
55
  text: 'Label',
40
56
  type: 'default',
41
- rightIcon: 'check_circle',
42
- },
43
- };
44
-
45
- export const CloseIcon = {
46
- args: {
47
- text: 'Label',
48
- type: 'default',
49
- hasCloseIcon: true,
50
- },
51
- };
52
-
53
- export const Next = {
54
- args: {
55
- text: 'Label',
56
- type: 'next',
57
- scheme: 'weni',
58
- },
59
- };
60
-
61
- export const Indicator = {
62
- args: {
63
- text: 'Tag Name',
64
- type: 'indicator',
65
- count: 100,
66
- clickable: true,
67
- hasBackButton: false,
68
- enableTooltip: true,
69
- tooltipText: 'This is the amount',
70
- },
71
- };
72
-
73
- export const Brand = {
74
- args: {
75
- text: 'Settings',
76
- type: 'brand',
57
+ size: 'small',
77
58
  },
78
59
  };
@@ -1,51 +0,0 @@
1
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
- text: {
3
- type: StringConstructor;
4
- default: null;
5
- };
6
- clickable: {
7
- type: BooleanConstructor;
8
- default: boolean;
9
- };
10
- disabled: {
11
- type: BooleanConstructor;
12
- default: boolean;
13
- };
14
- }>, {}, {}, {}, {
15
- closeClicked(): void;
16
- }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
17
- text: {
18
- type: StringConstructor;
19
- default: null;
20
- };
21
- clickable: {
22
- type: BooleanConstructor;
23
- default: boolean;
24
- };
25
- disabled: {
26
- type: BooleanConstructor;
27
- default: boolean;
28
- };
29
- }>> & Readonly<{}>, {
30
- text: string;
31
- clickable: boolean;
32
- disabled: boolean;
33
- }, {}, {
34
- UnnnicIcon: import('vue').DefineComponent<import('../Icon.vue').IconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
35
- click: (event: Event) => any;
36
- mousedown: (event: Event) => any;
37
- mouseup: (event: Event) => any;
38
- }, string, import('vue').PublicProps, Readonly<import('../Icon.vue').IconProps> & Readonly<{
39
- onClick?: ((event: Event) => any) | undefined;
40
- onMousedown?: ((event: Event) => any) | undefined;
41
- onMouseup?: ((event: Event) => any) | undefined;
42
- }>, {
43
- size: import('../Icon.vue').IconSize;
44
- filled: boolean;
45
- icon: string | null;
46
- clickable: boolean;
47
- scheme: import('../Icon.vue').SchemeColor;
48
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
49
- }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
50
- export default _default;
51
- //# sourceMappingURL=BrandTag.vue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"BrandTag.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Tag/BrandTag.vue"],"names":[],"mappings":"AAiBA;"}
@@ -1,151 +0,0 @@
1
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
- text: {
3
- type: StringConstructor;
4
- default: null;
5
- };
6
- tooltipText: {
7
- type: StringConstructor;
8
- default: null;
9
- };
10
- count: {
11
- type: NumberConstructor;
12
- default: number;
13
- };
14
- clickable: {
15
- type: BooleanConstructor;
16
- default: boolean;
17
- };
18
- hasBackButton: {
19
- type: BooleanConstructor;
20
- default: boolean;
21
- };
22
- enableTooltip: {
23
- type: BooleanConstructor;
24
- default: boolean;
25
- };
26
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
27
- text: {
28
- type: StringConstructor;
29
- default: null;
30
- };
31
- tooltipText: {
32
- type: StringConstructor;
33
- default: null;
34
- };
35
- count: {
36
- type: NumberConstructor;
37
- default: number;
38
- };
39
- clickable: {
40
- type: BooleanConstructor;
41
- default: boolean;
42
- };
43
- hasBackButton: {
44
- type: BooleanConstructor;
45
- default: boolean;
46
- };
47
- enableTooltip: {
48
- type: BooleanConstructor;
49
- default: boolean;
50
- };
51
- }>> & Readonly<{}>, {
52
- text: string;
53
- clickable: boolean;
54
- tooltipText: string;
55
- count: number;
56
- hasBackButton: boolean;
57
- enableTooltip: boolean;
58
- }, {}, {
59
- UnnnicIcon: import('vue').DefineComponent<import('../Icon.vue').IconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
60
- click: (event: Event) => any;
61
- mousedown: (event: Event) => any;
62
- mouseup: (event: Event) => any;
63
- }, string, import('vue').PublicProps, Readonly<import('../Icon.vue').IconProps> & Readonly<{
64
- onClick?: ((event: Event) => any) | undefined;
65
- onMousedown?: ((event: Event) => any) | undefined;
66
- onMouseup?: ((event: Event) => any) | undefined;
67
- }>, {
68
- size: import('../Icon.vue').IconSize;
69
- filled: boolean;
70
- icon: string | null;
71
- clickable: boolean;
72
- scheme: import('../Icon.vue').SchemeColor;
73
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
74
- ToolTip: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
75
- text: {
76
- type: StringConstructor;
77
- default: string;
78
- };
79
- enabled: {
80
- type: BooleanConstructor;
81
- default: boolean;
82
- };
83
- forceOpen: {
84
- type: BooleanConstructor;
85
- default: boolean;
86
- };
87
- side: {
88
- type: StringConstructor;
89
- default: string;
90
- validator(value: unknown): boolean;
91
- };
92
- maxWidth: {
93
- type: StringConstructor;
94
- default: string;
95
- };
96
- shortcutText: {
97
- type: StringConstructor;
98
- default: null;
99
- };
100
- enableHtml: {
101
- type: BooleanConstructor;
102
- default: boolean;
103
- };
104
- }>, {}, {
105
- topPos: null;
106
- leftPos: null;
107
- }, {}, {
108
- handleResize(): void;
109
- getRightPost(element: any): void;
110
- }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
111
- text: {
112
- type: StringConstructor;
113
- default: string;
114
- };
115
- enabled: {
116
- type: BooleanConstructor;
117
- default: boolean;
118
- };
119
- forceOpen: {
120
- type: BooleanConstructor;
121
- default: boolean;
122
- };
123
- side: {
124
- type: StringConstructor;
125
- default: string;
126
- validator(value: unknown): boolean;
127
- };
128
- maxWidth: {
129
- type: StringConstructor;
130
- default: string;
131
- };
132
- shortcutText: {
133
- type: StringConstructor;
134
- default: null;
135
- };
136
- enableHtml: {
137
- type: BooleanConstructor;
138
- default: boolean;
139
- };
140
- }>> & Readonly<{}>, {
141
- text: string;
142
- enabled: boolean;
143
- forceOpen: boolean;
144
- side: string;
145
- maxWidth: string;
146
- shortcutText: string;
147
- enableHtml: boolean;
148
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
149
- }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
150
- export default _default;
151
- //# sourceMappingURL=IndicatorTag.vue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"IndicatorTag.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Tag/IndicatorTag.vue"],"names":[],"mappings":"AAsBA;"}