@kaizen/design-tokens 7.2.1 → 8.0.1

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 CHANGED
@@ -3,6 +3,43 @@
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
+ ## [8.0.1](https://github.com/cultureamp/kaizen-design-system/compare/@kaizen/design-tokens@8.0.0...@kaizen/design-tokens@8.0.1) (2022-04-27)
7
+
8
+ **Note:** Version bump only for package @kaizen/design-tokens
9
+
10
+
11
+
12
+
13
+
14
+ # [8.0.0](https://github.com/cultureamp/kaizen-design-system/compare/@kaizen/design-tokens@7.2.2...@kaizen/design-tokens@8.0.0) (2022-04-13)
15
+
16
+
17
+ ### Features
18
+
19
+ * remove elm related files, styles and config from Kaizen ([#2686](https://github.com/cultureamp/kaizen-design-system/issues/2686)) ([2fdf913](https://github.com/cultureamp/kaizen-design-system/commit/2fdf913dd4221d10e91cea2bb88208faf958efcc))
20
+
21
+
22
+ ### BREAKING CHANGES
23
+
24
+ * * remove .elm files
25
+ * remove Elm specific .scss files
26
+ * remove Elm specific package folders
27
+ * remove Elm config and devDependencies on Elm
28
+ * remove Elm specific classes and declarations from modal stylesheets
29
+ * update documentation on Elm
30
+
31
+
32
+
33
+
34
+
35
+ ## [7.2.2](https://github.com/cultureamp/kaizen-design-system/compare/@kaizen/design-tokens@7.2.1...@kaizen/design-tokens@7.2.2) (2022-04-03)
36
+
37
+ **Note:** Version bump only for package @kaizen/design-tokens
38
+
39
+
40
+
41
+
42
+
6
43
  ## [7.2.1](https://github.com/cultureamp/kaizen-design-system/compare/@kaizen/design-tokens@7.2.0...@kaizen/design-tokens@7.2.1) (2022-04-01)
7
44
 
8
45
 
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": "7.2.1",
4
+ "version": "8.0.1",
5
5
  "homepage": "https://github.com/cultureamp/kaizen-design-system/tree/master/packages/design-tokens",
6
6
  "repository": {
7
7
  "type": "git",
@@ -18,7 +18,6 @@
18
18
  "src",
19
19
  "react",
20
20
  "dist",
21
- "elm",
22
21
  "!**/*.spec.*",
23
22
  "!docs"
24
23
  ],
@@ -38,12 +37,12 @@
38
37
  "prepublish": "yarn build:json && yarn build:less && yarn build:sass && yarn build:ts"
39
38
  },
40
39
  "devDependencies": {
41
- "@types/lodash.flatmap": "^4.5.6",
40
+ "@types/lodash.flatmap": "^4.5.7",
42
41
  "@types/react-highlight": "^0.12.5",
43
42
  "@types/yargs": "^16.0.4",
44
43
  "json-to-flat-sass": "^1.0.0",
45
44
  "lodash.flatmap": "^4.5.0",
46
- "postcss": "^8.4.8",
45
+ "postcss": "^8.4.12",
47
46
  "prettier": "*",
48
47
  "react-highlight": "^0.14.0",
49
48
  "react-intersection-observer": "^8.32.5",
@@ -53,12 +52,12 @@
53
52
  },
54
53
  "dependencies": {
55
54
  "@types/color-string": "^1.5.2",
56
- "@types/lodash.kebabcase": "^4.1.6",
55
+ "@types/lodash.kebabcase": "^4.1.7",
57
56
  "color-string": "^1.8.2",
58
57
  "lodash.kebabcase": "^4.1.1"
59
58
  },
60
59
  "peerDependencies": {
61
60
  "react": ">=16 || ^17.0.0"
62
61
  },
63
- "gitHead": "624478a185450e7590f6f104b81b2c8feb5bb76e"
62
+ "gitHead": "a27b6f658c32687b6363cc51057b2966d41b79c1"
64
63
  }
@@ -1,29 +0,0 @@
1
- module Kaizen.Theme exposing (Theme(..), defaultTheme, themeDecoder)
2
-
3
- import Json.Decode as Decode exposing (Decoder)
4
-
5
-
6
- type Theme
7
- = Heart
8
- | Zen
9
-
10
-
11
- defaultTheme =
12
- Heart
13
-
14
-
15
- themeDecoder : Decoder Theme
16
- themeDecoder =
17
- Decode.string
18
- |> Decode.map
19
- (\themeString ->
20
- case themeString of
21
- "zen" ->
22
- Zen
23
-
24
- "heart" ->
25
- Heart
26
-
27
- _ ->
28
- defaultTheme
29
- )