@transferwise/neptune-tokens 8.20.4 → 8.22.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.
Files changed (41) hide show
  1. package/breakpoints.cjs +13 -0
  2. package/breakpoints.css +22 -0
  3. package/breakpoints.d.cts +11 -0
  4. package/breakpoints.d.mts +11 -0
  5. package/breakpoints.less +30 -0
  6. package/breakpoints.mjs +12 -0
  7. package/colors-base.css +1 -1
  8. package/colors-base.less +1 -1
  9. package/index.cjs +3 -0
  10. package/index.d.cts +2 -0
  11. package/index.d.mts +2 -0
  12. package/index.mjs +2 -0
  13. package/package.json +27 -7
  14. package/themes/business/tokens.css +2 -1
  15. package/themes/business/tokens.less +2 -1
  16. package/themes/business--bright-green/tokens.css +2 -1
  17. package/themes/business--bright-green/tokens.less +2 -1
  18. package/themes/business--dark/tokens.css +2 -1
  19. package/themes/business--dark/tokens.less +2 -1
  20. package/themes/business--forest-green/tokens.css +2 -1
  21. package/themes/business--forest-green/tokens.less +2 -1
  22. package/themes/dark/tokens.css +2 -1
  23. package/themes/dark/tokens.less +2 -1
  24. package/themes/light/tokens.css +2 -1
  25. package/themes/light/tokens.less +2 -1
  26. package/themes/navy/tokens.css +2 -1
  27. package/themes/navy/tokens.less +2 -1
  28. package/themes/personal/tokens.css +3 -65
  29. package/themes/personal/tokens.less +2 -1
  30. package/themes/personal--bright-green/tokens.css +3 -65
  31. package/themes/personal--bright-green/tokens.less +2 -1
  32. package/themes/personal--dark/tokens.css +3 -65
  33. package/themes/personal--dark/tokens.less +2 -1
  34. package/themes/personal--forest-green/tokens.css +3 -65
  35. package/themes/personal--forest-green/tokens.less +2 -1
  36. package/themes/platform/tokens.css +2 -1
  37. package/themes/platform/tokens.less +2 -1
  38. package/themes/platform--forest-green/tokens.css +2 -1
  39. package/themes/platform--forest-green/tokens.less +2 -1
  40. package/tokens.css +2 -1
  41. package/tokens.less +2 -1
@@ -0,0 +1,13 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ //#region dist/breakpoints.ts
3
+ let Breakpoint = /* @__PURE__ */ function(Breakpoint) {
4
+ Breakpoint[Breakpoint["EXTRA_SMALL"] = 320] = "EXTRA_SMALL";
5
+ Breakpoint[Breakpoint["SMALL"] = 600] = "SMALL";
6
+ Breakpoint[Breakpoint["MEDIUM"] = 840] = "MEDIUM";
7
+ Breakpoint[Breakpoint["LARGE"] = 1160] = "LARGE";
8
+ /** @deprecated use LARGE */
9
+ Breakpoint[Breakpoint["EXTRA_LARGE"] = 1160] = "EXTRA_LARGE";
10
+ return Breakpoint;
11
+ }({});
12
+ //#endregion
13
+ exports.Breakpoint = Breakpoint;
@@ -0,0 +1,22 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ * Generated on Wed, 13 May 2026 12:45:11 GMT
4
+ */
5
+
6
+ @custom-media --screen-400-zoom (width <= 320px);
7
+
8
+ @custom-media --screen-xs (width > 320px);
9
+ @custom-media --screen-xs-max (width < 600px);
10
+ @custom-media --screen-sm (width >= 600px);
11
+ @custom-media --screen-sm-max (width < 840px);
12
+ @custom-media --screen-md (width >= 840px);
13
+ @custom-media --screen-md-max (width < 1160px);
14
+ @custom-media --screen-lg (width >= 1160px);
15
+ /* @deprecated use --screen-md-max */
16
+ @custom-media --screen-lg-max (width < 1160px);
17
+ /* @deprecated use --screen-lg */
18
+ @custom-media --screen-xl (width >= 1160px);
19
+
20
+ @custom-media --screen-xs-sm (320px < width < 600px);
21
+ @custom-media --screen-sm-md (600px <= width < 840px);
22
+ @custom-media --screen-md-lg (840px <= width < 1160px);
@@ -0,0 +1,11 @@
1
+ //#region dist/breakpoints.d.ts
2
+ declare enum Breakpoint {
3
+ EXTRA_SMALL = 320,
4
+ SMALL = 600,
5
+ MEDIUM = 840,
6
+ LARGE = 1160,
7
+ /** @deprecated use LARGE */
8
+ EXTRA_LARGE = 1160
9
+ }
10
+ //#endregion
11
+ export { Breakpoint };
@@ -0,0 +1,11 @@
1
+ //#region dist/breakpoints.d.ts
2
+ declare enum Breakpoint {
3
+ EXTRA_SMALL = 320,
4
+ SMALL = 600,
5
+ MEDIUM = 840,
6
+ LARGE = 1160,
7
+ /** @deprecated use LARGE */
8
+ EXTRA_LARGE = 1160
9
+ }
10
+ //#endregion
11
+ export { Breakpoint };
@@ -0,0 +1,30 @@
1
+
2
+ // Do not edit directly, this file was auto-generated.
3
+ // Generated on Wed, 13 May 2026 12:45:11 GMT
4
+
5
+ // @deprecated Use @screen-xs-min
6
+ @screen-xs: 320px;
7
+ @screen-xs-min: 320px;
8
+ @screen-xs-max: 599.98px;
9
+
10
+ // @deprecated Use @screen-sm-min
11
+ @screen-sm: 600px;
12
+ @screen-sm-min: 600px;
13
+ @screen-sm-max: 839.98px;
14
+
15
+ // @deprecated Use @screen-md-min
16
+ @screen-md: 840px;
17
+ @screen-md-min: 840px;
18
+ @screen-md-max: 1159.98px;
19
+
20
+ // @deprecated Use @screen-lg-min
21
+ @screen-lg: 1160px;
22
+ @screen-lg-min: 1160px;
23
+ // @deprecated Use @screen-lg-min
24
+ @screen-lg-max: 1159.98px;
25
+
26
+ // @deprecated Use @screen-lg-min
27
+ @screen-xl: 1160px;
28
+ // @deprecated use @screen-lg-min
29
+ @screen-xl-min: 1160px;
30
+
@@ -0,0 +1,12 @@
1
+ //#region dist/breakpoints.ts
2
+ let Breakpoint = /* @__PURE__ */ function(Breakpoint) {
3
+ Breakpoint[Breakpoint["EXTRA_SMALL"] = 320] = "EXTRA_SMALL";
4
+ Breakpoint[Breakpoint["SMALL"] = 600] = "SMALL";
5
+ Breakpoint[Breakpoint["MEDIUM"] = 840] = "MEDIUM";
6
+ Breakpoint[Breakpoint["LARGE"] = 1160] = "LARGE";
7
+ /** @deprecated use LARGE */
8
+ Breakpoint[Breakpoint["EXTRA_LARGE"] = 1160] = "EXTRA_LARGE";
9
+ return Breakpoint;
10
+ }({});
11
+ //#endregion
12
+ export { Breakpoint };
package/colors-base.css CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly, this file was auto-generated.
3
- * Generated on Tue, 31 Mar 2026 13:02:10 GMT
3
+ * Generated on Wed, 13 May 2026 12:45:11 GMT
4
4
  */
5
5
 
6
6
  :root {
package/colors-base.less CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly, this file was auto-generated.
3
- // Generated on Tue, 31 Mar 2026 13:02:10 GMT
3
+ // Generated on Wed, 13 May 2026 12:45:11 GMT
4
4
 
5
5
  @color-base-blue-light: #00b9ff;
6
6
  @color-base-blue-mid: #00a2dd;
package/index.cjs ADDED
@@ -0,0 +1,3 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ const require_breakpoints = require("./breakpoints.cjs");
3
+ exports.Breakpoint = require_breakpoints.Breakpoint;
package/index.d.cts ADDED
@@ -0,0 +1,2 @@
1
+ import { Breakpoint } from "./breakpoints.cjs";
2
+ export { Breakpoint };
package/index.d.mts ADDED
@@ -0,0 +1,2 @@
1
+ import { Breakpoint } from "./breakpoints.mjs";
2
+ export { Breakpoint };
package/index.mjs ADDED
@@ -0,0 +1,2 @@
1
+ import { Breakpoint } from "./breakpoints.mjs";
2
+ export { Breakpoint };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@transferwise/neptune-tokens",
3
- "version": "8.20.4",
3
+ "version": "8.22.0",
4
4
  "description": "Design tokens for the Neptune Design System",
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",
@@ -9,20 +9,39 @@
9
9
  "type": "git",
10
10
  "url": "git+https://github.com/transferwise/neptune-tokens.git"
11
11
  },
12
+ "main": "index.cjs",
13
+ "module": "index.mjs",
14
+ "types": "index.d.mts",
15
+ "exports": {
16
+ ".": {
17
+ "types": {
18
+ "import": "./index.d.mts",
19
+ "require": "./index.d.cts"
20
+ },
21
+ "import": "./index.mjs",
22
+ "require": "./index.cjs"
23
+ },
24
+ "./*": "./*"
25
+ },
12
26
  "files": [
13
27
  "*.css",
28
+ "*.cjs",
29
+ "*.mjs",
30
+ "*.d.mts",
31
+ "*.d.cts",
14
32
  "*.json",
15
33
  "*.less",
16
34
  "themes/**/*"
17
35
  ],
18
36
  "devDependencies": {
19
37
  "@changesets/changelog-github": "^0.6.0",
20
- "@changesets/cli": "^2.30.0",
38
+ "@changesets/cli": "^2.31.0",
21
39
  "chroma-js": "^3.2.0",
22
40
  "cz-conventional-changelog": "3.3.0",
23
- "less": "^4.6.4",
24
- "prettier": "^3.8.1",
25
- "style-dictionary": "^5.4.0"
41
+ "prettier": "^3.8.3",
42
+ "style-dictionary": "^5.4.0",
43
+ "tsdown": "^0.22.0",
44
+ "typescript": "^6.0.2"
26
45
  },
27
46
  "config": {
28
47
  "commitizen": {
@@ -43,8 +62,9 @@
43
62
  },
44
63
  "scripts": {
45
64
  "test": "echo 'No tests ✅'",
46
- "build": "node src/config && pnpm run inject-viewport-theme",
47
- "inject-viewport-theme": "chmod +x ./scripts/inject-viewport-theme.sh && ./scripts/inject-viewport-theme.sh",
65
+ "build:ts": "tsdown",
66
+ "build:sd": "node src/config",
67
+ "build": "rm -rf ./dist && pnpm run build:sd && pnpm run build:ts",
48
68
  "changeset": "changeset",
49
69
  "release": "changeset publish"
50
70
  }
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly, this file was auto-generated.
3
- * Generated on Tue, 31 Mar 2026 13:02:11 GMT
3
+ * Generated on Wed, 13 May 2026 12:45:12 GMT
4
4
  */
5
5
 
6
6
  .np-theme-business {
@@ -94,6 +94,7 @@
94
94
  --radius-small: 10px;
95
95
  --radius-medium: 16px;
96
96
  --radius-large: 24px;
97
+ --radius-xlarge: 32px;
97
98
  --size-4: 4px;
98
99
  --size-5: 5px;
99
100
  --size-8: 8px;
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly, this file was auto-generated.
3
- // Generated on Tue, 31 Mar 2026 13:02:11 GMT
3
+ // Generated on Wed, 13 May 2026 12:45:12 GMT
4
4
 
5
5
  @color-bright-yellow: #ffeb69;
6
6
  @color-bright-orange: #ffc091;
@@ -92,6 +92,7 @@
92
92
  @radius-small: 10px;
93
93
  @radius-medium: 16px;
94
94
  @radius-large: 24px;
95
+ @radius-xlarge: 32px;
95
96
  @size-4: 4px;
96
97
  @size-5: 5px;
97
98
  @size-8: 8px;
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly, this file was auto-generated.
3
- * Generated on Tue, 31 Mar 2026 13:02:11 GMT
3
+ * Generated on Wed, 13 May 2026 12:45:12 GMT
4
4
  */
5
5
 
6
6
  .np-theme-business--bright-green {
@@ -94,6 +94,7 @@
94
94
  --radius-small: 10px;
95
95
  --radius-medium: 16px;
96
96
  --radius-large: 24px;
97
+ --radius-xlarge: 32px;
97
98
  --size-4: 4px;
98
99
  --size-5: 5px;
99
100
  --size-8: 8px;
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly, this file was auto-generated.
3
- // Generated on Tue, 31 Mar 2026 13:02:11 GMT
3
+ // Generated on Wed, 13 May 2026 12:45:12 GMT
4
4
 
5
5
  @color-bright-yellow: #ffeb69;
6
6
  @color-bright-orange: #ffc091;
@@ -92,6 +92,7 @@
92
92
  @radius-small: 10px;
93
93
  @radius-medium: 16px;
94
94
  @radius-large: 24px;
95
+ @radius-xlarge: 32px;
95
96
  @size-4: 4px;
96
97
  @size-5: 5px;
97
98
  @size-8: 8px;
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly, this file was auto-generated.
3
- * Generated on Tue, 31 Mar 2026 13:02:11 GMT
3
+ * Generated on Wed, 13 May 2026 12:45:12 GMT
4
4
  */
5
5
 
6
6
  .np-theme-business--dark {
@@ -94,6 +94,7 @@
94
94
  --radius-small: 10px;
95
95
  --radius-medium: 16px;
96
96
  --radius-large: 24px;
97
+ --radius-xlarge: 32px;
97
98
  --size-4: 4px;
98
99
  --size-5: 5px;
99
100
  --size-8: 8px;
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly, this file was auto-generated.
3
- // Generated on Tue, 31 Mar 2026 13:02:11 GMT
3
+ // Generated on Wed, 13 May 2026 12:45:12 GMT
4
4
 
5
5
  @color-bright-yellow: #ffeb69;
6
6
  @color-bright-orange: #ffc091;
@@ -92,6 +92,7 @@
92
92
  @radius-small: 10px;
93
93
  @radius-medium: 16px;
94
94
  @radius-large: 24px;
95
+ @radius-xlarge: 32px;
95
96
  @size-4: 4px;
96
97
  @size-5: 5px;
97
98
  @size-8: 8px;
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly, this file was auto-generated.
3
- * Generated on Tue, 31 Mar 2026 13:02:11 GMT
3
+ * Generated on Wed, 13 May 2026 12:45:12 GMT
4
4
  */
5
5
 
6
6
  .np-theme-business--forest-green {
@@ -94,6 +94,7 @@
94
94
  --radius-small: 10px;
95
95
  --radius-medium: 16px;
96
96
  --radius-large: 24px;
97
+ --radius-xlarge: 32px;
97
98
  --size-4: 4px;
98
99
  --size-5: 5px;
99
100
  --size-8: 8px;
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly, this file was auto-generated.
3
- // Generated on Tue, 31 Mar 2026 13:02:11 GMT
3
+ // Generated on Wed, 13 May 2026 12:45:12 GMT
4
4
 
5
5
  @color-bright-yellow: #ffeb69;
6
6
  @color-bright-orange: #ffc091;
@@ -92,6 +92,7 @@
92
92
  @radius-small: 10px;
93
93
  @radius-medium: 16px;
94
94
  @radius-large: 24px;
95
+ @radius-xlarge: 32px;
95
96
  @size-4: 4px;
96
97
  @size-5: 5px;
97
98
  @size-8: 8px;
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly, this file was auto-generated.
3
- * Generated on Tue, 31 Mar 2026 13:02:10 GMT
3
+ * Generated on Wed, 13 May 2026 12:45:11 GMT
4
4
  */
5
5
 
6
6
  .np-theme-dark {
@@ -53,6 +53,7 @@
53
53
  --radius-small: 10px;
54
54
  --radius-medium: 16px;
55
55
  --radius-large: 24px;
56
+ --radius-xlarge: 32px;
56
57
  --size-4: 4px;
57
58
  --size-5: 5px;
58
59
  --size-8: 8px;
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly, this file was auto-generated.
3
- // Generated on Tue, 31 Mar 2026 13:02:10 GMT
3
+ // Generated on Wed, 13 May 2026 12:45:11 GMT
4
4
 
5
5
  @color-content-primary: #e2e6e8;
6
6
  @color-content-secondary: #c9cbce;
@@ -51,6 +51,7 @@
51
51
  @radius-small: 10px;
52
52
  @radius-medium: 16px;
53
53
  @radius-large: 24px;
54
+ @radius-xlarge: 32px;
54
55
  @size-4: 4px;
55
56
  @size-5: 5px;
56
57
  @size-8: 8px;
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly, this file was auto-generated.
3
- * Generated on Tue, 31 Mar 2026 13:02:10 GMT
3
+ * Generated on Wed, 13 May 2026 12:45:11 GMT
4
4
  */
5
5
 
6
6
  .np-theme-light {
@@ -53,6 +53,7 @@
53
53
  --radius-small: 10px;
54
54
  --radius-medium: 16px;
55
55
  --radius-large: 24px;
56
+ --radius-xlarge: 32px;
56
57
  --size-4: 4px;
57
58
  --size-5: 5px;
58
59
  --size-8: 8px;
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly, this file was auto-generated.
3
- // Generated on Tue, 31 Mar 2026 13:02:10 GMT
3
+ // Generated on Wed, 13 May 2026 12:45:11 GMT
4
4
 
5
5
  @color-content-primary: #37517e;
6
6
  @color-content-secondary: #5d7079;
@@ -51,6 +51,7 @@
51
51
  @radius-small: 10px;
52
52
  @radius-medium: 16px;
53
53
  @radius-large: 24px;
54
+ @radius-xlarge: 32px;
54
55
  @size-4: 4px;
55
56
  @size-5: 5px;
56
57
  @size-8: 8px;
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly, this file was auto-generated.
3
- * Generated on Tue, 31 Mar 2026 13:02:10 GMT
3
+ * Generated on Wed, 13 May 2026 12:45:11 GMT
4
4
  */
5
5
 
6
6
  .np-theme-navy {
@@ -53,6 +53,7 @@
53
53
  --radius-small: 10px;
54
54
  --radius-medium: 16px;
55
55
  --radius-large: 24px;
56
+ --radius-xlarge: 32px;
56
57
  --size-4: 4px;
57
58
  --size-5: 5px;
58
59
  --size-8: 8px;
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly, this file was auto-generated.
3
- // Generated on Tue, 31 Mar 2026 13:02:10 GMT
3
+ // Generated on Wed, 13 May 2026 12:45:11 GMT
4
4
 
5
5
  @color-content-primary: #ffffff;
6
6
  @color-content-secondary: #c9cbce;
@@ -51,6 +51,7 @@
51
51
  @radius-small: 10px;
52
52
  @radius-medium: 16px;
53
53
  @radius-large: 24px;
54
+ @radius-xlarge: 32px;
54
55
  @size-4: 4px;
55
56
  @size-5: 5px;
56
57
  @size-8: 8px;
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly, this file was auto-generated.
3
- * Generated on Tue, 31 Mar 2026 13:02:11 GMT
3
+ * Generated on Wed, 13 May 2026 12:45:12 GMT
4
4
  */
5
5
 
6
6
  .np-theme-personal {
@@ -93,6 +93,7 @@
93
93
  --radius-small: 10px;
94
94
  --radius-medium: 16px;
95
95
  --radius-large: 24px;
96
+ --radius-xlarge: 32px;
96
97
  --size-4: 4px;
97
98
  --size-5: 5px;
98
99
  --size-8: 8px;
@@ -179,67 +180,4 @@
179
180
  --font-weight-black: 900;
180
181
  --font-family-regular: 'Inter', Helvetica, Arial, sans-serif;
181
182
  --font-family-display: 'Wise Sans', 'Inter', sans-serif;
182
- }/**
183
- * We added new shape theme into tokens to prevent breaking changes. This is a temporary measure.
184
- *
185
- * We delete this hack once all consumers no longer import tokens in their projects (e.g Next.js app.tsx or Storybook's preivew.tsx)
186
- */
187
- @media (max-width: 320px) {
188
- .np-theme-personal {
189
- --delta: 2;
190
- --size-4: calc(4px / var(--delta));
191
- --size-5: calc(5px / var(--delta));
192
- --size-8: calc(8px / var(--delta));
193
- --size-10: calc(10px / var(--delta));
194
- --size-12: calc(12px / var(--delta));
195
- --size-14: calc(14px / var(--delta));
196
- --size-16: calc(16px / var(--delta));
197
- --size-24: calc(24px / var(--delta));
198
- --size-32: calc(32px / var(--delta));
199
- --size-40: calc(40px / var(--delta));
200
- --size-48: calc(48px / var(--delta));
201
- --size-52: calc(52px / var(--delta));
202
- --size-56: calc(56px / var(--delta));
203
- --size-60: calc(60px / var(--delta));
204
- --size-64: calc(64px / var(--delta));
205
- --size-72: calc(72px / var(--delta));
206
- --size-80: calc(80px / var(--delta));
207
- --size-88: calc(88px / var(--delta));
208
- --size-96: calc(96px / var(--delta));
209
- --size-104: calc(104px / var(--delta));
210
- --size-112: calc(112px / var(--delta));
211
- --size-120: calc(120px / var(--delta));
212
- --size-126: calc(126px / var(--delta));
213
- --size-128: calc(128px / var(--delta));
214
- --size-146: calc(146px / var(--delta));
215
- --size-154: calc(154px / var(--delta));
216
- --size-x-small: calc(24px / var(--delta));
217
- --size-small: calc(32px / var(--delta));
218
- --size-medium: calc(40px / var(--delta));
219
- --size-large: calc(48px / var(--delta));
220
- --size-x-large: calc(56px / var(--delta));
221
- --size-2x-large: calc(72px / var(--delta));
222
- --space-content-horizontal: calc(16px / var(--delta));
223
- --space-small: calc(16px / var(--delta));
224
- --space-medium: calc(32px / var(--delta));
225
- --space-large: calc(40px / var(--delta));
226
- --space-x-large: calc(56px / var(--delta));
227
- --padding-x-small: var(--size-8);
228
- --padding-small: var(--size-16);
229
- --padding-medium: var(--size-24);
230
- --padding-large: var(--size-32);
231
- --input-height-base: var(--size-32);
232
- --input-height-large: var(--input-height-small);
233
- --input-padding: var(--input-padding-small);
234
- --input-padding-large: var(--input-padding-small);
235
- --input-group-addon-padding: var(--input-group-addon-sm-padding);
236
- --input-group-addon-lg-padding: var(--input-group-addon-sm-padding);
237
- --btn-height: var(--input-height-base);
238
- --btn-lg-height: var(--btn-height);
239
- --btn-sm-height: var(--btn-height);
240
- --btn-padding: var(--input-padding);
241
- --btn-sm-padding: var(--btn-padding);
242
- --btn-lg-padding: var(--btn-padding);
243
- --dropdown-link-padding: var(--size-12) var(--size-16);
244
- }
245
- }
183
+ }
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly, this file was auto-generated.
3
- // Generated on Tue, 31 Mar 2026 13:02:11 GMT
3
+ // Generated on Wed, 13 May 2026 12:45:12 GMT
4
4
 
5
5
  @color-bright-yellow: #ffeb69;
6
6
  @color-bright-orange: #ffc091;
@@ -91,6 +91,7 @@
91
91
  @radius-small: 10px;
92
92
  @radius-medium: 16px;
93
93
  @radius-large: 24px;
94
+ @radius-xlarge: 32px;
94
95
  @size-4: 4px;
95
96
  @size-5: 5px;
96
97
  @size-8: 8px;
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly, this file was auto-generated.
3
- * Generated on Tue, 31 Mar 2026 13:02:11 GMT
3
+ * Generated on Wed, 13 May 2026 12:45:12 GMT
4
4
  */
5
5
 
6
6
  .np-theme-personal--bright-green {
@@ -93,6 +93,7 @@
93
93
  --radius-small: 10px;
94
94
  --radius-medium: 16px;
95
95
  --radius-large: 24px;
96
+ --radius-xlarge: 32px;
96
97
  --size-4: 4px;
97
98
  --size-5: 5px;
98
99
  --size-8: 8px;
@@ -179,67 +180,4 @@
179
180
  --font-weight-black: 900;
180
181
  --font-family-regular: 'Inter', Helvetica, Arial, sans-serif;
181
182
  --font-family-display: 'Wise Sans', 'Inter', sans-serif;
182
- }/**
183
- * We added new shape theme into tokens to prevent breaking changes. This is a temporary measure.
184
- *
185
- * We delete this hack once all consumers no longer import tokens in their projects (e.g Next.js app.tsx or Storybook's preivew.tsx)
186
- */
187
- @media (max-width: 320px) {
188
- .np-theme-personal {
189
- --delta: 2;
190
- --size-4: calc(4px / var(--delta));
191
- --size-5: calc(5px / var(--delta));
192
- --size-8: calc(8px / var(--delta));
193
- --size-10: calc(10px / var(--delta));
194
- --size-12: calc(12px / var(--delta));
195
- --size-14: calc(14px / var(--delta));
196
- --size-16: calc(16px / var(--delta));
197
- --size-24: calc(24px / var(--delta));
198
- --size-32: calc(32px / var(--delta));
199
- --size-40: calc(40px / var(--delta));
200
- --size-48: calc(48px / var(--delta));
201
- --size-52: calc(52px / var(--delta));
202
- --size-56: calc(56px / var(--delta));
203
- --size-60: calc(60px / var(--delta));
204
- --size-64: calc(64px / var(--delta));
205
- --size-72: calc(72px / var(--delta));
206
- --size-80: calc(80px / var(--delta));
207
- --size-88: calc(88px / var(--delta));
208
- --size-96: calc(96px / var(--delta));
209
- --size-104: calc(104px / var(--delta));
210
- --size-112: calc(112px / var(--delta));
211
- --size-120: calc(120px / var(--delta));
212
- --size-126: calc(126px / var(--delta));
213
- --size-128: calc(128px / var(--delta));
214
- --size-146: calc(146px / var(--delta));
215
- --size-154: calc(154px / var(--delta));
216
- --size-x-small: calc(24px / var(--delta));
217
- --size-small: calc(32px / var(--delta));
218
- --size-medium: calc(40px / var(--delta));
219
- --size-large: calc(48px / var(--delta));
220
- --size-x-large: calc(56px / var(--delta));
221
- --size-2x-large: calc(72px / var(--delta));
222
- --space-content-horizontal: calc(16px / var(--delta));
223
- --space-small: calc(16px / var(--delta));
224
- --space-medium: calc(32px / var(--delta));
225
- --space-large: calc(40px / var(--delta));
226
- --space-x-large: calc(56px / var(--delta));
227
- --padding-x-small: var(--size-8);
228
- --padding-small: var(--size-16);
229
- --padding-medium: var(--size-24);
230
- --padding-large: var(--size-32);
231
- --input-height-base: var(--size-32);
232
- --input-height-large: var(--input-height-small);
233
- --input-padding: var(--input-padding-small);
234
- --input-padding-large: var(--input-padding-small);
235
- --input-group-addon-padding: var(--input-group-addon-sm-padding);
236
- --input-group-addon-lg-padding: var(--input-group-addon-sm-padding);
237
- --btn-height: var(--input-height-base);
238
- --btn-lg-height: var(--btn-height);
239
- --btn-sm-height: var(--btn-height);
240
- --btn-padding: var(--input-padding);
241
- --btn-sm-padding: var(--btn-padding);
242
- --btn-lg-padding: var(--btn-padding);
243
- --dropdown-link-padding: var(--size-12) var(--size-16);
244
- }
245
- }
183
+ }
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly, this file was auto-generated.
3
- // Generated on Tue, 31 Mar 2026 13:02:11 GMT
3
+ // Generated on Wed, 13 May 2026 12:45:12 GMT
4
4
 
5
5
  @color-bright-yellow: #ffeb69;
6
6
  @color-bright-orange: #ffc091;
@@ -91,6 +91,7 @@
91
91
  @radius-small: 10px;
92
92
  @radius-medium: 16px;
93
93
  @radius-large: 24px;
94
+ @radius-xlarge: 32px;
94
95
  @size-4: 4px;
95
96
  @size-5: 5px;
96
97
  @size-8: 8px;
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly, this file was auto-generated.
3
- * Generated on Tue, 31 Mar 2026 13:02:11 GMT
3
+ * Generated on Wed, 13 May 2026 12:45:12 GMT
4
4
  */
5
5
 
6
6
  .np-theme-personal--dark {
@@ -93,6 +93,7 @@
93
93
  --radius-small: 10px;
94
94
  --radius-medium: 16px;
95
95
  --radius-large: 24px;
96
+ --radius-xlarge: 32px;
96
97
  --size-4: 4px;
97
98
  --size-5: 5px;
98
99
  --size-8: 8px;
@@ -179,67 +180,4 @@
179
180
  --font-weight-black: 900;
180
181
  --font-family-regular: 'Inter', Helvetica, Arial, sans-serif;
181
182
  --font-family-display: 'Wise Sans', 'Inter', sans-serif;
182
- }/**
183
- * We added new shape theme into tokens to prevent breaking changes. This is a temporary measure.
184
- *
185
- * We delete this hack once all consumers no longer import tokens in their projects (e.g Next.js app.tsx or Storybook's preivew.tsx)
186
- */
187
- @media (max-width: 320px) {
188
- .np-theme-personal {
189
- --delta: 2;
190
- --size-4: calc(4px / var(--delta));
191
- --size-5: calc(5px / var(--delta));
192
- --size-8: calc(8px / var(--delta));
193
- --size-10: calc(10px / var(--delta));
194
- --size-12: calc(12px / var(--delta));
195
- --size-14: calc(14px / var(--delta));
196
- --size-16: calc(16px / var(--delta));
197
- --size-24: calc(24px / var(--delta));
198
- --size-32: calc(32px / var(--delta));
199
- --size-40: calc(40px / var(--delta));
200
- --size-48: calc(48px / var(--delta));
201
- --size-52: calc(52px / var(--delta));
202
- --size-56: calc(56px / var(--delta));
203
- --size-60: calc(60px / var(--delta));
204
- --size-64: calc(64px / var(--delta));
205
- --size-72: calc(72px / var(--delta));
206
- --size-80: calc(80px / var(--delta));
207
- --size-88: calc(88px / var(--delta));
208
- --size-96: calc(96px / var(--delta));
209
- --size-104: calc(104px / var(--delta));
210
- --size-112: calc(112px / var(--delta));
211
- --size-120: calc(120px / var(--delta));
212
- --size-126: calc(126px / var(--delta));
213
- --size-128: calc(128px / var(--delta));
214
- --size-146: calc(146px / var(--delta));
215
- --size-154: calc(154px / var(--delta));
216
- --size-x-small: calc(24px / var(--delta));
217
- --size-small: calc(32px / var(--delta));
218
- --size-medium: calc(40px / var(--delta));
219
- --size-large: calc(48px / var(--delta));
220
- --size-x-large: calc(56px / var(--delta));
221
- --size-2x-large: calc(72px / var(--delta));
222
- --space-content-horizontal: calc(16px / var(--delta));
223
- --space-small: calc(16px / var(--delta));
224
- --space-medium: calc(32px / var(--delta));
225
- --space-large: calc(40px / var(--delta));
226
- --space-x-large: calc(56px / var(--delta));
227
- --padding-x-small: var(--size-8);
228
- --padding-small: var(--size-16);
229
- --padding-medium: var(--size-24);
230
- --padding-large: var(--size-32);
231
- --input-height-base: var(--size-32);
232
- --input-height-large: var(--input-height-small);
233
- --input-padding: var(--input-padding-small);
234
- --input-padding-large: var(--input-padding-small);
235
- --input-group-addon-padding: var(--input-group-addon-sm-padding);
236
- --input-group-addon-lg-padding: var(--input-group-addon-sm-padding);
237
- --btn-height: var(--input-height-base);
238
- --btn-lg-height: var(--btn-height);
239
- --btn-sm-height: var(--btn-height);
240
- --btn-padding: var(--input-padding);
241
- --btn-sm-padding: var(--btn-padding);
242
- --btn-lg-padding: var(--btn-padding);
243
- --dropdown-link-padding: var(--size-12) var(--size-16);
244
- }
245
- }
183
+ }
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly, this file was auto-generated.
3
- // Generated on Tue, 31 Mar 2026 13:02:11 GMT
3
+ // Generated on Wed, 13 May 2026 12:45:12 GMT
4
4
 
5
5
  @color-bright-yellow: #ffeb69;
6
6
  @color-bright-orange: #ffc091;
@@ -91,6 +91,7 @@
91
91
  @radius-small: 10px;
92
92
  @radius-medium: 16px;
93
93
  @radius-large: 24px;
94
+ @radius-xlarge: 32px;
94
95
  @size-4: 4px;
95
96
  @size-5: 5px;
96
97
  @size-8: 8px;
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly, this file was auto-generated.
3
- * Generated on Tue, 31 Mar 2026 13:02:11 GMT
3
+ * Generated on Wed, 13 May 2026 12:45:12 GMT
4
4
  */
5
5
 
6
6
  .np-theme-personal--forest-green {
@@ -93,6 +93,7 @@
93
93
  --radius-small: 10px;
94
94
  --radius-medium: 16px;
95
95
  --radius-large: 24px;
96
+ --radius-xlarge: 32px;
96
97
  --size-4: 4px;
97
98
  --size-5: 5px;
98
99
  --size-8: 8px;
@@ -179,67 +180,4 @@
179
180
  --font-weight-black: 900;
180
181
  --font-family-regular: 'Inter', Helvetica, Arial, sans-serif;
181
182
  --font-family-display: 'Wise Sans', 'Inter', sans-serif;
182
- }/**
183
- * We added new shape theme into tokens to prevent breaking changes. This is a temporary measure.
184
- *
185
- * We delete this hack once all consumers no longer import tokens in their projects (e.g Next.js app.tsx or Storybook's preivew.tsx)
186
- */
187
- @media (max-width: 320px) {
188
- .np-theme-personal {
189
- --delta: 2;
190
- --size-4: calc(4px / var(--delta));
191
- --size-5: calc(5px / var(--delta));
192
- --size-8: calc(8px / var(--delta));
193
- --size-10: calc(10px / var(--delta));
194
- --size-12: calc(12px / var(--delta));
195
- --size-14: calc(14px / var(--delta));
196
- --size-16: calc(16px / var(--delta));
197
- --size-24: calc(24px / var(--delta));
198
- --size-32: calc(32px / var(--delta));
199
- --size-40: calc(40px / var(--delta));
200
- --size-48: calc(48px / var(--delta));
201
- --size-52: calc(52px / var(--delta));
202
- --size-56: calc(56px / var(--delta));
203
- --size-60: calc(60px / var(--delta));
204
- --size-64: calc(64px / var(--delta));
205
- --size-72: calc(72px / var(--delta));
206
- --size-80: calc(80px / var(--delta));
207
- --size-88: calc(88px / var(--delta));
208
- --size-96: calc(96px / var(--delta));
209
- --size-104: calc(104px / var(--delta));
210
- --size-112: calc(112px / var(--delta));
211
- --size-120: calc(120px / var(--delta));
212
- --size-126: calc(126px / var(--delta));
213
- --size-128: calc(128px / var(--delta));
214
- --size-146: calc(146px / var(--delta));
215
- --size-154: calc(154px / var(--delta));
216
- --size-x-small: calc(24px / var(--delta));
217
- --size-small: calc(32px / var(--delta));
218
- --size-medium: calc(40px / var(--delta));
219
- --size-large: calc(48px / var(--delta));
220
- --size-x-large: calc(56px / var(--delta));
221
- --size-2x-large: calc(72px / var(--delta));
222
- --space-content-horizontal: calc(16px / var(--delta));
223
- --space-small: calc(16px / var(--delta));
224
- --space-medium: calc(32px / var(--delta));
225
- --space-large: calc(40px / var(--delta));
226
- --space-x-large: calc(56px / var(--delta));
227
- --padding-x-small: var(--size-8);
228
- --padding-small: var(--size-16);
229
- --padding-medium: var(--size-24);
230
- --padding-large: var(--size-32);
231
- --input-height-base: var(--size-32);
232
- --input-height-large: var(--input-height-small);
233
- --input-padding: var(--input-padding-small);
234
- --input-padding-large: var(--input-padding-small);
235
- --input-group-addon-padding: var(--input-group-addon-sm-padding);
236
- --input-group-addon-lg-padding: var(--input-group-addon-sm-padding);
237
- --btn-height: var(--input-height-base);
238
- --btn-lg-height: var(--btn-height);
239
- --btn-sm-height: var(--btn-height);
240
- --btn-padding: var(--input-padding);
241
- --btn-sm-padding: var(--btn-padding);
242
- --btn-lg-padding: var(--btn-padding);
243
- --dropdown-link-padding: var(--size-12) var(--size-16);
244
- }
245
- }
183
+ }
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly, this file was auto-generated.
3
- // Generated on Tue, 31 Mar 2026 13:02:11 GMT
3
+ // Generated on Wed, 13 May 2026 12:45:12 GMT
4
4
 
5
5
  @color-bright-yellow: #ffeb69;
6
6
  @color-bright-orange: #ffc091;
@@ -91,6 +91,7 @@
91
91
  @radius-small: 10px;
92
92
  @radius-medium: 16px;
93
93
  @radius-large: 24px;
94
+ @radius-xlarge: 32px;
94
95
  @size-4: 4px;
95
96
  @size-5: 5px;
96
97
  @size-8: 8px;
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly, this file was auto-generated.
3
- * Generated on Tue, 31 Mar 2026 13:02:11 GMT
3
+ * Generated on Wed, 13 May 2026 12:45:12 GMT
4
4
  */
5
5
 
6
6
  .np-theme-platform {
@@ -93,6 +93,7 @@
93
93
  --radius-small: 10px;
94
94
  --radius-medium: 16px;
95
95
  --radius-large: 24px;
96
+ --radius-xlarge: 32px;
96
97
  --size-4: 4px;
97
98
  --size-5: 5px;
98
99
  --size-8: 8px;
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly, this file was auto-generated.
3
- // Generated on Tue, 31 Mar 2026 13:02:11 GMT
3
+ // Generated on Wed, 13 May 2026 12:45:12 GMT
4
4
 
5
5
  @color-bright-yellow: #ffeb69;
6
6
  @color-bright-orange: #ffc091;
@@ -91,6 +91,7 @@
91
91
  @radius-small: 10px;
92
92
  @radius-medium: 16px;
93
93
  @radius-large: 24px;
94
+ @radius-xlarge: 32px;
94
95
  @size-4: 4px;
95
96
  @size-5: 5px;
96
97
  @size-8: 8px;
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly, this file was auto-generated.
3
- * Generated on Tue, 31 Mar 2026 13:02:11 GMT
3
+ * Generated on Wed, 13 May 2026 12:45:12 GMT
4
4
  */
5
5
 
6
6
  .np-theme-platform--forest-green {
@@ -93,6 +93,7 @@
93
93
  --radius-small: 10px;
94
94
  --radius-medium: 16px;
95
95
  --radius-large: 24px;
96
+ --radius-xlarge: 32px;
96
97
  --size-4: 4px;
97
98
  --size-5: 5px;
98
99
  --size-8: 8px;
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly, this file was auto-generated.
3
- // Generated on Tue, 31 Mar 2026 13:02:11 GMT
3
+ // Generated on Wed, 13 May 2026 12:45:12 GMT
4
4
 
5
5
  @color-bright-yellow: #ffeb69;
6
6
  @color-bright-orange: #ffc091;
@@ -91,6 +91,7 @@
91
91
  @radius-small: 10px;
92
92
  @radius-medium: 16px;
93
93
  @radius-large: 24px;
94
+ @radius-xlarge: 32px;
94
95
  @size-4: 4px;
95
96
  @size-5: 5px;
96
97
  @size-8: 8px;
package/tokens.css CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly, this file was auto-generated.
3
- * Generated on Tue, 31 Mar 2026 13:02:10 GMT
3
+ * Generated on Wed, 13 May 2026 12:45:11 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -53,6 +53,7 @@
53
53
  --radius-small: 10px;
54
54
  --radius-medium: 16px;
55
55
  --radius-large: 24px;
56
+ --radius-xlarge: 32px;
56
57
  --size-4: 4px;
57
58
  --size-5: 5px;
58
59
  --size-8: 8px;
package/tokens.less CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly, this file was auto-generated.
3
- // Generated on Tue, 31 Mar 2026 13:02:10 GMT
3
+ // Generated on Wed, 13 May 2026 12:45:11 GMT
4
4
 
5
5
  @color-dark-content-primary: #e2e6e8;
6
6
  @color-dark-content-secondary: #c9cbce;
@@ -133,6 +133,7 @@
133
133
  @radius-small: 10px;
134
134
  @radius-medium: 16px;
135
135
  @radius-large: 24px;
136
+ @radius-xlarge: 32px;
136
137
  @size-4: 4px;
137
138
  @size-5: 5px;
138
139
  @size-8: 8px;