@weni/unnnic-system 3.12.8-alpha-teleports.0 → 3.12.8-alpha.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.
Files changed (84) hide show
  1. package/.vscode/extensions.json +3 -0
  2. package/CHANGELOG.md +1114 -0
  3. package/README.md +1 -9
  4. package/dist/{es-2f6793d2.mjs → es-9d6892f7.mjs} +1 -1
  5. package/dist/{index-799af668.mjs → index-78117c0a.mjs} +9299 -8975
  6. package/dist/index.d.ts +870 -321
  7. package/dist/{pt-br-f5121b47.mjs → pt-br-89839646.mjs} +1 -1
  8. package/dist/style.css +1 -1
  9. package/dist/unnnic.mjs +156 -154
  10. package/dist/unnnic.umd.js +33 -33
  11. package/package.json +1 -1
  12. package/src/components/Alert/__tests__/__snapshots__/Alert.spec.js.snap +1 -1
  13. package/src/components/ChartFunnel/DefaultFunnel/ChartDefaultFunnelBase.vue +1 -2
  14. package/src/components/ChartFunnel/SvgFunnel/ChartFunnelTwoRows.vue +60 -61
  15. package/src/components/Checkbox/Checkbox.vue +9 -3
  16. package/src/components/CheckboxGroup/CheckboxGroup.vue +7 -5
  17. package/src/components/Chip/Chip.vue +1 -1
  18. package/src/components/DatePicker/DatePicker.vue +1 -11
  19. package/src/components/Drawer/Drawer.vue +20 -9
  20. package/src/components/Drawer/__tests__/Drawer.spec.js +11 -9
  21. package/src/components/Drawer/__tests__/__snapshots__/Drawer.spec.js.snap +9 -9
  22. package/src/components/EmojiPicker/EmojiPicker.vue +1 -1
  23. package/src/components/FormElement/FormElement.vue +97 -88
  24. package/src/components/Input/BaseInput.vue +25 -5
  25. package/src/components/Input/Input.scss +2 -1
  26. package/src/components/Input/Input.vue +26 -3
  27. package/src/components/Input/TextInput.vue +64 -25
  28. package/src/components/Input/__test__/TextInput.spec.js +1 -1
  29. package/src/components/Input/__test__/__snapshots__/Input.spec.js.snap +5 -1
  30. package/src/components/Input/__test__/__snapshots__/TextInput.spec.js.snap +7 -1
  31. package/src/components/InputDatePicker/InputDatePicker.vue +73 -68
  32. package/src/components/InputDatePicker/__test__/InputDatePicker.spec.js +24 -31
  33. package/src/components/ModalDialog/ModalDialog.vue +8 -1
  34. package/src/components/ModalDialog/__tests__/ModalDialog.spec.js +1 -31
  35. package/src/components/MultiSelect/MultSelectOption.vue +49 -0
  36. package/src/components/MultiSelect/__tests__/MultiSelect.spec.js +557 -0
  37. package/src/components/MultiSelect/__tests__/MultiSelectOption.spec.js +229 -0
  38. package/src/components/MultiSelect/__tests__/__snapshots__/MultiSelect.spec.js.snap +87 -0
  39. package/src/components/MultiSelect/__tests__/__snapshots__/MultiSelectOption.spec.js.snap +51 -0
  40. package/src/components/MultiSelect/index.vue +265 -0
  41. package/src/components/Radio/Radio.vue +13 -7
  42. package/src/components/Radio/__test__/Radio.spec.js +3 -1
  43. package/src/components/RadioGroup/RadioGroup.vue +18 -10
  44. package/src/components/Select/__tests__/Select.spec.js +422 -0
  45. package/src/components/Select/__tests__/SelectItem.spec.js +330 -0
  46. package/src/components/Select/__tests__/__snapshots__/Popover.spec.js.snap +8 -0
  47. package/src/components/Select/__tests__/__snapshots__/Select.spec.js.snap +71 -0
  48. package/src/components/Select/__tests__/__snapshots__/SelectItem.spec.js.snap +15 -0
  49. package/src/components/Select/__tests__/__snapshots__/SelectOption.spec.js.snap +25 -0
  50. package/src/components/Select/__tests__/__snapshots__/SelectPopover.spec.js.snap +8 -0
  51. package/src/components/Select/index.vue +308 -0
  52. package/src/components/Switch/Switch.vue +11 -4
  53. package/src/components/TemplatePreview/TemplatePreview.vue +30 -27
  54. package/src/components/TemplatePreview/TemplatePreviewModal.vue +11 -11
  55. package/src/components/TemplatePreview/types.d.ts +3 -3
  56. package/src/components/Toast/Toast.vue +13 -9
  57. package/src/components/Toast/ToastManager.ts +1 -4
  58. package/src/components/Toast/__tests__/ToastManager.spec.js +6 -10
  59. package/src/components/ToolTip/ToolTip.vue +1 -1
  60. package/src/components/index.ts +6 -6
  61. package/src/components/ui/dialog/DialogContent.vue +5 -5
  62. package/src/components/ui/drawer/DrawerContent.vue +2 -4
  63. package/src/components/ui/popover/PopoverContent.vue +2 -4
  64. package/src/components/ui/popover/PopoverOption.vue +4 -0
  65. package/src/components/ui/tooltip/TooltipContent.vue +2 -5
  66. package/src/components/ui/tooltip/TooltipTrigger.vue +4 -2
  67. package/src/index.ts +2 -9
  68. package/src/lib/layer-manager.ts +52 -24
  69. package/src/locales/en.json +3 -1
  70. package/src/locales/es.json +3 -1
  71. package/src/locales/pt_br.json +3 -1
  72. package/src/stories/Input.mdx +3 -0
  73. package/src/stories/LayerManager.docs.mdx +9 -9
  74. package/src/stories/LayerManager.stories.js +11 -54
  75. package/src/stories/ModalDialog.stories.js +0 -95
  76. package/src/stories/MultiSelect.stories.js +143 -45
  77. package/src/stories/Select.stories.js +161 -0
  78. package/src/stories/TemplatePreview.stories.js +27 -27
  79. package/src/stories/TemplatePreviewModal.stories.js +31 -31
  80. package/dist/apple-64.png +0 -0
  81. package/public/apple-64.png +0 -0
  82. package/src/components/MultiSelect/MultiSelect.vue +0 -297
  83. package/src/lib/__tests__/teleport-target.spec.ts +0 -73
  84. package/src/lib/teleport-target.ts +0 -46
package/CHANGELOG.md ADDED
@@ -0,0 +1,1114 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ # 3.14.0 (2025-01-12)
9
+
10
+ ### Added
11
+
12
+ - **MultiSelect**:
13
+ - Rebuilt on Popover primitives with inline search, localized empty state, width syncing, checkbox options, and `returnObject` support.
14
+
15
+ # 3.13.0 (2025-01-12)
16
+
17
+ ### Added
18
+
19
+ - **Select Component**:
20
+ - Introduced `UnnnicSelect`, a popover-backed single select that mirrors `UnnnicInput`, supports keyboard navigation, disabled items, optional search input, custom `itemLabel`/`itemValue`, `returnObject`, auto width syncing, dynamic `optionsLines` height, clear action, and localized empty states.
21
+
22
+ ### Changed
23
+
24
+ - **Input Family**:
25
+ - Reintroduced focus transition styling and added `readonly`, `useFocusProp`, `focus`, and `showClear` props across `UnnnicInput`, `TextInput`, and `BaseInput` so programmatic focus and inline clear affordances are available without losing sanitization.
26
+
27
+ # 3.12.8 (2025-12-30)
28
+
29
+ ### Fixed
30
+
31
+ - **Popover Content**:
32
+ - Fixed padding space
33
+ - Fixed scrollbar visual
34
+ - Fixed borders visual
35
+
36
+ ### Added
37
+
38
+ - **Popover Content**:
39
+ - Added width prop to support custom sizes
40
+
41
+ # 3.12.7 (2025-12-26)
42
+
43
+ ### Fixed
44
+
45
+ - **RadioGroup exports**:
46
+ - Exposed `unnnicRadioGroup`/`UnnnicRadioGroup`.
47
+
48
+ # 3.12.6 (2025-12-26)
49
+
50
+ ### Changed
51
+
52
+ - **Disclaimer Component**:
53
+ - Replaced the icon names and normalized icon sizes to align with the latest design tokens.
54
+ - Refactored the component classes to simplify the structure and keep styling consistent across variations.
55
+ - Unified `DisclaimerV2` into `Disclaimer`, introducing an adapter layer so legacy props continue to work without breaking changes.
56
+ - Updated the related test suites to reflect the consolidated component API.
57
+
58
+ # 3.12.5 (2025-12-26)
59
+
60
+ ### Fixed
61
+
62
+ - **Type Declarations**:
63
+ - Exported `FunnelStep` so Chart Funnel typings remain publicly accessible.
64
+ - Cast `unnnicInputDatePicker` to `VueComponent` to prevent leaking SFC-only prop types.
65
+ - Typed `PopoverContent` slots using `Slots` to restore `slots.default` inference.
66
+ - Enabled `rollupTypes` (using the project `tsconfig`) so `vite-plugin-dts` emits a resolvable `dist/index.d.ts`.
67
+
68
+ # 3.12.4 (2025-12-23)
69
+
70
+ ### Added
71
+
72
+ - **ChatsContact**:
73
+ - Change yesterday translations logic
74
+ - Added empty contact name tratative
75
+
76
+ # 3.12.3 (2025-12-12)
77
+
78
+ ### Added
79
+
80
+ - **DisclaimerV2 Component**:
81
+ - Introduced the new `UnnnicDisclaimerV2` component using `<script setup lang="ts">` and Composition API.
82
+ - Added support for multiple semantic variants (`informational`, `success`, `attention`, `error`, `neutral`) with dedicated icon and color mappings.
83
+ - Added unit tests covering default content, conditional title/description rendering, center alignment behavior, and variant-specific icon/scheme selection.
84
+ - Documented the component in Storybook under `Example/DisclaimerV2` with stories for each variant.
85
+
86
+ # 3.12.2 (2025-12-05)
87
+
88
+ ### Fixed
89
+
90
+ - **Popover module exports**:
91
+ - Exposed `unnnicPopoverOption`/`UnnnicPopoverOption`.
92
+ - Added the missing `unnnicPopoverFooter` exports.
93
+ - `UnnnicInputDatePicker` as `VueComponent` at exports to fixes Typescript issue.
94
+
95
+ # 3.12.1 (2025-12-04)
96
+
97
+ ### Added
98
+
99
+ - **PopoverOption Component**:
100
+ - Added `PopoverOption` component.
101
+
102
+ # 3.12.0 (2025-12-03)
103
+
104
+ ### Added
105
+
106
+ - **SegmentedControl Component**:
107
+ - Introduced a segmented-control built on top of the `reka-ui` tabs primitives, composed by `SegmentedControl`, `SegmentedControlList`, `SegmentedControlTrigger`, and `SegmentedControlContent`.
108
+ - Documented the component in Storybook under `Navigation/SegmentedControl`, covering default, disabled, adaptive-width, and small examples to guide adoption.
109
+
110
+ # 3.11.2 (2025-11-27)
111
+
112
+ ### Added
113
+
114
+ - **DatePicker Component**:
115
+ - Added `periodBaseDate` prop to allow custom reference dates for predefined periods (e.g. `last-7-days`, `last-12-months`, `current-month`, `previous-month`), enabling use cases like "Last 7 days (up to 24h ago)".
116
+ - Added `data-testid` attributes to key interactive elements (root, navigation buttons, day/month/year cells, options, clear/apply buttons) to improve testability and coverage quality.
117
+ - Added new Storybook stories demonstrating multiple usage patterns:
118
+ - `SmallDayPicker` (type `day`, size `small`)
119
+ - `MonthView` (type `month`)
120
+ - `YearView` (type `year`)
121
+ - `WithMinAndMaxDateRange` (date range constrained by `minDate` and `maxDate`)
122
+ - `WithCustomLabelsAndDisableClear` (custom action/clear labels and `disableClear`)
123
+ - `CustomRelativePeriodsWithBaseDate` (custom relative filters backed by `periodBaseDate`).
124
+ - **InputDatePicker Component**:
125
+ - Added `periodBaseDate` prop passthrough so external consumers can leverage the new relative date presets from `UnnnicDatePicker` (e.g. "Last 7 days (up to 24h ago)").
126
+ - Added new Storybook story `WithCustomRelativePeriodsAndBaseDate` showcasing InputDatePicker with relative filters backed by `periodBaseDate`.
127
+ - Added focused unit tests for InputDatePicker covering integration with DatePicker, v-model behavior, formatting, and dropdown open/close logic.
128
+
129
+ ### Changed
130
+
131
+ - **DatePicker Component**:
132
+ - Migrated implementation to `<script setup lang="ts">` with Vue 3 Composition API while preserving the existing public API (props, events, and behavior) for backward compatibility.
133
+ - Normalized internal date-handling logic to use typed helpers (`dateToString`, `stringToTime`, etc.) for safer arithmetic across day, month, and year views.
134
+ - **InputDatePicker Component**:
135
+ - Migrated implementation to `<script setup lang="ts">` Composition API while preserving existing props (`modelValue`, `type`, `format`, `inputFormat`, etc.), events, and visual behavior for backward compatibility.
136
+
137
+ ### Fixed
138
+
139
+ - **DatePicker Component**:
140
+ - Corrected month label rendering in `type="month"` view by aligning month indices with the localized `monthsLocale` array (fixes incorrect labels and potential indexing errors).
141
+
142
+ # 3.11.0 (2025-11-24)
143
+
144
+ ### Added
145
+
146
+ - **Toast Component**: New inline notification system with ToastManager for programmatic toast display
147
+ - **Component**: Complete Toast component with multiple variants (success, info, warning, error)
148
+ - **Toast Manager**: Programmatic API for displaying toasts via `this.$unnnicCallToast()`
149
+ - **Storybook Documentation**: Complete documentation with interactive examples
150
+
151
+ - **PageHeader Component**: New page header component for consistent page layouts
152
+ - **Flexible Layout**: Support for title, subtitle, and custom content slots
153
+ - **Slot Support**: Left and right content slots for custom elements
154
+
155
+ - **Form Group Components**: New wrapper components for better form organization
156
+ - **CheckboxGroup**: Group multiple checkboxes with shared label and tooltip support
157
+ - **RadioGroup**: Group radio buttons with helper text and label styling
158
+
159
+ - **Form Elements Enhancement**: Major improvements to all form components
160
+ - **Tooltip Support**: Added to Input, TextArea, Label, and Radio components
161
+ - **Helper Text**: Added to Radio and RadioGroup components
162
+ - **MaxLength Support**: Added to Input component with visual feedback
163
+ - **Disabled State**: Improved disabled state styling across all form elements
164
+
165
+ - **New Icons**: Added dedicated SVG icons for form states
166
+ - `checkbox-checked.svg` and `checkbox-checked-disabled.svg`
167
+ - `checkbox-less.svg` and `checkbox-less-disabled.svg`
168
+ - `radio-checked.svg`
169
+ - `switch-checked.svg` and `switch-checked-disabled.svg`
170
+
171
+ - **Icon Component**: New foreground color types added to color scheme
172
+
173
+ ### Changed
174
+
175
+ - **Form Elements Redesign**: Complete visual and structural redesign of form components
176
+ - **Button**: Updated to use new design tokens, removed 'alternative' type, added transition effects
177
+ - **Checkbox**: Redesigned with improved styling, restored intermediate state, new disabled state handling, also removed size prop
178
+ - **Radio**: Complete redesign with improved structure and styling, also removed size prop
179
+ - **Switch**: Redesigned with updated icons and improved component styles
180
+ - **Input**: Enhanced with computed error handling, improved layout, dynamic styling based on size
181
+ - **TextArea**: Restructured with improved error handling and message display
182
+ - **Label**: Refactored with tooltip support and improved structure
183
+
184
+ - **FormElement Component**: Major refactoring for better structure and maintainability
185
+ - **Label Integration**: Now uses UnnnicLabel component for improved consistency
186
+ - **Error Handling**: Updated to allow null type for TextArea errors
187
+ - **Improved Layout**: Restructured for better clarity and usability
188
+ - **Spacing Updates**: Enhanced spacing for improved visual hierarchy
189
+
190
+ - **Tag Component**: Restructured and simplified
191
+ - **Default Variation**: Consolidated to contain only default variation
192
+ - **Improved Styling**: Enhanced with fit-content width and text overflow handling
193
+ - **Type Safety**: Added comprehensive prop type definitions
194
+
195
+ - **Alert Component**: Simplified architecture
196
+ - **Toast Integration**: Integrated with new UnnnicToast component
197
+ - **Removed Deprecated**: Removed version variation 1.0 and AlertBanner and AlertCaller components
198
+ - **Streamlined version 1.1**: Removed link (linkHref prop) variation
199
+ - **Updated Tests**: Reflected version changes and removed deprecated props
200
+
201
+ - **Tab Component**: Enhanced functionality
202
+ - **Disabled State**: Added support for disabled tabs
203
+ - **Dynamic Tooltip**: Tooltip icon size now adjusts based on tab size
204
+
205
+ - **SelectSmart Component**: Improved consistency
206
+ - **Border Styling**: Updated border radius and border styling
207
+ - **Layout Adjustments**: Improved margin properties for better layout
208
+
209
+ - **ChatsContact Component**: Changed to have its own tag instead of using UnnnicTag
210
+
211
+ ### Fixed
212
+
213
+ - **Input Component**: Added transition effect for smoother border color change on focus
214
+ - **Icon Component**: Fixed cursor styling for better UX
215
+
216
+ ### Refactored
217
+
218
+ - **Button Component**: Replaced 'next' prop with 'clickable' for icon buttons, standardized text across stories
219
+ - **Input Component**: Replaced label section with UnnnicLabel component for improved structure
220
+ - **Label Component**: Renamed Props interface to LabelProps for clarity
221
+
222
+ # 3.10.0 (2025-11-24)
223
+
224
+ ### Added
225
+
226
+ - **Icon Component**: Added filled attribute to rating component in MarketplaceCard.
227
+
228
+ ### Changed
229
+
230
+ - **Refactor**: Replace old font files with a new material-symbols font.
231
+
232
+ ### Fixed
233
+
234
+ - **Collapse Component**: Update icon size in Collapse component from 'xs' to 'ant'.
235
+
236
+ # 3.9.4 (2025-11-21)
237
+
238
+ ### Changed
239
+
240
+ - **Border Radius Tokens**: Updated `$unnnic-radius-full` token from percentage-based to fixed pixel value. Changed from `100%` to `1000px` for more consistent circular shapes.
241
+
242
+ # 3.9.3 (2025-11-18)
243
+
244
+ ### Added
245
+
246
+ - **ChatsContact Component**: Added the `lastInteractionTimePrefix` prop, which allows adding text preceding the time of the last interaction.
247
+
248
+ # 3.9.2 (2025-11-13)
249
+
250
+ ### Added
251
+
252
+ - **DataTable Component - Infinite Scroll Support**:
253
+ - **Infinite Scroll Functionality**: Native infinite scroll using VueUse's `useInfiniteScroll` composable
254
+ - **New Props**:
255
+ - `infiniteScroll` (Boolean, default: false) - Enables infinite scroll functionality
256
+ - `infiniteScrollDistance` (Number, default: 100) - Distance in pixels from bottom to trigger the loadMore event
257
+ - `infiniteScrollDisabled` (Boolean, default: false) - Disables infinite scroll (useful when all data has been loaded)
258
+ - `isLoadingMore` (Boolean, default: false) - Indicates whether more data is being loaded for infinite scroll
259
+ - **New Event**: `loadMore` - Emitted when user scrolls near the bottom of the table
260
+ - **Visual Feedback**: Loading indicator at the bottom of the table during data loading
261
+ - **Seamless Integration**: Works alongside existing pagination system (can be disabled with `hidePagination`)
262
+ - **Fixed Headers Support**: Compatible with `fixedHeaders` prop for optimal scrolling experience
263
+
264
+ # 3.9.1 (2025-11-12)
265
+
266
+ ### Added
267
+
268
+ - **SelectSmart Component - Infinite Scroll & External Search**:
269
+ - **Infinite Scroll Support**: Native infinite scroll using VueUse's `useInfiniteScroll` composable
270
+ - **External Search Support**: New `disableInternalFilter` prop for API-based search with debounce
271
+ - **New Props**:
272
+ - `infiniteScroll` (Boolean, default: false) - Enables infinite scroll functionality
273
+ - `infiniteScrollDistance` (Number, default: 10) - Distance in pixels from bottom to trigger loading
274
+ - `infiniteScrollCanLoadMore` (Function, default: () => true) - Callback to determine if more data is available
275
+ - `disableInternalFilter` (Boolean, default: false) - Disables internal filtering for external search control
276
+ - **New Event**: `scroll-end` - Emitted when user scrolls near the bottom of options list
277
+ - **Public Methods**:
278
+ - `finishInfiniteScroll()` - Must be called after loading data to reset loading state
279
+ - `resetInfiniteScroll()` - Resets infinite scroll state completely
280
+ - **Separate Loading States**:
281
+ - `isLoading` prop now only for initial load (shows centered loading, hides options)
282
+ - Internal `infiniteScrollLoading` state for pagination (shows loading at bottom, keeps options visible)
283
+ - **Visual Feedback**: Dedicated loading indicator at the end of options list during pagination
284
+ - **Performance Optimized**: Automatic cleanup on unmount, prevents memory leaks
285
+
286
+ # 3.9.0 (2025-11-07)
287
+
288
+ ### Added
289
+
290
+ - **Tabs Component**:
291
+ - Add and register Tabs, TabsList, TabsContent, and TabsTrigger components in the main index;
292
+ - Add Tabs stories.
293
+
294
+ # 3.8.1 (2025-11-06)
295
+
296
+ ### Fixed
297
+
298
+ - **Tailwind CSS**: Disabled Tailwind CSS container styles to prevent query styles from affecting existing containers
299
+
300
+ # 3.8.0 (2025-11-05)
301
+
302
+ ### Added
303
+
304
+ - **Popover Component**:
305
+ - Add `@vueuse/core` dependency;
306
+ - Add and register Popover, PopoverContent, and PopoverTrigger components in the main index;
307
+ - Add Popover stories.
308
+
309
+ # 3.7.1 (2025-11-03)
310
+
311
+ ### Fixed
312
+
313
+ - **Upload Modal**: Fix close event emitter
314
+
315
+ # 3.7.0 (2025-10-31)
316
+
317
+ ### Added
318
+
319
+ - **Iconify Integration**: Added the Iconify package to support icons not available in Material Symbols.
320
+ - **Icon Component**: Implemented Iconify icon rendering logic in `Icon.vue`, expanding the component’s icon support.
321
+
322
+ # 3.6.0 (2025-10-31)
323
+
324
+ ### Added
325
+
326
+ - **Icon Mappings**: Added more mappings for older icons to point to the icons in Material Symbols for better compatibility
327
+
328
+ ### Changed
329
+
330
+ - **Icon Component**: Updated Icon sizes to use new design tokens
331
+
332
+ ### Removed
333
+
334
+ - **Font Files**: Deleted 5 unused font files from icomoon pack
335
+ - **Icon Files**: Deleted approximately 265 unused icon files
336
+ - **Icon Utilities**: Deleted icons util with old icons
337
+ - **Icon Props**: Removed unnecessary lineHeight property
338
+
339
+ # 3.5.2 (2025-10-29)
340
+
341
+ ### Fixed
342
+
343
+ - **Tailwind CSS**: Disabled Tailwind CSS preflight styles to prevent base styles from affecting existing components (fixes unexpected behavior in TableNext loading icon)
344
+
345
+ # 3.5.1 (2025-10-29)
346
+
347
+ ### Fixed
348
+
349
+ - **Color Tokens**: Fixed `brand-weni-soft` color token referencing incorrect color after applying new color tokens (updated from `teal-100` to `teal-600` in scheme-colors)
350
+
351
+ # 3.5.0 (2025-10-28)
352
+
353
+ ### Added
354
+ - **Template Preview**: Add template preview compontents
355
+
356
+ # 3.4.0 (2025-10-23)
357
+
358
+ ### Added
359
+
360
+ - **shadcn-vue Integration**: Integrated shadcn-vue component library with Tailwind CSS v3
361
+ - **Tailwind CSS v3**: Added Tailwind CSS v3 with CSS-first configuration approach
362
+ - **shadcn-vue CLI**: Integrated shadcn-vue CLI for component scaffolding
363
+ - **Component Library**: Added Reka UI as the headless component foundation
364
+ - **Utility Libraries**: Added class-variance-authority, clsx, and tailwind-merge for component styling
365
+ - **Design Token Integration**: Mapped unnnic design tokens to Tailwind via CSS variables
366
+
367
+ ### Changed
368
+
369
+ - **Main Entry**: Updated `src/main.ts` to import Tailwind CSS styles
370
+ - **Color System**: Exposed all unnnic color tokens as HSL
371
+
372
+ ### Technical Details
373
+
374
+ - **Dependencies Added**:
375
+ - `tailwindcss@3.4.18` - CSS framework
376
+ - `postcss` - CSS processor
377
+ - `autoprefixer` - PostCSS plugin
378
+ - `tailwindcss-animate` - Animation utilities
379
+ - `class-variance-authority` - Variant management
380
+ - `clsx` - Class concatenation utility
381
+ - `tailwind-merge` - Smart class merging
382
+ - `reka-ui` - Headless UI components
383
+ - `ajv` - JSON schema validator
384
+
385
+ - **Files Created**:
386
+ - `tailwind.config.js` - Tailwind configuration with unnnic token mapping
387
+ - `postcss.config.cjs` - PostCSS configuration
388
+ - `components.json` - shadcn-vue CLI configuration
389
+
390
+ # 3.3.3 (2025-10-22)
391
+
392
+ ### Fixed
393
+
394
+ - **Style Dictionary**: Regenerated design tokens to properly export `bg-info` and `bg-success` scheme color updates to the token system
395
+
396
+ # 3.3.2 (2025-10-17)
397
+
398
+ ### Changed
399
+ - **Scheme Colors**:
400
+ - **Updated `bg-info` token**: Changed from blue-100 to blue-50
401
+ - **Updated `bg-success` token**: Changed from green-100 to green-50
402
+ - **Expanded color scheme**: Added missing color token definitions to ensure complete coverage of the design system
403
+
404
+ # 3.3.1 (2025-10-17)
405
+
406
+ ### Added
407
+
408
+ - **DataTable**: Added optional `sort` prop for external sort state control:
409
+ - **Controlled Mode**: Pass `sort` prop to control sort state externally
410
+ - **Uncontrolled Mode**: Component manages sort state internally (default behavior)
411
+ - **v-model Support**: Full support for `v-model:sort` pattern
412
+ - **Backward Compatible**: Existing implementations continue working without changes
413
+
414
+ # 3.3.0 (2025-10-15)
415
+ - **Chart Funnel**: Added two items variation
416
+
417
+ # 3.2.9 (2025-10-14)
418
+
419
+ ### Fixed
420
+
421
+ - **Chip Component**: Fixed layout shift issue when border state changes:
422
+ - **Consistent Sizing**: Component now maintains consistent dimensions regardless of border visibility
423
+ - **Smooth Transitions**: Eliminated visual "jumps" when toggling between selected/unselected states
424
+ - **ESLint Configuration**: Update ESLint configuration and project package.json to use CommonJS
425
+
426
+ # 3.2.8 (2025-09-25)
427
+
428
+ ### Changed
429
+
430
+ - **ESLint Configuration Migration**: Migrated from legacy `.eslintrc.js` to modern flat config format (`eslint.config.js`)
431
+ - **Modern Configuration**: Updated to use `@vue/eslint-config-typescript` with flat config structure
432
+ - **Enhanced TypeScript Support**: Improved TypeScript linting rules and configurations
433
+ - **Code Standardization**: Applied consistent code formatting across all components and files
434
+ - **Dependency Updates**: Updated ESLint-related package dependencies for better compatibility
435
+ - **Rule Optimization**: Enhanced linting rules for better code quality and consistency
436
+
437
+ ### Fixed
438
+
439
+ - **Code Quality**: Standardized formatting across multiple components including AudioRecorder, Button, ChartMultiLine, ChatsHeader, ChatsMessage, DataTable, DatePicker, Drawer, EmojiPicker, FormElement, Input, InputDatePicker, Label, ModalNext, SelectSmart, Tag, and Tour components
440
+
441
+ # 3.2.7 (2025-09-23)
442
+
443
+ ### Fixed
444
+
445
+ - **DataTable**:
446
+ - Fixed without results colum grid
447
+ - Fixed loading variation console warnings
448
+ - Add `itemKey` in `update:sort` event
449
+
450
+ # 3.2.6 (2025-09-22)
451
+
452
+ ### Added
453
+
454
+ - **SelectSmart Component**: New `onActiveChange` event that emits when dropdown options become active/inactive:
455
+ - **Event Emission**: Emits `true` when dropdown opens and `false` when dropdown closes
456
+ - **Full Integration**: Works seamlessly with all existing SelectSmart functionality (keyboard navigation, click outside, escape key)
457
+ - **Comprehensive Testing**: Added 4 new unit tests covering all scenarios including toggle, escape key, and outside click behaviors
458
+
459
+ - **Dropdown Component**: Enhanced `forceOpen` functionality with comprehensive test coverage:
460
+ - **Comprehensive Testing**: Added 5 new unit tests covering all `forceOpen` scenarios
461
+ - **Trigger Prevention**: Tests verify that clicking trigger doesn't toggle dropdown when `forceOpen` is enabled
462
+ - **Outside Click Prevention**: Tests confirm dropdown stays open when clicking outside with `forceOpen` enabled
463
+ - **Prop Compatibility**: Tests validate proper behavior with `useOpenProp` combinations
464
+ - **Event Validation**: Tests ensure no unwanted events are emitted when `forceOpen` is active
465
+
466
+ # 3.2.5 (2025-09-19)
467
+
468
+ ### Added
469
+
470
+ - **Chip Component**: New simplified compact element component for selection and filtering:
471
+ - **Core Features**: Support for text, count badges, and automatic icon handling
472
+ - **Selection States**: Built-in `isSelected` state with automatic styling (teal background when selected)
473
+ - **Type System**: Support for `single` and `multiple` types with context-appropriate icons
474
+ - **Smart Icons**: Automatic add/close icons for multiple type based on selection state
475
+ - **Smart Border Logic**: Automatic border application for unselected state only
476
+ - **Click Interaction**: Built-in click event handling with optional `isClickable` styling (cursor pointer)
477
+ - **TypeScript Support**: Full TypeScript integration with streamlined type definitions (`ChipProps`)
478
+ - **Storybook Documentation**: Complete documentation with interactive examples
479
+ - **Comprehensive Testing**: 15 focused unit tests covering all functionality and interaction patterns
480
+
481
+ - **Global Scheme Colors System**: Centralized color scheme management to eliminate code duplication:
482
+ - **New File**: `src/assets/scss/scheme-colors.scss` with all color scheme definitions
483
+ - **New Tokens**: Added `bg-base`, `bg-soft`, and complete `teal-*` color scale (teal-50 to teal-950) support
484
+ - **Utility Functions**: Added `generate-scheme-classes()` mixin and `get-scheme-color()` function for easier component development
485
+ - **Legacy Compatibility**: Automatic mapping of legacy color names to new color system
486
+
487
+ ### Changed
488
+
489
+ - **Color System Refactoring**: Migrated Chip, Icon, and Card components to use global `$unnnic-scheme-colors` instead of local definitions
490
+ - **TypeScript Types Centralization**: Moved `SchemeColor` type to global `src/types/scheme-colors.d.ts` for better maintainability
491
+ - **Import Optimization**: Updated component imports to use centralized type definitions from `@/types/scheme-colors`
492
+
493
+ ### Removed
494
+
495
+ - **Code Duplication**: Eliminated ~136 lines of duplicate `$scheme-colors` definitions across components
496
+
497
+ # 3.2.4 (2025-09-15)
498
+
499
+ ### Added
500
+
501
+ - **ChatsContact**: Added `forceShowUnreadMessages` prop to always keep the number of unread messages visible.
502
+
503
+ # 3.2.3 (2025-09-12)
504
+
505
+ ### Added
506
+
507
+ - **TypeScript Composition API Migration**: Migrated Icon, Button, and Disclaimer components from Options API to Composition API with full TypeScript support
508
+ - **Component Renaming**: Renamed `Icon` component to `UnnnicIcon` for Pascal Case consistency
509
+ - **Type Definitions**: Added comprehensive TypeScript interfaces and types:
510
+ - `IconSize`, `LineHeight`, `SchemeColor`, `IconProps` for Icon component
511
+ - `ButtonSize`, `ButtonType`, `ButtonProps` for Button component
512
+ - `DisclaimerProps` for Disclaimer component
513
+ - **Type Safety**: Full compile-time type validation for all component props
514
+ - **Modular Types**: Separate type definition files for each component (`types.ts`)
515
+
516
+ ### Changed
517
+
518
+ - **BREAKING**: Icon component name changed from `Icon` to `UnnnicIcon`
519
+ - **BREAKING**: Components migrated to `<script setup lang="ts">` syntax
520
+ - **Test Updates**: Updated all component tests to work with new TypeScript structure
521
+ - **Prop Validation**: Replaced runtime validators with TypeScript compile-time validation
522
+
523
+ ### Fixed
524
+
525
+ - CSS warning for `font-feature-settings` compatibility in Icon component
526
+ - Style property typing issues in Button component
527
+
528
+
529
+ # 3.2.2 (2025-09-12)
530
+
531
+ ### Added
532
+ - **ChatsMessage**: Added automatic message variation
533
+
534
+ # 3.2.1 (2025-09-11)
535
+
536
+ ### Fixed
537
+ - Adjusted the formatting of font tokens to conform to the css font attribute
538
+
539
+ # 3.2.0 (2025-09-11)
540
+
541
+ ### Added
542
+ - Support for **Node.js v22**
543
+ - Introduced **Style Dictionary**:
544
+ - Added the Style Dictionary package
545
+ - Migrated all SCSS tokens to Style Dictionary exports
546
+
547
+ # 3.1.4 (2025-09-05)
548
+
549
+ - **EmojiPicker Refactoring**: Complete modernization of EmojiPicker component:
550
+ - **Security Enhancement**: Local emoji sprite sheets to eliminate external CDN requests (CORS/CSP compliance)
551
+
552
+ ### Fixed
553
+
554
+ - **Security**: Eliminated external requests to unpkg.com for emoji sprite sheets
555
+ - **CSP Compliance**: EmojiPicker now works with strict Content Security Policy headers
556
+ - **Performance**: Reduced bundle size and improved loading times
557
+
558
+ # 3.1.3 (2025-09-05)
559
+
560
+ ### Added
561
+
562
+ - Dependency: Added `emoji-mart-vue-fast` as the new emoji provider
563
+
564
+ ### Removed
565
+
566
+ - Dependencies: Removed `emoji-mart` and `@emoji-mart/data`
567
+
568
+ ### Changed
569
+
570
+ - EmojiPicker: Refactored to use `emoji-mart-vue-fast` while preserving backward compatibility (public props, events, and slots remain unchanged)
571
+
572
+ ## 3.1.2 (2025-09-03)
573
+
574
+ ### Added
575
+
576
+ - **Semantic Color Tokens**: Added comprehensive semantic color token system with dedicated `$unnnic-color-` variables:
577
+ - **Background Semantic Tokens**: `$unnnic-color-bg-base`, `$unnnic-color-bg-soft`, `$unnnic-color-bg-muted`, `$unnnic-color-bg-active`, `$unnnic-color-bg-info`, `$unnnic-color-bg-success`, `$unnnic-color-bg-warning`, `$unnnic-color-bg-critical`
578
+ - **Text Semantic Tokens**: `$unnnic-color-fg-base`, `$unnnic-color-fg-muted`, `$unnnic-color-fg-emphasized`, `$unnnic-color-fg-inverted`, `$unnnic-color-fg-active`, `$unnnic-color-fg-info`, `$unnnic-color-fg-success`, `$unnnic-color-fg-warning`, `$unnnic-color-fg-critical`
579
+ - **Border Semantic Tokens**: `$unnnic-color-border-base`, `$unnnic-color-border-soft`, `$unnnic-color-border-muted`, `$unnnic-color-border-emphasized`, `$unnnic-color-border-active`, `$unnnic-color-border-info`, `$unnnic-color-border-success`, `$unnnic-color-border-warning`, `$unnnic-color-border-critical`
580
+
581
+ ### Changed
582
+
583
+ - **Color System Refactoring**: Updated `$scheme-colors` map to reference the new semantic tokens instead of direct color values for improved maintainability and consistency
584
+
585
+ ## 3.1.1 (2025-08-29)
586
+
587
+ ### Added
588
+
589
+ - **SelectSmart**: Added `multipleLimit` props to limit items selection
590
+ - **SelectSmart**: Added `disableRemove` option attribute to disable remove selected items
591
+
592
+ ## 3.1.0 (2025-08-29)
593
+
594
+ ### Added
595
+
596
+ - **DataTable**: Added new component
597
+
598
+ ## 3.0.4 (2025-08-27)
599
+
600
+ ### Added
601
+
602
+ - **Semantic Color Tokens**: Added new active state semantic color tokens:
603
+ - `bg-active`: Background color for active states using teal-600
604
+ - `fg-active`: Foreground/text color for active states using teal-600
605
+ - `border-active`: Border color for active states using teal-600
606
+
607
+ ## 3.0.3 (2025-08-25)
608
+
609
+ ### Added
610
+
611
+ - **Chats Header**: Add right content slot
612
+
613
+ ## 3.0.2 (2025-08-25)
614
+
615
+ ### Changed
616
+
617
+ - **Red Color Tokens**: Updated red color token values for improved design consistency
618
+
619
+ ## 3.0.1 (2025-08-25)
620
+
621
+ ### Added
622
+
623
+ - **Design Tokens**: New spacing, icon size, border radius, and shadow level tokens
624
+ - **Typography Tokens**: New typography tokens and line heights for better consistency
625
+ - **Color System**: Complete expansion of the color system with new tokens:
626
+ - Added teal color tokens to the design system
627
+ - Expanded tokens for yellow, orange, red, purple, blue, green, and gray
628
+ - New semantic color tokens for improved design consistency
629
+ - **Weni Colors**: Restoration and redefinition of weni color tokens
630
+
631
+ ### Changed
632
+
633
+ - **Color Migration**: Updated color tokens to use teal instead of weni where appropriate
634
+ - **Color Consolidation**: Consolidated color tokens for enhanced design consistency
635
+ - **Semantic Colors**: Improved semantic color tokens, including bg-muted color token adjustment
636
+
637
+ ## 3.0.0 (2025-08-15)
638
+
639
+ ### Added
640
+
641
+ - **TypeScript Support**: Full TypeScript integration with complete type definitions
642
+ - **Type Exports**: All component types are now exported for external use
643
+ - **IntelliSense**: Complete autocomplete support for props, events, and component configuration
644
+ - **Backward Compatibility**: 100% compatible with existing JavaScript projects
645
+ - **Build System**: Updated Vite configuration with TypeScript support and automatic type generation
646
+ - **Component Types**: Comprehensive type definitions for all components starting with Icon component
647
+ - **Type Safety**: Runtime type validation and development-time type checking
648
+
649
+ ### Changed
650
+
651
+ - **BREAKING**: Migrated core files from JavaScript to TypeScript (`src/index.js` → `src/index.ts`, `src/components/index.js` → `src/components/index.ts`)
652
+ - **Build Process**: Enhanced build pipeline with TypeScript compilation and type generation
653
+ - **Package Exports**: Updated package.json exports to include TypeScript declaration files
654
+
655
+ ## 2.36.0 (2025-07-24)
656
+
657
+ ### Added
658
+
659
+ - SelectTime: add component.
660
+
661
+ ## 2.35.0 (2025-07-24)
662
+
663
+ - DatePicker: updates icons, fixes buttons translations, selects the equivalent dates automatically on menu option, prevents the custom option to be selectable.
664
+
665
+ ## 2.34.0 (2025-06-16)
666
+
667
+ - ChatMessage: Added message status
668
+
669
+ ## 2.33.6 (2025-06-11)
670
+
671
+ - Alert: Update pointer-events in Alert component for better interaction handling
672
+
673
+ ## 2.33.5 (2025-06-04)
674
+
675
+ - ChatsContact: Add new pin variant
676
+
677
+ ## 2.33.4 (2025-05-27)
678
+
679
+ ### Fixed
680
+
681
+ - DatePicker: Fixed current month selection
682
+
683
+ ## 2.33.3 (2025-05-26)
684
+
685
+ ### Added
686
+
687
+ - ChatMessage: Added click replied message emitter
688
+
689
+ ## 2.33.2 (2025-05-22)
690
+
691
+ ### Fix
692
+
693
+ - AudioRecorder: Added corrections for NaN values
694
+
695
+ ## 2.33.1 (2025-05-20)
696
+
697
+ ### Fix
698
+
699
+ - TableNext: Added default case prevention without ordering
700
+
701
+ ### Added
702
+
703
+ - DatePicker: Added previous month shortcut
704
+ - DatePicker: Added emitter to send the selected date
705
+
706
+ ## 2.33.0 (2025-05-12)
707
+
708
+ ### Added
709
+
710
+ - Added SelectSmart `enableSearchByValue` prop. This allows you to search for items by the value field
711
+
712
+ ## 2.32.0 (2025-04-30)
713
+
714
+ ### Added
715
+
716
+ - Added support for viewing replied messages in the ChatsMessage component
717
+ - Added reply event to ChatsMessage component
718
+
719
+ ## 2.31.0 (2025-04-29)
720
+
721
+ ### Added
722
+
723
+ - Add project info to ChatsContact component
724
+
725
+ ## 2.30.1 (2025-04-28)
726
+
727
+ ### Added
728
+
729
+ - Add useOpenProp to dropdown component (Use this if you want to control your state by the prop instead of the internal variable)
730
+
731
+ ### Fixed
732
+
733
+ - Fix dropdown not open when click project status chip in ProjectCard
734
+
735
+ ## 2.30.0 (2025-04-24)
736
+
737
+ ### Added
738
+
739
+ - Add contact last message media support
740
+
741
+ ## 2.29.0 (2025-04-23)
742
+
743
+ ### Added
744
+
745
+ - New CardProject component
746
+
747
+ ## 2.28.0 (2025-04-04)
748
+
749
+ ### Added
750
+
751
+ - Added XSS security to form components
752
+
753
+ ## 2.27.0 (2025-04-03)
754
+
755
+ ### Added
756
+
757
+ - Add SelectSmart update:searchValue event
758
+ - Add SelectSmart loading variation
759
+
760
+ ## 2.26.0 (2025-03-27)
761
+
762
+ ### Added
763
+
764
+ - Add DatePicker disableClear prop to ocult clear button
765
+
766
+ ### Fixed
767
+
768
+ - InputDatePicker mouseover cursor pointer
769
+
770
+ ## 2.25.0 (2025-03-12)
771
+
772
+ ### Added
773
+
774
+ - Add InputDatePicker next, fillW, minDate and maxDate props
775
+
776
+ - Add InputDatePicker new visual (to this, use next prop)
777
+
778
+ ### Fixed
779
+
780
+ - InputDatePicker select dates logic improvements
781
+
782
+ ## 2.24.0 (2025-02-27)
783
+
784
+ ### Added
785
+
786
+ - Add new initial 'next' type to UnnnicTag component
787
+
788
+ ## 2.23.0 (2025-02-27)
789
+
790
+ ### Added
791
+
792
+ - Add SelectSmart secondary variation
793
+
794
+ ## 2.22.0 (2025-02-17)
795
+
796
+ ### Added
797
+
798
+ - Add verify to fix style-errors in Modal
799
+ - Upgrade and migrate imports sass to fix warnings
800
+ - Fix witdh calculator in CardStatusesContainer
801
+ - Add ? to SelectSmart scrollIntoView
802
+
803
+ ## 2.21.2 (2025-02-17)
804
+
805
+ ### Added
806
+
807
+ - Added ChatMessage geolocation visual variation
808
+
809
+ ## 2.21.1 (2025-02-11)
810
+
811
+ ### Added
812
+
813
+ - Added HTML support to Disclaimer component
814
+
815
+ ## 2.21.0 (2025-01-30)
816
+
817
+ ### Added
818
+
819
+ - Drawer giant size and customized title
820
+ - Added IconsFilled prop at Button component
821
+
822
+ ## 2.20.0 (2025-01-02)
823
+
824
+ ### Added
825
+
826
+ - ChatsMessage: Added last interaction time
827
+
828
+ ## 2.19.0 (2024-12-10)
829
+
830
+ ### Added
831
+
832
+ - TableNext: Added sort rows by columns
833
+
834
+ ## 2.18.1 (2024-11-27)
835
+
836
+ ### Added
837
+
838
+ - ToolTip: Added Support to HTML
839
+
840
+ ## 2.18.0 (2024-11-27)
841
+
842
+ ### Added
843
+
844
+ - Exports: package.json
845
+
846
+ ## 2.17.0 (2024-11-25)
847
+
848
+ ### Added
849
+
850
+ - TableNext: Added row click event
851
+
852
+ ## 2.16.0 (2024-11-08)
853
+
854
+ ### Added
855
+
856
+ - ChartFunnel: Adjust Chart Funnel variation to not use svg and have better performance
857
+
858
+ ## 2.15.1 (2024-10-31)
859
+
860
+ ### Added
861
+
862
+ - ChartFunnel: Added new variant's 'default' | 'basic'
863
+
864
+ ## 2.15.0 (2024-10-31)
865
+
866
+ ### Added
867
+
868
+ - Tag: `leftIcon` and `rightIcon` props;
869
+ - TableNext: `hideHeaders` and `size` props;
870
+ - TableNext: Added the possibility of column sizes being `'auto'`;
871
+ - TableNext: Removed the requirement to pass the headers prop.
872
+
873
+ ## 2.14.2 (2024-10-22)
874
+
875
+ ### Fixed
876
+
877
+ - Resolved SelectSmart empty option
878
+ - Resolved translate icons issue
879
+
880
+ ## 2.14.1 (2024-10-17)
881
+
882
+ ### Fixed
883
+
884
+ - Resolved DatePicker addMonth issue
885
+
886
+ ## 2.14.0 (2024-10-17)
887
+
888
+ ### Added
889
+
890
+ - Navigator Component
891
+
892
+ ### Fixed
893
+
894
+ - Resolved DatePicker issue showing NaN in safari browser
895
+
896
+ ## 2.13.1 (2024-10-15)
897
+
898
+ ### Fixed
899
+
900
+ - Resolved an issue where the AudioRecorder player displayed incorrect audio duration. ([Related to this Chromium bug](https://bugs.chromium.org/p/chromium/issues/detail?id=642012))
901
+
902
+ ## 2.13.0 (2024-09-30)
903
+
904
+ ### Added
905
+
906
+ - Migrated InputNext component to Vue 3
907
+
908
+ ## 2.12.0 (2024-09-25)
909
+
910
+ ### Added
911
+
912
+ - Added SimpleCard component
913
+
914
+ ## 2.11.0 (2024-08-30)
915
+
916
+ ### Added
917
+
918
+ - Docs of ChartBar, ChartFunnel, ChartLine, ChartMultiLine, ChartRainbow, ChatsContact, ChatsContact, ChatsDashboardTagLive, ChatsHeader, ChatsMessage, ChatsNavbar, ChatsUserAvatar, ChatText, CircleProgressBar, Collapse, Comment and DataArea.
919
+
920
+ ### Fixed
921
+
922
+ - Change `autoNavigateSingleChild ` to `autoNavigateFirstChild` in `SideBar` component and logic improvements
923
+
924
+ ## 2.11.0 (2024-08-26)
925
+
926
+ ### Added
927
+
928
+ - Update `SideBar` visual
929
+
930
+ ## 2.10.0 (2024-08-22)
931
+
932
+ ### Added
933
+
934
+ - Added Button, Icon, Switch and Tooltip tests;
935
+ - Change `wide` to `size` prop in `Drawer.vue` to support extra-large size;
936
+ - Added html tags support in `Tour` step description.
937
+
938
+ ## 2.9.0 (2024-08-21)
939
+
940
+ ### Added
941
+
942
+ - Docs of Checkbox, Radio, Accordion, Alert, AudioRecorder, AvatarIcon, Banner, Breadcrumb, ButtonIcon, Card, CardData, CardImage, CardInformation, CardNumber, CardProject, Carousel and ChartBar;
943
+ - EmojiPicker position bottom variation;
944
+ - Drawer distinct close and back actions variation.
945
+
946
+ ## 2.8.2 (2024-08-21)
947
+
948
+ ### Added
949
+
950
+ - Add new iconFilled property to sideBarItem component
951
+
952
+ ## 2.8.1 (2024-08-20)
953
+
954
+ ### Added
955
+
956
+ - `Tour.vue` component added beforeRender prop, emitting events and dealing with hiding the understood button if desired by step.
957
+
958
+ ## 2.8.0 (2024-08-16)
959
+
960
+ ### Added
961
+
962
+ - `DropArea.vue` component from `UploadArea` component.
963
+
964
+ ### Changed
965
+
966
+ - Update `ImportCard.vue` design.
967
+
968
+ ## 2.7.0 (2024-08-14)
969
+
970
+ ### Added
971
+
972
+ - Added Tour component;
973
+ - Added Tour story.
974
+
975
+ ## 2.6.2 (2024-08-13)
976
+
977
+ ### Added
978
+
979
+ - Added returnName prop in EmojiPicker component to return the id/name instead of its native
980
+
981
+ ## 2.6.1 (2024-08-02)
982
+
983
+ ### Fixed
984
+
985
+ - Fixed CI workflow to create pre-release versions
986
+
987
+ ## 2.6.0 (2024-08-02)
988
+
989
+ ### Added
990
+
991
+ - Added Vitest
992
+ - Added Checkbox and Label components tests
993
+
994
+ ## 2.5.0 (2024-07-29)
995
+
996
+ ### Added
997
+
998
+ - Added Drawer without overlay variation and its story.
999
+
1000
+ ### Fixed
1001
+
1002
+ - Fixed close icon of Drawer to be dynamic.
1003
+
1004
+ ## 2.4.0 (2024-07-23)
1005
+
1006
+ ### Added
1007
+
1008
+ - `leftSidebar` slot in the `ModalDialog` component;
1009
+ - Boolean `hideSecondaryButton` prop in the `ModalDialog` component.
1010
+
1011
+ ## 2.3.0 (2024-07-19)
1012
+
1013
+ ### Added
1014
+
1015
+ - Added auto docs template to stories;
1016
+ - Usage autodocs at Button story.
1017
+
1018
+ ### Changed
1019
+
1020
+ - Fixed button props defaults;
1021
+ - Improve Button story it.
1022
+
1023
+ ## 2.2.0 (2024-07-19)
1024
+
1025
+ ### Added
1026
+
1027
+ - Customizing the size of each column in `TableNext` via props.
1028
+
1029
+ ## 2.1.1 (2024-07-18)
1030
+
1031
+ ### Added
1032
+
1033
+ - Added `ModalDialog` all button props support and remove 'buttonType' and 'buttonText' props. Now, all button props should come in a single object.
1034
+
1035
+ ## 2.1.0 (2024-07-08)
1036
+
1037
+ ### Added
1038
+
1039
+ - Added `ModalDialog` component.
1040
+
1041
+ ## 2.0.31 (2024-07-03)
1042
+
1043
+ ### Fixed
1044
+
1045
+ - Export `UnnnicAlert` component.
1046
+
1047
+ ## 2.0.30 (2024-06-28)
1048
+
1049
+ ### Fixed
1050
+
1051
+ - When started with an item selected, that item was duplicated in the selection of the smart select when multiple selection was enabled.
1052
+
1053
+ ## 2.0.29 (2024-06-25)
1054
+
1055
+ ### Fixed
1056
+
1057
+ - Correction in the visual of the remove file button in the file upload modal.
1058
+
1059
+ ## 2.0.28 (2024-06-21)
1060
+
1061
+ ### Fixed
1062
+
1063
+ - Correction in the listener check on $attrs. This was preventing the correct operation of the listeners.
1064
+
1065
+ ## 2.0.27 (2024-06-20)
1066
+
1067
+ ### Fixed
1068
+
1069
+ - Adding ModalNext export component, before this it is not possible to use the component.
1070
+
1071
+ ## 2.0.26 (2024-06-20)
1072
+
1073
+ ### Added
1074
+
1075
+ - Migrated ModalNext to Vue 3.
1076
+
1077
+ ## 2.0.25 (2024-06-20)
1078
+
1079
+ ### Fixed
1080
+
1081
+ - The slider component had a bug in the tooltip positioning when initialized with an initialValue. This was fixed in this version by normalizing the tooltip positioning.
1082
+
1083
+ ## 2.0.24 (2024-06-18)
1084
+
1085
+ ### Fixed
1086
+
1087
+ - The interval of TableNext component automatically calculated the pagination interval, generating a bug when the request was on the last page and it did not return the rows.length of other requests. This was fixed by adding a prop to receive the range in a fixed way.
1088
+
1089
+ ## 2.0.23 (2024-06-14)
1090
+
1091
+ ### Fixed
1092
+
1093
+ - Bug fix in the ChatsContact component that triggered the click event twice.
1094
+
1095
+ ## 2.0.22 (2024-06-12)
1096
+
1097
+ ### Added
1098
+
1099
+ - Tag creation in the workflow when a new official version is released on npmjs.
1100
+
1101
+ ## 2.0.21 (2024-06-12)
1102
+
1103
+ ### Added
1104
+
1105
+ - Project changelog file.
1106
+ - Created `Publish Pre Release Package to npmjs` workflow to publish alpha versions when a new version goes up to the staging environment from tags with the pattern `x.x.x-staging`.
1107
+
1108
+ ### Fixed
1109
+
1110
+ - Updated the eslint version to fix dependency conflicts and ran lint again.
1111
+
1112
+ ### Changed
1113
+
1114
+ - Node version of Dockerfile to `20.14.0`.