@breadstone/mosaik-themes 0.0.206 → 0.0.210

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 (73) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/_index.scss +0 -12
  3. package/index.cjs +1457 -696
  4. package/index.cjs.map +1 -1
  5. package/index.d.mts +256 -58
  6. package/index.d.ts +256 -58
  7. package/index.js +1458 -697
  8. package/index.js.map +1 -1
  9. package/package.json +2 -5
  10. package/tailwind/v3/index.d.ts +0 -6
  11. package/tailwind/v3/index.d.ts.map +1 -1
  12. package/tailwind/v3/index.js +1 -7
  13. package/tailwind/v3/index.js.map +1 -1
  14. package/tailwind/v3/plugins/cosmopolitanTailwindPlugin.js +272 -12
  15. package/tailwind/v3/plugins/cosmopolitanTailwindPlugin.js.map +1 -1
  16. package/tailwind/v3/plugins/joyTailwindPlugin.js +6 -0
  17. package/tailwind/v3/plugins/joyTailwindPlugin.js.map +1 -1
  18. package/tailwind/v3/plugins/memphisTailwindPlugin.js +204 -140
  19. package/tailwind/v3/plugins/memphisTailwindPlugin.js.map +1 -1
  20. package/tailwind/v3/presets/cosmopolitanTailwindPresets.js +272 -12
  21. package/tailwind/v3/presets/cosmopolitanTailwindPresets.js.map +1 -1
  22. package/tailwind/v3/presets/joyTailwindPresets.js +6 -0
  23. package/tailwind/v3/presets/joyTailwindPresets.js.map +1 -1
  24. package/tailwind/v3/presets/memphisTailwindPresets.js +204 -140
  25. package/tailwind/v3/presets/memphisTailwindPresets.js.map +1 -1
  26. package/tailwind/v4/cosmopolitanTailwindPresets.css +232 -12
  27. package/tailwind/v4/joyTailwindPresets.css +2 -0
  28. package/tailwind/v4/memphisTailwindPresets.css +188 -140
  29. package/themes/___cosmopolitan-tokens.css +264 -20
  30. package/themes/___joy-tokens.css +2 -0
  31. package/themes/___memphis-tokens.css +188 -140
  32. package/themes/cosmopolitan-tokens.scss +264 -20
  33. package/themes/cosmopolitan.scss +661 -77
  34. package/themes/joy-tokens.scss +2 -0
  35. package/themes/joy.scss +341 -53
  36. package/themes/memphis-tokens.scss +188 -140
  37. package/themes/memphis.scss +527 -193
  38. package/tailwind/v3/plugins/bootstrapTailwindPlugin.d.ts +0 -2
  39. package/tailwind/v3/plugins/bootstrapTailwindPlugin.d.ts.map +0 -1
  40. package/tailwind/v3/plugins/bootstrapTailwindPlugin.js +0 -112
  41. package/tailwind/v3/plugins/bootstrapTailwindPlugin.js.map +0 -1
  42. package/tailwind/v3/plugins/fluentTailwindPlugin.d.ts +0 -2
  43. package/tailwind/v3/plugins/fluentTailwindPlugin.d.ts.map +0 -1
  44. package/tailwind/v3/plugins/fluentTailwindPlugin.js +0 -63
  45. package/tailwind/v3/plugins/fluentTailwindPlugin.js.map +0 -1
  46. package/tailwind/v3/plugins/materialTailwindPlugin.d.ts +0 -2
  47. package/tailwind/v3/plugins/materialTailwindPlugin.d.ts.map +0 -1
  48. package/tailwind/v3/plugins/materialTailwindPlugin.js +0 -53
  49. package/tailwind/v3/plugins/materialTailwindPlugin.js.map +0 -1
  50. package/tailwind/v3/presets/bootstrapTailwindPresets.d.ts +0 -2
  51. package/tailwind/v3/presets/bootstrapTailwindPresets.d.ts.map +0 -1
  52. package/tailwind/v3/presets/bootstrapTailwindPresets.js +0 -101
  53. package/tailwind/v3/presets/bootstrapTailwindPresets.js.map +0 -1
  54. package/tailwind/v3/presets/fluentTailwindPresets.d.ts +0 -2
  55. package/tailwind/v3/presets/fluentTailwindPresets.d.ts.map +0 -1
  56. package/tailwind/v3/presets/fluentTailwindPresets.js +0 -52
  57. package/tailwind/v3/presets/fluentTailwindPresets.js.map +0 -1
  58. package/tailwind/v3/presets/materialTailwindPresets.d.ts +0 -2
  59. package/tailwind/v3/presets/materialTailwindPresets.d.ts.map +0 -1
  60. package/tailwind/v3/presets/materialTailwindPresets.js +0 -42
  61. package/tailwind/v3/presets/materialTailwindPresets.js.map +0 -1
  62. package/tailwind/v4/bootstrapTailwindPresets.css +0 -86
  63. package/tailwind/v4/fluentTailwindPresets.css +0 -39
  64. package/tailwind/v4/materialTailwindPresets.css +0 -29
  65. package/themes/___bootstrap-tokens.css +0 -91
  66. package/themes/___fluent-tokens.css +0 -30
  67. package/themes/___material-tokens.css +0 -22
  68. package/themes/bootstrap-tokens.scss +0 -89
  69. package/themes/bootstrap.scss +0 -163
  70. package/themes/fluent-tokens.scss +0 -28
  71. package/themes/fluent.scss +0 -1591
  72. package/themes/material-tokens.scss +0 -20
  73. package/themes/material.scss +0 -94
@@ -3,6 +3,7 @@ $font-family: Nunito, sans-serif;
3
3
  $layout-radius: 12px;
4
4
  $layout-space: 8px;
5
5
  $layout-thickness: 2px;
6
+ $scheme-light-surface: #f5f5f5;
6
7
  $scheme-light-background: #eaeaea;
7
8
  $scheme-light-foreground: #3c454f;
8
9
  $scheme-light-highlight: #d1d1d1;
@@ -13,6 +14,7 @@ $scheme-light-semi-transparent: rgba(255, 255, 255, 0.67);
13
14
  $scheme-light-disabled: #686868;
14
15
  $scheme-light-contrast: #ffffff;
15
16
  $scheme-light-selection: rgba(204, 204, 204, 0.44);
17
+ $scheme-dark-surface: #1e1e1e;
16
18
  $scheme-dark-background: #151515;
17
19
  $scheme-dark-foreground: #c3bab0;
18
20
  $scheme-dark-highlight: #2e2e2e;
package/themes/joy.scss CHANGED
@@ -75,6 +75,7 @@ $font-family: Nunito, sans-serif;
75
75
  $layout-radius: 12px;
76
76
  $layout-space: 8px;
77
77
  $layout-thickness: 2px;
78
+ $scheme-light-surface: #f5f5f5;
78
79
  $scheme-light-background: #eaeaea;
79
80
  $scheme-light-foreground: #3c454f;
80
81
  $scheme-light-highlight: #d1d1d1;
@@ -85,6 +86,7 @@ $scheme-light-semi-transparent: rgba(255, 255, 255, 0.67);
85
86
  $scheme-light-disabled: #686868;
86
87
  $scheme-light-contrast: #ffffff;
87
88
  $scheme-light-selection: rgba(204, 204, 204, 0.44);
89
+ $scheme-dark-surface: #1e1e1e;
88
90
  $scheme-dark-background: #151515;
89
91
  $scheme-dark-foreground: #c3bab0;
90
92
  $scheme-dark-highlight: #2e2e2e;
@@ -818,7 +820,7 @@ $_color-dark: (
818
820
  #{'--#{$prefix}-color-light-#{$key}'}: #{$value};
819
821
  }
820
822
  }
821
- // remap the light colors to the default colors
823
+ // remap light colors to default colors
822
824
  @each $key, $value in $_color-light {
823
825
  @if meta.type-of($value) == 'map' {
824
826
  @each $k, $v in $value {
@@ -839,7 +841,7 @@ $_color-dark: (
839
841
  #{'--#{$prefix}-color-dark-#{$key}'}: #{$value};
840
842
  }
841
843
  }
842
- // remap the dark colors to the default colors
844
+ // remap dark colors to default colors
843
845
  @each $key, $value in $_color-dark {
844
846
  @if meta.type-of($value) == 'map' {
845
847
  @each $k, $v in $value {
@@ -1186,6 +1188,7 @@ $_shadows-dark: (
1186
1188
  }
1187
1189
  }
1188
1190
  $_scheme-light: (
1191
+ surface: $scheme-light-surface,
1189
1192
  background: $scheme-light-background,
1190
1193
  foreground: $scheme-light-foreground,
1191
1194
  highlight: $scheme-light-highlight,
@@ -1198,6 +1201,7 @@ $_scheme-light: (
1198
1201
  selection: $scheme-light-selection
1199
1202
  );
1200
1203
  $_scheme-dark: (
1204
+ surface: $scheme-dark-surface,
1201
1205
  background: $scheme-dark-background,
1202
1206
  foreground: $scheme-dark-foreground,
1203
1207
  highlight: $scheme-dark-highlight,
@@ -1235,6 +1239,7 @@ $_scheme-dark: (
1235
1239
  }
1236
1240
  $schemes: (
1237
1241
  '': (
1242
+ 'surface': --#{$name}-scheme-surface,
1238
1243
  'background': --#{$name}-scheme-background,
1239
1244
  'foreground': --#{$name}-scheme-foreground,
1240
1245
  'highlight': --#{$name}-scheme-highlight,
@@ -1247,6 +1252,7 @@ $_scheme-dark: (
1247
1252
  'selection': --#{$name}-scheme-selection
1248
1253
  ),
1249
1254
  'light': (
1255
+ 'surface': --#{$name}-scheme-light-surface,
1250
1256
  'background': --#{$name}-scheme-light-background,
1251
1257
  'foreground': --#{$name}-scheme-light-foreground,
1252
1258
  'highlight': --#{$name}-scheme-light-highlight,
@@ -1259,6 +1265,7 @@ $_scheme-dark: (
1259
1265
  'selection': --#{$name}-scheme-light-selection
1260
1266
  ),
1261
1267
  'dark': (
1268
+ 'surface': --#{$name}-scheme-dark-surface,
1262
1269
  'background': --#{$name}-scheme-dark-background,
1263
1270
  'foreground': --#{$name}-scheme-dark-foreground,
1264
1271
  'highlight': --#{$name}-scheme-dark-highlight,
@@ -1596,7 +1603,7 @@ $app-props: (
1596
1603
  'translate': unset
1597
1604
  );
1598
1605
  $app-header-props: (
1599
- 'background-color': var(--joy-scheme-background),
1606
+ 'background-color': var(--joy-scheme-surface),
1600
1607
  'border-color': var(--joy-scheme-highlight),
1601
1608
  'border-radius': var(--joy-layout-radius),
1602
1609
  'border-style': solid,
@@ -1659,28 +1666,27 @@ $auto-complete-box-props: (
1659
1666
  'border-radius': var(--joy-layout-radius),
1660
1667
  'border-style': solid,
1661
1668
  'border-width': var(--joy-layout-thickness),
1662
- 'font-family': unset,
1669
+ 'focus-ring-active-width': 8px,
1670
+ 'focus-ring-color': unset,
1671
+ 'focus-ring-inward-offset': 2px,
1672
+ 'focus-ring-outward-offset': 2px,
1673
+ 'font-family': var(--joy-font-family),
1663
1674
  'font-letter-spacing': unset,
1664
1675
  'font-line-height': unset,
1665
- 'font-size': unset,
1676
+ 'font-size': 16px,
1666
1677
  'font-text-decoration': unset,
1667
1678
  'font-text-transform': unset,
1668
- 'font-weight': unset,
1679
+ 'font-weight': normal,
1669
1680
  'foreground-color': var(--joy-scheme-foreground),
1670
- 'gap': var(--joy-layout-space),
1671
- 'height': 56px,
1672
- 'padding-bottom': var(--joy-layout-space),
1673
- 'padding-left': calc(var(--joy-layout-space) * 1.5),
1674
- 'padding-right': calc(var(--joy-layout-space) * 1.5),
1675
- 'padding-top': var(--joy-layout-space),
1676
- 'shadow-blur': unset,
1677
- 'shadow-color': unset,
1678
- 'shadow-offset-x': unset,
1679
- 'shadow-offset-y': unset,
1680
- 'shadow-spread': unset,
1681
- 'transition-duration': unset,
1682
- 'transition-mode': unset,
1683
- 'transition-property': unset,
1681
+ 'gap': 8px,
1682
+ 'padding-bottom': 8px,
1683
+ 'padding-left': 12px,
1684
+ 'padding-right': 12px,
1685
+ 'padding-top': 8px,
1686
+ 'shadow': unset,
1687
+ 'transition-duration': var(--joy-duration-short),
1688
+ 'transition-mode': ease,
1689
+ 'transition-property': all,
1684
1690
  'translate': unset
1685
1691
  );
1686
1692
  $avatar-props: (
@@ -1767,6 +1773,7 @@ $back-top-props: (
1767
1773
  );
1768
1774
  $backdrop-props: (
1769
1775
  'background-color': var(--joy-scheme-semi-transparent),
1776
+ 'blur': 6px,
1770
1777
  'font-family': unset,
1771
1778
  'font-letter-spacing': unset,
1772
1779
  'font-line-height': unset,
@@ -1894,28 +1901,6 @@ $banner-sub-header-props: (
1894
1901
  'transition-property': unset,
1895
1902
  'translate': unset
1896
1903
  );
1897
- $bottom-sheet-props: (
1898
- 'background-color': var(--joy-scheme-background),
1899
- 'border-color': var(--joy-scheme-highlight),
1900
- 'border-width': 2px,
1901
- 'font-family': var(--joy-font-family),
1902
- 'font-letter-spacing': var(--joy-typography-button-letter-spacing),
1903
- 'font-line-height': var(--joy-typography-button-line-height),
1904
- 'font-size': var(--joy-typography-button-font-size),
1905
- 'font-text-decoration': var(--joy-typography-button-text-decoration),
1906
- 'font-text-transform': var(--joy-typography-button-text-transform),
1907
- 'font-weight': var(--joy-typography-button-font-weight),
1908
- 'foreground-color': var(--joy-scheme-foreground),
1909
- 'gap': unset,
1910
- 'padding-bottom': 8px,
1911
- 'padding-left': 16px,
1912
- 'padding-right': 16px,
1913
- 'padding-top': 8px,
1914
- 'transition-duration': unset,
1915
- 'transition-mode': unset,
1916
- 'transition-property': unset,
1917
- 'translate': unset
1918
- );
1919
1904
  $box-props: (
1920
1905
  'background-color': var(--joy-scheme-transparent),
1921
1906
  'border-color': unset,
@@ -2462,6 +2447,7 @@ $carousel-item2-props: (
2462
2447
  'translate': unset
2463
2448
  );
2464
2449
  $cell-props: (
2450
+ 'background-color': var(--joy-scheme-background),
2465
2451
  'font-family': var(--joy-font-family),
2466
2452
  'font-letter-spacing': var(--joy-typography-body1-letter-spacing),
2467
2453
  'font-line-height': var(--joy-typography-body1-line-height),
@@ -3245,7 +3231,7 @@ $comment-props: (
3245
3231
  'translate': unset
3246
3232
  );
3247
3233
  $compound-button-props: (
3248
- 'background-color': var(--joy-scheme-background),
3234
+ 'background-color': var(--joy-scheme-surface),
3249
3235
  'border-color': var(--joy-scheme-highlight),
3250
3236
  'border-radius': var(--joy-layout-radius),
3251
3237
  'border-style': solid,
@@ -3406,7 +3392,7 @@ $date-time-box-props: (
3406
3392
  'translate': unset
3407
3393
  );
3408
3394
  $dialog-props: (
3409
- 'background-color': var(--joy-scheme-background),
3395
+ 'background-color': var(--joy-scheme-surface),
3410
3396
  'border-color': var(--joy-scheme-highlight),
3411
3397
  'border-radius': var(--joy-layout-radius),
3412
3398
  'border-style': solid,
@@ -3508,7 +3494,7 @@ $dialog-header-props: (
3508
3494
  'translate': unset
3509
3495
  );
3510
3496
  $dialog-header-sub-text-props: (
3511
- 'background-color': var(--joy-scheme-background),
3497
+ 'background-color': var(--joy-scheme-transparent),
3512
3498
  'border-color': var(--joy-scheme-highlight),
3513
3499
  'font-family': var(--joy-font-family),
3514
3500
  'font-letter-spacing': var(--joy-typography-subtitle2-letter-spacing),
@@ -3529,7 +3515,7 @@ $dialog-header-sub-text-props: (
3529
3515
  'translate': unset
3530
3516
  );
3531
3517
  $dialog-header-text-props: (
3532
- 'background-color': var(--joy-scheme-background),
3518
+ 'background-color': var(--joy-scheme-transparent),
3533
3519
  'border-color': var(--joy-scheme-highlight),
3534
3520
  'font-family': var(--joy-font-family),
3535
3521
  'font-letter-spacing': var(--joy-typography-headline6-letter-spacing),
@@ -3670,7 +3656,7 @@ $dot-props: (
3670
3656
  'translate': unset
3671
3657
  );
3672
3658
  $drawer-props: (
3673
- 'background-color': var(--joy-scheme-background),
3659
+ 'background-color': var(--joy-scheme-surface),
3674
3660
  'border-color': var(--joy-scheme-highlight),
3675
3661
  'border-radius': var(--joy-layout-radius),
3676
3662
  'border-style': solid,
@@ -3693,7 +3679,7 @@ $drawer-props: (
3693
3679
  'shadow': var(--joy-elevation-none),
3694
3680
  'transition-duration': var(--joy-duration-short),
3695
3681
  'transition-mode': ease,
3696
- 'transition-property': (background-color, color, border-color, opacity, box-shadow, margin),
3682
+ 'transition-property': (background-color, color, border-color, opacity, box-shadow, margin, width, height),
3697
3683
  'translate': unset,
3698
3684
  'width': 320px
3699
3685
  );
@@ -3733,6 +3719,84 @@ $drawer-content-props: (
3733
3719
  'transition-property': unset,
3734
3720
  'translate': unset
3735
3721
  );
3722
+ $drawer-footer-props: (
3723
+ 'font-family': unset,
3724
+ 'font-letter-spacing': unset,
3725
+ 'font-line-height': unset,
3726
+ 'font-size': unset,
3727
+ 'font-text-decoration': unset,
3728
+ 'font-text-transform': unset,
3729
+ 'font-weight': unset,
3730
+ 'gap': unset,
3731
+ 'padding-bottom': unset,
3732
+ 'padding-left': unset,
3733
+ 'padding-right': unset,
3734
+ 'padding-top': unset,
3735
+ 'transition-duration': unset,
3736
+ 'transition-mode': unset,
3737
+ 'transition-property': unset,
3738
+ 'translate': unset
3739
+ );
3740
+ $drawer-header-props: (
3741
+ 'font-family': unset,
3742
+ 'font-letter-spacing': unset,
3743
+ 'font-line-height': unset,
3744
+ 'font-size': unset,
3745
+ 'font-text-decoration': unset,
3746
+ 'font-text-transform': unset,
3747
+ 'font-weight': unset,
3748
+ 'gap': var(--joy-layout-space),
3749
+ 'padding-bottom': calc(var(--joy-layout-space) * 2),
3750
+ 'padding-left': calc(var(--joy-layout-space) * 2),
3751
+ 'padding-right': calc(var(--joy-layout-space) * 2),
3752
+ 'padding-top': calc(var(--joy-layout-space) * 2),
3753
+ 'transition-duration': unset,
3754
+ 'transition-mode': unset,
3755
+ 'transition-property': unset,
3756
+ 'translate': unset
3757
+ );
3758
+ $drawer-header-sub-text-props: (
3759
+ 'background-color': var(--joy-scheme-transparent),
3760
+ 'border-color': var(--joy-scheme-highlight),
3761
+ 'font-family': var(--joy-font-family),
3762
+ 'font-letter-spacing': var(--joy-typography-subtitle2-letter-spacing),
3763
+ 'font-line-height': var(--joy-typography-subtitle2-line-height),
3764
+ 'font-size': var(--joy-typography-subtitle2-font-size),
3765
+ 'font-text-decoration': var(--joy-typography-subtitle2-text-decoration),
3766
+ 'font-text-transform': var(--joy-typography-subtitle2-text-transform),
3767
+ 'font-weight': var(--joy-typography-subtitle2-font-weight),
3768
+ 'foreground-color': var(--joy-scheme-middlelight),
3769
+ 'gap': unset,
3770
+ 'padding-bottom': unset,
3771
+ 'padding-left': unset,
3772
+ 'padding-right': unset,
3773
+ 'padding-top': unset,
3774
+ 'transition-duration': unset,
3775
+ 'transition-mode': unset,
3776
+ 'transition-property': unset,
3777
+ 'translate': unset
3778
+ );
3779
+ $drawer-header-text-props: (
3780
+ 'background-color': var(--joy-scheme-transparent),
3781
+ 'border-color': var(--joy-scheme-highlight),
3782
+ 'font-family': var(--joy-font-family),
3783
+ 'font-letter-spacing': var(--joy-typography-headline6-letter-spacing),
3784
+ 'font-line-height': var(--joy-typography-headline6-line-height),
3785
+ 'font-size': var(--joy-typography-headline6-font-size),
3786
+ 'font-text-decoration': var(--joy-typography-headline6-text-decoration),
3787
+ 'font-text-transform': var(--joy-typography-headline6-text-transform),
3788
+ 'font-weight': var(--joy-typography-headline6-font-weight),
3789
+ 'foreground-color': var(--joy-scheme-foreground),
3790
+ 'gap': unset,
3791
+ 'padding-bottom': unset,
3792
+ 'padding-left': unset,
3793
+ 'padding-right': unset,
3794
+ 'padding-top': unset,
3795
+ 'transition-duration': unset,
3796
+ 'transition-mode': unset,
3797
+ 'transition-property': unset,
3798
+ 'translate': unset
3799
+ );
3736
3800
  $drop-down-button-props: (
3737
3801
  'background-color': var(--joy-scheme-background),
3738
3802
  'border-color': var(--joy-scheme-highlight),
@@ -4277,7 +4341,7 @@ $floating-props: (
4277
4341
  'arrow-padding-offset': calc(var(--floating-arrow-size-diagonal) - var(--floating-arrow-size)),
4278
4342
  'arrow-size': 6px,
4279
4343
  'arrow-size-diagonal': calc(var(--floating-arrow-size) * .7071),
4280
- 'background-color': var(--joy-scheme-background),
4344
+ 'background-color': var(--joy-scheme-surface),
4281
4345
  'border-color': var(--joy-scheme-highlight),
4282
4346
  'border-radius': var(--joy-layout-radius),
4283
4347
  'border-style': none,
@@ -5425,7 +5489,7 @@ $pin-box-props: (
5425
5489
  'translate': unset
5426
5490
  );
5427
5491
  $popup-props: (
5428
- 'background-color': var(--joy-scheme-background),
5492
+ 'background-color': var(--joy-scheme-surface),
5429
5493
  'border-color': var(--joy-scheme-highlight),
5430
5494
  'border-radius': var(--joy-layout-radius),
5431
5495
  'border-style': solid,
@@ -5648,6 +5712,42 @@ $rating-props: (
5648
5712
  'transition-property': unset,
5649
5713
  'translate': unset
5650
5714
  );
5715
+ $region-props: (
5716
+ 'font-family': unset,
5717
+ 'font-letter-spacing': unset,
5718
+ 'font-line-height': unset,
5719
+ 'font-size': unset,
5720
+ 'font-text-decoration': unset,
5721
+ 'font-text-transform': unset,
5722
+ 'font-weight': unset,
5723
+ 'gap': unset,
5724
+ 'padding-bottom': unset,
5725
+ 'padding-left': unset,
5726
+ 'padding-right': unset,
5727
+ 'padding-top': unset,
5728
+ 'transition-duration': unset,
5729
+ 'transition-mode': unset,
5730
+ 'transition-property': unset,
5731
+ 'translate': unset
5732
+ );
5733
+ $region-view-props: (
5734
+ 'font-family': unset,
5735
+ 'font-letter-spacing': unset,
5736
+ 'font-line-height': unset,
5737
+ 'font-size': unset,
5738
+ 'font-text-decoration': unset,
5739
+ 'font-text-transform': unset,
5740
+ 'font-weight': unset,
5741
+ 'gap': unset,
5742
+ 'padding-bottom': unset,
5743
+ 'padding-left': unset,
5744
+ 'padding-right': unset,
5745
+ 'padding-top': unset,
5746
+ 'transition-duration': unset,
5747
+ 'transition-mode': unset,
5748
+ 'transition-property': unset,
5749
+ 'translate': unset
5750
+ );
5651
5751
  $repeat-button-props: (
5652
5752
  'background-color': var(--joy-scheme-background),
5653
5753
  'border-color': var(--joy-scheme-highlight),
@@ -6130,6 +6230,28 @@ $select-item-group-props: (
6130
6230
  'transition-property': all,
6131
6231
  'translate': unset
6132
6232
  );
6233
+ $sheet-props: (
6234
+ 'background-color': var(--joy-scheme-background),
6235
+ 'border-color': var(--joy-scheme-highlight),
6236
+ 'border-width': 2px,
6237
+ 'font-family': var(--joy-font-family),
6238
+ 'font-letter-spacing': var(--joy-typography-button-letter-spacing),
6239
+ 'font-line-height': var(--joy-typography-button-line-height),
6240
+ 'font-size': var(--joy-typography-button-font-size),
6241
+ 'font-text-decoration': var(--joy-typography-button-text-decoration),
6242
+ 'font-text-transform': var(--joy-typography-button-text-transform),
6243
+ 'font-weight': var(--joy-typography-button-font-weight),
6244
+ 'foreground-color': var(--joy-scheme-foreground),
6245
+ 'gap': unset,
6246
+ 'padding-bottom': 8px,
6247
+ 'padding-left': 16px,
6248
+ 'padding-right': 16px,
6249
+ 'padding-top': 8px,
6250
+ 'transition-duration': unset,
6251
+ 'transition-mode': unset,
6252
+ 'transition-property': unset,
6253
+ 'translate': unset
6254
+ );
6133
6255
  $signature-pad-props: (
6134
6256
  'background-color': var(--joy-scheme-background),
6135
6257
  'border-color': var(--joy-scheme-highlight),
@@ -6303,8 +6425,6 @@ $split-props: (
6303
6425
  'font-text-transform': unset,
6304
6426
  'font-weight': unset,
6305
6427
  'gap': unset,
6306
- 'max': 100%,
6307
- 'min': 0%,
6308
6428
  'padding-bottom': unset,
6309
6429
  'padding-left': unset,
6310
6430
  'padding-right': unset,
@@ -6372,6 +6492,63 @@ $stack-props: (
6372
6492
  'transition-property': unset,
6373
6493
  'translate': unset
6374
6494
  );
6495
+ $stepper-props: (
6496
+ 'connector-background': var(--joy-scheme-highlight),
6497
+ 'connector-margin': calc(var(--joy-layout-space) / 2),
6498
+ 'connector-radius': 999px,
6499
+ 'connector-size': var(--joy-layout-thickness),
6500
+ 'content-gap': calc(var(--joy-layout-space) * 2),
6501
+ 'description-size': 0.875rem,
6502
+ 'focus-outline-offset': 4px,
6503
+ 'focus-outline-width': var(--joy-layout-thickness),
6504
+ 'font-family': var(--joy-font-family),
6505
+ 'font-letter-spacing': unset,
6506
+ 'font-line-height': unset,
6507
+ 'font-size': unset,
6508
+ 'font-text-decoration': unset,
6509
+ 'font-text-transform': unset,
6510
+ 'font-weight': unset,
6511
+ 'foreground-color': var(--joy-scheme-foreground),
6512
+ 'gap': var(--joy-layout-space),
6513
+ 'header-padding-vertical': var(--joy-layout-space),
6514
+ 'icon-border-width': calc(var(--joy-layout-thickness) * 3),
6515
+ 'icon-radius': 999px,
6516
+ 'icon-shadow': 0 1px 2px rgba(0,0,0,0.12),
6517
+ 'icon-size': calc(var(--joy-layout-space) * 3),
6518
+ 'padding-bottom': unset,
6519
+ 'padding-left': unset,
6520
+ 'padding-right': unset,
6521
+ 'padding-top': unset,
6522
+ 'step-padding-vertical': calc(var(--joy-layout-space) / 2),
6523
+ 'text-gap': 0.15rem,
6524
+ 'transition-duration': unset,
6525
+ 'transition-mode': unset,
6526
+ 'transition-property': unset,
6527
+ 'translate': unset,
6528
+ 'vertical-connector-length': calc(var(--joy-layout-space) * 3),
6529
+ 'vertical-connector-margin': calc(var(--joy-layout-space) * 0.5)
6530
+ );
6531
+ $stepper-item-props: (
6532
+ 'font-family': var(--joy-font-family),
6533
+ 'font-letter-spacing': unset,
6534
+ 'font-line-height': unset,
6535
+ 'font-size': unset,
6536
+ 'font-text-decoration': unset,
6537
+ 'font-text-transform': unset,
6538
+ 'font-weight': unset,
6539
+ 'gap': unset,
6540
+ 'padding-bottom': unset,
6541
+ 'padding-left': unset,
6542
+ 'padding-right': unset,
6543
+ 'padding-top': unset,
6544
+ 'panel-padding': calc(var(--joy-layout-space) * 2),
6545
+ 'panel-radius': var(--joy-layout-radius),
6546
+ 'panel-shadow': 0 1px 2px rgba(0,0,0,0.08),
6547
+ 'transition-duration': unset,
6548
+ 'transition-mode': unset,
6549
+ 'transition-property': unset,
6550
+ 'translate': unset
6551
+ );
6375
6552
  $sticky-props: (
6376
6553
  'font-family': unset,
6377
6554
  'font-letter-spacing': unset,
@@ -6923,6 +7100,117 @@ $time-box-props: (
6923
7100
  'transition-property': (background-color, color, border-color, opacity, box-shadow),
6924
7101
  'translate': unset
6925
7102
  );
7103
+ $timeline-props: (
7104
+ 'content-gap': var(--joy-layout-space),
7105
+ 'font-family': var(--joy-font-family),
7106
+ 'font-letter-spacing': unset,
7107
+ 'font-line-height': 1.5,
7108
+ 'font-size': unset,
7109
+ 'font-text-decoration': unset,
7110
+ 'font-text-transform': unset,
7111
+ 'font-weight': 400,
7112
+ 'foreground-color': var(--joy-scheme-foreground),
7113
+ 'gap': calc(var(--joy-layout-space) * 2),
7114
+ 'line-color': var(--joy-scheme-highlight),
7115
+ 'line-offset': calc(var(--joy-layout-space) * 4),
7116
+ 'line-thickness': var(--joy-layout-thickness),
7117
+ 'marker-border-color': var(--joy-scheme-highlight),
7118
+ 'marker-border-width': var(--joy-layout-thickness),
7119
+ 'marker-color': var(--joy-scheme-background),
7120
+ 'marker-size': calc(var(--joy-layout-space) * 2.5),
7121
+ 'padding-bottom': var(--joy-layout-space),
7122
+ 'padding-left': var(--joy-layout-space),
7123
+ 'padding-right': var(--joy-layout-space),
7124
+ 'padding-top': var(--joy-layout-space),
7125
+ 'transition-duration': var(--joy-duration-short),
7126
+ 'transition-mode': ease,
7127
+ 'transition-property': (color, background-color, transform),
7128
+ 'translate': unset
7129
+ );
7130
+ $timeline-content-props: (
7131
+ 'font-family': var(--joy-font-family),
7132
+ 'font-letter-spacing': unset,
7133
+ 'font-line-height': 1.5,
7134
+ 'font-size': unset,
7135
+ 'font-text-decoration': unset,
7136
+ 'font-text-transform': unset,
7137
+ 'font-weight': 400,
7138
+ 'foreground-color': var(--joy-scheme-foreground),
7139
+ 'gap': unset,
7140
+ 'padding-bottom': unset,
7141
+ 'padding-left': unset,
7142
+ 'padding-right': unset,
7143
+ 'padding-top': unset,
7144
+ 'transition-duration': unset,
7145
+ 'transition-mode': unset,
7146
+ 'transition-property': unset,
7147
+ 'translate': unset
7148
+ );
7149
+ $timeline-item-props: (
7150
+ 'content-gap': var(--joy-layout-space),
7151
+ 'font-family': unset,
7152
+ 'font-letter-spacing': unset,
7153
+ 'font-line-height': unset,
7154
+ 'font-size': unset,
7155
+ 'font-text-decoration': unset,
7156
+ 'font-text-transform': unset,
7157
+ 'font-weight': unset,
7158
+ 'gap': unset,
7159
+ 'line-offset': calc(var(--joy-layout-space) * 3),
7160
+ 'marker-border-color': var(--joy-scheme-highlight),
7161
+ 'marker-border-width': var(--joy-layout-thickness),
7162
+ 'marker-color': var(--joy-scheme-background),
7163
+ 'marker-size': calc(var(--joy-layout-space) * 2.5),
7164
+ 'padding-bottom': unset,
7165
+ 'padding-left': unset,
7166
+ 'padding-right': unset,
7167
+ 'padding-top': unset,
7168
+ 'transition-duration': unset,
7169
+ 'transition-mode': unset,
7170
+ 'transition-property': unset,
7171
+ 'translate': unset
7172
+ );
7173
+ $timeline-marker-props: (
7174
+ 'font-family': unset,
7175
+ 'font-letter-spacing': unset,
7176
+ 'font-line-height': unset,
7177
+ 'font-size': unset,
7178
+ 'font-text-decoration': unset,
7179
+ 'font-text-transform': unset,
7180
+ 'font-weight': unset,
7181
+ 'gap': unset,
7182
+ 'marker-border-color': var(--joy-scheme-highlight),
7183
+ 'marker-border-width': var(--joy-layout-thickness),
7184
+ 'marker-color': var(--joy-scheme-background),
7185
+ 'marker-size': calc(var(--joy-layout-space) * 2.5),
7186
+ 'padding-bottom': unset,
7187
+ 'padding-left': unset,
7188
+ 'padding-right': unset,
7189
+ 'padding-top': unset,
7190
+ 'transition-duration': unset,
7191
+ 'transition-mode': unset,
7192
+ 'transition-property': unset,
7193
+ 'translate': unset
7194
+ );
7195
+ $timeline-opposite-props: (
7196
+ 'font-family': var(--joy-font-family),
7197
+ 'font-letter-spacing': unset,
7198
+ 'font-line-height': 1.5,
7199
+ 'font-size': unset,
7200
+ 'font-text-decoration': unset,
7201
+ 'font-text-transform': unset,
7202
+ 'font-weight': 400,
7203
+ 'foreground-color': var(--joy-scheme-foreground),
7204
+ 'gap': unset,
7205
+ 'padding-bottom': unset,
7206
+ 'padding-left': unset,
7207
+ 'padding-right': unset,
7208
+ 'padding-top': unset,
7209
+ 'transition-duration': unset,
7210
+ 'transition-mode': unset,
7211
+ 'transition-property': unset,
7212
+ 'translate': unset
7213
+ );
6926
7214
  $title-bar-props: (
6927
7215
  'font-family': var(--joy-font-family),
6928
7216
  'font-letter-spacing': var(--joy-typography-headline4-letter-spacing),
@@ -7122,7 +7410,7 @@ $toolbar-props: (
7122
7410
  'translate': unset
7123
7411
  );
7124
7412
  $tooltip-props: (
7125
- 'background-color': var(--joy-scheme-highlight),
7413
+ 'background-color': var(--joy-scheme-surface),
7126
7414
  'border-color': var(--joy-scheme-highlight),
7127
7415
  'border-radius': var(--joy-layout-radius),
7128
7416
  'border-style': none,