@mittwald/flow-design-tokens 0.1.0-alpha.324 → 0.1.0-alpha.326

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.
@@ -247,6 +247,8 @@
247
247
  --dark--color--100: rgb(0 0 0 / 12.5%);
248
248
  --border-style--default: solid;
249
249
  --corner-radius--round: 50%;
250
+ --image-button--brightness--pressed: 50%;
251
+ --image-button--brightness--hover: 62.5%;
250
252
  --file-card--sub-title-font-size: var(--font-size-text--s);
251
253
  --file-card--border-style: var(--border-style--default);
252
254
  --file-card--spacing: var(--size-rem--s);
@@ -646,6 +648,7 @@
646
648
  --menu--label-to-group-spacing: var(--size-px--s);
647
649
  --menu--group-to-group-spacing: var(--size-px--m);
648
650
  --menu--item-to-item-spacing: var(--size-px--xs);
651
+ --image-button--hover-icon-color: var(--color--gray--100);
649
652
  --context-menu--padding: var(--size-px--s);
650
653
  --button--line-height-s: var(--size-rem--m);
651
654
  --button--font-size-s: var(--font-size-text--s);
@@ -1097,6 +1100,7 @@
1097
1100
  --menu-item--disabled-color: var(--disabled-plain-content-color);
1098
1101
  --menu-item--background-color--current: var(--primary-plain-background-color--pressed);
1099
1102
  --menu-item--background-color--hover: var(--primary-plain-background-color--hover);
1103
+ --menu-item--icon-color--disabled: var(--disabled-plain-content-color);
1100
1104
  --button--danger-outline-border-color--disabled: var(--disabled-outline-border-color);
1101
1105
  --button--danger-outline-border-color--default: var(--danger-outline-border-color);
1102
1106
  --button--danger-outline-content-color--disabled: var(--disabled-outline-content-color);
@@ -4318,6 +4318,65 @@
4318
4318
  ]
4319
4319
  }
4320
4320
  },
4321
+ "image-button": {
4322
+ "brightness": {
4323
+ "hover": {
4324
+ "value": "62.5%",
4325
+ "filePath": "src/actions/image-button.yml",
4326
+ "isSource": true,
4327
+ "original": {
4328
+ "value": "62.5%"
4329
+ },
4330
+ "name": "ImageButtonBrightnessHover",
4331
+ "attributes": {
4332
+ "category": "image-button",
4333
+ "type": "brightness",
4334
+ "item": "hover"
4335
+ },
4336
+ "path": [
4337
+ "image-button",
4338
+ "brightness",
4339
+ "hover"
4340
+ ]
4341
+ },
4342
+ "pressed": {
4343
+ "value": "50%",
4344
+ "filePath": "src/actions/image-button.yml",
4345
+ "isSource": true,
4346
+ "original": {
4347
+ "value": "50%"
4348
+ },
4349
+ "name": "ImageButtonBrightnessPressed",
4350
+ "attributes": {
4351
+ "category": "image-button",
4352
+ "type": "brightness",
4353
+ "item": "pressed"
4354
+ },
4355
+ "path": [
4356
+ "image-button",
4357
+ "brightness",
4358
+ "pressed"
4359
+ ]
4360
+ }
4361
+ },
4362
+ "hover-icon-color": {
4363
+ "value": "#FFFFFF",
4364
+ "filePath": "src/actions/image-button.yml",
4365
+ "isSource": true,
4366
+ "original": {
4367
+ "value": "{color.gray.100}"
4368
+ },
4369
+ "name": "ImageButtonHoverIconColor",
4370
+ "attributes": {
4371
+ "category": "image-button",
4372
+ "type": "hover-icon-color"
4373
+ },
4374
+ "path": [
4375
+ "image-button",
4376
+ "hover-icon-color"
4377
+ ]
4378
+ }
4379
+ },
4321
4380
  "menu": {
4322
4381
  "item-to-item-spacing": {
4323
4382
  "value": "4px",
@@ -4519,6 +4578,25 @@
4519
4578
  "default"
4520
4579
  ]
4521
4580
  },
4581
+ "disabled": {
4582
+ "value": "#E6E6E6",
4583
+ "filePath": "src/actions/menu-item.yml",
4584
+ "isSource": true,
4585
+ "original": {
4586
+ "value": "{disabled-plain-content-color}"
4587
+ },
4588
+ "name": "MenuItemIconColorDisabled",
4589
+ "attributes": {
4590
+ "category": "menu-item",
4591
+ "type": "icon-color",
4592
+ "item": "disabled"
4593
+ },
4594
+ "path": [
4595
+ "menu-item",
4596
+ "icon-color",
4597
+ "disabled"
4598
+ ]
4599
+ },
4522
4600
  "current": {
4523
4601
  "value": "#0054F5",
4524
4602
  "filePath": "src/actions/menu-item.yml",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/flow-design-tokens",
3
- "version": "0.1.0-alpha.324",
3
+ "version": "0.1.0-alpha.326",
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",
@@ -21,5 +21,5 @@
21
21
  "nx": "^20.0.0",
22
22
  "style-dictionary": "^4.1.3"
23
23
  },
24
- "gitHead": "79555cf0c769a1b8636ad58aaa1db55bc21baf1e"
24
+ "gitHead": "c43c724f7fa58bb42d85a75b011a67282d8b218c"
25
25
  }