@spaced-out/ui-design-system 0.0.1 → 0.0.2-beta.2
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/.cspell/custom-words.txt
CHANGED
|
@@ -38,7 +38,7 @@ jobs:
|
|
|
38
38
|
- name: Install dependencies
|
|
39
39
|
run: yarn install
|
|
40
40
|
|
|
41
|
-
# ToDo(Nishant): Activate this once we have tests ready.
|
|
41
|
+
# ToDo(Nishant): Activate this once we have chromatic tests ready.
|
|
42
42
|
#- name: Run tests
|
|
43
43
|
# run: yarn test
|
|
44
44
|
|
|
@@ -53,7 +53,7 @@ jobs:
|
|
|
53
53
|
- name: Bump release version
|
|
54
54
|
if: startsWith(github.event.inputs.release-type, 'pre') != true
|
|
55
55
|
run: |
|
|
56
|
-
yarn build:changelog --
|
|
56
|
+
yarn build:changelog --release-as $RELEASE_TYPE
|
|
57
57
|
echo "RELEASE_TAG=latest" >> $GITHUB_ENV
|
|
58
58
|
env:
|
|
59
59
|
RELEASE_TYPE: ${{ github.event.inputs.release-type }}
|
|
@@ -63,7 +63,7 @@ jobs:
|
|
|
63
63
|
- name: Bump pre-release version
|
|
64
64
|
if: startsWith(github.event.inputs.release-type, 'pre')
|
|
65
65
|
run: |
|
|
66
|
-
yarn build:changelog
|
|
66
|
+
yarn build:changelog --$RELEASE_TYPE beta
|
|
67
67
|
echo "RELEASE_TAG=beta" >> $GITHUB_ENV
|
|
68
68
|
env:
|
|
69
69
|
RELEASE_TYPE: ${{ github.event.inputs.release-type }}
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,32 @@
|
|
|
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.2-beta.2 (2022-11-16)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* textarea scrollbar fix ([53fc94c](https://github.com/Spaced-Out/ui-design-system/commit/53fc94cc58cfe6767f90b255584ad24e28044194))
|
|
11
|
+
|
|
12
|
+
### 0.0.2-beta.1 (2022-11-16)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* added todo block ([f0c3e44](https://github.com/Spaced-Out/ui-design-system/commit/f0c3e440ca349539d5a7bdce9d28a1c1b0be7cdb))
|
|
18
|
+
|
|
19
|
+
### [0.0.2-beta.0](https://github.com/Spaced-Out/ui-design-system/compare/v0.0.1-beta.3...v0.0.2-beta.0) (2022-11-16)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
* automated npm relases through github actions ([dd14a5d](https://github.com/Spaced-Out/ui-design-system/commit/dd14a5d43a56a2b4a91993dff49706182ff2d373))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Bug Fixes
|
|
28
|
+
|
|
29
|
+
* fixed build script ([26e7765](https://github.com/Spaced-Out/ui-design-system/commit/26e77655f9409006a4195ddae695d0ba3746e8c1))
|
|
30
|
+
|
|
5
31
|
### 0.0.1 (2022-11-16)
|
|
6
32
|
|
|
7
33
|
### 0.0.1-beta.3 (2022-11-16)
|
|
@@ -42,10 +42,13 @@
|
|
|
42
42
|
color: colorTextPrimary;
|
|
43
43
|
gap: spaceSmall;
|
|
44
44
|
height: size160;
|
|
45
|
-
padding: spaceXSmall spaceSmall;
|
|
46
45
|
border: borderWidthSecondary solid colorBorderPrimary;
|
|
47
46
|
}
|
|
48
47
|
|
|
48
|
+
.box textarea {
|
|
49
|
+
padding: spaceXSmall spaceSmall;
|
|
50
|
+
}
|
|
51
|
+
|
|
49
52
|
.locked {
|
|
50
53
|
border-style: dashed;
|
|
51
54
|
}
|