@vcita/design-system 1.5.23 → 1.6.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 (44) hide show
  1. package/CHANGELOG.md +563 -0
  2. package/config/locales/ds.en.yml +3 -1
  3. package/dist/@vcita/design-system.esm.js +2171 -1202
  4. package/dist/@vcita/design-system.min.js +2 -2
  5. package/dist/@vcita/design-system.ssr.js +1972 -1061
  6. package/init/DesignSystem.js +4 -0
  7. package/init/SvgIcons.js +5 -1
  8. package/package.json +1 -1
  9. package/src/components/VcAccordion/VcAccordion.stories.js +2 -2
  10. package/src/components/VcAccordion/VcAccordion.vue +5 -1
  11. package/src/components/VcPoweredBy/VcPoweredBy.spec.js +4 -4
  12. package/src/components/VcPoweredBy/VcPoweredBy.stories.js +8 -8
  13. package/src/components/VcPoweredBy/VcPoweredBy.vue +9 -10
  14. package/src/components/index.js +8 -1
  15. package/src/components/sidepane/VcClientItem/VcClientItem.spec.js +126 -0
  16. package/src/components/sidepane/VcClientItem/VcClientItem.stories.js +62 -0
  17. package/src/components/sidepane/VcClientItem/VcClientItem.vue +120 -0
  18. package/src/components/sidepane/VcDetailItem/VcDetailItem.spec.js +58 -0
  19. package/src/components/sidepane/VcDetailItem/VcDetailItem.stories.js +59 -0
  20. package/src/components/sidepane/VcDetailItem/VcDetailItem.vue +65 -0
  21. package/src/components/sidepane/VcEntityStatus/VcEntityStatus.spec.js +62 -0
  22. package/src/components/sidepane/VcEntityStatus/VcEntityStatus.stories.js +69 -0
  23. package/src/components/sidepane/VcEntityStatus/VcEntityStatus.vue +119 -0
  24. package/src/components/sidepane/VcServiceItem/VcServiceItem.spec.js +58 -0
  25. package/src/components/sidepane/VcServiceItem/VcServiceItem.stories.js +53 -0
  26. package/src/components/sidepane/VcServiceItem/VcServiceItem.vue +65 -0
  27. package/src/components/sidepane/VcSidepaneHeader/VcSidepaneHeader.spec.js +121 -0
  28. package/src/components/sidepane/VcSidepaneHeader/VcSidepaneHeader.stories.js +78 -0
  29. package/src/components/sidepane/VcSidepaneHeader/VcSidepaneHeader.vue +142 -0
  30. package/src/components/sidepane/VcTimeline/VcTimeline.spec.js +74 -0
  31. package/src/components/sidepane/VcTimeline/VcTimeline.stories.js +113 -0
  32. package/src/components/sidepane/VcTimeline/VcTimeline.vue +73 -0
  33. package/src/components/sidepane/VcTimelineRecord/VcTimelineRecord.spec.js +117 -0
  34. package/src/components/sidepane/VcTimelineRecord/VcTimelineRecord.stories.js +78 -0
  35. package/src/components/sidepane/VcTimelineRecord/VcTimelineRecord.vue +72 -0
  36. package/src/components/sidepane/example/VcSidepaneExample.stories.js +226 -0
  37. package/src/stories/assets/vc_logo.svg +6 -0
  38. package/src/stories/variables.stories.mdx +15 -0
  39. package/styles/variables.scss +14 -0
  40. package/src/components/VcOverlay/VcOverlay.spec.js +0 -60
  41. package/src/components/VcOverlay/VcOverlay.stories.js +0 -37
  42. package/src/components/VcOverlay/VcOverlay.vue +0 -14
  43. package/src/components/page/layouts/innerScrollPage/InnerScrollPageLayout.stories.js +0 -165
  44. package/src/stories/assets/vcita_logo_black.svg +0 -34
package/CHANGELOG.md ADDED
@@ -0,0 +1,563 @@
1
+
2
+ # Change log
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ Format based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ### Unreleased changes
9
+
10
+ ### v1.6.1(2023-07-06)
11
+ - VcPoweredBy- Change logo location and asset
12
+
13
+ ### v1.6.0(2023-07-04)
14
+ - VcClientItem - add component
15
+ - VcDetailItem - add component
16
+ - VcTimeline - add component
17
+ - VcTimelineRecord - add component
18
+ - Entity Sidepane - add example of usage
19
+ - VcEntityStatus - add component
20
+ - VcServiceItem - add component
21
+ - VcAccordion - add item.button prop
22
+ - VcSidepaneHeader - add component
23
+
24
+ ### v1.5.23(2023-06-18)
25
+ - VcBottomNav - Fix bug - selected tab should get secondary color
26
+ - VcTopMenuBar - Fix bug - tob-bar should get branded text color (instead of white)
27
+
28
+ ### v1.5.22(2023-05-18)
29
+ - VcBottomNav - Avoid pointer events on selected tab
30
+
31
+ ### v1.5.21(2023-05-17)
32
+ - VcTextField - Add append slot
33
+
34
+ ### v1.5.20(2023-05-11)
35
+ - VcBadge - Add optional size, fix error in storybook
36
+ - VcBottomNav - css fix
37
+
38
+ ### v1.5.19(2023-05-04)
39
+ - VcBottomNav - css fix
40
+ - VcTopMenuBar - move event from icon to actionableText title
41
+ - VcCard - add ripple and set default to false
42
+
43
+ ### v1.5.18(2023-04-24)
44
+ - VcInputPopover - add title description
45
+ - VcInputBottomSheet - add title description
46
+
47
+ ### v1.5.17(2023-04-23)
48
+ - VcBottomNav - css fixes - margins & icons color
49
+ - VcMenuItem - css fixes
50
+ - VcMenuItemsGroup - css fixes
51
+
52
+ ### v1.5.16(2023-04-16)
53
+ - VcTooltip - add maxWidth prop
54
+ - VcCheckbox - add tooltip slot
55
+
56
+ ### v1.5.15(2023-04-02)
57
+ - VcBadge - added standalone option and flavor
58
+
59
+ ### v1.5.14(2023-03-30)
60
+ - VcActionList - added custom action title slot
61
+
62
+ ### v1.5.13(2023-03-30)
63
+ - VcTopMenuBar - Fix badge location
64
+ - VcTopMenuBar - Fix logo height
65
+ - VcAlert - add 'app' type
66
+ - VcAlert - add inline action
67
+ - VcActionList - removed conditional rendering from icon
68
+
69
+ ### v1.5.12(2023-03-29)
70
+ - vcMenuItem - add badge option to sub items
71
+
72
+ ### v1.5.11(2023-03-27)
73
+ - VcListEntity - fix width of text
74
+ - VcTopMenuBar - Add badge support to main buttons
75
+ - VcTopMenuBar - fix RTL arrow direction related bug
76
+
77
+ ### v1.5.10(2023-03-21)
78
+ - VcTopMenuBar - fix bug to align items to the start
79
+ - VcTopMenuBar - change height to 59px
80
+ - VcTopMenuBar - change icon to 20px and button to 32px
81
+ - VcProfileIndication - add option to hide the right arrow
82
+
83
+ ### v1.5.9(2023-03-19)
84
+ - VcTopMenuBar - fix bug to close bottom menu when item clicked
85
+ - VcTopMenuBar - fix bug to get branding colors
86
+
87
+ ### v1.5.8(2023-03-19)
88
+ - VcCheckbox - add error state, fix indeterminate state
89
+ - vcBottomNav - allow no selected tabs, fixed issue with label size when dynamic slot present
90
+
91
+ ### v1.5.7(2023-03-07)
92
+ - VcSelectField - fix click outside not working in mobile
93
+
94
+ ### v1.5.6(2023-03-02)
95
+ - VcTopMenuBar - alignment fix
96
+
97
+ ### v1.5.5(2023-03-01)
98
+ - VcPoweredBy - alignment fix
99
+ - VcMenuItemsGroup - added named slots
100
+ - VcTopMenuBar - emitted actions changed
101
+
102
+ ### v1.5.4(2023-02-28)
103
+ - VcTextArea - bug fix
104
+
105
+ ### v1.5.3(2023-02-26)
106
+ - VcProfileIndication
107
+ - VcPoweredBy
108
+ - VcMenuItemsGroup - css bug fix
109
+
110
+ ### v1.5.3(2023-02-26)
111
+ - VcTopMenuBar - top menu bar component for mobile
112
+ - VcLoader - add a linear mode
113
+ - VcLoader - change the default color to 'secondary'
114
+
115
+ ### v1.5.2(2023-02-21)
116
+ - VcGalleryList - to pass binded item
117
+
118
+ ### v1.5.1(2023-02-20)
119
+ - make additional-colors available
120
+ - VcMenuItemsGroup - change location in storybook components hierarchy
121
+
122
+ ### v1.5.0(2023-02-19)
123
+ - VcMenuItemsGroup - added new component
124
+ - VcMenuItem - added data to event & small css additions
125
+
126
+ ### v1.4.2(2023-02-19)
127
+ - manage avatar colors in additional-colors.scss
128
+
129
+ ### v1.4.1(2023-02-15)
130
+ - VcPageHeader - fix bug with 'buttons' slot not showing
131
+
132
+ ### v1.4.0(2023-02-12)
133
+ - VcPageHeader - the save button will not appear by default, add ability to control the button icon
134
+ - VcChip - avatar margin fix
135
+ - VcAccordion - adjust style and add option to gap and grey background
136
+ - VcActionList - data-qa for items added
137
+ - VcBottomNav - add component
138
+ - VcGroupItems - change spaces between group to gap and not margin
139
+ - design fixes
140
+
141
+ ### v1.3.20(2023-01-30)
142
+ - VcPageHeader - edit mode
143
+ - VcPageHeader - subtitle appended link added
144
+ - VcActionList - added append slot within menu
145
+ - VcUpsellBlock - fix bug - support long text on dialog buttons
146
+
147
+ ### v1.3.18(2023-01-25)
148
+ - VcFilterPanel - fix css for rtl
149
+
150
+ ### v1.3.17(2023-01-22)
151
+ - VcPageHeader - ui update for buttonLabel
152
+
153
+ ### v1.3.16(2023-01-19)
154
+ - VcWizard - support bubbling error event in a content step
155
+
156
+ ### v1.3.15(2023-01-16)
157
+ - VcPageHeader - add buttonPrependIcon prop
158
+ - VcMenuItem - added
159
+
160
+ ### v1.3.14(2023-01-10)
161
+ - VcPageHeader - chip added
162
+ - VcPageHeader - button added
163
+
164
+ ### v1.3.13(2023-01-09)
165
+ - VcSelectField - Optionally use icomoon icons
166
+ - VcChipList - variable number of rows, variable item height, optional item 'close'
167
+ - VcChip - optionally displays avatar
168
+ - VcFilterPanel - add header/scrolling content/footer structure
169
+ - VcActionBar - migrate component
170
+ - VcTabs - when in limited height container, header is sticky, and only the content scrolls
171
+ - VcEntityList - add component
172
+ - VcAccordion - add item data to slot
173
+ - VcLayout - add ability to use ref
174
+ - VcDropdown - add white background
175
+
176
+ ### v1.3.12(2023-01-01)
177
+ - VcActionList - offset-y
178
+ - VcSelectField - Optionally prepend icons to labels, click-outside implemented, arrow rotation
179
+
180
+ ### v1.3.11(2022-12-26)
181
+ - VcChip - support for the color blind, by showing the invalid icon for every invalid chip
182
+
183
+ ### v1.3.10(2022-12-18)
184
+ - VcUpsellBlock - fix bug - support long text on the main button
185
+ - VcRadioGroup - fix radio with tooltip with custom content
186
+
187
+ ### v1.3.9(2022-12-12)
188
+ - VcModalHeader - modify close icon in header
189
+ - VcChip - thin design
190
+ - VcAccordion - added new component
191
+ - VcColorPicker - css fix
192
+
193
+ ### v1.3.8(2022-11-27)
194
+ - Resolve click-outside collision with vuetify directive by the same name
195
+
196
+ ### v1.3.7(2022-11-22)
197
+ - VcGalleryItem - brought back selected/disabled functionality
198
+
199
+ ### v1.3.6(2022-11-21)
200
+ - VcGalleryItem - emit previewItem computed property
201
+ - VcGalleryList - pass description property
202
+
203
+ ### v1.3.5(2022-11-21)
204
+ - VcColorPicker - bug fix
205
+ - Dropdown - fix overflow-x bug
206
+ - VcModalHeader - default title will be one line max, longer text will get ellipsis
207
+
208
+ ### v1.3.4(2022-11-17)
209
+ - VcLink - can get any icon
210
+ - VcCheckbox - fix bug with redundant margin
211
+ - VcCheckbox - add white bg to the unselected checkbox
212
+ - VcGalleryItem - design updated
213
+ - VcGalleryList - design updated
214
+ - VcMenu - added
215
+ - VcDropdown - added
216
+ - VcGroupedItems - added
217
+ - VcSideNav - uses VcGroupedItems
218
+ - fix bug in translation mechanism - add fallback to English
219
+ - VcColorPicker - added
220
+
221
+ ### v1.3.3(2022-11-13)
222
+ - VcRadioGroup - add support for horizontal layout
223
+ - VcTooltip - add support for close delay
224
+ - VcBottomActions - emit close event on click outside
225
+ - VcTextField - add autofocus support
226
+ - VcTextField - add keydown.enter support
227
+ - VcFilterPanel - add header variant
228
+ - VcActionList - added header to
229
+
230
+ - ### v1.3.2(2022-11-06)
231
+ - VcGalleryItem - fix ui on small desktop
232
+ - VcChip - added 'selected' state
233
+
234
+ ### v1.3.1(2022-10-30)
235
+ - VcGalleryItem - add 'selected' indication
236
+ - VcGalleryItem - add ability to disable
237
+ - VcRadio and VcRadioGroup - add ability to disable
238
+
239
+ ### v1.3.0(2022-10-25)
240
+ - Adding SideNav layout
241
+ - Adding centered layout
242
+ - Adding VcPageHeader
243
+ - Adding VcBreadcrumbs
244
+ - Ability to disable VcLink
245
+ - modal container can show close button on flavor input
246
+ - upsell dialog fix dimension issue
247
+
248
+ ### v1.2.3 (2022-10-03)
249
+ - VcMiniBanner - added new component
250
+ - VcSearchPicker - removed redundant event emission from pointer
251
+ - VcGalleryItem - added new component
252
+ - VcGalleryList - added new component
253
+
254
+ ### v1.2.2 (2022-09-19)
255
+ - VcTextField - fix alignment
256
+ - VcSideNav
257
+ - VcIcon - fix color prop
258
+
259
+ ### v1.2.1 (2022-09-08)
260
+ - VcDocItem - added fileSize prop, event object added to emit
261
+ - SvgIcons - added viewBox attribute on doc_Sheet
262
+
263
+ ### v1.2.0 (2022-09-08)
264
+ - VcChipList - added new component
265
+ - VcChip - added slot
266
+
267
+ ### v1.1.10 (2022-09-07)
268
+ - VcTabs - fix scrollbar issue
269
+
270
+ ### v1.1.9 (2022-09-07)
271
+ - Adding VcTabs component
272
+
273
+ ### v1.1.8 (2022-09-05)
274
+ - VcInputModal - added closeOnEsc prop, passed to VcModalContainer
275
+ - VcModalContainer - added closeOnEsc prop, passed to VcModalWrapper
276
+ - VcModalWrapper - added closeOnEsc prop, used as condition for esc keydown event
277
+ - VcSearchPicker - use secondary brand hues
278
+ - VcSearchPicker - keep menu open if focusing the text input
279
+
280
+ ### v1.1.7 (2022-09-04)
281
+ - VcDocItem - added svg as an image type
282
+ - VcSearchPicker - caret and pointer color
283
+ - VcSearchPicker - add menu custom class name prop
284
+ - VcSearchPicker - use brand colors
285
+
286
+ ### v1.1.6 (2022-08-28)
287
+ - VcDocItem - added 'xlsx' as a spreadsheet format
288
+ - VcDocItem - added max width
289
+ - VcSearchPicker - add background color to input
290
+
291
+ ### v1.1.5 (2022-08-24)
292
+ - VcDraggableList - remove hover from mobile
293
+
294
+ ### v1.1.4 (2022-08-21)
295
+ - Adding composition and slots examples
296
+ - VcModalFooter - added disabled option to VcButton
297
+
298
+ ### v1.1.3 (2022-08-21)
299
+ - VcDraggableList - add story with slot and fix icon size
300
+
301
+ ### v1.1.2 (2022-08-16)
302
+ - VcModalHeader - add right button icon
303
+ - VcList
304
+ - VcBaseListItem
305
+ - VcMobilePicker - new mobile picker pattern based on VcList
306
+ - VcTextField - add appendIcon and readonly properties + CSS
307
+ - VcInputModal - add showFooter + CSS
308
+ - VcModalContainer - remove the auto height on the VcModalContainerContent class
309
+ - VcDraggableList - added component
310
+ - VcTextField - fix label alignment
311
+ - VcWizard - add dynamic step names and description
312
+ - VcTextField - add google address autocomplete
313
+ - VcAvatar - fix image path prop
314
+
315
+ ### 1.1.1 (2022-08-11)
316
+ - Update translations
317
+
318
+ ### 1.1.0 (2022-08-08)
319
+ - VcDocItem - implemented uploaded and corrupted states
320
+ - VcStepperContent - add link color under the description
321
+ - VcWizard - BREAKING CHANGE: v-model current-step fixes
322
+ - VcSearchPicker - added component
323
+
324
+ ### 1.0.7 (2022-07-26)
325
+ - VcEmptyState - change color for button ghost
326
+
327
+ ### 1.0.6 BREAKING CHANGES (2022-07-24)
328
+ - Split variables.scss into vuetify-variables.scss and variables.scss
329
+ - Consuming project changes required
330
+
331
+ ### 0.6.27 (2022-07-17)
332
+ - VcButton - add ghost mode. fix storybook props inherit
333
+ - VcEmptyState - add ability to choose ghost mode btn
334
+ - VcDocItem - added document formats
335
+ - VcAutoComplete, VcTextArea, VcTextField - remove branding color when not needed
336
+
337
+ ### 0.6.26 (2022-07-03)
338
+ - VcDocItem - component added to ds
339
+ - VcTimeSince
340
+ - VcSwitch - add option to show label before switch
341
+ - Translations with parameters
342
+
343
+ ### 0.6.25 (2022-06-23)
344
+ - VcInputPopover - add click outside will not close the popover support
345
+
346
+ ### 0.6.24 (2022-06-14)
347
+ - VcInputBottomSheet - add switch support
348
+
349
+ ### 0.6.23 (2022-06-13)
350
+ - VcWizard - css fix
351
+
352
+ ### 0.6.22 (2022-05-31)
353
+ - VcRadioGroup - fix tooltip slots
354
+
355
+ ### 0.6.21 (2022-05-16)
356
+ - VcRadioGroup - create
357
+ - VcRadio - create
358
+ - VcTooltip - add slots and fallback icon as an activator
359
+
360
+ ### 0.6.20 (2022-05-16)
361
+ - VcStepperContent fix height
362
+ - VcInputPopover - add toggle to header
363
+
364
+ ### 0.6.19 (2022-05-10)
365
+ - VcSegmentedControl added
366
+
367
+ ### 0.6.18 (2022-05-02)
368
+ - VcListbox - add validator
369
+
370
+ ### 0.6.17 (2022-04-27)
371
+ - VcListbox - improve CSS
372
+
373
+ ### 0.6.16 (2022-04-27)
374
+ - VcListbox - add a search bar option
375
+
376
+ ### 0.6.15 (2022-04-25)
377
+ - VcTooltip - opacity 100%
378
+ - VcDropzone - fix active styles
379
+ - VcSelectField - add error-messages, add tooltip nudge
380
+ - VcTextField - add tooltip nudge
381
+ - VcLink - add click action
382
+ - VcSwitch - fix clickable icons
383
+ - VcSearchBar
384
+
385
+ ### 0.6.14 (2022-03-21)
386
+ - VcDropzone - component added
387
+ - VcTextField - add prefix and error-messages
388
+ - VcConfirmModal - fix for rtl button position
389
+
390
+ ### 0.6.13 (2022-03-14)
391
+ - Updated localization files
392
+
393
+ ### 0.6.12 (2022-03-14)
394
+ - VcSelectField - fix border colors for some variations
395
+
396
+ ### 0.6.11 (2022-03-13)
397
+ - VcListbox - small fix for distinguishing data qa on the list
398
+
399
+ ### 0.6.10 (2022-03-06)
400
+ - VcModalContainer - fix for overflow-x scroll
401
+
402
+ ### 0.6.9 (2022-03-02)
403
+ - VcButton - fix for button flavor
404
+
405
+ ### 0.6.8 (2022-03-02)
406
+ - VcTextArea - add fixed-height state
407
+ - VcPopover - fix corners radius
408
+ - VcUpsellBlock - background overflow bug fix
409
+ - VcLink - add target as prop
410
+ - VcModalContainer - add xl size
411
+
412
+ ### 0.6.7 (2022-03-01)
413
+ - VcButton - fix for color flavor
414
+
415
+ ### 0.6.6 (2022-03-01)
416
+ - VcAvatar - support the 0 color id
417
+ - VcBanner - fix background to be branded
418
+
419
+ ### 0.6.4 (2022-02-28)
420
+ - VcButton - add flavor prop
421
+ - VcBanner - Change component design
422
+
423
+ ### 0.6.3 (2022-02-23)
424
+ - VcListbox - performance improve
425
+
426
+ ### 0.6.2 (2022-02-22)
427
+ - VcListbox - minor fix
428
+
429
+ ### 0.6.1 (2022-02-21)
430
+ - VcTextField - add tooltip, placeholder
431
+ - VcUpsellBlock - css fixes
432
+
433
+ ### 0.6.0 (2022-02-20)
434
+ - VcModalHeader - add no close button new style
435
+ - VcPopover - add white background color
436
+ - VcActionList - fix icon size
437
+ - VcListbox - fix clicking not responding on the edges of the labels
438
+ - VcListbox - use v-list-item-group to get the full "checked" array
439
+ - VcListbox - tooltip option for a disabled item
440
+ - VcUpsellBlock
441
+
442
+ ### 0.5.0 (2022-02-15)
443
+ - VcButton - add outlined and prepend default icon.
444
+ - VcBottomSheet
445
+ - VcInputBottomSheet
446
+ - VcModalHeader - add close button option
447
+ - VcLink - add cursor pointer
448
+ - VcModalHeader - add description
449
+ - VcPopover
450
+ - VcInputPopover
451
+ - VcBadge - update parameters, add test, enrich the story book
452
+ - VcWizard fix content height
453
+ - VcExpansionCard fix color
454
+
455
+
456
+ ### 0.4.0 (2022-02-08)
457
+ - Added VcBadge component
458
+ - fix icon name in VcActionList
459
+ - add parameters to VcTextArea
460
+ - add button the ability to be link
461
+ - VcLink - add secondary
462
+ - VcLink - add prepend icon
463
+ - VcLink - change text context to label
464
+ - SvgIcons - rename chevron_left to chevron_right
465
+ - SvgIcons - add trash, copy, chevron_left
466
+
467
+ ### 0.3.17 (2022-02-06)
468
+ - VcLink - add secondary
469
+ - VcLink - add prepend icon
470
+ - VcLink - change text context to label
471
+ - SvgIcons - rename chevron_left to chevron_right
472
+ - SvgIcons - add trash, copy, chevron_left
473
+
474
+ ### 0.3.16 (2022-01-31)
475
+ - Center image in VcImage
476
+ - bug fix in VcBanner
477
+ - Bug fix in VcImage
478
+ - VcChip
479
+ - fix expansion card content slot to have padding
480
+ - text-area auto grow
481
+
482
+ ### 0.3.15 (2022-01-24)
483
+ - rename wizard event to move forward
484
+ - move breakpoint from mixin to wizard component
485
+ - modify expansion card content slot to have padding
486
+
487
+ ### 0.3.14 (2022-01-24)
488
+ - add the ability to use image path or object in all relevant places
489
+ - add VcImage to facilitate use of different types of images and SVGs
490
+ - add title to wizard stepsBar
491
+
492
+ ### 0.3.12 (2022-01-18)
493
+ - add animation to shadow for hover on card
494
+ - fix border radius on action list
495
+ - fix v-model value in VcListEntity and VcExpansionCard
496
+ - added boolean useOffset prop on VcInputModal, VcNoticeModal, VcConfirmProminentModal
497
+ - VcChecklistItem
498
+ - VcListbox
499
+ - Add option to disable the tooltip on VcTooltip
500
+ - Add option to show the avatar on black & white
501
+ - Add option to remove the avatar border
502
+
503
+ ### 0.2.10 (2022-01-13)
504
+ - small fixes on VcActions
505
+ - add icon option for switch component
506
+ - VcExpansionCard
507
+ - VcListEntity
508
+
509
+ ### 0.2.9 (2022-01-12)
510
+ - update design on list item
511
+ - add loading option for confirm modal
512
+
513
+ ### 0.2.4 (2022-01-05)
514
+ - adding svg images to vue object
515
+ - move VcSvg to global components
516
+
517
+ ### 0.2.3 (2022-01-03)
518
+ - bug fix related to $ds
519
+
520
+ ### 0.2.2 (2022-01-03)
521
+ - VcStepsBar
522
+ - VcMobileWizardProgress
523
+ - VcProgressCircular
524
+ - Separate init of i18n for easier unit testing in consuming project
525
+
526
+ ### 0.2.1 (2021-12-29)
527
+ - adding mastercard and visa to icon
528
+
529
+ ### 0.2.0 (2021-12-29)
530
+ - Adding VcEmptyState
531
+ - Adding VcLink
532
+ - Adding VcFocusArea
533
+ - Migrate the VcListItem component from FG
534
+ - Migrate the VcGroupHeader component from FG
535
+ - Adding VcEmptyState
536
+ - Adding VcLink
537
+ - update for VcButton - added pill (rounded) prop
538
+ - Migrate VcFilterPanel component from FG
539
+ - Migrate VcInfiniteScroll component from FG
540
+ - Add translation utility
541
+ - update VcToast
542
+
543
+ ### 0.1.5 (2021-12-07)
544
+ - update for VcAlert - added inline state
545
+ - update for VcCard - update all design and add test and story
546
+ - simplify the process of adding svg icons
547
+ - Migrate the VcCheckbox component from FG
548
+ - add disabled css for VcButton
549
+
550
+ ## 0.1.4 (2021-11-28)
551
+ - VcConfirmModal - added support for loader in modal buttons
552
+ - VcConfirmModal, VcModalContainer, VcModalWrapper - added support to add or remove the offset class
553
+
554
+ ## 0.1.2 (2021-11-21)
555
+ ### Added components
556
+ - VcActionsList
557
+ - VcBottomActions
558
+ - VcActions - A wrapper for VcActionsList and VcBottomActions that chooses which one to display, depending if it is used in desktop or mobile
559
+ - VcTooltip
560
+ - VcIconWithTooltip
561
+
562
+ ### Added utilities
563
+ - util/colorUtil.js - utility functions commonly used for setting the theme
@@ -45,4 +45,6 @@ en:
45
45
  show_more: Show more
46
46
  page:
47
47
  saveButton:
48
- label: Save
48
+ label: Save
49
+ client_item:
50
+ send_message: Send message