@spaced-out/ui-design-system 0.0.6-beta.2 → 0.0.7
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.
|
@@ -22,10 +22,12 @@ jobs:
|
|
|
22
22
|
runs-on: ubuntu-latest
|
|
23
23
|
steps:
|
|
24
24
|
# Checkout project repository
|
|
25
|
+
# Added fetch-depth to fetch complete history of repo. TODO(Nishant): Customize?
|
|
25
26
|
- name: Checkout
|
|
26
27
|
uses: actions/checkout@v3
|
|
27
28
|
with:
|
|
28
29
|
token: ${{ secrets.NPM_PUBLISH_USER_ACCESS_TOKEN }}
|
|
30
|
+
fetch-depth: '0'
|
|
29
31
|
|
|
30
32
|
# Setup Node.js environment
|
|
31
33
|
- name: Setup Node.js
|
package/.storybook/preview.js
CHANGED
|
@@ -68,32 +68,7 @@ export const parameters = {
|
|
|
68
68
|
'Design Tokens',
|
|
69
69
|
'Tokens',
|
|
70
70
|
'Components',
|
|
71
|
-
[
|
|
72
|
-
'Button',
|
|
73
|
-
'Icon',
|
|
74
|
-
'Search Input',
|
|
75
|
-
'Menu',
|
|
76
|
-
'Button Dropdown',
|
|
77
|
-
'Modal',
|
|
78
|
-
'Dialog',
|
|
79
|
-
'Panel',
|
|
80
|
-
'Tooltip',
|
|
81
|
-
'Linear Loader',
|
|
82
|
-
'Circular Loader',
|
|
83
|
-
],
|
|
84
71
|
'Form Components',
|
|
85
|
-
[
|
|
86
|
-
'Input',
|
|
87
|
-
'Textarea',
|
|
88
|
-
'Checkbox',
|
|
89
|
-
'Checkbox Group',
|
|
90
|
-
'Radio Button',
|
|
91
|
-
'Radio Group',
|
|
92
|
-
'Toggle',
|
|
93
|
-
'Dropdown',
|
|
94
|
-
'Typeahead',
|
|
95
|
-
],
|
|
96
|
-
|
|
97
72
|
'*',
|
|
98
73
|
],
|
|
99
74
|
locales: 'en-US',
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.0.7](https://github.com/spaced-out/ui-design-system/compare/v0.0.6...v0.0.7) (2022-11-30)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **docs:** documentation upodate ([#40](https://github.com/spaced-out/ui-design-system/issues/40)) ([1207236](https://github.com/spaced-out/ui-design-system/commit/120723696a4669db12d700c46e59fc73d867c962))
|
|
11
|
+
|
|
12
|
+
### [0.0.6](https://github.com/spaced-out/ui-design-system/compare/v0.0.6-beta.2...v0.0.6) (2022-11-29)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* fetch complete history of repo in publish action ([09ea18b](https://github.com/spaced-out/ui-design-system/commit/09ea18b9df507e1e51a6161e2300c5e09c62bdb4))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* added comment to fetch complete history of repo in publish action ([94e5ae1](https://github.com/spaced-out/ui-design-system/commit/94e5ae146742e6e70c88a8cf428a974e7e8faaf3))
|
|
23
|
+
|
|
5
24
|
### 0.0.6-beta.2 (2022-11-29)
|
|
6
25
|
|
|
7
26
|
|