@kaizen/design-tokens 7.2.2 → 8.0.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/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.2](https://github.com/cultureamp/kaizen-design-system/compare/@kaizen/design-tokens@8.0.1...@kaizen/design-tokens@8.0.2) (2022-05-02)
7
+
8
+ **Note:** Version bump only for package @kaizen/design-tokens
9
+
10
+
11
+
12
+
13
+
14
+ ## [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)
15
+
16
+ **Note:** Version bump only for package @kaizen/design-tokens
17
+
18
+
19
+
20
+
21
+
22
+ # [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)
23
+
24
+
25
+ ### Features
26
+
27
+ * 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))
28
+
29
+
30
+ ### BREAKING CHANGES
31
+
32
+ * * remove .elm files
33
+ * remove Elm specific .scss files
34
+ * remove Elm specific package folders
35
+ * remove Elm config and devDependencies on Elm
36
+ * remove Elm specific classes and declarations from modal stylesheets
37
+ * update documentation on Elm
38
+
39
+
40
+
41
+
42
+
6
43
  ## [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)
7
44
 
8
45
  **Note:** Version bump only for package @kaizen/design-tokens
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.2",
4
+ "version": "8.0.2",
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,7 +37,7 @@
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",
@@ -46,19 +45,18 @@
46
45
  "postcss": "^8.4.12",
47
46
  "prettier": "*",
48
47
  "react-highlight": "^0.14.0",
49
- "react-intersection-observer": "^8.32.5",
50
48
  "react-map-interaction": "^2.1.0",
51
49
  "ts-node": "^10.4.0",
52
50
  "yargs": "^16.2.0"
53
51
  },
54
52
  "dependencies": {
55
53
  "@types/color-string": "^1.5.2",
56
- "@types/lodash.kebabcase": "^4.1.6",
54
+ "@types/lodash.kebabcase": "^4.1.7",
57
55
  "color-string": "^1.8.2",
58
56
  "lodash.kebabcase": "^4.1.1"
59
57
  },
60
58
  "peerDependencies": {
61
59
  "react": ">=16 || ^17.0.0"
62
60
  },
63
- "gitHead": "1b16bceff3ec58e11130e2b4627f6d77c5bfa22f"
61
+ "gitHead": "fc9223f8a58801d5dff516fc16b38652ee68a71d"
64
62
  }
@@ -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
- )