@hopper-ui/tokens 4.4.2 → 4.4.3

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
@@ -1,5 +1,17 @@
1
1
  # @hopper-ui/tokens
2
2
 
3
+ ## 4.4.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 41b0468: Modified the following tokens:
8
+
9
+ **Added**
10
+
11
+ | Token | Category |
12
+ | ------------------------- | ----------------------- |
13
+ | --hop-danger-icon-weakest | Semantic token - colors |
14
+
3
15
  ## 4.4.2
4
16
 
5
17
  ### Patch Changes
package/README.md CHANGED
@@ -11,8 +11,8 @@ View the [user's documentation](https://hopper.workleap.design/).
11
11
 
12
12
  ## 🤝 Contributing
13
13
 
14
- View the [contributor's documentation](https://github.com/gsoft-inc/wl-hopper/blob/main/CONTRIBUTING.md).
14
+ View the [contributor's documentation](https://github.com/workleap/wl-hopper/blob/main/CONTRIBUTING.md).
15
15
 
16
16
  ## License
17
17
 
18
- Copyright © 2023, Workleap. This code is licensed under the Apache License, Version 2.0. You may obtain a copy of this license at https://github.com/gsoft-inc/workleap-license/blob/master/LICENSE.
18
+ Copyright © 2023, Workleap. This code is licensed under the Apache License, Version 2.0. You may obtain a copy of this license at https://github.com/workleap/workleap-license/blob/master/LICENSE.
@@ -20,6 +20,7 @@
20
20
  --hop-danger-icon-weak: var(--hop-amanita-100);
21
21
  --hop-danger-icon-weak-hover: var(--hop-amanita-200);
22
22
  --hop-danger-icon-weak-press: var(--hop-amanita-300);
23
+ --hop-danger-icon-weakest: var(--hop-amanita-100);
23
24
  --hop-danger-surface: var(--hop-amanita-200);
24
25
  --hop-danger-surface-selected: var(--hop-amanita-800);
25
26
  --hop-danger-surface-disabled: var(--hop-amanita-600);
package/dist/tokens.css CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Mon, 27 Jan 2025 16:56:01 GMT
3
+ * Generated on Mon, 03 Mar 2025 18:14:02 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -1157,6 +1157,7 @@
1157
1157
  --hop-danger-surface-disabled: var(--hop-amanita-100);
1158
1158
  --hop-danger-surface-selected: var(--hop-amanita-50);
1159
1159
  --hop-danger-surface: var(--hop-amanita-25);
1160
+ --hop-danger-icon-weakest: var(--hop-amanita-75);
1160
1161
  --hop-danger-icon-weak-press: var(--hop-amanita-600);
1161
1162
  --hop-danger-icon-weak-hover: var(--hop-amanita-500);
1162
1163
  --hop-danger-icon-weak: var(--hop-amanita-300);
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@hopper-ui/tokens",
3
3
  "author": "Workleap",
4
- "version": "4.4.2",
4
+ "version": "4.4.3",
5
5
  "description": "The tokens package.",
6
6
  "license": "Apache-2.0",
7
7
  "repository": {
8
8
  "type": "git",
9
- "url": "git+https://github.com/gsoft-inc/wl-hopper.git",
9
+ "url": "git+https://github.com/workleap/wl-hopper.git",
10
10
  "directory": "packages/tokens"
11
11
  },
12
12
  "keywords": [
@@ -43,6 +43,8 @@
43
43
  "sideEffects": false,
44
44
  "scripts": {
45
45
  "clean:dist": "pnpm dlx rimraf dist",
46
- "build": "tsx src/style-dictionary/build.ts"
46
+ "build": "tsx src/style-dictionary/build.ts",
47
+ "eslint": "eslint . --max-warnings=0 --cache --cache-location node_modules/.cache/eslint",
48
+ "typecheck": "tsc"
47
49
  }
48
50
  }