@vcita/design-system 1.11.29 → 1.11.30
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.
- package/CHANGELOG.md +841 -0
- package/README.md +11 -0
- package/dist/@vcita/design-system.esm.js +14141 -19885
- package/dist/@vcita/design-system.min.js +2 -2
- package/dist/@vcita/design-system.ssr.js +14074 -19970
- package/package.json +1 -1
- package/src/components/VcMenuItem/VcMenuItem.vue +10 -0
- package/src/components/VcPreview/DocPreview.vue +2 -3
- package/src/components/VcTabs/VcTabs.spec.js +13 -0
- package/src/components/VcTabs/VcTabs.stories.js +7 -1
- package/src/components/VcTabs/VcTabs.vue +16 -1
- package/src/components/table/elements/VcDataTable/VcDataTable.vue +2 -2
- package/src/components/table/elements/VcTableFooter/VcTableFooter.vue +2 -0
- package/styles/variables.scss +6 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,841 @@
|
|
|
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
|
+
- DocPreview - changing the use of require to import
|
|
10
|
+
- VcMenuItem - Add branding colors to hover and active states
|
|
11
|
+
|
|
12
|
+
### v1.11.30(2024-03-03)
|
|
13
|
+
- VcDataTable, VcTableFooter - changed CSS according to design requirements
|
|
14
|
+
- VcTabs - added fullHeightTabs prop
|
|
15
|
+
|
|
16
|
+
### v1.11.29(2024-02-29)
|
|
17
|
+
- VcChip - fix chip width to default fit-content for backwards compatibility
|
|
18
|
+
- VcChipList - pass chip width props both for regular chip and more chip
|
|
19
|
+
|
|
20
|
+
### v1.11.28(2024-02-29)
|
|
21
|
+
- VcAccountMenu - change max-height value
|
|
22
|
+
- VcDropdown - change duplicate data-qa
|
|
23
|
+
|
|
24
|
+
### v1.11.27(2024-02-28)
|
|
25
|
+
- VcTabs - Added new props (transition, ripple, customTabHeight, topSlider, zeroTabWidth)
|
|
26
|
+
|
|
27
|
+
### v1.11.26(2024-02-22)
|
|
28
|
+
- VcTableActionsBar - Add slot after search bar
|
|
29
|
+
- VcDataTable - Add slot after search bar
|
|
30
|
+
- VcMenuItem - fix right area alignments
|
|
31
|
+
|
|
32
|
+
### v1.11.25(2024-02-22)
|
|
33
|
+
- VcSmallQuickAction - Fixed bug where tooltip was always displayed
|
|
34
|
+
|
|
35
|
+
### v1.11.24(2024-02-21)
|
|
36
|
+
- VcSearchLayout - changed text color and fixed distortion when clicking a row
|
|
37
|
+
- VcMenuItem - fixed padding for desktop
|
|
38
|
+
- VcGroupedItems - Added new 'noFocusBorder' prop
|
|
39
|
+
- VcSmallQuickAction - Fixed tooltip not showing when element width is equal to element content width
|
|
40
|
+
|
|
41
|
+
### v1.11.23(2024-02-20)
|
|
42
|
+
- VcToast - update style request
|
|
43
|
+
|
|
44
|
+
### v1.11.22(2024-02-19)
|
|
45
|
+
- VcSearchLayout - changed text color and fixed distortion when clicking a row
|
|
46
|
+
- VcMenuItem - fixed padding for desktop
|
|
47
|
+
- VcWideTopMenuBar - fixed view for small screens
|
|
48
|
+
|
|
49
|
+
### v1.11.21(2024-02-14)
|
|
50
|
+
- VcAccordion - don't show menu item if user has no permissions
|
|
51
|
+
|
|
52
|
+
### v1.11.20(2024-02-13)
|
|
53
|
+
- VcQuickActions - Added skeleton mode
|
|
54
|
+
- VcMenuItem - arrow padding changed, border radius canceled in all states, padding changes for desktop
|
|
55
|
+
- VcWideTopMenuBar - Item spacing, icon sizes
|
|
56
|
+
|
|
57
|
+
### v1.11.19(2024-02-05)
|
|
58
|
+
- VcPoweredBy - change img + font sizes
|
|
59
|
+
|
|
60
|
+
### v1.11.18 (2024-02-05)
|
|
61
|
+
- VcMenuItem - item padding changed
|
|
62
|
+
- VcSelectField - Fix open/close dropdown when clicking on the icon
|
|
63
|
+
- VcMenuItem - skeleton design fixes
|
|
64
|
+
- VcSkeleton - enable resizing the skeleton by props
|
|
65
|
+
- VcWideTopMenuBar - fix bug that removed entity menu
|
|
66
|
+
|
|
67
|
+
### v1.11.17(2024-02-05)
|
|
68
|
+
- VcWideTopMenuBar - isLoading will be used for skeleton display, adding isSearching for loading state of the search bar withing the top menu bar
|
|
69
|
+
- VcMenuItem - item should be fully clickable
|
|
70
|
+
|
|
71
|
+
### v1.11.16(2024-02-04)
|
|
72
|
+
-`VcWideTopMenuBar` - added slot for custom content between search and notifications
|
|
73
|
+
- VcWideTopMenuBar - add skeleton loader
|
|
74
|
+
|
|
75
|
+
### v1.11.15(2024-02-01)
|
|
76
|
+
- VcMenuItem - adjust skeleton position
|
|
77
|
+
- VcWideTopMenuBar - add white background
|
|
78
|
+
- Add component VcSkeleton
|
|
79
|
+
- VcAccountMenu - add ellipsis to staff name - over 2 lines
|
|
80
|
+
- VcWideTopMenuBar - add ellipsis to staff name
|
|
81
|
+
|
|
82
|
+
### v1.11.14(2024-01-29)
|
|
83
|
+
- VcAvatar - change v-if to v-show due to a bug in reactivity
|
|
84
|
+
|
|
85
|
+
### v1.11.13(2024-01-28)
|
|
86
|
+
- VcDataTable - fix search bar padding
|
|
87
|
+
- VcColumnHeader - make column header text more bold and prominent
|
|
88
|
+
- VcChip - add min and max width props to chip, add ellipsis for text overflow
|
|
89
|
+
- VcChipList - add min and max width props to pass to VcChip
|
|
90
|
+
- VcTableItem - add min and max width props to pass to VcChipList
|
|
91
|
+
|
|
92
|
+
### v1.11.12(2024-01-17)
|
|
93
|
+
- VcPoweredBy - add reverse option
|
|
94
|
+
|
|
95
|
+
### v1.11.11(2024-01-09)
|
|
96
|
+
- VcWideTopMenuBar- Fix only icon and label to be clickable
|
|
97
|
+
- VcQuickActions, VcMenuItem- add data qas and pointer where missing
|
|
98
|
+
|
|
99
|
+
### v1.11.10(2024-01-04)
|
|
100
|
+
- VcTableItem - move VSkeletonLoader out of the slot so it can be used when slots are used
|
|
101
|
+
- VcColumnHeader - move VcHeaderSort out of the slot so it can be used when slots are used
|
|
102
|
+
|
|
103
|
+
### v1.11.9(2023-12-28)
|
|
104
|
+
- VcGallery - emit more action when component change elements
|
|
105
|
+
|
|
106
|
+
### v1.11.8(2023-12-27)
|
|
107
|
+
- VcGallery - show icon in the menu and component width from the parent component
|
|
108
|
+
|
|
109
|
+
### v1.11.7(2023-12-27)
|
|
110
|
+
- VcDataTable - add search value prop to propagate to VcTableActionsBar
|
|
111
|
+
- VcTableActionsBar - add search value prop to propagate to VcSearchBar
|
|
112
|
+
- VcSearchBar - add search value prop to propagate to VcTextField
|
|
113
|
+
- VcTableFooter - small ui fixes
|
|
114
|
+
|
|
115
|
+
### v1.11.6(2023-12-26)
|
|
116
|
+
- VcGallery - adjust some css and add option to show icon if image not available
|
|
117
|
+
|
|
118
|
+
### v1.11.5(2023-12-26)
|
|
119
|
+
- VcWideTopMenuBar - changed isNotificationsDialogOpen to be a prop instead of data
|
|
120
|
+
- export VcDivider
|
|
121
|
+
|
|
122
|
+
### v1.11.4(2023-12-25)
|
|
123
|
+
- VcDataTable - fix sticky scrolling bug
|
|
124
|
+
|
|
125
|
+
### v1.11.3(2023-12-25)
|
|
126
|
+
- VcQuickActions - fix bug where small action vent didn't contain the action data
|
|
127
|
+
- VcDataTable - design fixes, adding indication for sticky columns
|
|
128
|
+
- VcDataTable - fix issue when there are only a couple of items, the row height was too large
|
|
129
|
+
- VcWideTopMenuBar - fix bug when there is only faq item in dropdown, event emitted with undefined
|
|
130
|
+
- VcTableFooter - add disabled state
|
|
131
|
+
- VcDataTable - add searching state
|
|
132
|
+
- VcWideTopMenuBar - add a dropdown with slot under notifications badge
|
|
133
|
+
|
|
134
|
+
### v1.11.2(2023-12-19)
|
|
135
|
+
- VcGallery - add to index
|
|
136
|
+
-
|
|
137
|
+
- ### v1.11.1(2023-12-19)
|
|
138
|
+
- VcGallery - new component to show gallery of images (base on VcPreivew)
|
|
139
|
+
- svgImages - add new images
|
|
140
|
+
- VcButton - add new option for text to be white in case background is dark
|
|
141
|
+
|
|
142
|
+
### v1.10.5 (2023-12-13)
|
|
143
|
+
- VcWideTopMenuBar - Added back button
|
|
144
|
+
|
|
145
|
+
### v1.10.4 (2023-12-11)
|
|
146
|
+
- VcWideTopMenuBar - design fixes
|
|
147
|
+
- VcMenuItemsGroup - updated icon size
|
|
148
|
+
- VcAccountMenu - updated logout icon, added props for show logout, icon, label
|
|
149
|
+
- VcMenuItem - padding and coloring
|
|
150
|
+
- VcProgressCircular - add option to set the diameter
|
|
151
|
+
|
|
152
|
+
### v1.10.6 (2023-12-13)
|
|
153
|
+
- VcTextField - add clearable functionality
|
|
154
|
+
- VcSearchBar - add clearable prop which is passed to VcTextField
|
|
155
|
+
- VcTableFooter - Fix ‘rows per page’ number css, move ‘x of x pages’ indicator to bottom right according to design
|
|
156
|
+
- VcTableActionsBar - Move search bar to top left according to design, support custom search bar label, placeholder and clearable
|
|
157
|
+
- VcDataTable - Support custom search bar label, placeholder
|
|
158
|
+
|
|
159
|
+
### v1.10.3 (2023-11-29)
|
|
160
|
+
- VcMenuItem - changed desktop menu item height
|
|
161
|
+
|
|
162
|
+
### v1.10.2 (2023-11-29)
|
|
163
|
+
- VcPreview - revert library until unit test stabilize
|
|
164
|
+
|
|
165
|
+
### v1.10.1 (2023-11-28)
|
|
166
|
+
- VcAccountMenu - add option to pass logout label as prop
|
|
167
|
+
- VcMenuItem - changed icon sizes for items with subitems & changed desktop cursor to pointer on hover
|
|
168
|
+
- VcPreview - new component that can show all kind of file on the DOM
|
|
169
|
+
- VcButton - fix some issue in with properties not affect the story book
|
|
170
|
+
|
|
171
|
+
### v1.9.14 (2023-11-22)
|
|
172
|
+
- Bug fix - VcSearchLayout - show highlight for search expression
|
|
173
|
+
- Bug fix - VcSearchLayout - Empty state should be small
|
|
174
|
+
- VcSearchBar - add new size 'small'
|
|
175
|
+
- VcDataTable - adding table component and sub elements, enable sticky columns, column width handling, horizontal and vertical scrolling
|
|
176
|
+
- VcTableActionBar
|
|
177
|
+
- VcColumnHeader - text with ellipsis
|
|
178
|
+
- VcTableItem - different types, slot, text with ellipsis
|
|
179
|
+
- VcTableFooter
|
|
180
|
+
- VcChipList - add option to format hidden items display as chip, handle small chips
|
|
181
|
+
- VcQuickActions - design fixes, keyboard navigation
|
|
182
|
+
- VcDropdown - design fixes
|
|
183
|
+
- VcMenuItem - accessibility improvement
|
|
184
|
+
- VcWideTopMenuBar - design fixes
|
|
185
|
+
- VcSearchBar - adding size small
|
|
186
|
+
|
|
187
|
+
### v1.9.13(2023-11-02)
|
|
188
|
+
- VcModalContainer - set layout height only when relevant prop is passed
|
|
189
|
+
|
|
190
|
+
### v1.9.12(2023-10-30)
|
|
191
|
+
- VcConfirmModal - added wrapTitle prop, passed to VcModalHeader
|
|
192
|
+
- VcModalHeader - added wrapTitle prop, applied to title
|
|
193
|
+
- VcModalContainer - set layout height to support wrapped title
|
|
194
|
+
|
|
195
|
+
### v1.9.11(2023-10-26)
|
|
196
|
+
- VcAccordion - fixed button visibility according to prop
|
|
197
|
+
|
|
198
|
+
### v1.9.10(2023-10-22)
|
|
199
|
+
- VcChip - add space after select icon
|
|
200
|
+
|
|
201
|
+
### v1.9.9(2023-10-16)
|
|
202
|
+
- VcProgressCircular - don't set the text color according to theme, except when requested
|
|
203
|
+
- VcSearchLayout - design adjustment, only display avatar when there's imagePath
|
|
204
|
+
- VcWideTopMenuBar - close the account menu after item is clicked
|
|
205
|
+
|
|
206
|
+
### v1.9.8(2023-10-02)
|
|
207
|
+
- Fix VcModalContainer 'x' button hover position
|
|
208
|
+
- VcConfirmModal - add prop for optional 'x' button
|
|
209
|
+
- VcMenuItem - text color will be taken from theme only in desktop
|
|
210
|
+
- VcSearchLayout - click will return the item instead of the id of the item
|
|
211
|
+
|
|
212
|
+
### v1.9.6(2023-09-19)
|
|
213
|
+
- Add VcOverlay
|
|
214
|
+
|
|
215
|
+
### v1.9.5(2023-09-19)
|
|
216
|
+
- VcQuickActions - expose the nudge right and left options
|
|
217
|
+
|
|
218
|
+
### v1.9.4(2023-09-18)
|
|
219
|
+
- Fix bug with VcModalContainer click outside functionality
|
|
220
|
+
- VcQuickActions - replace VcModalContainer with VcDropdown
|
|
221
|
+
- VcGroupedItems - add stories for "selected"
|
|
222
|
+
|
|
223
|
+
### v1.9.3(2023-09-12)
|
|
224
|
+
- VcQuickActions - panel button is optional
|
|
225
|
+
|
|
226
|
+
### v1.9.2(2023-09-12)
|
|
227
|
+
- add text color to the theme
|
|
228
|
+
- adapt VcMenuItem to desktop
|
|
229
|
+
- add selected option for item and subitem
|
|
230
|
+
- add flavor for desktop, to control desktop behaviors
|
|
231
|
+
- background should be transparent
|
|
232
|
+
- use theme text color for text and icons
|
|
233
|
+
- add hover and selected styling for dark background
|
|
234
|
+
- VcQuickActions added
|
|
235
|
+
- VcSmallQuickAction added
|
|
236
|
+
- VcLargeQuickAction added
|
|
237
|
+
- VcGroupedItems - add horizontal/vertical layout by prop
|
|
238
|
+
- VcFocusArea - added additional size
|
|
239
|
+
|
|
240
|
+
### v1.9.1(2023-09-05)
|
|
241
|
+
- address technical issue related to package init
|
|
242
|
+
|
|
243
|
+
### v1.9.0(2023-09-05)
|
|
244
|
+
- VcSearchLayout added
|
|
245
|
+
- VcGroupedItems - added ability to use one slot name to format all titles or items
|
|
246
|
+
- dsHighlight is added - allows highlighting of a certain phrase
|
|
247
|
+
- VcDetailItem - add icon size
|
|
248
|
+
- VcTabs - fix active tab bug when swiping left/right
|
|
249
|
+
- VcTextField - add "min" & "max" support for type="number"
|
|
250
|
+
|
|
251
|
+
### v1.8.2(2023-08-27)
|
|
252
|
+
- VcClientItem - Change the order of matter and contact
|
|
253
|
+
- VcTextArea - Add keydown.enter support
|
|
254
|
+
- VcBadge - fix a RTL issue
|
|
255
|
+
- VcCheckbox - fix bug - click on tooltip (mobile) won't change the checkbox state
|
|
256
|
+
|
|
257
|
+
### v1.8.1(2023-08-23)
|
|
258
|
+
- VcExpansionCard fix wrap
|
|
259
|
+
|
|
260
|
+
### v1.8.0(2023-08-23)
|
|
261
|
+
- VcSystemAlert added for desktop layout
|
|
262
|
+
- VcCheckbox - isSingleLine prop, for longer label then it's container, the label will be truncated and the full label will be shown in a tooltip
|
|
263
|
+
- VcAccountMenu added
|
|
264
|
+
- VcDivider added
|
|
265
|
+
|
|
266
|
+
### v1.7.2(2023-08-14)
|
|
267
|
+
- VcSelectField - Fix tooltip
|
|
268
|
+
|
|
269
|
+
### v1.7.1(2023-07-26)
|
|
270
|
+
- Correct the header design in VcModalContainer and VcModalHeader
|
|
271
|
+
- Handle YML files that are loaded as strings
|
|
272
|
+
- VcMenu and VcDropdown - use without activator
|
|
273
|
+
|
|
274
|
+
### v1.7.0(2023-07-12)
|
|
275
|
+
- VcSummary - add component
|
|
276
|
+
- VcSelectField - set disabled text color
|
|
277
|
+
- VcPageHeader - added subtitle action
|
|
278
|
+
- VcLink - set url prop as optional
|
|
279
|
+
- SvgIcons - added campaign trigger icons
|
|
280
|
+
|
|
281
|
+
### v1.6.2(2023-07-10)
|
|
282
|
+
- VcDropdown - add closeOnContentClick prop
|
|
283
|
+
- VcSidepaneHeader - support rtl, back button color, css fixes
|
|
284
|
+
- Export the VcInfiniteScroll component
|
|
285
|
+
- remove loading of material design icons - we want to use svg icons instead
|
|
286
|
+
- VcMenuItem - change the expand icon to svg icon
|
|
287
|
+
|
|
288
|
+
### v1.6.1(2023-07-06)
|
|
289
|
+
- VcPoweredBy- Change logo location and asset
|
|
290
|
+
|
|
291
|
+
### v1.6.0(2023-07-04)
|
|
292
|
+
- VcClientItem - add component
|
|
293
|
+
- VcDetailItem - add component
|
|
294
|
+
- VcTimeline - add component
|
|
295
|
+
- VcTimelineRecord - add component
|
|
296
|
+
- Entity Sidepane - add example of usage
|
|
297
|
+
- VcEntityStatus - add component
|
|
298
|
+
- VcServiceItem - add component
|
|
299
|
+
- VcAccordion - add item.button prop
|
|
300
|
+
- VcSidepaneHeader - add component
|
|
301
|
+
|
|
302
|
+
### v1.5.23(2023-06-18)
|
|
303
|
+
- VcBottomNav - Fix bug - selected tab should get secondary color
|
|
304
|
+
- VcTopMenuBar - Fix bug - tob-bar should get branded text color (instead of white)
|
|
305
|
+
|
|
306
|
+
### v1.5.22(2023-05-18)
|
|
307
|
+
- VcBottomNav - Avoid pointer events on selected tab
|
|
308
|
+
|
|
309
|
+
### v1.5.21(2023-05-17)
|
|
310
|
+
- VcTextField - Add append slot
|
|
311
|
+
|
|
312
|
+
### v1.5.20(2023-05-11)
|
|
313
|
+
- VcBadge - Add optional size, fix error in storybook
|
|
314
|
+
- VcBottomNav - css fix
|
|
315
|
+
|
|
316
|
+
### v1.5.19(2023-05-04)
|
|
317
|
+
- VcBottomNav - css fix
|
|
318
|
+
- VcTopMenuBar - move event from icon to actionableText title
|
|
319
|
+
- VcCard - add ripple and set default to false
|
|
320
|
+
|
|
321
|
+
### v1.5.18(2023-04-24)
|
|
322
|
+
- VcInputPopover - add title description
|
|
323
|
+
- VcInputBottomSheet - add title description
|
|
324
|
+
|
|
325
|
+
### v1.5.17(2023-04-23)
|
|
326
|
+
- VcBottomNav - css fixes - margins & icons color
|
|
327
|
+
- VcMenuItem - css fixes
|
|
328
|
+
- VcMenuItemsGroup - css fixes
|
|
329
|
+
|
|
330
|
+
### v1.5.16(2023-04-16)
|
|
331
|
+
- VcTooltip - add maxWidth prop
|
|
332
|
+
- VcCheckbox - add tooltip slot
|
|
333
|
+
|
|
334
|
+
### v1.5.15(2023-04-02)
|
|
335
|
+
- VcBadge - added standalone option and flavor
|
|
336
|
+
|
|
337
|
+
### v1.5.14(2023-03-30)
|
|
338
|
+
- VcActionList - added custom action title slot
|
|
339
|
+
|
|
340
|
+
### v1.5.13(2023-03-30)
|
|
341
|
+
- VcTopMenuBar - Fix badge location
|
|
342
|
+
- VcTopMenuBar - Fix logo height
|
|
343
|
+
- VcAlert - add 'app' type
|
|
344
|
+
- VcAlert - add inline action
|
|
345
|
+
- VcActionList - removed conditional rendering from icon
|
|
346
|
+
|
|
347
|
+
### v1.5.12(2023-03-29)
|
|
348
|
+
- vcMenuItem - add badge option to sub items
|
|
349
|
+
|
|
350
|
+
### v1.5.11(2023-03-27)
|
|
351
|
+
- VcListEntity - fix width of text
|
|
352
|
+
- VcTopMenuBar - Add badge support to main buttons
|
|
353
|
+
- VcTopMenuBar - fix RTL arrow direction related bug
|
|
354
|
+
|
|
355
|
+
### v1.5.10(2023-03-21)
|
|
356
|
+
- VcTopMenuBar - fix bug to align items to the start
|
|
357
|
+
- VcTopMenuBar - change height to 59px
|
|
358
|
+
- VcTopMenuBar - change icon to 20px and button to 32px
|
|
359
|
+
- VcProfileIndication - add option to hide the right arrow
|
|
360
|
+
|
|
361
|
+
### v1.5.9(2023-03-19)
|
|
362
|
+
- VcTopMenuBar - fix bug to close bottom menu when item clicked
|
|
363
|
+
- VcTopMenuBar - fix bug to get branding colors
|
|
364
|
+
|
|
365
|
+
### v1.5.8(2023-03-19)
|
|
366
|
+
- VcCheckbox - add error state, fix indeterminate state
|
|
367
|
+
- vcBottomNav - allow no selected tabs, fixed issue with label size when dynamic slot present
|
|
368
|
+
|
|
369
|
+
### v1.5.7(2023-03-07)
|
|
370
|
+
- VcSelectField - fix click outside not working in mobile
|
|
371
|
+
|
|
372
|
+
### v1.5.6(2023-03-02)
|
|
373
|
+
- VcTopMenuBar - alignment fix
|
|
374
|
+
|
|
375
|
+
### v1.5.5(2023-03-01)
|
|
376
|
+
- VcPoweredBy - alignment fix
|
|
377
|
+
- VcMenuItemsGroup - added named slots
|
|
378
|
+
- VcTopMenuBar - emitted actions changed
|
|
379
|
+
|
|
380
|
+
### v1.5.4(2023-02-28)
|
|
381
|
+
- VcTextArea - bug fix
|
|
382
|
+
|
|
383
|
+
### v1.5.3(2023-02-26)
|
|
384
|
+
- VcProfileIndication
|
|
385
|
+
- VcPoweredBy
|
|
386
|
+
- VcMenuItemsGroup - css bug fix
|
|
387
|
+
|
|
388
|
+
### v1.5.3(2023-02-26)
|
|
389
|
+
- VcTopMenuBar - top menu bar component for mobile
|
|
390
|
+
- VcLoader - add a linear mode
|
|
391
|
+
- VcLoader - change the default color to 'secondary'
|
|
392
|
+
|
|
393
|
+
### v1.5.2(2023-02-21)
|
|
394
|
+
- VcGalleryList - to pass binded item
|
|
395
|
+
|
|
396
|
+
### v1.5.1(2023-02-20)
|
|
397
|
+
- make additional-colors available
|
|
398
|
+
- VcMenuItemsGroup - change location in storybook components hierarchy
|
|
399
|
+
|
|
400
|
+
### v1.5.0(2023-02-19)
|
|
401
|
+
- VcMenuItemsGroup - added new component
|
|
402
|
+
- VcMenuItem - added data to event & small css additions
|
|
403
|
+
|
|
404
|
+
### v1.4.2(2023-02-19)
|
|
405
|
+
- manage avatar colors in additional-colors.scss
|
|
406
|
+
|
|
407
|
+
### v1.4.1(2023-02-15)
|
|
408
|
+
- VcPageHeader - fix bug with 'buttons' slot not showing
|
|
409
|
+
|
|
410
|
+
### v1.4.0(2023-02-12)
|
|
411
|
+
- VcPageHeader - the save button will not appear by default, add ability to control the button icon
|
|
412
|
+
- VcChip - avatar margin fix
|
|
413
|
+
- VcAccordion - adjust style and add option to gap and grey background
|
|
414
|
+
- VcActionList - data-qa for items added
|
|
415
|
+
- VcBottomNav - add component
|
|
416
|
+
- VcGroupItems - change spaces between group to gap and not margin
|
|
417
|
+
- design fixes
|
|
418
|
+
|
|
419
|
+
### v1.3.20(2023-01-30)
|
|
420
|
+
- VcPageHeader - edit mode
|
|
421
|
+
- VcPageHeader - subtitle appended link added
|
|
422
|
+
- VcActionList - added append slot within menu
|
|
423
|
+
- VcUpsellBlock - fix bug - support long text on dialog buttons
|
|
424
|
+
|
|
425
|
+
### v1.3.18(2023-01-25)
|
|
426
|
+
- VcFilterPanel - fix css for rtl
|
|
427
|
+
|
|
428
|
+
### v1.3.17(2023-01-22)
|
|
429
|
+
- VcPageHeader - ui update for buttonLabel
|
|
430
|
+
|
|
431
|
+
### v1.3.16(2023-01-19)
|
|
432
|
+
- VcWizard - support bubbling error event in a content step
|
|
433
|
+
|
|
434
|
+
### v1.3.15(2023-01-16)
|
|
435
|
+
- VcPageHeader - add buttonPrependIcon prop
|
|
436
|
+
- VcMenuItem - added
|
|
437
|
+
|
|
438
|
+
### v1.3.14(2023-01-10)
|
|
439
|
+
- VcPageHeader - chip added
|
|
440
|
+
- VcPageHeader - button added
|
|
441
|
+
|
|
442
|
+
### v1.3.13(2023-01-09)
|
|
443
|
+
- VcSelectField - Optionally use icomoon icons
|
|
444
|
+
- VcChipList - variable number of rows, variable item height, optional item 'close'
|
|
445
|
+
- VcChip - optionally displays avatar
|
|
446
|
+
- VcFilterPanel - add header/scrolling content/footer structure
|
|
447
|
+
- VcActionBar - migrate component
|
|
448
|
+
- VcTabs - when in limited height container, header is sticky, and only the content scrolls
|
|
449
|
+
- VcEntityList - add component
|
|
450
|
+
- VcAccordion - add item data to slot
|
|
451
|
+
- VcLayout - add ability to use ref
|
|
452
|
+
- VcDropdown - add white background
|
|
453
|
+
|
|
454
|
+
### v1.3.12(2023-01-01)
|
|
455
|
+
- VcActionList - offset-y
|
|
456
|
+
- VcSelectField - Optionally prepend icons to labels, click-outside implemented, arrow rotation
|
|
457
|
+
|
|
458
|
+
### v1.3.11(2022-12-26)
|
|
459
|
+
- VcChip - support for the color blind, by showing the invalid icon for every invalid chip
|
|
460
|
+
|
|
461
|
+
### v1.3.10(2022-12-18)
|
|
462
|
+
- VcUpsellBlock - fix bug - support long text on the main button
|
|
463
|
+
- VcRadioGroup - fix radio with tooltip with custom content
|
|
464
|
+
|
|
465
|
+
### v1.3.9(2022-12-12)
|
|
466
|
+
- VcModalHeader - modify close icon in header
|
|
467
|
+
- VcChip - thin design
|
|
468
|
+
- VcAccordion - added new component
|
|
469
|
+
- VcColorPicker - css fix
|
|
470
|
+
|
|
471
|
+
### v1.3.8(2022-11-27)
|
|
472
|
+
- Resolve click-outside collision with vuetify directive by the same name
|
|
473
|
+
|
|
474
|
+
### v1.3.7(2022-11-22)
|
|
475
|
+
- VcGalleryItem - brought back selected/disabled functionality
|
|
476
|
+
|
|
477
|
+
### v1.3.6(2022-11-21)
|
|
478
|
+
- VcGalleryItem - emit previewItem computed property
|
|
479
|
+
- VcGalleryList - pass description property
|
|
480
|
+
|
|
481
|
+
### v1.3.5(2022-11-21)
|
|
482
|
+
- VcColorPicker - bug fix
|
|
483
|
+
- Dropdown - fix overflow-x bug
|
|
484
|
+
- VcModalHeader - default title will be one line max, longer text will get ellipsis
|
|
485
|
+
|
|
486
|
+
### v1.3.4(2022-11-17)
|
|
487
|
+
- VcLink - can get any icon
|
|
488
|
+
- VcCheckbox - fix bug with redundant margin
|
|
489
|
+
- VcCheckbox - add white bg to the unselected checkbox
|
|
490
|
+
- VcGalleryItem - design updated
|
|
491
|
+
- VcGalleryList - design updated
|
|
492
|
+
- VcMenu - added
|
|
493
|
+
- VcDropdown - added
|
|
494
|
+
- VcGroupedItems - added
|
|
495
|
+
- VcSideNav - uses VcGroupedItems
|
|
496
|
+
- fix bug in translation mechanism - add fallback to English
|
|
497
|
+
- VcColorPicker - added
|
|
498
|
+
|
|
499
|
+
### v1.3.3(2022-11-13)
|
|
500
|
+
- VcRadioGroup - add support for horizontal layout
|
|
501
|
+
- VcTooltip - add support for close delay
|
|
502
|
+
- VcBottomActions - emit close event on click outside
|
|
503
|
+
- VcTextField - add autofocus support
|
|
504
|
+
- VcTextField - add keydown.enter support
|
|
505
|
+
- VcFilterPanel - add header variant
|
|
506
|
+
- VcActionList - added header to
|
|
507
|
+
|
|
508
|
+
- ### v1.3.2(2022-11-06)
|
|
509
|
+
- VcGalleryItem - fix ui on small desktop
|
|
510
|
+
- VcChip - added 'selected' state
|
|
511
|
+
|
|
512
|
+
### v1.3.1(2022-10-30)
|
|
513
|
+
- VcGalleryItem - add 'selected' indication
|
|
514
|
+
- VcGalleryItem - add ability to disable
|
|
515
|
+
- VcRadio and VcRadioGroup - add ability to disable
|
|
516
|
+
|
|
517
|
+
### v1.3.0(2022-10-25)
|
|
518
|
+
- Adding SideNav layout
|
|
519
|
+
- Adding centered layout
|
|
520
|
+
- Adding VcPageHeader
|
|
521
|
+
- Adding VcBreadcrumbs
|
|
522
|
+
- Ability to disable VcLink
|
|
523
|
+
- modal container can show close button on flavor input
|
|
524
|
+
- upsell dialog fix dimension issue
|
|
525
|
+
|
|
526
|
+
### v1.2.3 (2022-10-03)
|
|
527
|
+
- VcMiniBanner - added new component
|
|
528
|
+
- VcSearchPicker - removed redundant event emission from pointer
|
|
529
|
+
- VcGalleryItem - added new component
|
|
530
|
+
- VcGalleryList - added new component
|
|
531
|
+
|
|
532
|
+
### v1.2.2 (2022-09-19)
|
|
533
|
+
- VcTextField - fix alignment
|
|
534
|
+
- VcSideNav
|
|
535
|
+
- VcIcon - fix color prop
|
|
536
|
+
|
|
537
|
+
### v1.2.1 (2022-09-08)
|
|
538
|
+
- VcDocItem - added fileSize prop, event object added to emit
|
|
539
|
+
- SvgIcons - added viewBox attribute on doc_Sheet
|
|
540
|
+
|
|
541
|
+
### v1.2.0 (2022-09-08)
|
|
542
|
+
- VcChipList - added new component
|
|
543
|
+
- VcChip - added slot
|
|
544
|
+
|
|
545
|
+
### v1.1.10 (2022-09-07)
|
|
546
|
+
- VcTabs - fix scrollbar issue
|
|
547
|
+
|
|
548
|
+
### v1.1.9 (2022-09-07)
|
|
549
|
+
- Adding VcTabs component
|
|
550
|
+
|
|
551
|
+
### v1.1.8 (2022-09-05)
|
|
552
|
+
- VcInputModal - added closeOnEsc prop, passed to VcModalContainer
|
|
553
|
+
- VcModalContainer - added closeOnEsc prop, passed to VcModalWrapper
|
|
554
|
+
- VcModalWrapper - added closeOnEsc prop, used as condition for esc keydown event
|
|
555
|
+
- VcSearchPicker - use secondary brand hues
|
|
556
|
+
- VcSearchPicker - keep menu open if focusing the text input
|
|
557
|
+
|
|
558
|
+
### v1.1.7 (2022-09-04)
|
|
559
|
+
- VcDocItem - added svg as an image type
|
|
560
|
+
- VcSearchPicker - caret and pointer color
|
|
561
|
+
- VcSearchPicker - add menu custom class name prop
|
|
562
|
+
- VcSearchPicker - use brand colors
|
|
563
|
+
|
|
564
|
+
### v1.1.6 (2022-08-28)
|
|
565
|
+
- VcDocItem - added 'xlsx' as a spreadsheet format
|
|
566
|
+
- VcDocItem - added max width
|
|
567
|
+
- VcSearchPicker - add background color to input
|
|
568
|
+
|
|
569
|
+
### v1.1.5 (2022-08-24)
|
|
570
|
+
- VcDraggableList - remove hover from mobile
|
|
571
|
+
|
|
572
|
+
### v1.1.4 (2022-08-21)
|
|
573
|
+
- Adding composition and slots examples
|
|
574
|
+
- VcModalFooter - added disabled option to VcButton
|
|
575
|
+
|
|
576
|
+
### v1.1.3 (2022-08-21)
|
|
577
|
+
- VcDraggableList - add story with slot and fix icon size
|
|
578
|
+
|
|
579
|
+
### v1.1.2 (2022-08-16)
|
|
580
|
+
- VcModalHeader - add right button icon
|
|
581
|
+
- VcList
|
|
582
|
+
- VcBaseListItem
|
|
583
|
+
- VcMobilePicker - new mobile picker pattern based on VcList
|
|
584
|
+
- VcTextField - add appendIcon and readonly properties + CSS
|
|
585
|
+
- VcInputModal - add showFooter + CSS
|
|
586
|
+
- VcModalContainer - remove the auto height on the VcModalContainerContent class
|
|
587
|
+
- VcDraggableList - added component
|
|
588
|
+
- VcTextField - fix label alignment
|
|
589
|
+
- VcWizard - add dynamic step names and description
|
|
590
|
+
- VcTextField - add google address autocomplete
|
|
591
|
+
- VcAvatar - fix image path prop
|
|
592
|
+
|
|
593
|
+
### 1.1.1 (2022-08-11)
|
|
594
|
+
- Update translations
|
|
595
|
+
|
|
596
|
+
### 1.1.0 (2022-08-08)
|
|
597
|
+
- VcDocItem - implemented uploaded and corrupted states
|
|
598
|
+
- VcStepperContent - add link color under the description
|
|
599
|
+
- VcWizard - BREAKING CHANGE: v-model current-step fixes
|
|
600
|
+
- VcSearchPicker - added component
|
|
601
|
+
|
|
602
|
+
### 1.0.7 (2022-07-26)
|
|
603
|
+
- VcEmptyState - change color for button ghost
|
|
604
|
+
|
|
605
|
+
### 1.0.6 BREAKING CHANGES (2022-07-24)
|
|
606
|
+
- Split variables.scss into vuetify-variables.scss and variables.scss
|
|
607
|
+
- Consuming project changes required
|
|
608
|
+
|
|
609
|
+
### 0.6.27 (2022-07-17)
|
|
610
|
+
- VcButton - add ghost mode. fix storybook props inherit
|
|
611
|
+
- VcEmptyState - add ability to choose ghost mode btn
|
|
612
|
+
- VcDocItem - added document formats
|
|
613
|
+
- VcAutoComplete, VcTextArea, VcTextField - remove branding color when not needed
|
|
614
|
+
|
|
615
|
+
### 0.6.26 (2022-07-03)
|
|
616
|
+
- VcDocItem - component added to ds
|
|
617
|
+
- VcTimeSince
|
|
618
|
+
- VcSwitch - add option to show label before switch
|
|
619
|
+
- Translations with parameters
|
|
620
|
+
|
|
621
|
+
### 0.6.25 (2022-06-23)
|
|
622
|
+
- VcInputPopover - add click outside will not close the popover support
|
|
623
|
+
|
|
624
|
+
### 0.6.24 (2022-06-14)
|
|
625
|
+
- VcInputBottomSheet - add switch support
|
|
626
|
+
|
|
627
|
+
### 0.6.23 (2022-06-13)
|
|
628
|
+
- VcWizard - css fix
|
|
629
|
+
|
|
630
|
+
### 0.6.22 (2022-05-31)
|
|
631
|
+
- VcRadioGroup - fix tooltip slots
|
|
632
|
+
|
|
633
|
+
### 0.6.21 (2022-05-16)
|
|
634
|
+
- VcRadioGroup - create
|
|
635
|
+
- VcRadio - create
|
|
636
|
+
- VcTooltip - add slots and fallback icon as an activator
|
|
637
|
+
|
|
638
|
+
### 0.6.20 (2022-05-16)
|
|
639
|
+
- VcStepperContent fix height
|
|
640
|
+
- VcInputPopover - add toggle to header
|
|
641
|
+
|
|
642
|
+
### 0.6.19 (2022-05-10)
|
|
643
|
+
- VcSegmentedControl added
|
|
644
|
+
|
|
645
|
+
### 0.6.18 (2022-05-02)
|
|
646
|
+
- VcListbox - add validator
|
|
647
|
+
|
|
648
|
+
### 0.6.17 (2022-04-27)
|
|
649
|
+
- VcListbox - improve CSS
|
|
650
|
+
|
|
651
|
+
### 0.6.16 (2022-04-27)
|
|
652
|
+
- VcListbox - add a search bar option
|
|
653
|
+
|
|
654
|
+
### 0.6.15 (2022-04-25)
|
|
655
|
+
- VcTooltip - opacity 100%
|
|
656
|
+
- VcDropzone - fix active styles
|
|
657
|
+
- VcSelectField - add error-messages, add tooltip nudge
|
|
658
|
+
- VcTextField - add tooltip nudge
|
|
659
|
+
- VcLink - add click action
|
|
660
|
+
- VcSwitch - fix clickable icons
|
|
661
|
+
- VcSearchBar
|
|
662
|
+
|
|
663
|
+
### 0.6.14 (2022-03-21)
|
|
664
|
+
- VcDropzone - component added
|
|
665
|
+
- VcTextField - add prefix and error-messages
|
|
666
|
+
- VcConfirmModal - fix for rtl button position
|
|
667
|
+
|
|
668
|
+
### 0.6.13 (2022-03-14)
|
|
669
|
+
- Updated localization files
|
|
670
|
+
|
|
671
|
+
### 0.6.12 (2022-03-14)
|
|
672
|
+
- VcSelectField - fix border colors for some variations
|
|
673
|
+
|
|
674
|
+
### 0.6.11 (2022-03-13)
|
|
675
|
+
- VcListbox - small fix for distinguishing data qa on the list
|
|
676
|
+
|
|
677
|
+
### 0.6.10 (2022-03-06)
|
|
678
|
+
- VcModalContainer - fix for overflow-x scroll
|
|
679
|
+
|
|
680
|
+
### 0.6.9 (2022-03-02)
|
|
681
|
+
- VcButton - fix for button flavor
|
|
682
|
+
|
|
683
|
+
### 0.6.8 (2022-03-02)
|
|
684
|
+
- VcTextArea - add fixed-height state
|
|
685
|
+
- VcPopover - fix corners radius
|
|
686
|
+
- VcUpsellBlock - background overflow bug fix
|
|
687
|
+
- VcLink - add target as prop
|
|
688
|
+
- VcModalContainer - add xl size
|
|
689
|
+
|
|
690
|
+
### 0.6.7 (2022-03-01)
|
|
691
|
+
- VcButton - fix for color flavor
|
|
692
|
+
|
|
693
|
+
### 0.6.6 (2022-03-01)
|
|
694
|
+
- VcAvatar - support the 0 color id
|
|
695
|
+
- VcBanner - fix background to be branded
|
|
696
|
+
|
|
697
|
+
### 0.6.4 (2022-02-28)
|
|
698
|
+
- VcButton - add flavor prop
|
|
699
|
+
- VcBanner - Change component design
|
|
700
|
+
|
|
701
|
+
### 0.6.3 (2022-02-23)
|
|
702
|
+
- VcListbox - performance improve
|
|
703
|
+
|
|
704
|
+
### 0.6.2 (2022-02-22)
|
|
705
|
+
- VcListbox - minor fix
|
|
706
|
+
|
|
707
|
+
### 0.6.1 (2022-02-21)
|
|
708
|
+
- VcTextField - add tooltip, placeholder
|
|
709
|
+
- VcUpsellBlock - css fixes
|
|
710
|
+
|
|
711
|
+
### 0.6.0 (2022-02-20)
|
|
712
|
+
- VcModalHeader - add no close button new style
|
|
713
|
+
- VcPopover - add white background color
|
|
714
|
+
- VcActionList - fix icon size
|
|
715
|
+
- VcListbox - fix clicking not responding on the edges of the labels
|
|
716
|
+
- VcListbox - use v-list-item-group to get the full "checked" array
|
|
717
|
+
- VcListbox - tooltip option for a disabled item
|
|
718
|
+
- VcUpsellBlock
|
|
719
|
+
|
|
720
|
+
### 0.5.0 (2022-02-15)
|
|
721
|
+
- VcButton - add outlined and prepend default icon.
|
|
722
|
+
- VcBottomSheet
|
|
723
|
+
- VcInputBottomSheet
|
|
724
|
+
- VcModalHeader - add close button option
|
|
725
|
+
- VcLink - add cursor pointer
|
|
726
|
+
- VcModalHeader - add description
|
|
727
|
+
- VcPopover
|
|
728
|
+
- VcInputPopover
|
|
729
|
+
- VcBadge - update parameters, add test, enrich the story book
|
|
730
|
+
- VcWizard fix content height
|
|
731
|
+
- VcExpansionCard fix color
|
|
732
|
+
|
|
733
|
+
|
|
734
|
+
### 0.4.0 (2022-02-08)
|
|
735
|
+
- Added VcBadge component
|
|
736
|
+
- fix icon name in VcActionList
|
|
737
|
+
- add parameters to VcTextArea
|
|
738
|
+
- add button the ability to be link
|
|
739
|
+
- VcLink - add secondary
|
|
740
|
+
- VcLink - add prepend icon
|
|
741
|
+
- VcLink - change text context to label
|
|
742
|
+
- SvgIcons - rename chevron_left to chevron_right
|
|
743
|
+
- SvgIcons - add trash, copy, chevron_left
|
|
744
|
+
|
|
745
|
+
### 0.3.17 (2022-02-06)
|
|
746
|
+
- VcLink - add secondary
|
|
747
|
+
- VcLink - add prepend icon
|
|
748
|
+
- VcLink - change text context to label
|
|
749
|
+
- SvgIcons - rename chevron_left to chevron_right
|
|
750
|
+
- SvgIcons - add trash, copy, chevron_left
|
|
751
|
+
|
|
752
|
+
### 0.3.16 (2022-01-31)
|
|
753
|
+
- Center image in VcImage
|
|
754
|
+
- bug fix in VcBanner
|
|
755
|
+
- Bug fix in VcImage
|
|
756
|
+
- VcChip
|
|
757
|
+
- fix expansion card content slot to have padding
|
|
758
|
+
- text-area auto grow
|
|
759
|
+
|
|
760
|
+
### 0.3.15 (2022-01-24)
|
|
761
|
+
- rename wizard event to move forward
|
|
762
|
+
- move breakpoint from mixin to wizard component
|
|
763
|
+
- modify expansion card content slot to have padding
|
|
764
|
+
|
|
765
|
+
### 0.3.14 (2022-01-24)
|
|
766
|
+
- add the ability to use image path or object in all relevant places
|
|
767
|
+
- add VcImage to facilitate use of different types of images and SVGs
|
|
768
|
+
- add title to wizard stepsBar
|
|
769
|
+
|
|
770
|
+
### 0.3.12 (2022-01-18)
|
|
771
|
+
- add animation to shadow for hover on card
|
|
772
|
+
- fix border radius on action list
|
|
773
|
+
- fix v-model value in VcListEntity and VcExpansionCard
|
|
774
|
+
- added boolean useOffset prop on VcInputModal, VcNoticeModal, VcConfirmProminentModal
|
|
775
|
+
- VcChecklistItem
|
|
776
|
+
- VcListbox
|
|
777
|
+
- Add option to disable the tooltip on VcTooltip
|
|
778
|
+
- Add option to show the avatar on black & white
|
|
779
|
+
- Add option to remove the avatar border
|
|
780
|
+
|
|
781
|
+
### 0.2.10 (2022-01-13)
|
|
782
|
+
- small fixes on VcActions
|
|
783
|
+
- add icon option for switch component
|
|
784
|
+
- VcExpansionCard
|
|
785
|
+
- VcListEntity
|
|
786
|
+
|
|
787
|
+
### 0.2.9 (2022-01-12)
|
|
788
|
+
- update design on list item
|
|
789
|
+
- add loading option for confirm modal
|
|
790
|
+
|
|
791
|
+
### 0.2.4 (2022-01-05)
|
|
792
|
+
- adding svg images to vue object
|
|
793
|
+
- move VcSvg to global components
|
|
794
|
+
|
|
795
|
+
### 0.2.3 (2022-01-03)
|
|
796
|
+
- bug fix related to $ds
|
|
797
|
+
|
|
798
|
+
### 0.2.2 (2022-01-03)
|
|
799
|
+
- VcStepsBar
|
|
800
|
+
- VcMobileWizardProgress
|
|
801
|
+
- VcProgressCircular
|
|
802
|
+
- Separate init of i18n for easier unit testing in consuming project
|
|
803
|
+
|
|
804
|
+
### 0.2.1 (2021-12-29)
|
|
805
|
+
- adding mastercard and visa to icon
|
|
806
|
+
|
|
807
|
+
### 0.2.0 (2021-12-29)
|
|
808
|
+
- Adding VcEmptyState
|
|
809
|
+
- Adding VcLink
|
|
810
|
+
- Adding VcFocusArea
|
|
811
|
+
- Migrate the VcListItem component from FG
|
|
812
|
+
- Migrate the VcGroupHeader component from FG
|
|
813
|
+
- Adding VcEmptyState
|
|
814
|
+
- Adding VcLink
|
|
815
|
+
- update for VcButton - added pill (rounded) prop
|
|
816
|
+
- Migrate VcFilterPanel component from FG
|
|
817
|
+
- Migrate VcInfiniteScroll component from FG
|
|
818
|
+
- Add translation utility
|
|
819
|
+
- update VcToast
|
|
820
|
+
|
|
821
|
+
### 0.1.5 (2021-12-07)
|
|
822
|
+
- update for VcAlert - added inline state
|
|
823
|
+
- update for VcCard - update all design and add test and story
|
|
824
|
+
- simplify the process of adding svg icons
|
|
825
|
+
- Migrate the VcCheckbox component from FG
|
|
826
|
+
- add disabled css for VcButton
|
|
827
|
+
|
|
828
|
+
## 0.1.4 (2021-11-28)
|
|
829
|
+
- VcConfirmModal - added support for loader in modal buttons
|
|
830
|
+
- VcConfirmModal, VcModalContainer, VcModalWrapper - added support to add or remove the offset class
|
|
831
|
+
|
|
832
|
+
## 0.1.2 (2021-11-21)
|
|
833
|
+
### Added components
|
|
834
|
+
- VcActionsList
|
|
835
|
+
- VcBottomActions
|
|
836
|
+
- VcActions - A wrapper for VcActionsList and VcBottomActions that chooses which one to display, depending if it is used in desktop or mobile
|
|
837
|
+
- VcTooltip
|
|
838
|
+
- VcIconWithTooltip
|
|
839
|
+
|
|
840
|
+
### Added utilities
|
|
841
|
+
- util/colorUtil.js - utility functions commonly used for setting the theme
|