@vcita/design-system 0.6.24 → 0.6.26
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 +10 -1
- package/config/locales/ds.en.yml +9 -0
- package/dist/@vcita/design-system.esm.js +1211 -914
- package/dist/@vcita/design-system.min.js +1 -1
- package/dist/@vcita/design-system.ssr.js +1025 -760
- package/init/SvgIcons.js +6 -1
- package/init/initI18n.js +5 -1
- package/package.json +1 -1
- package/src/components/VcDocItem/VcDocItem.spec.js +124 -0
- package/src/components/VcDocItem/VcDocItem.stories.js +75 -0
- package/src/components/VcDocItem/VcDocItem.vue +152 -0
- package/src/components/VcDocItem/mockData.js +8 -0
- package/src/components/VcInputPopover/VcInputPopover.stories.js +7 -1
- package/src/components/VcInputPopover/VcInputPopover.vue +5 -1
- package/src/components/VcRadio/VcRadio.stories.js +1 -1
- package/src/components/VcRadioGroup/VcRadioGroup.stories.js +1 -1
- package/src/components/VcSwitch/VcSwitch.stories.js +18 -1
- package/src/components/VcSwitch/VcSwitch.vue +23 -3
- package/src/components/VcTimeSince/VcTimeSince.spec.js +115 -0
- package/src/components/VcTimeSince/VcTimeSince.stories.js +50 -0
- package/src/components/VcTimeSince/VcTimeSince.vue +57 -0
- package/src/components/index.js +2 -0
package/CHANGELOG.MD
CHANGED
|
@@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
### Unreleased changes
|
|
8
8
|
|
|
9
|
+
|
|
10
|
+
### 0.6.26 (2022-07-03)
|
|
11
|
+
- VcDocItem - component added to ds
|
|
12
|
+
- VcTimeSince
|
|
13
|
+
- VcSwitch - add option to show label before switch
|
|
14
|
+
- Translations with parameters
|
|
15
|
+
|
|
16
|
+
### 0.6.25 (2022-06-23)
|
|
17
|
+
- VcInputPopover - add click outside will not close the popover support
|
|
18
|
+
|
|
9
19
|
### 0.6.24 (2022-06-14)
|
|
10
20
|
- VcInputBottomSheet - add switch support
|
|
11
21
|
|
|
@@ -20,7 +30,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
20
30
|
- VcRadio - create
|
|
21
31
|
- VcTooltip - add slots and fallback icon as an activator
|
|
22
32
|
|
|
23
|
-
|
|
24
33
|
### 0.6.20 (2022-05-16)
|
|
25
34
|
- VcStepperContent fix height
|
|
26
35
|
- VcInputPopover - add toggle to header
|
package/config/locales/ds.en.yml
CHANGED
|
@@ -17,3 +17,12 @@ en:
|
|
|
17
17
|
default_title: Submit
|
|
18
18
|
search_bar:
|
|
19
19
|
label: Search
|
|
20
|
+
time_since:
|
|
21
|
+
years: '{years} years ago'
|
|
22
|
+
months: '{months} months ago'
|
|
23
|
+
days: '{days} days ago'
|
|
24
|
+
yesterday: 'Yesterday'
|
|
25
|
+
hours: '{hours} hours ago'
|
|
26
|
+
minutes: '{minutes} minutes ago'
|
|
27
|
+
now: 'Just now'
|
|
28
|
+
|