@weni/unnnic-system 3.12.7 → 3.12.8-alpha-teleports.0

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