@mittwald/flow-design-tokens 0.2.0-alpha.132 → 0.2.0-alpha.133

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.
@@ -474,6 +474,8 @@
474
474
  --labeled-value--label-to-value-spacing: var(--size-rem--xxs);
475
475
  --labeled-value--value-to-action-spacing: var(--size-rem--xs);
476
476
  --markdown--spacing: var(--size-rem--m);
477
+ --rating--spacing--s: var(--size-rem--xs);
478
+ --rating--spacing--m: var(--size-rem--s);
477
479
  --text--blockquote-border-style: var(--border-style--default);
478
480
  --text--blockquote-padding: var(--size-rem--s);
479
481
  --text--list-padding: var(--size-rem--l);
@@ -939,6 +941,8 @@
939
941
  --image--border-width: var(--border-width--100);
940
942
  --label--line-height: var(--line-height--m);
941
943
  --label--color--default: var(--neutral--color--800);
944
+ --rating--star-color: var(--neutral--color--700);
945
+ --rating--star-filled-color: var(--primary--color--1000);
942
946
  --text--color--default: var(--neutral--color--1000);
943
947
  --text--color--light: var(--light-plain-content-color);
944
948
  --text--color--dark: var(--dark-plain-content-color);
@@ -14213,6 +14213,82 @@
14213
14213
  ]
14214
14214
  }
14215
14215
  },
14216
+ "rating": {
14217
+ "spacing": {
14218
+ "s": {
14219
+ "value": "0.25rem",
14220
+ "filePath": "src/content/rating.yml",
14221
+ "isSource": true,
14222
+ "original": {
14223
+ "value": "{size-rem.xs}"
14224
+ },
14225
+ "name": "RatingSpacingS",
14226
+ "attributes": {
14227
+ "category": "rating",
14228
+ "type": "spacing",
14229
+ "item": "s"
14230
+ },
14231
+ "path": [
14232
+ "rating",
14233
+ "spacing",
14234
+ "s"
14235
+ ]
14236
+ },
14237
+ "m": {
14238
+ "value": "0.5rem",
14239
+ "filePath": "src/content/rating.yml",
14240
+ "isSource": true,
14241
+ "original": {
14242
+ "value": "{size-rem.s}"
14243
+ },
14244
+ "name": "RatingSpacingM",
14245
+ "attributes": {
14246
+ "category": "rating",
14247
+ "type": "spacing",
14248
+ "item": "m"
14249
+ },
14250
+ "path": [
14251
+ "rating",
14252
+ "spacing",
14253
+ "m"
14254
+ ]
14255
+ }
14256
+ },
14257
+ "star-color": {
14258
+ "value": "#909090",
14259
+ "filePath": "src/content/rating.yml",
14260
+ "isSource": true,
14261
+ "original": {
14262
+ "value": "{neutral.color.700}"
14263
+ },
14264
+ "name": "RatingStarColor",
14265
+ "attributes": {
14266
+ "category": "rating",
14267
+ "type": "star-color"
14268
+ },
14269
+ "path": [
14270
+ "rating",
14271
+ "star-color"
14272
+ ]
14273
+ },
14274
+ "star-filled-color": {
14275
+ "value": "#002A7B",
14276
+ "filePath": "src/content/rating.yml",
14277
+ "isSource": true,
14278
+ "original": {
14279
+ "value": "{primary.color.1000}"
14280
+ },
14281
+ "name": "RatingStarFilledColor",
14282
+ "attributes": {
14283
+ "category": "rating",
14284
+ "type": "star-filled-color"
14285
+ },
14286
+ "path": [
14287
+ "rating",
14288
+ "star-filled-color"
14289
+ ]
14290
+ }
14291
+ },
14216
14292
  "text": {
14217
14293
  "color": {
14218
14294
  "default": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/flow-design-tokens",
3
- "version": "0.2.0-alpha.132",
3
+ "version": "0.2.0-alpha.133",
4
4
  "type": "module",
5
5
  "description": "The design tokens used in Flow, mittwald’s design system",
6
6
  "homepage": "https://github.com/mittwald/flow/tree/main/packages/design-tokens",
@@ -24,5 +24,5 @@
24
24
  "rimraf": "^6.0.1",
25
25
  "style-dictionary": "^4.3.3"
26
26
  },
27
- "gitHead": "9d9b1ab9376e255780fef1a860f2bf61f3ba7a37"
27
+ "gitHead": "403b6589d60bf64d0d9abfadc4848ad90db9186b"
28
28
  }