@sumup-oss/design-tokens 8.1.0 → 8.2.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/dark.css CHANGED
@@ -151,6 +151,7 @@
151
151
  --cui-font-weight-semibold: 560;
152
152
  --cui-font-weight-bold: 630;
153
153
  --cui-letter-spacing: -.01375rem;
154
+ --cui-letter-spacing-tight: -.08rem;
154
155
  --cui-icon-sizes-kilo: 16px;
155
156
  --cui-icon-sizes-mega: 24px;
156
157
  --cui-icon-sizes-giga: 32px;
@@ -788,6 +788,10 @@ export declare const schema: ({
788
788
  name: "--cui-letter-spacing";
789
789
  type: "dimension";
790
790
  deprecation?: undefined;
791
+ } | {
792
+ name: "--cui-letter-spacing-tight";
793
+ type: "dimension";
794
+ deprecation?: undefined;
791
795
  } | {
792
796
  name: "--cui-typography-headline-one-font-size";
793
797
  type: "dimension";
@@ -237,6 +237,7 @@ exports.schema = [
237
237
  { name: '--cui-numeral-s-font-size', type: 'dimension' },
238
238
  { name: '--cui-numeral-s-line-height', type: 'dimension' },
239
239
  { name: '--cui-letter-spacing', type: 'dimension' },
240
+ { name: '--cui-letter-spacing-tight', type: 'dimension' },
240
241
  /* eslint-disable @sumup-oss/circuit-ui/no-deprecated-custom-properties */
241
242
  {
242
243
  name: '--cui-typography-headline-one-font-size',
@@ -68,6 +68,10 @@ export declare const shared: ({
68
68
  name: "--cui-letter-spacing";
69
69
  value: "-0.01375rem";
70
70
  type: "dimension";
71
+ } | {
72
+ name: "--cui-letter-spacing-tight";
73
+ value: "-0.08rem";
74
+ type: "dimension";
71
75
  } | {
72
76
  name: "--cui-icon-sizes-kilo";
73
77
  value: "16px";
@@ -90,6 +90,11 @@ exports.shared = [
90
90
  value: '-0.01375rem',
91
91
  type: 'dimension',
92
92
  },
93
+ {
94
+ name: '--cui-letter-spacing-tight',
95
+ value: '-0.08rem',
96
+ type: 'dimension',
97
+ },
93
98
  /* Icon sizes */
94
99
  {
95
100
  name: '--cui-icon-sizes-kilo',
@@ -788,6 +788,10 @@ export declare const schema: ({
788
788
  name: "--cui-letter-spacing";
789
789
  type: "dimension";
790
790
  deprecation?: undefined;
791
+ } | {
792
+ name: "--cui-letter-spacing-tight";
793
+ type: "dimension";
794
+ deprecation?: undefined;
791
795
  } | {
792
796
  name: "--cui-typography-headline-one-font-size";
793
797
  type: "dimension";
@@ -234,6 +234,7 @@ export const schema = [
234
234
  { name: '--cui-numeral-s-font-size', type: 'dimension' },
235
235
  { name: '--cui-numeral-s-line-height', type: 'dimension' },
236
236
  { name: '--cui-letter-spacing', type: 'dimension' },
237
+ { name: '--cui-letter-spacing-tight', type: 'dimension' },
237
238
  /* eslint-disable @sumup-oss/circuit-ui/no-deprecated-custom-properties */
238
239
  {
239
240
  name: '--cui-typography-headline-one-font-size',
@@ -68,6 +68,10 @@ export declare const shared: ({
68
68
  name: "--cui-letter-spacing";
69
69
  value: "-0.01375rem";
70
70
  type: "dimension";
71
+ } | {
72
+ name: "--cui-letter-spacing-tight";
73
+ value: "-0.08rem";
74
+ type: "dimension";
71
75
  } | {
72
76
  name: "--cui-icon-sizes-kilo";
73
77
  value: "16px";
@@ -87,6 +87,11 @@ export const shared = [
87
87
  value: '-0.01375rem',
88
88
  type: 'dimension',
89
89
  },
90
+ {
91
+ name: '--cui-letter-spacing-tight',
92
+ value: '-0.08rem',
93
+ type: 'dimension',
94
+ },
90
95
  /* Icon sizes */
91
96
  {
92
97
  name: '--cui-icon-sizes-kilo',
package/dynamic.css CHANGED
@@ -151,6 +151,7 @@
151
151
  --cui-font-weight-semibold: 560;
152
152
  --cui-font-weight-bold: 630;
153
153
  --cui-letter-spacing: -.01375rem;
154
+ --cui-letter-spacing-tight: -.08rem;
154
155
  --cui-icon-sizes-kilo: 16px;
155
156
  --cui-icon-sizes-mega: 24px;
156
157
  --cui-icon-sizes-giga: 32px;
package/light.css CHANGED
@@ -151,6 +151,7 @@
151
151
  --cui-font-weight-semibold: 560;
152
152
  --cui-font-weight-bold: 630;
153
153
  --cui-letter-spacing: -.01375rem;
154
+ --cui-letter-spacing-tight: -.08rem;
154
155
  --cui-icon-sizes-kilo: 16px;
155
156
  --cui-icon-sizes-mega: 24px;
156
157
  --cui-icon-sizes-giga: 32px;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sumup-oss/design-tokens",
3
- "version": "8.1.0",
3
+ "version": "8.2.0",
4
4
  "description": "Visual primitives such as typography, color, and spacing that are shared across platforms.",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/es/index.js",