@kaizen/design-tokens 3.3.4 → 5.0.0
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 +45 -0
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,51 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [5.0.0](https://github.com/cultureamp/kaizen-design-system/compare/@kaizen/design-tokens@3.3.4...@kaizen/design-tokens@5.0.0) (2021-12-02)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Roll forward for ci ([#2339](https://github.com/cultureamp/kaizen-design-system/issues/2339)) ([d65c589](https://github.com/cultureamp/kaizen-design-system/commit/d65c5893352f851179a1c276b4e73534f1442796))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* New InputModal, ConfirmationModal and ContextModal updates ([#2333](https://github.com/cultureamp/kaizen-design-system/issues/2333)) ([a3d09d5](https://github.com/cultureamp/kaizen-design-system/commit/a3d09d52bde448b972e87d40ef92e6214a4db7f7))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### BREAKING CHANGES
|
|
20
|
+
|
|
21
|
+
* Refactor of modals to reflect UI Kit design updates.
|
|
22
|
+
|
|
23
|
+
* New styles for all modals - InputEditModal, ConfirmationModal, ContextModal (previously InformationModal).
|
|
24
|
+
* InformationModal renamed to ContextModal - You will need to update any imports.
|
|
25
|
+
* Deprecated RoadblockModal - use ConfirmationModal instead.
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
# [4.0.0](https://github.com/cultureamp/kaizen-design-system/compare/@kaizen/design-tokens@3.3.4...@kaizen/design-tokens@4.0.0) (2021-12-02)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Features
|
|
35
|
+
|
|
36
|
+
* New InputModal, ConfirmationModal and ContextModal updates ([#2333](https://github.com/cultureamp/kaizen-design-system/issues/2333)) ([a3d09d5](https://github.com/cultureamp/kaizen-design-system/commit/a3d09d52bde448b972e87d40ef92e6214a4db7f7))
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### BREAKING CHANGES
|
|
40
|
+
|
|
41
|
+
* Refactor of modals to reflect UI Kit design updates.
|
|
42
|
+
|
|
43
|
+
* New styles for all modals - InputEditModal, ConfirmationModal, ContextModal (previously InformationModal).
|
|
44
|
+
* InformationModal renamed to ContextModal - You will need to update any imports.
|
|
45
|
+
* Deprecated RoadblockModal - use ConfirmationModal instead.
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
6
51
|
## [3.3.4](https://github.com/cultureamp/kaizen-design-system/compare/@kaizen/design-tokens@3.3.3...@kaizen/design-tokens@3.3.4) (2021-11-30)
|
|
7
52
|
|
|
8
53
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kaizen/design-tokens",
|
|
3
3
|
"description": "Tokens used in the Kaizen Design System",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "5.0.0",
|
|
5
5
|
"homepage": "https://github.com/cultureamp/kaizen-design-system/tree/master/packages/design-tokens",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -19,7 +19,8 @@
|
|
|
19
19
|
"react",
|
|
20
20
|
"dist",
|
|
21
21
|
"elm",
|
|
22
|
-
"!**/*.spec.*"
|
|
22
|
+
"!**/*.spec.*",
|
|
23
|
+
"!docs"
|
|
23
24
|
],
|
|
24
25
|
"types": "dist/**/*.d.ts",
|
|
25
26
|
"main": "dist/index.js",
|
|
@@ -33,7 +34,7 @@
|
|
|
33
34
|
"build:ts": "tsc --project tsconfig.dist.json",
|
|
34
35
|
"build:less": "json-to-flat-sass './tokens/*.json' 'less' --extension 'less' --caseType 'kebab' && prettier less/* --write",
|
|
35
36
|
"build:sass": "json-to-flat-sass './tokens/*.json' 'sass' --extension 'scss' --caseType 'kebab' && prettier sass/* --write",
|
|
36
|
-
"clean": "rimraf '?(docs|react|src|bin)/**/?(*.js
|
|
37
|
+
"clean": "rimraf '?(docs|react|src|bin)/**/?(*.js|*.d.ts)' '?(*.js^|*.js.map|*.d.ts)'",
|
|
37
38
|
"prepublish": "yarn build:json && yarn build:less && yarn build:sass && yarn build:ts"
|
|
38
39
|
},
|
|
39
40
|
"devDependencies": {
|
|
@@ -59,5 +60,5 @@
|
|
|
59
60
|
"peerDependencies": {
|
|
60
61
|
"react": ">=16"
|
|
61
62
|
},
|
|
62
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "b9c8a03c307cceb9fc72f1381091202adc786939"
|
|
63
64
|
}
|