@vcita/design-system 0.6.25-beta.1 → 0.6.27
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 +9 -1
- package/config/locales/ds.en.yml +7 -7
- package/dist/@vcita/design-system.esm.js +1241 -921
- package/dist/@vcita/design-system.min.js +1 -1
- package/dist/@vcita/design-system.ssr.js +1052 -767
- package/init/SvgIcons.js +12 -1
- package/init/initI18n.js +1 -1
- package/package.json +1 -1
- package/src/components/VcAutoComplete/VcAutoComplete.vue +3 -0
- package/src/components/VcButton/VcButton.spec.js +12 -1
- package/src/components/VcButton/VcButton.stories.js +18 -12
- package/src/components/VcButton/VcButton.vue +5 -0
- package/src/components/VcDocItem/VcDocItem.spec.js +142 -0
- package/src/components/VcDocItem/VcDocItem.stories.js +75 -0
- package/src/components/VcDocItem/VcDocItem.vue +165 -0
- package/src/components/VcDocItem/mockData.js +8 -0
- package/src/components/VcEmptyState/VcEmptyState.spec.js +20 -0
- package/src/components/VcEmptyState/VcEmptyState.stories.js +4 -1
- package/src/components/VcEmptyState/VcEmptyState.vue +8 -1
- package/src/components/VcSwitch/VcSwitch.stories.js +18 -2
- package/src/components/VcSwitch/VcSwitch.vue +7 -6
- package/src/components/VcTextArea/VcTextArea.vue +1 -0
- package/src/components/VcTextField/VcTextField.vue +3 -0
- package/src/components/VcTimeSince/VcTimeSince.spec.js +38 -9
- package/src/components/VcTimeSince/VcTimeSince.stories.js +24 -3
- package/src/components/VcTimeSince/VcTimeSince.vue +18 -8
- package/src/components/index.js +2 -0
package/CHANGELOG.MD
CHANGED
|
@@ -5,6 +5,15 @@ Format based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
7
|
### Unreleased changes
|
|
8
|
+
|
|
9
|
+
### 0.6.27 (2022-07-17)
|
|
10
|
+
- VcButton - add ghost mode. fix storybook props inherit
|
|
11
|
+
- VcEmptyState - add ability to choose ghost mode btn
|
|
12
|
+
- VcDocItem - added document formats
|
|
13
|
+
- VcAutoComplete, VcTextArea, VcTextField - remove branding color when not needed
|
|
14
|
+
|
|
15
|
+
### 0.6.26 (2022-07-03)
|
|
16
|
+
- VcDocItem - component added to ds
|
|
8
17
|
- VcTimeSince
|
|
9
18
|
- VcSwitch - add option to show label before switch
|
|
10
19
|
- Translations with parameters
|
|
@@ -26,7 +35,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
26
35
|
- VcRadio - create
|
|
27
36
|
- VcTooltip - add slots and fallback icon as an activator
|
|
28
37
|
|
|
29
|
-
|
|
30
38
|
### 0.6.20 (2022-05-16)
|
|
31
39
|
- VcStepperContent fix height
|
|
32
40
|
- VcInputPopover - add toggle to header
|
package/config/locales/ds.en.yml
CHANGED
|
@@ -18,11 +18,11 @@ en:
|
|
|
18
18
|
search_bar:
|
|
19
19
|
label: Search
|
|
20
20
|
time_since:
|
|
21
|
-
years:
|
|
22
|
-
months:
|
|
23
|
-
days:
|
|
24
|
-
yesterday: Yesterday
|
|
25
|
-
hours:
|
|
26
|
-
minutes:
|
|
27
|
-
now: Just now
|
|
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
28
|
|