@mittwald/flow-design-tokens 0.1.0-alpha.403 → 0.1.0-alpha.404

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.
@@ -7,6 +7,7 @@
7
7
  --image-button--brightness--pressed: 50%;
8
8
  --corner-radius--round: 50%;
9
9
  --border-style--default: solid;
10
+ --border-style--dashed: dashed;
10
11
  --dark--color--100: rgb(0 0 0 / 12.5%);
11
12
  --dark--color--200: rgb(0 0 0 / 25%);
12
13
  --dark--color--300: rgb(0 0 0 / 37.5%);
@@ -673,6 +674,9 @@
673
674
  --file-card--spacing: var(--size-rem--s);
674
675
  --file-card--border-style: var(--border-style--default);
675
676
  --file-card--sub-title-font-size: var(--font-size-text--s);
677
+ --file-drop-zone--padding: var(--size-px--m);
678
+ --file-drop-zone--border-style--default: var(--border-style--dashed);
679
+ --file-drop-zone--border-style--target: var(--border-style--default);
676
680
  --button--corner-radius: var(--corner-radius--default);
677
681
  --button--pending-icon-color: var(--neutral--color--1000);
678
682
  --button--succeeded-icon-color: var(--success--color--800);
@@ -991,6 +995,9 @@
991
995
  --file-card--corner-radius: var(--corner-radius--default);
992
996
  --file-card--border-width: var(--border-width--100);
993
997
  --file-card--background-color--default: var(--neutral--color--100);
998
+ --file-drop-zone--corner-radius: var(--corner-radius--default);
999
+ --file-drop-zone--border-width: var(--border-width--100);
1000
+ --file-drop-zone--border-color--target: var(--primary--color--800);
994
1001
  --button--accent-solid-background-color--default: var(--success-solid-background-color--default);
995
1002
  --button--accent-solid-background-color--hover: var(--success-solid-background-color--hover);
996
1003
  --button--accent-solid-background-color--pressed: var(--success-solid-background-color--pressed);
@@ -1238,4 +1245,7 @@
1238
1245
  --file-card--border-color: var(--neutral-outline-border-color);
1239
1246
  --file-card--background-color--hover: var(--neutral-outline-background-color--hover);
1240
1247
  --file-card--background-color--pressed: var(--neutral-outline-background-color--pressed);
1248
+ --file-drop-zone--background-color--default: var(--form-control--background-color--default);
1249
+ --file-drop-zone--background-color--target: var(--form-control--background-color--hover);
1250
+ --file-drop-zone--border-color--default: var(--form-control--border-color--default);
1241
1251
  }
@@ -4781,6 +4781,23 @@
4781
4781
  "border-style",
4782
4782
  "default"
4783
4783
  ]
4784
+ },
4785
+ "dashed": {
4786
+ "value": "dashed",
4787
+ "filePath": "src/border.yml",
4788
+ "isSource": true,
4789
+ "original": {
4790
+ "value": "dashed"
4791
+ },
4792
+ "name": "BorderStyleDashed",
4793
+ "attributes": {
4794
+ "category": "border-style",
4795
+ "type": "dashed"
4796
+ },
4797
+ "path": [
4798
+ "border-style",
4799
+ "dashed"
4800
+ ]
4784
4801
  }
4785
4802
  },
4786
4803
  "primary": {
@@ -22557,5 +22574,178 @@
22557
22574
  ]
22558
22575
  }
22559
22576
  }
22577
+ },
22578
+ "file-drop-zone": {
22579
+ "corner-radius": {
22580
+ "value": "4px",
22581
+ "filePath": "src/upload/file-drop-zone.yml",
22582
+ "isSource": true,
22583
+ "original": {
22584
+ "value": "{corner-radius.default}"
22585
+ },
22586
+ "name": "FileDropZoneCornerRadius",
22587
+ "attributes": {
22588
+ "category": "file-drop-zone",
22589
+ "type": "corner-radius"
22590
+ },
22591
+ "path": [
22592
+ "file-drop-zone",
22593
+ "corner-radius"
22594
+ ]
22595
+ },
22596
+ "padding": {
22597
+ "value": "16px",
22598
+ "filePath": "src/upload/file-drop-zone.yml",
22599
+ "isSource": true,
22600
+ "original": {
22601
+ "value": "{size-px.m}"
22602
+ },
22603
+ "name": "FileDropZonePadding",
22604
+ "attributes": {
22605
+ "category": "file-drop-zone",
22606
+ "type": "padding"
22607
+ },
22608
+ "path": [
22609
+ "file-drop-zone",
22610
+ "padding"
22611
+ ]
22612
+ },
22613
+ "background-color": {
22614
+ "default": {
22615
+ "value": "#F8F8F8",
22616
+ "filePath": "src/upload/file-drop-zone.yml",
22617
+ "isSource": true,
22618
+ "original": {
22619
+ "value": "{form-control.background-color.default}"
22620
+ },
22621
+ "name": "FileDropZoneBackgroundColorDefault",
22622
+ "attributes": {
22623
+ "category": "file-drop-zone",
22624
+ "type": "background-color",
22625
+ "item": "default"
22626
+ },
22627
+ "path": [
22628
+ "file-drop-zone",
22629
+ "background-color",
22630
+ "default"
22631
+ ]
22632
+ },
22633
+ "target": {
22634
+ "value": "#F0F5FF",
22635
+ "filePath": "src/upload/file-drop-zone.yml",
22636
+ "isSource": true,
22637
+ "original": {
22638
+ "value": "{form-control.background-color.hover}"
22639
+ },
22640
+ "name": "FileDropZoneBackgroundColorTarget",
22641
+ "attributes": {
22642
+ "category": "file-drop-zone",
22643
+ "type": "background-color",
22644
+ "item": "target"
22645
+ },
22646
+ "path": [
22647
+ "file-drop-zone",
22648
+ "background-color",
22649
+ "target"
22650
+ ]
22651
+ }
22652
+ },
22653
+ "border-width": {
22654
+ "value": "1px",
22655
+ "filePath": "src/upload/file-drop-zone.yml",
22656
+ "isSource": true,
22657
+ "original": {
22658
+ "value": "{border-width.100}"
22659
+ },
22660
+ "name": "FileDropZoneBorderWidth",
22661
+ "attributes": {
22662
+ "category": "file-drop-zone",
22663
+ "type": "border-width"
22664
+ },
22665
+ "path": [
22666
+ "file-drop-zone",
22667
+ "border-width"
22668
+ ]
22669
+ },
22670
+ "border-style": {
22671
+ "default": {
22672
+ "value": "dashed",
22673
+ "filePath": "src/upload/file-drop-zone.yml",
22674
+ "isSource": true,
22675
+ "original": {
22676
+ "value": "{border-style.dashed}"
22677
+ },
22678
+ "name": "FileDropZoneBorderStyleDefault",
22679
+ "attributes": {
22680
+ "category": "file-drop-zone",
22681
+ "type": "border-style",
22682
+ "item": "default"
22683
+ },
22684
+ "path": [
22685
+ "file-drop-zone",
22686
+ "border-style",
22687
+ "default"
22688
+ ]
22689
+ },
22690
+ "target": {
22691
+ "value": "solid",
22692
+ "filePath": "src/upload/file-drop-zone.yml",
22693
+ "isSource": true,
22694
+ "original": {
22695
+ "value": "{border-style.default}"
22696
+ },
22697
+ "name": "FileDropZoneBorderStyleTarget",
22698
+ "attributes": {
22699
+ "category": "file-drop-zone",
22700
+ "type": "border-style",
22701
+ "item": "target"
22702
+ },
22703
+ "path": [
22704
+ "file-drop-zone",
22705
+ "border-style",
22706
+ "target"
22707
+ ]
22708
+ }
22709
+ },
22710
+ "border-color": {
22711
+ "default": {
22712
+ "value": "#909090",
22713
+ "filePath": "src/upload/file-drop-zone.yml",
22714
+ "isSource": true,
22715
+ "original": {
22716
+ "value": "{form-control.border-color.default}"
22717
+ },
22718
+ "name": "FileDropZoneBorderColorDefault",
22719
+ "attributes": {
22720
+ "category": "file-drop-zone",
22721
+ "type": "border-color",
22722
+ "item": "default"
22723
+ },
22724
+ "path": [
22725
+ "file-drop-zone",
22726
+ "border-color",
22727
+ "default"
22728
+ ]
22729
+ },
22730
+ "target": {
22731
+ "value": "#0054F5",
22732
+ "filePath": "src/upload/file-drop-zone.yml",
22733
+ "isSource": true,
22734
+ "original": {
22735
+ "value": "{primary.color.800}"
22736
+ },
22737
+ "name": "FileDropZoneBorderColorTarget",
22738
+ "attributes": {
22739
+ "category": "file-drop-zone",
22740
+ "type": "border-color",
22741
+ "item": "target"
22742
+ },
22743
+ "path": [
22744
+ "file-drop-zone",
22745
+ "border-color",
22746
+ "target"
22747
+ ]
22748
+ }
22749
+ }
22560
22750
  }
22561
22751
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/flow-design-tokens",
3
- "version": "0.1.0-alpha.403",
3
+ "version": "0.1.0-alpha.404",
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",
@@ -22,5 +22,5 @@
22
22
  "prettier": "^3.4.1",
23
23
  "style-dictionary": "^4.2.0"
24
24
  },
25
- "gitHead": "11be372773a8c4bcd6a2a58bc9f0b24174984e92"
25
+ "gitHead": "31a2f4caaff74ec83d429b6f924ee04a7316d46c"
26
26
  }