@kaizen/design-tokens 7.2.2 → 8.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 CHANGED
@@ -3,6 +3,27 @@
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.0](https://github.com/cultureamp/kaizen-design-system/compare/@kaizen/design-tokens@7.2.2...@kaizen/design-tokens@8.0.0) (2022-04-13)
7
+
8
+
9
+ ### Features
10
+
11
+ * 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))
12
+
13
+
14
+ ### BREAKING CHANGES
15
+
16
+ * * remove .elm files
17
+ * remove Elm specific .scss files
18
+ * remove Elm specific package folders
19
+ * remove Elm config and devDependencies on Elm
20
+ * remove Elm specific classes and declarations from modal stylesheets
21
+ * update documentation on Elm
22
+
23
+
24
+
25
+
26
+
6
27
  ## [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
28
 
8
29
  **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.0",
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
  ],
@@ -60,5 +59,5 @@
60
59
  "peerDependencies": {
61
60
  "react": ">=16 || ^17.0.0"
62
61
  },
63
- "gitHead": "1b16bceff3ec58e11130e2b4627f6d77c5bfa22f"
62
+ "gitHead": "9c18c6ac4f466c3191ff5e12a93e7ce5db77be72"
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
- )