@breadstone/mosaik-themes 0.0.31 → 0.0.32

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.
@@ -2,7 +2,6 @@
2
2
  @use 'sass:list';
3
3
  @use 'sass:meta';
4
4
  @use 'sass:string';
5
-
6
5
  @mixin _generate-elevation-vars($map, $prefix, $mode) {
7
6
  @each $key, $value in $map {
8
7
  @if meta.type-of($value) == 'map' {
@@ -16,7 +15,6 @@
16
15
  }
17
16
  }
18
17
  }
19
-
20
18
  @mixin _generate-elevation-composite($map, $prefix, $mode) {
21
19
  @each $key, $value in $map {
22
20
  @if meta.type-of($value) == 'map' {
@@ -32,7 +30,6 @@
32
30
  }
33
31
  }
34
32
  }
35
-
36
33
  @mixin _remap-elevation-vars($map, $prefix, $mode) {
37
34
  @each $key, $value in $map {
38
35
  @if meta.type-of($value) == 'map' {
@@ -47,24 +44,18 @@
47
44
  }
48
45
  }
49
46
  }
50
-
51
47
  @function box-shadow($x: 0px, $y: 0px, $blur: 0px, $spread: 0px, $color: rgba(0, 0, 0, 0.5), $inset: false) {
52
48
  $shadow: #{$x} #{$y} #{$blur} #{$spread} #{$color};
53
-
54
49
  @if $inset {
55
50
  $shadow: inset $shadow;
56
51
  }
57
-
58
52
  @return $shadow;
59
53
  }
60
-
61
54
  @function box-shadow-with-color($shadows, $new-color) {
62
55
  $output: ();
63
-
64
56
  @each $shadow in $shadows {
65
57
  $parts: ();
66
58
  $color: null;
67
-
68
59
  // break apart the shadow into components
69
60
  @each $part in $shadow {
70
61
  @if type-of($part) == 'color' {
@@ -73,15 +64,12 @@
73
64
  $parts: append($parts, $part);
74
65
  }
75
66
  }
76
-
77
67
  // append the new color in place of the original
78
68
  $parts: append($parts, $new-color);
79
69
  $output: append($output, $parts, comma);
80
70
  }
81
-
82
71
  @return $output;
83
72
  }
84
-
85
73
  $name: "cosmopolitan";
86
74
  $font-family: 'Noto Sans', sans-serif;
87
75
  $layout-radius: 3px;
@@ -288,11 +276,6 @@ $typography-button-font-family: $font-family;
288
276
  $elevation-key: $elevation-key-light $elevation-key-semilight $elevation-key-regular $elevation-key-semibold $elevation-key-bold $elevation-key-extrabold;
289
277
  $variant: $variant-primary;
290
278
  $size: $size-tiny $size-small $size-medium $size-large $size-giant;
291
-
292
-
293
-
294
-
295
-
296
279
  $_color-light: (
297
280
  primary: (
298
281
  0: $color-light-primary-0,
@@ -300,7 +283,6 @@ $_color-light: (
300
283
  500: $color-light-primary-500
301
284
  )
302
285
  );
303
-
304
286
  $_color-dark: (
305
287
  primary: (
306
288
  0: $color-dark-primary-0,
@@ -308,7 +290,6 @@ $_color-dark: (
308
290
  500: $color-dark-primary-500
309
291
  )
310
292
  );
311
-
312
293
  @mixin color-style($prefix) {
313
294
  :root,
314
295
  :host {
@@ -321,7 +302,6 @@ $_color-dark: (
321
302
  #{'--#{$prefix}-color-light-#{$palette-key}'}: #{$palette-steps};
322
303
  }
323
304
  }
324
-
325
305
  // remap the light colors to the default colors
326
306
  @each $palette-key, $palette-steps in $_color-light {
327
307
  @if meta.type-of($palette-steps) == 'map' {
@@ -332,7 +312,6 @@ $_color-dark: (
332
312
  #{'--#{$prefix}-color-light-#{$palette-key}'}: var(--#{$prefix}-color-#{$palette-key});
333
313
  }
334
314
  }
335
-
336
315
  &.dark,
337
316
  &[theme-mode='dark'] {
338
317
  @each $palette-key, $palette-steps in $_color-dark {
@@ -344,7 +323,6 @@ $_color-dark: (
344
323
  #{'--#{$prefix}-color-dark-#{$palette-key}'}: #{$palette-steps};
345
324
  }
346
325
  }
347
-
348
326
  // remap the dark colors to the default colors
349
327
  @each $palette-key, $palette-steps in $_color-dark {
350
328
  @if meta.type-of($palette-steps) == 'map' {
@@ -358,38 +336,31 @@ $_color-dark: (
358
336
  }
359
337
  }
360
338
  }
361
-
362
339
  @function get-color($variant, $level, $mode: '') {
363
340
  @if $mode == '' {
364
341
  @return var(--#{$name}-color-#{$variant}-#{$level});
365
342
  }
366
-
367
343
  @return var(--#{$name}-color-#{$mode}-#{$variant}-#{$level});
368
344
  }
369
-
370
345
  @mixin _scrollbar-style($prefix) {
371
346
  * {
372
347
  /* Firefox */
373
348
  scrollbar-color: var(--#{$prefix}-scheme-highlight) var(--#{$prefix}-scheme-transparent);
374
349
  scrollbar-width: thin;
375
-
376
350
  /* Styling the scrollbar in Chrome and Safari */
377
351
  &::-webkit-scrollbar {
378
352
  width: 10px;
379
353
  }
380
-
381
354
  /* Set thumb color for Chrome and Safari */
382
355
  &::-webkit-scrollbar-thumb {
383
356
  background-color: var(--#{$prefix}-scheme-highlight);
384
357
  }
385
-
386
358
  /* Set track color for Chrome and Safari */
387
359
  &::-webkit-scrollbar-track {
388
360
  background-color: var(--#{$prefix}-scheme-transparent);
389
361
  }
390
362
  }
391
363
  }
392
-
393
364
  @mixin _selection-style($prefix) {
394
365
  * {
395
366
  /* Set selection color */
@@ -400,17 +371,10 @@ $_color-dark: (
400
371
  }
401
372
  }
402
373
  }
403
-
404
374
  @mixin common-style($prefix) {
405
375
  @include _scrollbar-style($prefix);
406
376
  @include _selection-style($prefix);
407
377
  }
408
-
409
-
410
-
411
-
412
-
413
-
414
378
  $_shadows-light: (
415
379
  none: $elevation-none,
416
380
  light: (
@@ -509,8 +473,7 @@ $_shadows-light: (
509
473
  color: $elevation-light-extrabold-color-1
510
474
  )
511
475
  )
512
- );
513
-
476
+ );
514
477
  $_shadows-dark: (
515
478
  none: $elevation-none,
516
479
  light: (
@@ -609,16 +572,14 @@ $_shadows-dark: (
609
572
  color: $elevation-dark-extrabold-color-1
610
573
  )
611
574
  )
612
- );
613
-
575
+ );
614
576
  @mixin elevation-style($prefix) {
615
577
  :root,
616
578
  :host {
617
579
  $mode: 'light';
618
580
  @include _generate-elevation-vars($_shadows-light, $prefix, $mode);
619
581
  @include _generate-elevation-composite($_shadows-light, $prefix, $mode);
620
- @include _remap-elevation-vars($_shadows-light, $prefix, $mode);
621
-
582
+ @include _remap-elevation-vars($_shadows-light, $prefix, $mode);
622
583
  &.dark,
623
584
  &[theme-mode='dark'] {
624
585
  $mode: 'dark';
@@ -627,8 +588,7 @@ $_shadows-dark: (
627
588
  @include _remap-elevation-vars($_shadows-dark, $prefix, $mode);
628
589
  }
629
590
  }
630
- }
631
-
591
+ }
632
592
  @function get-elevation($weight, $mode: '') {
633
593
  $elevations: (
634
594
  '': (
@@ -642,25 +602,16 @@ $_shadows-dark: (
642
602
  ),
643
603
  'light': $shadows-light,
644
604
  'dark': $shadows-dark
645
- );
646
-
605
+ );
647
606
  @if (list.index($elevation-key, $weight) == false) {
648
607
  @error "Invalid weight: #{$weight}";
649
- }
650
-
608
+ }
651
609
  @return var(map.get(map.get($elevations, $mode), $weight));
652
- }
653
-
654
-
655
-
656
-
657
-
658
-
610
+ }
659
611
  $thickness-factor: $layout-thickness;
660
612
  $radius-factor: $layout-radius;
661
613
  $space-factor: $layout-space;
662
614
  $transition: $duration-short;
663
-
664
615
  @function _layout-palette($prefix, $radius, $thickness, $space, $transition: $transition) {
665
616
  $layouts: ();
666
617
  $layouts: map.merge(
@@ -687,13 +638,10 @@ $transition: $duration-short;
687
638
  '#{$prefix}-layout-transition': $transition
688
639
  )
689
640
  );
690
-
691
641
  @return $layouts;
692
642
  }
693
-
694
643
  @mixin _layout-style($prefix, $radius, $thickness, $space) {
695
644
  $palette: _layout-palette($prefix, $radius, $thickness, $space);
696
-
697
645
  @if list.length($palette) {
698
646
  :root,
699
647
  :host {
@@ -703,27 +651,21 @@ $transition: $duration-short;
703
651
  }
704
652
  }
705
653
  }
706
-
707
654
  @mixin layout-style($prefix, $radius: $radius-factor, $thickness: $thickness-factor, $space: $space-factor) {
708
655
  @include _layout-style($prefix, $radius, $thickness, $space);
709
656
  }
710
-
711
657
  @function get-layout($key) {
712
658
  $layouts: (
713
659
  'radius': --#{$name}-layout-radius,
714
660
  'space': --#{$name}-layout-space,
715
661
  'thickness': --#{$name}-layout-thickness
716
662
  );
717
-
718
663
  @if map-has-key($layouts, $key) {
719
664
  @return var(map-get($layouts, $key));
720
665
  } @else {
721
666
  @error "Invalid layout value: #{$key}";
722
667
  }
723
668
  }
724
-
725
-
726
-
727
669
  $scheme-light: (
728
670
  contrast: $scheme-light-contrast,
729
671
  background: $scheme-light-background,
@@ -735,7 +677,6 @@ $scheme-light: (
735
677
  semi-transparent: $scheme-light-semi-transparent,
736
678
  disabled: $scheme-light-disabled
737
679
  );
738
-
739
680
  $scheme-dark: (
740
681
  contrast: $scheme-dark-contrast,
741
682
  background: $scheme-dark-background,
@@ -747,31 +688,26 @@ $scheme-dark: (
747
688
  semi-transparent: $scheme-dark-semi-transparent,
748
689
  disabled: $scheme-dark-disabled
749
690
  );
750
-
751
691
  @mixin scheme-style($prefix) {
752
692
  :root,
753
693
  :host {
754
694
  @each $key, $value in $scheme-light {
755
695
  #{'--#{$prefix}-scheme-light-#{$key}'}: #{$value};
756
696
  }
757
-
758
697
  @each $key, $value in $scheme-light {
759
698
  #{'--#{$prefix}-scheme-#{$key}'}: var(--#{$prefix}-scheme-light-#{$key});
760
699
  }
761
-
762
700
  &.dark,
763
701
  &[theme-mode='dark'] {
764
702
  @each $key, $value in $scheme-dark {
765
703
  #{'--#{$prefix}-scheme-dark-#{$key}'}: #{$value};
766
704
  }
767
-
768
705
  @each $key, $value in $scheme-dark {
769
706
  #{'--#{$prefix}-scheme-#{$key}'}: var(--#{$prefix}-scheme-dark-#{$key});
770
707
  }
771
708
  }
772
709
  }
773
710
  }
774
-
775
711
  @function get-scheme($key, $mode: '') {
776
712
  $schemes: (
777
713
  '': (
@@ -805,21 +741,14 @@ $scheme-dark: (
805
741
  'disabled': --#{$name}-scheme-dark-disabled
806
742
  )
807
743
  );
808
-
809
744
  @if map-has-key($schemes, $mode) and map-has-key(map-get($schemes, $mode), $key) {
810
745
  @return var(map-get(map-get($schemes, $mode), $key));
811
746
  } @else {
812
747
  @error "Invalid scheme key: #{$key} or mode: #{$mode}";
813
748
  }
814
749
  }
815
-
816
-
817
-
818
-
819
-
820
750
  @function _typography-palette() {
821
- $base-styles: (-moz-osx-font-smoothing: grayscale, -webkit-font-smoothing: antialiased, font-family: $font-family);
822
-
751
+ $base-styles: (-moz-osx-font-smoothing: grayscale, -webkit-font-smoothing: antialiased, font-family: $font-family);
823
752
  $scale-styles: (
824
753
  'typography': $base-styles,
825
754
  'typography-heading': (
@@ -849,33 +778,26 @@ $scheme-dark: (
849
778
  text-decoration: $typography-button-text-decoration,
850
779
  text-transform: $typography-button-text-transform
851
780
  )
852
- );
853
-
781
+ );
854
782
  @each $style, $style-props in $scale-styles {
855
783
  // Merge base properties for all styles.
856
784
  $style-props: map.merge($base-styles, $style-props);
857
785
  // Override original styles with new styles.
858
786
  $scale-styles: map.merge($scale-styles, (#{$style}: $style-props));
859
- }
860
-
787
+ }
861
788
  @return $scale-styles;
862
- }
863
-
789
+ }
864
790
  @mixin typography-style($prefix) {
865
- $typographies-map: _typography-palette();
866
-
791
+ $typographies-map: _typography-palette();
867
792
  :root,
868
793
  :host {
869
- --#{$prefix}-font-family: #{$font-family};
870
-
794
+ --#{$prefix}-font-family: #{$font-family};
871
795
  @each $style in map.keys($typographies-map) {
872
796
  @if $style != 'typography' {
873
797
  @if not map.has-key($typographies-map, $style) {
874
798
  @error 'Invalid style specified! #{$style} does not exist. Choose one of #{map.keys($typographies-map)}';
875
- }
876
-
877
- $style-props: map.get($typographies-map, $style);
878
-
799
+ }
800
+ $style-props: map.get($typographies-map, $style);
879
801
  --#{$prefix}-typography-#{$style}-font-family: #{map.get($style-props, 'font-family')};
880
802
  --#{$prefix}-typography-#{$style}-font-size: #{map.get($style-props, 'font-size')};
881
803
  --#{$prefix}-typography-#{$style}-line-height: #{map.get($style-props, 'line-height')};
@@ -886,23 +808,19 @@ $scheme-dark: (
886
808
  --#{$prefix}-typography-#{$style}: #{map.get($style-props, 'font-weight')} #{map.get($style-props, 'font-size')}/#{map.get($style-props, 'line-height')} #{map.get($style-props, 'font-family')};
887
809
  }
888
810
  }
889
- }
890
-
811
+ }
891
812
  @each $style in map.keys($typographies-map) {
892
813
  .#{$style} {
893
- $style-props: map.get($typographies-map, $style);
894
-
814
+ $style-props: map.get($typographies-map, $style);
895
815
  @if not map.has-key($typographies-map, $style) {
896
816
  @error 'Invalid style specified! #{$style} does not exist. Choose one of #{map.keys($typographies-map)}';
897
- }
898
-
817
+ }
899
818
  @each $key, $value in $style-props {
900
819
  #{$key}: $value;
901
820
  }
902
821
  }
903
822
  }
904
- }
905
-
823
+ }
906
824
  @function get-typography($type, $property) {
907
825
  $properties: (
908
826
  'font-family': --#{$name}-typography-#{$type}-font-family,
@@ -912,39 +830,25 @@ $scheme-dark: (
912
830
  'letter-spacing': --#{$name}-typography-#{$type}-letter-spacing,
913
831
  'text-decoration': --#{$name}-typography-#{$type}-text-decoration,
914
832
  'text-transform': --#{$name}-typography-#{$type}-text-transform
915
- );
916
-
833
+ );
917
834
  @if map-has-key($properties, $property) {
918
835
  @return var(map-get($properties, $property));
919
836
  } @else {
920
837
  @error "Invalid typography property: #{$property}";
921
838
  }
922
- }
923
-
924
-
925
-
926
-
927
-
928
-
929
-
930
-
931
-
839
+ }
932
840
  @mixin cosmopolitan-style($radius: $layout-radius, $thickness: $layout-thickness, $space: $layout-space) {
933
841
  $theme: 'cosmopolitan';
934
-
935
842
  @include layout-style($theme, $radius, $thickness, $space);
936
843
  @include scheme-style($theme);
937
844
  @include color-style($theme);
938
845
  @include elevation-style($theme);
939
846
  @include typography-style($theme);
940
847
  @include common-style($theme);
941
-
942
848
  :host {
943
849
  @content;
944
850
  }
945
851
  }
946
-
947
-
948
852
  $absolute-props: (
949
853
  'font-family': "unset",
950
854
  'font-size': "unset",
@@ -962,8 +866,7 @@ $absolute-props: (
962
866
  'transition-mode': "unset",
963
867
  'transition-property': unset,
964
868
  'translate': "unset"
965
- );
966
-
869
+ );
967
870
  $absolute-item-props: (
968
871
  'font-family': "unset",
969
872
  'font-size': "unset",
@@ -981,8 +884,7 @@ $absolute-item-props: (
981
884
  'transition-mode': "unset",
982
885
  'transition-property': unset,
983
886
  'translate': "unset"
984
- );
985
-
887
+ );
986
888
  $accordion-props: (
987
889
  'font-family': "unset",
988
890
  'font-size': "unset",
@@ -1000,8 +902,7 @@ $accordion-props: (
1000
902
  'transition-mode': "unset",
1001
903
  'transition-property': unset,
1002
904
  'translate': "unset"
1003
- );
1004
-
905
+ );
1005
906
  $alert-props: (
1006
907
  'font-family': "unset",
1007
908
  'font-size': "unset",
@@ -1019,8 +920,7 @@ $alert-props: (
1019
920
  'transition-mode': "unset",
1020
921
  'transition-property': unset,
1021
922
  'translate': "unset"
1022
- );
1023
-
923
+ );
1024
924
  $anchor-props: (
1025
925
  'font-family': var(--cosmopolitan-typography-content-font-family),
1026
926
  'font-size': var(--cosmopolitan-typography-content-font-size),
@@ -1041,8 +941,7 @@ $anchor-props: (
1041
941
  'background-color': var(--cosmopolitan-scheme-background),
1042
942
  'border-color': var(--cosmopolitan-scheme-highlight),
1043
943
  'foreground-color': var(--cosmopolitan-scheme-foreground)
1044
- );
1045
-
944
+ );
1046
945
  $app-props: (
1047
946
  'font-family': var(--cosmopolitan-typography-body1-font-family),
1048
947
  'font-size': var(--cosmopolitan-typography-body1-font-size),
@@ -1062,8 +961,7 @@ $app-props: (
1062
961
  'translate': "unset",
1063
962
  'background-color': var(--cosmopolitan-scheme-background),
1064
963
  'foreground-color': var(--cosmopolitan-scheme-foreground)
1065
- );
1066
-
964
+ );
1067
965
  $app-header-props: (
1068
966
  'font-family': var(--cosmopolitan-typography-headline6-font-family),
1069
967
  'font-size': var(--cosmopolitan-typography-headline6-font-size),
@@ -1087,8 +985,7 @@ $app-header-props: (
1087
985
  'border-style': solid,
1088
986
  'border-width': var(--cosmopolitan-layout-thickness),
1089
987
  'foreground-color': var(--cosmopolitan-scheme-foreground)
1090
- );
1091
-
988
+ );
1092
989
  $auto-complete-box-props: (
1093
990
  'font-family': "unset",
1094
991
  'font-size': "unset",
@@ -1117,8 +1014,7 @@ $auto-complete-box-props: (
1117
1014
  'shadow-offset-x': unset,
1118
1015
  'shadow-offset-y': unset,
1119
1016
  'shadow-spread': unset
1120
- );
1121
-
1017
+ );
1122
1018
  $avatar-props: (
1123
1019
  'font-family': unset,
1124
1020
  'font-size': unset,
@@ -1153,8 +1049,7 @@ $avatar-props: (
1153
1049
  'shadow-offset-x': unset,
1154
1050
  'shadow-offset-y': unset,
1155
1051
  'shadow-spread': unset
1156
- );
1157
-
1052
+ );
1158
1053
  $avatar-group-props: (
1159
1054
  'font-family': unset,
1160
1055
  'font-size': unset,
@@ -1183,8 +1078,7 @@ $avatar-group-props: (
1183
1078
  'shadow-offset-x': unset,
1184
1079
  'shadow-offset-y': unset,
1185
1080
  'shadow-spread': unset
1186
- );
1187
-
1081
+ );
1188
1082
  $back-top-props: (
1189
1083
  'font-family': "unset",
1190
1084
  'font-size': "unset",
@@ -1202,8 +1096,7 @@ $back-top-props: (
1202
1096
  'transition-mode': "unset",
1203
1097
  'transition-property': unset,
1204
1098
  'translate': "unset"
1205
- );
1206
-
1099
+ );
1207
1100
  $backdrop-props: (
1208
1101
  'font-family': "unset",
1209
1102
  'font-size': "unset",
@@ -1222,8 +1115,7 @@ $backdrop-props: (
1222
1115
  'transition-property': opacity,
1223
1116
  'translate': "unset",
1224
1117
  'background-color': var(--cosmopolitan-scheme-semi-transparent)
1225
- );
1226
-
1118
+ );
1227
1119
  $badge-props: (
1228
1120
  'font-family': unset,
1229
1121
  'font-size': unset,
@@ -1248,8 +1140,7 @@ $badge-props: (
1248
1140
  'border-width': unset,
1249
1141
  'foreground-color': unset,
1250
1142
  'size': unset
1251
- );
1252
-
1143
+ );
1253
1144
  $banner-props: (
1254
1145
  'font-family': unset,
1255
1146
  'font-size': unset,
@@ -1274,8 +1165,7 @@ $banner-props: (
1274
1165
  'border-width': unset,
1275
1166
  'foreground-color': unset,
1276
1167
  'shadow': unset
1277
- );
1278
-
1168
+ );
1279
1169
  $banner-header-props: (
1280
1170
  'font-family': unset,
1281
1171
  'font-size': unset,
@@ -1296,8 +1186,7 @@ $banner-header-props: (
1296
1186
  'background-color': unset,
1297
1187
  'border-color': unset,
1298
1188
  'foreground-color': unset
1299
- );
1300
-
1189
+ );
1301
1190
  $banner-sub-header-props: (
1302
1191
  'font-family': unset,
1303
1192
  'font-size': unset,
@@ -1318,8 +1207,7 @@ $banner-sub-header-props: (
1318
1207
  'background-color': unset,
1319
1208
  'border-color': unset,
1320
1209
  'foreground-color': unset
1321
- );
1322
-
1210
+ );
1323
1211
  $bottom-sheet-props: (
1324
1212
  'font-family': unset,
1325
1213
  'font-size': unset,
@@ -1342,8 +1230,7 @@ $bottom-sheet-props: (
1342
1230
  'border-width': unset,
1343
1231
  'foreground-color': unset,
1344
1232
  'translate-y': unset
1345
- );
1346
-
1233
+ );
1347
1234
  $box-props: (
1348
1235
  'font-family': "unset",
1349
1236
  'font-size': "unset",
@@ -1369,8 +1256,7 @@ $box-props: (
1369
1256
  'foreground-color': unset,
1370
1257
  'height': auto,
1371
1258
  'width': auto
1372
- );
1373
-
1259
+ );
1374
1260
  $breadcrumb-props: (
1375
1261
  'font-family': unset,
1376
1262
  'font-size': unset,
@@ -1388,8 +1274,7 @@ $breadcrumb-props: (
1388
1274
  'transition-mode': unset,
1389
1275
  'transition-property': unset,
1390
1276
  'translate': unset
1391
- );
1392
-
1277
+ );
1393
1278
  $breadcrumb-item-props: (
1394
1279
  'font-family': unset,
1395
1280
  'font-size': unset,
@@ -1407,8 +1292,7 @@ $breadcrumb-item-props: (
1407
1292
  'transition-mode': unset,
1408
1293
  'transition-property': unset,
1409
1294
  'translate': unset
1410
- );
1411
-
1295
+ );
1412
1296
  $button-props: (
1413
1297
  'font-family': var(--cosmopolitan-typography-button-font-family),
1414
1298
  'font-size': var(--cosmopolitan-typography-button-font-size),
@@ -1436,8 +1320,7 @@ $button-props: (
1436
1320
  'height': auto,
1437
1321
  'progress-thickness': var(--cosmopolitan-layout-thickness),
1438
1322
  'width': auto
1439
- );
1440
-
1323
+ );
1441
1324
  $button-group-props: (
1442
1325
  'font-family': unset,
1443
1326
  'font-size': unset,
@@ -1461,8 +1344,7 @@ $button-group-props: (
1461
1344
  'border-style': unset,
1462
1345
  'border-width': unset,
1463
1346
  'foreground-color': unset
1464
- );
1465
-
1347
+ );
1466
1348
  $calendar-props: (
1467
1349
  'font-family': var(--cosmopolitan-typography-content-font-family),
1468
1350
  'font-size': var(--cosmopolitan-typography-content-font-size),
@@ -1487,8 +1369,7 @@ $calendar-props: (
1487
1369
  'border-width': var(--cosmopolitan-layout-thickness),
1488
1370
  'divider-height': 1px,
1489
1371
  'foreground-color': var(--cosmopolitan-scheme-foreground)
1490
- );
1491
-
1372
+ );
1492
1373
  $calendar-days-view-props: (
1493
1374
  'font-family': "unset",
1494
1375
  'font-size': "unset",
@@ -1506,8 +1387,7 @@ $calendar-days-view-props: (
1506
1387
  'transition-mode': "unset",
1507
1388
  'transition-property': unset,
1508
1389
  'translate': "unset"
1509
- );
1510
-
1390
+ );
1511
1391
  $calendar-header-props: (
1512
1392
  'font-family': "unset",
1513
1393
  'font-size': "unset",
@@ -1531,8 +1411,7 @@ $calendar-header-props: (
1531
1411
  'border-style': solid,
1532
1412
  'border-width': var(--cosmopolitan-layout-thickness),
1533
1413
  'foreground-color': var(--cosmopolitan-scheme-lowlight)
1534
- );
1535
-
1414
+ );
1536
1415
  $calendar-item-props: (
1537
1416
  'font-family': var(--cosmopolitan-font-family),
1538
1417
  'font-size': var(--cosmopolitan-typography-content-font-size),
@@ -1556,8 +1435,7 @@ $calendar-item-props: (
1556
1435
  'border-style': solid,
1557
1436
  'border-width': 0,
1558
1437
  'foreground-color': var(--cosmopolitan-scheme-foreground)
1559
- );
1560
-
1438
+ );
1561
1439
  $calendar-months-view-props: (
1562
1440
  'font-family': "unset",
1563
1441
  'font-size': "unset",
@@ -1575,8 +1453,7 @@ $calendar-months-view-props: (
1575
1453
  'transition-mode': "unset",
1576
1454
  'transition-property': unset,
1577
1455
  'translate': "unset"
1578
- );
1579
-
1456
+ );
1580
1457
  $calendar-sub-header-props: (
1581
1458
  'font-family': "unset",
1582
1459
  'font-size': 18px,
@@ -1602,8 +1479,7 @@ $calendar-sub-header-props: (
1602
1479
  'font': var(--calendar-sub-header-font-weight) var(--calendar-sub-header-font-size) / var(--calendar-sub-header-line-height) var(--calendar-sub-header-font-family),
1603
1480
  'foreground-color': var(--cosmopolitan-scheme-foreground),
1604
1481
  'line-height': 22px
1605
- );
1606
-
1482
+ );
1607
1483
  $calendar-years-view-props: (
1608
1484
  'font-family': "unset",
1609
1485
  'font-size': "unset",
@@ -1621,8 +1497,7 @@ $calendar-years-view-props: (
1621
1497
  'transition-mode': "unset",
1622
1498
  'transition-property': unset,
1623
1499
  'translate': "unset"
1624
- );
1625
-
1500
+ );
1626
1501
  $camera-props: (
1627
1502
  'font-family': "unset",
1628
1503
  'font-size': "unset",
@@ -1643,8 +1518,7 @@ $camera-props: (
1643
1518
  'background-color': unset,
1644
1519
  'border-radius': unset,
1645
1520
  'foreground-color': unset
1646
- );
1647
-
1521
+ );
1648
1522
  $card-props: (
1649
1523
  'font-family': unset,
1650
1524
  'font-size': unset,
@@ -1674,8 +1548,7 @@ $card-props: (
1674
1548
  'shadow-offset-x': unset,
1675
1549
  'shadow-offset-y': unset,
1676
1550
  'shadow-spread': unset
1677
- );
1678
-
1551
+ );
1679
1552
  $card-actions-props: (
1680
1553
  'font-family': "unset",
1681
1554
  'font-size': "unset",
@@ -1693,8 +1566,7 @@ $card-actions-props: (
1693
1566
  'transition-mode': "unset",
1694
1567
  'transition-property': unset,
1695
1568
  'translate': "unset"
1696
- );
1697
-
1569
+ );
1698
1570
  $card-content-props: (
1699
1571
  'font-family': "unset",
1700
1572
  'font-size': "unset",
@@ -1712,8 +1584,7 @@ $card-content-props: (
1712
1584
  'transition-mode': "unset",
1713
1585
  'transition-property': unset,
1714
1586
  'translate': "unset"
1715
- );
1716
-
1587
+ );
1717
1588
  $card-footer-props: (
1718
1589
  'font-family': "unset",
1719
1590
  'font-size': "unset",
@@ -1731,8 +1602,7 @@ $card-footer-props: (
1731
1602
  'transition-mode': "unset",
1732
1603
  'transition-property': unset,
1733
1604
  'translate': "unset"
1734
- );
1735
-
1605
+ );
1736
1606
  $card-header-props: (
1737
1607
  'font-family': "unset",
1738
1608
  'font-size': "unset",
@@ -1750,8 +1620,7 @@ $card-header-props: (
1750
1620
  'transition-mode': "unset",
1751
1621
  'transition-property': unset,
1752
1622
  'translate': "unset"
1753
- );
1754
-
1623
+ );
1755
1624
  $card-sub-title-props: (
1756
1625
  'font-family': unset,
1757
1626
  'font-size': unset,
@@ -1772,8 +1641,7 @@ $card-sub-title-props: (
1772
1641
  'background-color': unset,
1773
1642
  'border-color': unset,
1774
1643
  'foreground-color': unset
1775
- );
1776
-
1644
+ );
1777
1645
  $card-title-props: (
1778
1646
  'font-family': unset,
1779
1647
  'font-size': unset,
@@ -1794,8 +1662,7 @@ $card-title-props: (
1794
1662
  'background-color': unset,
1795
1663
  'border-color': unset,
1796
1664
  'foreground-color': unset
1797
- );
1798
-
1665
+ );
1799
1666
  $carousel-props: (
1800
1667
  'font-family': "unset",
1801
1668
  'font-size': "unset",
@@ -1813,8 +1680,7 @@ $carousel-props: (
1813
1680
  'transition-mode': "unset",
1814
1681
  'transition-property': unset,
1815
1682
  'translate': "unset"
1816
- );
1817
-
1683
+ );
1818
1684
  $carousel2-props: (
1819
1685
  'font-family': "unset",
1820
1686
  'font-size': "unset",
@@ -1832,8 +1698,7 @@ $carousel2-props: (
1832
1698
  'transition-mode': "unset",
1833
1699
  'transition-property': unset,
1834
1700
  'translate': "unset"
1835
- );
1836
-
1701
+ );
1837
1702
  $carousel-item-props: (
1838
1703
  'font-family': "unset",
1839
1704
  'font-size': "unset",
@@ -1851,8 +1716,7 @@ $carousel-item-props: (
1851
1716
  'transition-mode': "unset",
1852
1717
  'transition-property': unset,
1853
1718
  'translate': "unset"
1854
- );
1855
-
1719
+ );
1856
1720
  $carousel-item2-props: (
1857
1721
  'font-family': "unset",
1858
1722
  'font-size': "unset",
@@ -1870,8 +1734,7 @@ $carousel-item2-props: (
1870
1734
  'transition-mode': "unset",
1871
1735
  'transition-property': unset,
1872
1736
  'translate': "unset"
1873
- );
1874
-
1737
+ );
1875
1738
  $cell-props: (
1876
1739
  'font-family': "unset",
1877
1740
  'font-size': "unset",
@@ -1896,8 +1759,7 @@ $cell-props: (
1896
1759
  'sub-font-text-decoration': var(--cosmopolitan-typography-content-text-decoration),
1897
1760
  'sub-font-text-transform': var(--cosmopolitan-typography-content-text-transform),
1898
1761
  'sub-font-weight': var(--cosmopolitan-typography-content-font-weight)
1899
- );
1900
-
1762
+ );
1901
1763
  $cell-group-props: (
1902
1764
  'font-family': var(--cosmopolitan-font-family),
1903
1765
  'font-size': var(--cosmopolitan-typography-content-font-size),
@@ -1921,8 +1783,7 @@ $cell-group-props: (
1921
1783
  'border-width': var(--cosmopolitan-layout-thickness),
1922
1784
  'inline-end': 0,
1923
1785
  'inline-start': calc(var(--joy-layout-space)*2)
1924
- );
1925
-
1786
+ );
1926
1787
  $chart-props: (
1927
1788
  'font-family': var(--cosmopolitan-typography-header-font-family),
1928
1789
  'font-size': var(--cosmopolitan-typography-header-font-size),
@@ -1942,8 +1803,7 @@ $chart-props: (
1942
1803
  'translate': "unset",
1943
1804
  'background-color': var(--cosmopolitan-scheme-background),
1944
1805
  'foreground-color': var(--cosmopolitan-scheme-foreground)
1945
- );
1946
-
1806
+ );
1947
1807
  $chat-props: (
1948
1808
  'font-family': unset,
1949
1809
  'font-size': unset,
@@ -1969,8 +1829,7 @@ $chat-props: (
1969
1829
  'focus-ring-outward-offset': unset,
1970
1830
  'foreground-color': unset,
1971
1831
  'shadow': unset
1972
- );
1973
-
1832
+ );
1974
1833
  $chat-header-props: (
1975
1834
  'font-family': "unset",
1976
1835
  'font-size': "unset",
@@ -1989,8 +1848,7 @@ $chat-header-props: (
1989
1848
  'transition-property': unset,
1990
1849
  'translate': "unset",
1991
1850
  'height': unset
1992
- );
1993
-
1851
+ );
1994
1852
  $chat-input-props: (
1995
1853
  'font-family': "unset",
1996
1854
  'font-size': "unset",
@@ -2009,8 +1867,7 @@ $chat-input-props: (
2009
1867
  'transition-property': unset,
2010
1868
  'translate': "unset",
2011
1869
  'emoji-background-color': unset
2012
- );
2013
-
1870
+ );
2014
1871
  $chat-marker-props: (
2015
1872
  'font-family': unset,
2016
1873
  'font-size': unset,
@@ -2035,8 +1892,7 @@ $chat-marker-props: (
2035
1892
  'border-width': unset,
2036
1893
  'foreground-color': unset,
2037
1894
  'shadow': unset
2038
- );
2039
-
1895
+ );
2040
1896
  $chat-message-props: (
2041
1897
  'font-family': unset,
2042
1898
  'font-size': unset,
@@ -2061,8 +1917,7 @@ $chat-message-props: (
2061
1917
  'border-width': unset,
2062
1918
  'foreground-color': unset,
2063
1919
  'shadow': unset
2064
- );
2065
-
1920
+ );
2066
1921
  $chat-message-avatar-props: (
2067
1922
  'font-family': "unset",
2068
1923
  'font-size': "unset",
@@ -2080,8 +1935,7 @@ $chat-message-avatar-props: (
2080
1935
  'transition-mode': "unset",
2081
1936
  'transition-property': unset,
2082
1937
  'translate': "unset"
2083
- );
2084
-
1938
+ );
2085
1939
  $chat-message-divider-props: (
2086
1940
  'font-family': "unset",
2087
1941
  'font-size': "unset",
@@ -2099,8 +1953,7 @@ $chat-message-divider-props: (
2099
1953
  'transition-mode': "unset",
2100
1954
  'transition-property': unset,
2101
1955
  'translate': "unset"
2102
- );
2103
-
1956
+ );
2104
1957
  $check-box-group-props: (
2105
1958
  'font-family': "unset",
2106
1959
  'font-size': "unset",
@@ -2125,8 +1978,7 @@ $check-box-group-props: (
2125
1978
  'border-width': unset,
2126
1979
  'foreground-color': unset,
2127
1980
  'shadow': unset
2128
- );
2129
-
1981
+ );
2130
1982
  $check-box-props: (
2131
1983
  'font-family': var(--cosmopolitan-font-family),
2132
1984
  'font-size': var(--cosmopolitan-typography-content-font-size),
@@ -2151,8 +2003,7 @@ $check-box-props: (
2151
2003
  'border-width': var(--cosmopolitan-layout-thickness),
2152
2004
  'foreground-color': var(--cosmopolitan-scheme-foreground),
2153
2005
  'shadow': var(--cosmopolitan-elevation-none)
2154
- );
2155
-
2006
+ );
2156
2007
  $checkmark-props: (
2157
2008
  'font-family': "unset",
2158
2009
  'font-size': "unset",
@@ -2181,8 +2032,7 @@ $checkmark-props: (
2181
2032
  'shadow': unset,
2182
2033
  'thickness': unset,
2183
2034
  'width': unset
2184
- );
2185
-
2035
+ );
2186
2036
  $chip-props: (
2187
2037
  'font-family': unset,
2188
2038
  'font-size': unset,
@@ -2209,8 +2059,7 @@ $chip-props: (
2209
2059
  'foreground-color': unset,
2210
2060
  'height': unset,
2211
2061
  'shadow': unset
2212
- );
2213
-
2062
+ );
2214
2063
  $chip-box-props: (
2215
2064
  'font-family': "unset",
2216
2065
  'font-size': "unset",
@@ -2236,8 +2085,7 @@ $chip-box-props: (
2236
2085
  'foreground-color': unset,
2237
2086
  'height': unset,
2238
2087
  'shadow': unset
2239
- );
2240
-
2088
+ );
2241
2089
  $choice-props: (
2242
2090
  'font-family': unset,
2243
2091
  'font-size': unset,
@@ -2265,8 +2113,7 @@ $choice-props: (
2265
2113
  'focus-ring-outward-offset': unset,
2266
2114
  'foreground-color': unset,
2267
2115
  'shadow': unset
2268
- );
2269
-
2116
+ );
2270
2117
  $choice-group-props: (
2271
2118
  'font-family': "unset",
2272
2119
  'font-size': "unset",
@@ -2291,8 +2138,7 @@ $choice-group-props: (
2291
2138
  'border-width': unset,
2292
2139
  'foreground-color': unset,
2293
2140
  'shadow': unset
2294
- );
2295
-
2141
+ );
2296
2142
  $choice-group-header-props: (
2297
2143
  'font-family': "unset",
2298
2144
  'font-size': "unset",
@@ -2317,8 +2163,7 @@ $choice-group-header-props: (
2317
2163
  'border-width': unset,
2318
2164
  'foreground-color': unset,
2319
2165
  'shadow': unset
2320
- );
2321
-
2166
+ );
2322
2167
  $code-props: (
2323
2168
  'font-family': "unset",
2324
2169
  'font-size': "unset",
@@ -2337,8 +2182,7 @@ $code-props: (
2337
2182
  'transition-property': unset,
2338
2183
  'translate': "unset",
2339
2184
  'foreground-color': unset
2340
- );
2341
-
2185
+ );
2342
2186
  $color-area-props: (
2343
2187
  'font-family': "unset",
2344
2188
  'font-size': "unset",
@@ -2356,8 +2200,7 @@ $color-area-props: (
2356
2200
  'transition-mode': "unset",
2357
2201
  'transition-property': unset,
2358
2202
  'translate': "unset"
2359
- );
2360
-
2203
+ );
2361
2204
  $color-box-props: (
2362
2205
  'font-family': "unset",
2363
2206
  'font-size': "unset",
@@ -2383,8 +2226,7 @@ $color-box-props: (
2383
2226
  'foreground-color': unset,
2384
2227
  'height': unset,
2385
2228
  'shadow': unset
2386
- );
2387
-
2229
+ );
2388
2230
  $color-picker-props: (
2389
2231
  'font-family': unset,
2390
2232
  'font-size': unset,
@@ -2409,8 +2251,7 @@ $color-picker-props: (
2409
2251
  'border-width': unset,
2410
2252
  'foreground-color': unset,
2411
2253
  'size': unset
2412
- );
2413
-
2254
+ );
2414
2255
  $color-slider-props: (
2415
2256
  'font-family': "unset",
2416
2257
  'font-size': "unset",
@@ -2435,8 +2276,7 @@ $color-slider-props: (
2435
2276
  'border-width': unset,
2436
2277
  'foreground-color': unset,
2437
2278
  'shadow': unset
2438
- );
2439
-
2279
+ );
2440
2280
  $color-swatch-props: (
2441
2281
  'font-family': unset,
2442
2282
  'font-size': unset,
@@ -2461,8 +2301,7 @@ $color-swatch-props: (
2461
2301
  'border-width': unset,
2462
2302
  'foreground-color': unset,
2463
2303
  'size': unset
2464
- );
2465
-
2304
+ );
2466
2305
  $color-swatch-group-props: (
2467
2306
  'font-family': unset,
2468
2307
  'font-size': unset,
@@ -2487,8 +2326,7 @@ $color-swatch-group-props: (
2487
2326
  'border-width': unset,
2488
2327
  'foreground-color': unset,
2489
2328
  'shadow': unset
2490
- );
2491
-
2329
+ );
2492
2330
  $color-thumb-props: (
2493
2331
  'font-family': unset,
2494
2332
  'font-size': unset,
@@ -2513,8 +2351,7 @@ $color-thumb-props: (
2513
2351
  'border-width': unset,
2514
2352
  'foreground-color': unset,
2515
2353
  'size': unset
2516
- );
2517
-
2354
+ );
2518
2355
  $combo-props: (
2519
2356
  'font-family': "unset",
2520
2357
  'font-size': "unset",
@@ -2532,8 +2369,7 @@ $combo-props: (
2532
2369
  'transition-mode': "unset",
2533
2370
  'transition-property': unset,
2534
2371
  'translate': "unset"
2535
- );
2536
-
2372
+ );
2537
2373
  $combo-item-props: (
2538
2374
  'font-family': unset,
2539
2375
  'font-size': unset,
@@ -2558,8 +2394,7 @@ $combo-item-props: (
2558
2394
  'border-width': unset,
2559
2395
  'foreground-color': unset,
2560
2396
  'shadow': unset
2561
- );
2562
-
2397
+ );
2563
2398
  $comment-props: (
2564
2399
  'font-family': "unset",
2565
2400
  'font-size': "unset",
@@ -2579,8 +2414,7 @@ $comment-props: (
2579
2414
  'translate': "unset",
2580
2415
  'inner-gap': unset,
2581
2416
  'nested-indent': unset
2582
- );
2583
-
2417
+ );
2584
2418
  $compound-button-props: (
2585
2419
  'font-family': var(--cosmopolitan-typography-button-font-family),
2586
2420
  'font-size': var(--cosmopolitan-typography-button-font-size),
@@ -2607,8 +2441,7 @@ $compound-button-props: (
2607
2441
  'height': auto,
2608
2442
  'shadow': var(--cosmopolitan-elevation-none),
2609
2443
  'width': auto
2610
- );
2611
-
2444
+ );
2612
2445
  $content-props: (
2613
2446
  'font-family': "unset",
2614
2447
  'font-size': "unset",
@@ -2626,8 +2459,7 @@ $content-props: (
2626
2459
  'transition-mode': "unset",
2627
2460
  'transition-property': unset,
2628
2461
  'translate': "unset"
2629
- );
2630
-
2462
+ );
2631
2463
  $cookies-consent-props: (
2632
2464
  'font-family': "unset",
2633
2465
  'font-size': "unset",
@@ -2645,8 +2477,7 @@ $cookies-consent-props: (
2645
2477
  'transition-mode': "unset",
2646
2478
  'transition-property': unset,
2647
2479
  'translate': "unset"
2648
- );
2649
-
2480
+ );
2650
2481
  $data-list-props: (
2651
2482
  'font-family': "unset",
2652
2483
  'font-size': "unset",
@@ -2664,8 +2495,7 @@ $data-list-props: (
2664
2495
  'transition-mode': "unset",
2665
2496
  'transition-property': unset,
2666
2497
  'translate': "unset"
2667
- );
2668
-
2498
+ );
2669
2499
  $data-table-props: (
2670
2500
  'font-family': "unset",
2671
2501
  'font-size': "unset",
@@ -2683,8 +2513,7 @@ $data-table-props: (
2683
2513
  'transition-mode': "unset",
2684
2514
  'transition-property': unset,
2685
2515
  'translate': "unset"
2686
- );
2687
-
2516
+ );
2688
2517
  $date-box-props: (
2689
2518
  'font-family': "unset",
2690
2519
  'font-size': "unset",
@@ -2710,8 +2539,7 @@ $date-box-props: (
2710
2539
  'foreground-color': unset,
2711
2540
  'height': unset,
2712
2541
  'shadow': unset
2713
- );
2714
-
2542
+ );
2715
2543
  $date-time-box-props: (
2716
2544
  'font-family': "unset",
2717
2545
  'font-size': "unset",
@@ -2737,8 +2565,7 @@ $date-time-box-props: (
2737
2565
  'foreground-color': unset,
2738
2566
  'height': unset,
2739
2567
  'shadow': unset
2740
- );
2741
-
2568
+ );
2742
2569
  $dialog-props: (
2743
2570
  'font-family': unset,
2744
2571
  'font-size': unset,
@@ -2768,8 +2595,7 @@ $dialog-props: (
2768
2595
  'shadow-offset-x': unset,
2769
2596
  'shadow-offset-y': unset,
2770
2597
  'shadow-spread': unset
2771
- );
2772
-
2598
+ );
2773
2599
  $dialog-actions-props: (
2774
2600
  'font-family': "unset",
2775
2601
  'font-size': "unset",
@@ -2787,8 +2613,7 @@ $dialog-actions-props: (
2787
2613
  'transition-mode': "unset",
2788
2614
  'transition-property': unset,
2789
2615
  'translate': "unset"
2790
- );
2791
-
2616
+ );
2792
2617
  $dialog-content-props: (
2793
2618
  'font-family': "unset",
2794
2619
  'font-size': "unset",
@@ -2806,8 +2631,7 @@ $dialog-content-props: (
2806
2631
  'transition-mode': "unset",
2807
2632
  'transition-property': unset,
2808
2633
  'translate': "unset"
2809
- );
2810
-
2634
+ );
2811
2635
  $dialog-footer-props: (
2812
2636
  'font-family': "unset",
2813
2637
  'font-size': "unset",
@@ -2825,8 +2649,7 @@ $dialog-footer-props: (
2825
2649
  'transition-mode': "unset",
2826
2650
  'transition-property': unset,
2827
2651
  'translate': "unset"
2828
- );
2829
-
2652
+ );
2830
2653
  $dialog-header-props: (
2831
2654
  'font-family': "unset",
2832
2655
  'font-size': "unset",
@@ -2844,8 +2667,7 @@ $dialog-header-props: (
2844
2667
  'transition-mode': "unset",
2845
2668
  'transition-property': unset,
2846
2669
  'translate': "unset"
2847
- );
2848
-
2670
+ );
2849
2671
  $dialog-header-sub-text-props: (
2850
2672
  'font-family': unset,
2851
2673
  'font-size': unset,
@@ -2866,8 +2688,7 @@ $dialog-header-sub-text-props: (
2866
2688
  'background-color': unset,
2867
2689
  'border-color': unset,
2868
2690
  'foreground-color': unset
2869
- );
2870
-
2691
+ );
2871
2692
  $dialog-header-text-props: (
2872
2693
  'font-family': unset,
2873
2694
  'font-size': unset,
@@ -2888,8 +2709,7 @@ $dialog-header-text-props: (
2888
2709
  'background-color': unset,
2889
2710
  'border-color': unset,
2890
2711
  'foreground-color': unset
2891
- );
2892
-
2712
+ );
2893
2713
  $dialog-host-props: (
2894
2714
  'font-family': "unset",
2895
2715
  'font-size': "unset",
@@ -2907,8 +2727,7 @@ $dialog-host-props: (
2907
2727
  'transition-mode': "unset",
2908
2728
  'transition-property': unset,
2909
2729
  'translate': "unset"
2910
- );
2911
-
2730
+ );
2912
2731
  $disclosure-props: (
2913
2732
  'font-family': unset,
2914
2733
  'font-size': unset,
@@ -2926,8 +2745,7 @@ $disclosure-props: (
2926
2745
  'transition-mode': unset,
2927
2746
  'transition-property': unset,
2928
2747
  'translate': unset
2929
- );
2930
-
2748
+ );
2931
2749
  $divider-props: (
2932
2750
  'font-family': unset,
2933
2751
  'font-size': unset,
@@ -2953,8 +2771,7 @@ $divider-props: (
2953
2771
  'foreground-color': unset,
2954
2772
  'shadow': unset,
2955
2773
  'thickness': var(--cosmopolitan-layout-thickness)
2956
- );
2957
-
2774
+ );
2958
2775
  $dot-props: (
2959
2776
  'font-family': unset,
2960
2777
  'font-size': unset,
@@ -2980,8 +2797,7 @@ $dot-props: (
2980
2797
  'foreground-color': unset,
2981
2798
  'shadow': unset,
2982
2799
  'size': unset
2983
- );
2984
-
2800
+ );
2985
2801
  $drawer-props: (
2986
2802
  'font-family': unset,
2987
2803
  'font-size': unset,
@@ -3008,8 +2824,7 @@ $drawer-props: (
3008
2824
  'height': unset,
3009
2825
  'shadow': unset,
3010
2826
  'width': unset
3011
- );
3012
-
2827
+ );
3013
2828
  $drawer-container-props: (
3014
2829
  'font-family': "unset",
3015
2830
  'font-size': "unset",
@@ -3027,8 +2842,7 @@ $drawer-container-props: (
3027
2842
  'transition-mode': "unset",
3028
2843
  'transition-property': unset,
3029
2844
  'translate': "unset"
3030
- );
3031
-
2845
+ );
3032
2846
  $drawer-content-props: (
3033
2847
  'font-family': "unset",
3034
2848
  'font-size': "unset",
@@ -3046,8 +2860,7 @@ $drawer-content-props: (
3046
2860
  'transition-mode': "unset",
3047
2861
  'transition-property': unset,
3048
2862
  'translate': "unset"
3049
- );
3050
-
2863
+ );
3051
2864
  $drop-down-button-props: (
3052
2865
  'font-family': var(--cosmopolitan-font-family),
3053
2866
  'font-size': var(--cosmopolitan-typography-button-font-size),
@@ -3075,8 +2888,7 @@ $drop-down-button-props: (
3075
2888
  'line-height': calc(var(--dropdown-button-font-line-height) - 4px),
3076
2889
  'shadow': var(--cosmopolitan-elevation-none),
3077
2890
  'transform': none
3078
- );
3079
-
2891
+ );
3080
2892
  $drop-zone-props: (
3081
2893
  'font-family': "unset",
3082
2894
  'font-size': "unset",
@@ -3094,8 +2906,7 @@ $drop-zone-props: (
3094
2906
  'transition-mode': "unset",
3095
2907
  'transition-property': unset,
3096
2908
  'translate': "unset"
3097
- );
3098
-
2909
+ );
3099
2910
  $dropdown-props: (
3100
2911
  'font-family': "unset",
3101
2912
  'font-size': "unset",
@@ -3113,8 +2924,7 @@ $dropdown-props: (
3113
2924
  'transition-mode': "unset",
3114
2925
  'transition-property': unset,
3115
2926
  'translate': "unset"
3116
- );
3117
-
2927
+ );
3118
2928
  $elevation-props: (
3119
2929
  'font-family': "unset",
3120
2930
  'font-size': "unset",
@@ -3132,8 +2942,7 @@ $elevation-props: (
3132
2942
  'transition-mode': "unset",
3133
2943
  'transition-property': unset,
3134
2944
  'translate': "unset"
3135
- );
3136
-
2945
+ );
3137
2946
  $emoji-props: (
3138
2947
  'font-family': "unset",
3139
2948
  'font-size': "unset",
@@ -3152,8 +2961,7 @@ $emoji-props: (
3152
2961
  'transition-property': unset,
3153
2962
  'translate': "unset",
3154
2963
  'background-color': unset
3155
- );
3156
-
2964
+ );
3157
2965
  $empty-state-props: (
3158
2966
  'font-family': "unset",
3159
2967
  'font-size': "unset",
@@ -3179,8 +2987,7 @@ $empty-state-props: (
3179
2987
  'header-font-text-decoration': unset,
3180
2988
  'header-font-text-transform': unset,
3181
2989
  'header-font-weight': unset
3182
- );
3183
-
2990
+ );
3184
2991
  $error-props: (
3185
2992
  'font-family': unset,
3186
2993
  'font-size': unset,
@@ -3205,8 +3012,7 @@ $error-props: (
3205
3012
  'border-width': unset,
3206
3013
  'foreground-color': unset,
3207
3014
  'shadow': unset
3208
- );
3209
-
3015
+ );
3210
3016
  $error-state-props: (
3211
3017
  'font-family': "unset",
3212
3018
  'font-size': "unset",
@@ -3232,8 +3038,7 @@ $error-state-props: (
3232
3038
  'header-font-text-decoration': unset,
3233
3039
  'header-font-text-transform': unset,
3234
3040
  'header-font-weight': unset
3235
- );
3236
-
3041
+ );
3237
3042
  $expandable-props: (
3238
3043
  'font-family': "unset",
3239
3044
  'font-size': "unset",
@@ -3251,8 +3056,7 @@ $expandable-props: (
3251
3056
  'transition-mode': "unset",
3252
3057
  'transition-property': unset,
3253
3058
  'translate': "unset"
3254
- );
3255
-
3059
+ );
3256
3060
  $expander-props: (
3257
3061
  'font-family': unset,
3258
3062
  'font-size': unset,
@@ -3278,8 +3082,7 @@ $expander-props: (
3278
3082
  'divider-height': unset,
3279
3083
  'foreground-color': unset,
3280
3084
  'shadow': unset
3281
- );
3282
-
3085
+ );
3283
3086
  $expander-group-props: (
3284
3087
  'font-family': unset,
3285
3088
  'font-size': unset,
@@ -3304,8 +3107,7 @@ $expander-group-props: (
3304
3107
  'border-width': unset,
3305
3108
  'foreground-color': unset,
3306
3109
  'shadow': unset
3307
- );
3308
-
3110
+ );
3309
3111
  $expander-header-props: (
3310
3112
  'font-family': unset,
3311
3113
  'font-size': unset,
@@ -3326,8 +3128,7 @@ $expander-header-props: (
3326
3128
  'background-color': unset,
3327
3129
  'border-color': unset,
3328
3130
  'foreground-color': unset
3329
- );
3330
-
3131
+ );
3331
3132
  $expander-sub-header-props: (
3332
3133
  'font-family': unset,
3333
3134
  'font-size': unset,
@@ -3348,8 +3149,7 @@ $expander-sub-header-props: (
3348
3149
  'background-color': unset,
3349
3150
  'border-color': unset,
3350
3151
  'foreground-color': unset
3351
- );
3352
-
3152
+ );
3353
3153
  $file-picker-props: (
3354
3154
  'font-family': "unset",
3355
3155
  'font-size': "unset",
@@ -3374,8 +3174,7 @@ $file-picker-props: (
3374
3174
  'border-width': unset,
3375
3175
  'foreground-color': unset,
3376
3176
  'shadow': unset
3377
- );
3378
-
3177
+ );
3379
3178
  $file-upload-props: (
3380
3179
  'font-family': "unset",
3381
3180
  'font-size': "unset",
@@ -3400,8 +3199,7 @@ $file-upload-props: (
3400
3199
  'border-width': unset,
3401
3200
  'foreground-color': unset,
3402
3201
  'shadow': unset
3403
- );
3404
-
3202
+ );
3405
3203
  $file-upload-item-props: (
3406
3204
  'font-family': "unset",
3407
3205
  'font-size': "unset",
@@ -3426,8 +3224,7 @@ $file-upload-item-props: (
3426
3224
  'border-width': unset,
3427
3225
  'foreground-color': unset,
3428
3226
  'shadow': unset
3429
- );
3430
-
3227
+ );
3431
3228
  $flip-props: (
3432
3229
  'font-family': "unset",
3433
3230
  'font-size': "unset",
@@ -3445,8 +3242,7 @@ $flip-props: (
3445
3242
  'transition-mode': "unset",
3446
3243
  'transition-property': unset,
3447
3244
  'translate': "unset"
3448
- );
3449
-
3245
+ );
3450
3246
  $floating-props: (
3451
3247
  'font-family': unset,
3452
3248
  'font-size': unset,
@@ -3474,8 +3270,7 @@ $floating-props: (
3474
3270
  'border-width': unset,
3475
3271
  'foreground-color': unset,
3476
3272
  'shadow': unset
3477
- );
3478
-
3273
+ );
3479
3274
  $floating-action-button-props: (
3480
3275
  'font-family': "unset",
3481
3276
  'font-size': "unset",
@@ -3495,8 +3290,7 @@ $floating-action-button-props: (
3495
3290
  'translate': "unset",
3496
3291
  'background-color': unset,
3497
3292
  'border-radius': unset
3498
- );
3499
-
3293
+ );
3500
3294
  $floating-action-button-group-props: (
3501
3295
  'font-family': unset,
3502
3296
  'font-size': unset,
@@ -3514,8 +3308,7 @@ $floating-action-button-group-props: (
3514
3308
  'transition-mode': unset,
3515
3309
  'transition-property': unset,
3516
3310
  'translate': "unset"
3517
- );
3518
-
3311
+ );
3519
3312
  $floating-trigger-props: (
3520
3313
  'font-family': "unset",
3521
3314
  'font-size': "unset",
@@ -3533,8 +3326,7 @@ $floating-trigger-props: (
3533
3326
  'transition-mode': "unset",
3534
3327
  'transition-property': unset,
3535
3328
  'translate': "unset"
3536
- );
3537
-
3329
+ );
3538
3330
  $focus-ring-props: (
3539
3331
  'font-family': "unset",
3540
3332
  'font-size': "unset",
@@ -3566,8 +3358,7 @@ $focus-ring-props: (
3566
3358
  'width': unset,
3567
3359
  'x': unset,
3568
3360
  'y': unset
3569
- );
3570
-
3361
+ );
3571
3362
  $footer-props: (
3572
3363
  'font-family': "unset",
3573
3364
  'font-size': "unset",
@@ -3592,8 +3383,7 @@ $footer-props: (
3592
3383
  'border-width': unset,
3593
3384
  'foreground-color': unset,
3594
3385
  'inset': unset
3595
- );
3596
-
3386
+ );
3597
3387
  $footer-item-props: (
3598
3388
  'font-family': "unset",
3599
3389
  'font-size': "unset",
@@ -3611,8 +3401,7 @@ $footer-item-props: (
3611
3401
  'transition-mode': "unset",
3612
3402
  'transition-property': unset,
3613
3403
  'translate': "unset"
3614
- );
3615
-
3404
+ );
3616
3405
  $footer-item-group-props: (
3617
3406
  'font-family': "unset",
3618
3407
  'font-size': "unset",
@@ -3630,8 +3419,7 @@ $footer-item-group-props: (
3630
3419
  'transition-mode': "unset",
3631
3420
  'transition-property': unset,
3632
3421
  'translate': "unset"
3633
- );
3634
-
3422
+ );
3635
3423
  $form-props: (
3636
3424
  'font-family': "unset",
3637
3425
  'font-size': "unset",
@@ -3650,8 +3438,7 @@ $form-props: (
3650
3438
  'transition-property': unset,
3651
3439
  'translate': "unset",
3652
3440
  'background-color': unset
3653
- );
3654
-
3441
+ );
3655
3442
  $form-field-props: (
3656
3443
  'font-family': "unset",
3657
3444
  'font-size': "unset",
@@ -3670,8 +3457,7 @@ $form-field-props: (
3670
3457
  'transition-property': unset,
3671
3458
  'translate': "unset",
3672
3459
  'background-color': unset
3673
- );
3674
-
3460
+ );
3675
3461
  $grid-props: (
3676
3462
  'font-family': "unset",
3677
3463
  'font-size': "unset",
@@ -3689,8 +3475,7 @@ $grid-props: (
3689
3475
  'transition-mode': "unset",
3690
3476
  'transition-property': unset,
3691
3477
  'translate': "unset"
3692
- );
3693
-
3478
+ );
3694
3479
  $grid-item-props: (
3695
3480
  'font-family': "unset",
3696
3481
  'font-size': "unset",
@@ -3708,8 +3493,7 @@ $grid-item-props: (
3708
3493
  'transition-mode': "unset",
3709
3494
  'transition-property': unset,
3710
3495
  'translate': "unset"
3711
- );
3712
-
3496
+ );
3713
3497
  $helmet-props: (
3714
3498
  'font-family': "unset",
3715
3499
  'font-size': "unset",
@@ -3727,8 +3511,7 @@ $helmet-props: (
3727
3511
  'transition-mode': "unset",
3728
3512
  'transition-property': unset,
3729
3513
  'translate': "unset"
3730
- );
3731
-
3514
+ );
3732
3515
  $hint-props: (
3733
3516
  'font-family': unset,
3734
3517
  'font-size': unset,
@@ -3753,8 +3536,7 @@ $hint-props: (
3753
3536
  'border-width': unset,
3754
3537
  'foreground-color': unset,
3755
3538
  'shadow': unset
3756
- );
3757
-
3539
+ );
3758
3540
  $icon-props: (
3759
3541
  'font-family': unset,
3760
3542
  'font-size': unset,
@@ -3780,8 +3562,7 @@ $icon-props: (
3780
3562
  'foreground-color': unset,
3781
3563
  'shadow': unset,
3782
3564
  'size': unset
3783
- );
3784
-
3565
+ );
3785
3566
  $image-props: (
3786
3567
  'font-family': unset,
3787
3568
  'font-size': unset,
@@ -3814,8 +3595,7 @@ $image-props: (
3814
3595
  'legend-font-text-transform': unset,
3815
3596
  'legend-font-weight': unset,
3816
3597
  'shadow': unset
3817
- );
3818
-
3598
+ );
3819
3599
  $ink-bar-props: (
3820
3600
  'font-family': "unset",
3821
3601
  'font-size': "unset",
@@ -3838,8 +3618,7 @@ $ink-bar-props: (
3838
3618
  'border-radius': unset,
3839
3619
  'foreground-color': unset,
3840
3620
  'thickness': unset
3841
- );
3842
-
3621
+ );
3843
3622
  $jumbtron-props: (
3844
3623
  'font-family': unset,
3845
3624
  'font-size': unset,
@@ -3864,8 +3643,7 @@ $jumbtron-props: (
3864
3643
  'border-width': unset,
3865
3644
  'foreground-color': unset,
3866
3645
  'shadow': unset
3867
- );
3868
-
3646
+ );
3869
3647
  $jumbtron-header-props: (
3870
3648
  'font-family': unset,
3871
3649
  'font-size': unset,
@@ -3886,8 +3664,7 @@ $jumbtron-header-props: (
3886
3664
  'background-color': unset,
3887
3665
  'border-color': unset,
3888
3666
  'foreground-color': unset
3889
- );
3890
-
3667
+ );
3891
3668
  $jumbtron-sub-header-props: (
3892
3669
  'font-family': unset,
3893
3670
  'font-size': unset,
@@ -3908,8 +3685,7 @@ $jumbtron-sub-header-props: (
3908
3685
  'background-color': unset,
3909
3686
  'border-color': unset,
3910
3687
  'foreground-color': unset
3911
- );
3912
-
3688
+ );
3913
3689
  $kbd-props: (
3914
3690
  'font-family': unset,
3915
3691
  'font-size': unset,
@@ -3934,8 +3710,7 @@ $kbd-props: (
3934
3710
  'border-width': unset,
3935
3711
  'foreground-color': unset,
3936
3712
  'shadow': unset
3937
- );
3938
-
3713
+ );
3939
3714
  $kbd-shortcut-props: (
3940
3715
  'font-family': "unset",
3941
3716
  'font-size': "unset",
@@ -3953,8 +3728,7 @@ $kbd-shortcut-props: (
3953
3728
  'transition-mode': "unset",
3954
3729
  'transition-property': unset,
3955
3730
  'translate': "unset"
3956
- );
3957
-
3731
+ );
3958
3732
  $light-chain-props: (
3959
3733
  'font-family': "unset",
3960
3734
  'font-size': "unset",
@@ -3972,8 +3746,7 @@ $light-chain-props: (
3972
3746
  'transition-mode': "unset",
3973
3747
  'transition-property': unset,
3974
3748
  'translate': "unset"
3975
- );
3976
-
3749
+ );
3977
3750
  $list-props: (
3978
3751
  'font-family': unset,
3979
3752
  'font-size': unset,
@@ -3998,8 +3771,7 @@ $list-props: (
3998
3771
  'border-width': unset,
3999
3772
  'foreground-color': unset,
4000
3773
  'shadow': unset
4001
- );
4002
-
3774
+ );
4003
3775
  $list-item-props: (
4004
3776
  'font-family': unset,
4005
3777
  'font-size': unset,
@@ -4024,8 +3796,7 @@ $list-item-props: (
4024
3796
  'border-width': unset,
4025
3797
  'foreground-color': unset,
4026
3798
  'shadow': unset
4027
- );
4028
-
3799
+ );
4029
3800
  $list-item-group-props: (
4030
3801
  'font-family': unset,
4031
3802
  'font-size': unset,
@@ -4050,8 +3821,7 @@ $list-item-group-props: (
4050
3821
  'border-width': unset,
4051
3822
  'foreground-color': unset,
4052
3823
  'shadow': unset
4053
- );
4054
-
3824
+ );
4055
3825
  $marquee-props: (
4056
3826
  'font-family': "unset",
4057
3827
  'font-size': "unset",
@@ -4071,8 +3841,7 @@ $marquee-props: (
4071
3841
  'translate': "unset",
4072
3842
  'direction': unset,
4073
3843
  'speed': unset
4074
- );
4075
-
3844
+ );
4076
3845
  $masonry-props: (
4077
3846
  'font-family': "unset",
4078
3847
  'font-size': "unset",
@@ -4091,8 +3860,7 @@ $masonry-props: (
4091
3860
  'transition-property': unset,
4092
3861
  'translate': "unset",
4093
3862
  'columns': 1
4094
- );
4095
-
3863
+ );
4096
3864
  $menu-props: (
4097
3865
  'font-family': unset,
4098
3866
  'font-size': unset,
@@ -4117,8 +3885,7 @@ $menu-props: (
4117
3885
  'border-width': unset,
4118
3886
  'foreground-color': unset,
4119
3887
  'shadow': unset
4120
- );
4121
-
3888
+ );
4122
3889
  $menu-item-props: (
4123
3890
  'font-family': unset,
4124
3891
  'font-size': unset,
@@ -4142,9 +3909,12 @@ $menu-item-props: (
4142
3909
  'border-style': unset,
4143
3910
  'border-width': unset,
4144
3911
  'foreground-color': unset,
4145
- 'shadow': unset
4146
- );
4147
-
3912
+ 'shadow': unset,
3913
+ 'height': unset,
3914
+ 'indent-color': var(--cosmopolitan-scheme-highlight),
3915
+ 'indent-size': var(--cosmopolitan-layout-thickness),
3916
+ 'indent-offset': calc(var(--cosmopolitan-layout-space) * 2)
3917
+ );
4148
3918
  $menu-item-group-props: (
4149
3919
  'font-family': unset,
4150
3920
  'font-size': unset,
@@ -4176,8 +3946,7 @@ $menu-item-group-props: (
4176
3946
  'header-font-text-transform': unset,
4177
3947
  'header-font-weight': unset,
4178
3948
  'shadow': unset
4179
- );
4180
-
3949
+ );
4181
3950
  $message-box-props: (
4182
3951
  'font-family': "unset",
4183
3952
  'font-size': "unset",
@@ -4195,8 +3964,7 @@ $message-box-props: (
4195
3964
  'transition-mode': "unset",
4196
3965
  'transition-property': unset,
4197
3966
  'translate': "unset"
4198
- );
4199
-
3967
+ );
4200
3968
  $meter-bar-props: (
4201
3969
  'font-family': "unset",
4202
3970
  'font-size': "unset",
@@ -4214,8 +3982,7 @@ $meter-bar-props: (
4214
3982
  'transition-mode': "unset",
4215
3983
  'transition-property': unset,
4216
3984
  'translate': "unset"
4217
- );
4218
-
3985
+ );
4219
3986
  $meter-ring-props: (
4220
3987
  'font-family': "unset",
4221
3988
  'font-size': "unset",
@@ -4233,8 +4000,7 @@ $meter-ring-props: (
4233
4000
  'transition-mode': "unset",
4234
4001
  'transition-property': unset,
4235
4002
  'translate': "unset"
4236
- );
4237
-
4003
+ );
4238
4004
  $number-props: (
4239
4005
  'font-family': unset,
4240
4006
  'font-size': unset,
@@ -4253,8 +4019,7 @@ $number-props: (
4253
4019
  'transition-property': unset,
4254
4020
  'translate': "unset",
4255
4021
  'alignment': unset
4256
- );
4257
-
4022
+ );
4258
4023
  $number-box-props: (
4259
4024
  'font-family': "unset",
4260
4025
  'font-size': "unset",
@@ -4280,8 +4045,7 @@ $number-box-props: (
4280
4045
  'foreground-color': unset,
4281
4046
  'height': unset,
4282
4047
  'shadow': unset
4283
- );
4284
-
4048
+ );
4285
4049
  $number-counter-props: (
4286
4050
  'font-family': unset,
4287
4051
  'font-size': unset,
@@ -4305,8 +4069,7 @@ $number-counter-props: (
4305
4069
  'n': unset,
4306
4070
  'timing': unset,
4307
4071
  'to': unset
4308
- );
4309
-
4072
+ );
4310
4073
  $page-props: (
4311
4074
  'font-family': "unset",
4312
4075
  'font-size': "unset",
@@ -4324,8 +4087,7 @@ $page-props: (
4324
4087
  'transition-mode': "unset",
4325
4088
  'transition-property': unset,
4326
4089
  'translate': "unset"
4327
- );
4328
-
4090
+ );
4329
4091
  $page-content-props: (
4330
4092
  'font-family': "unset",
4331
4093
  'font-size': "unset",
@@ -4347,8 +4109,7 @@ $page-content-props: (
4347
4109
  'left': unset,
4348
4110
  'max-width': unset,
4349
4111
  'width': unset
4350
- );
4351
-
4112
+ );
4352
4113
  $page-header-props: (
4353
4114
  'font-family': unset,
4354
4115
  'font-size': unset,
@@ -4370,8 +4131,7 @@ $page-header-props: (
4370
4131
  'border-color': unset,
4371
4132
  'foreground-color': unset,
4372
4133
  'inset': unset
4373
- );
4374
-
4134
+ );
4375
4135
  $page-menu-props: (
4376
4136
  'font-family': unset,
4377
4137
  'font-size': unset,
@@ -4398,8 +4158,7 @@ $page-menu-props: (
4398
4158
  'height': unset,
4399
4159
  'line-height': unset,
4400
4160
  'shadow': unset
4401
- );
4402
-
4161
+ );
4403
4162
  $page-pre-content-props: (
4404
4163
  'font-family': "unset",
4405
4164
  'font-size': "unset",
@@ -4418,8 +4177,7 @@ $page-pre-content-props: (
4418
4177
  'transition-property': unset,
4419
4178
  'translate': "unset",
4420
4179
  'inset': unset
4421
- );
4422
-
4180
+ );
4423
4181
  $page-pre-header-props: (
4424
4182
  'font-family': "unset",
4425
4183
  'font-size': "unset",
@@ -4438,8 +4196,7 @@ $page-pre-header-props: (
4438
4196
  'transition-property': unset,
4439
4197
  'translate': "unset",
4440
4198
  'inset': unset
4441
- );
4442
-
4199
+ );
4443
4200
  $paginator-props: (
4444
4201
  'font-family': "unset",
4445
4202
  'font-size': "unset",
@@ -4458,8 +4215,7 @@ $paginator-props: (
4458
4215
  'transition-property': unset,
4459
4216
  'translate': "unset",
4460
4217
  'background-color': unset
4461
- );
4462
-
4218
+ );
4463
4219
  $password-box-props: (
4464
4220
  'font-family': "unset",
4465
4221
  'font-size': "unset",
@@ -4485,8 +4241,7 @@ $password-box-props: (
4485
4241
  'foreground-color': unset,
4486
4242
  'height': unset,
4487
4243
  'shadow': unset
4488
- );
4489
-
4244
+ );
4490
4245
  $pattern-props: (
4491
4246
  'font-family': "unset",
4492
4247
  'font-size': "unset",
@@ -4505,8 +4260,7 @@ $pattern-props: (
4505
4260
  'transition-property': unset,
4506
4261
  'translate': "unset",
4507
4262
  'background-color': unset
4508
- );
4509
-
4263
+ );
4510
4264
  $persona-props: (
4511
4265
  'font-family': unset,
4512
4266
  'font-size': unset,
@@ -4531,8 +4285,7 @@ $persona-props: (
4531
4285
  'border-width': unset,
4532
4286
  'foreground-color': unset,
4533
4287
  'shadow': unset
4534
- );
4535
-
4288
+ );
4536
4289
  $perspective-props: (
4537
4290
  'font-family': "unset",
4538
4291
  'font-size': "unset",
@@ -4550,8 +4303,7 @@ $perspective-props: (
4550
4303
  'transition-mode': "unset",
4551
4304
  'transition-property': unset,
4552
4305
  'translate': "unset"
4553
- );
4554
-
4306
+ );
4555
4307
  $pin-box-props: (
4556
4308
  'font-family': "unset",
4557
4309
  'font-size': "unset",
@@ -4577,8 +4329,7 @@ $pin-box-props: (
4577
4329
  'foreground-color': unset,
4578
4330
  'height': unset,
4579
4331
  'shadow': unset
4580
- );
4581
-
4332
+ );
4582
4333
  $popup-props: (
4583
4334
  'font-family': unset,
4584
4335
  'font-size': unset,
@@ -4607,8 +4358,7 @@ $popup-props: (
4607
4358
  'shadow-offset-x': unset,
4608
4359
  'shadow-offset-y': unset,
4609
4360
  'shadow-spread': unset
4610
- );
4611
-
4361
+ );
4612
4362
  $portal-props: (
4613
4363
  'font-family': "unset",
4614
4364
  'font-size': "unset",
@@ -4626,8 +4376,7 @@ $portal-props: (
4626
4376
  'transition-mode': "unset",
4627
4377
  'transition-property': unset,
4628
4378
  'translate': "unset"
4629
- );
4630
-
4379
+ );
4631
4380
  $portal-projection-props: (
4632
4381
  'font-family': "unset",
4633
4382
  'font-size': "unset",
@@ -4645,8 +4394,7 @@ $portal-projection-props: (
4645
4394
  'transition-mode': "unset",
4646
4395
  'transition-property': unset,
4647
4396
  'translate': "unset"
4648
- );
4649
-
4397
+ );
4650
4398
  $progress-bar-props: (
4651
4399
  'font-family': "unset",
4652
4400
  'font-size': "unset",
@@ -4664,8 +4412,7 @@ $progress-bar-props: (
4664
4412
  'transition-mode': "unset",
4665
4413
  'transition-property': unset,
4666
4414
  'translate': "unset"
4667
- );
4668
-
4415
+ );
4669
4416
  $progress-ring-props: (
4670
4417
  'font-family': unset,
4671
4418
  'font-size': unset,
@@ -4691,8 +4438,7 @@ $progress-ring-props: (
4691
4438
  'fill-color': unset,
4692
4439
  'foreground-color': unset,
4693
4440
  'shadow': unset
4694
- );
4695
-
4441
+ );
4696
4442
  $qr-code-props: (
4697
4443
  'font-family': "unset",
4698
4444
  'font-size': "unset",
@@ -4712,8 +4458,7 @@ $qr-code-props: (
4712
4458
  'translate': "unset",
4713
4459
  'background-color': var(--cosmopolitan-scheme-background),
4714
4460
  'foreground-color': var(--cosmopolitan-scheme-foreground)
4715
- );
4716
-
4461
+ );
4717
4462
  $radio-props: (
4718
4463
  'font-family': "unset",
4719
4464
  'font-size': "unset",
@@ -4738,8 +4483,7 @@ $radio-props: (
4738
4483
  'border-width': unset,
4739
4484
  'foreground-color': unset,
4740
4485
  'shadow': unset
4741
- );
4742
-
4486
+ );
4743
4487
  $radio-group-props: (
4744
4488
  'font-family': "unset",
4745
4489
  'font-size': "unset",
@@ -4764,8 +4508,7 @@ $radio-group-props: (
4764
4508
  'border-width': unset,
4765
4509
  'foreground-color': unset,
4766
4510
  'shadow': unset
4767
- );
4768
-
4511
+ );
4769
4512
  $rating-props: (
4770
4513
  'font-family': "unset",
4771
4514
  'font-size': "unset",
@@ -4790,8 +4533,7 @@ $rating-props: (
4790
4533
  'border-width': unset,
4791
4534
  'foreground-color': unset,
4792
4535
  'shadow': unset
4793
- );
4794
-
4536
+ );
4795
4537
  $repeat-button-props: (
4796
4538
  'font-family': unset,
4797
4539
  'font-size': unset,
@@ -4818,8 +4560,7 @@ $repeat-button-props: (
4818
4560
  'foreground-color': unset,
4819
4561
  'line-height': unset,
4820
4562
  'shadow': unset
4821
- );
4822
-
4563
+ );
4823
4564
  $resize-adorner-props: (
4824
4565
  'font-family': "unset",
4825
4566
  'font-size': "unset",
@@ -4843,8 +4584,7 @@ $resize-adorner-props: (
4843
4584
  'border-width': var(--cosmopolitan-layout-thickness),
4844
4585
  'thumb-background-color': var(--cosmopolitan-scheme-highlight),
4845
4586
  'thumb-border-radius': var(--cosmopolitan-layout-thickness)
4846
- );
4847
-
4587
+ );
4848
4588
  $ribbon-props: (
4849
4589
  'font-family': unset,
4850
4590
  'font-size': unset,
@@ -4870,8 +4610,7 @@ $ribbon-props: (
4870
4610
  'font': unset,
4871
4611
  'foreground-color': unset,
4872
4612
  'shadow': unset
4873
- );
4874
-
4613
+ );
4875
4614
  $rich-text-box-props: (
4876
4615
  'font-family': "unset",
4877
4616
  'font-size': "unset",
@@ -4897,8 +4636,7 @@ $rich-text-box-props: (
4897
4636
  'foreground-color': unset,
4898
4637
  'height': unset,
4899
4638
  'shadow': unset
4900
- );
4901
-
4639
+ );
4902
4640
  $rich-text-box-toolbox-props: (
4903
4641
  'font-family': "unset",
4904
4642
  'font-size': "unset",
@@ -4923,8 +4661,7 @@ $rich-text-box-toolbox-props: (
4923
4661
  'border-width': unset,
4924
4662
  'foreground-color': unset,
4925
4663
  'shadow': unset
4926
- );
4927
-
4664
+ );
4928
4665
  $ripple-props: (
4929
4666
  'font-family': "unset",
4930
4667
  'font-size': "unset",
@@ -4943,8 +4680,7 @@ $ripple-props: (
4943
4680
  'transition-property': unset,
4944
4681
  'translate': "unset",
4945
4682
  'background-color': unset
4946
- );
4947
-
4683
+ );
4948
4684
  $router-props: (
4949
4685
  'font-family': "unset",
4950
4686
  'font-size': "unset",
@@ -4962,8 +4698,7 @@ $router-props: (
4962
4698
  'transition-mode': "unset",
4963
4699
  'transition-property': unset,
4964
4700
  'translate': "unset"
4965
- );
4966
-
4701
+ );
4967
4702
  $router-anchor-props: (
4968
4703
  'font-family': "unset",
4969
4704
  'font-size': "unset",
@@ -4981,8 +4716,7 @@ $router-anchor-props: (
4981
4716
  'transition-mode': "unset",
4982
4717
  'transition-property': unset,
4983
4718
  'translate': "unset"
4984
- );
4985
-
4719
+ );
4986
4720
  $router-link-props: (
4987
4721
  'font-family': "unset",
4988
4722
  'font-size': "unset",
@@ -5000,8 +4734,7 @@ $router-link-props: (
5000
4734
  'transition-mode': "unset",
5001
4735
  'transition-property': unset,
5002
4736
  'translate': "unset"
5003
- );
5004
-
4737
+ );
5005
4738
  $router-outlet-props: (
5006
4739
  'font-family': "unset",
5007
4740
  'font-size': "unset",
@@ -5019,8 +4752,7 @@ $router-outlet-props: (
5019
4752
  'transition-mode': "unset",
5020
4753
  'transition-property': unset,
5021
4754
  'translate': "unset"
5022
- );
5023
-
4755
+ );
5024
4756
  $scale-props: (
5025
4757
  'font-family': "unset",
5026
4758
  'font-size': "unset",
@@ -5038,8 +4770,7 @@ $scale-props: (
5038
4770
  'transition-mode': "unset",
5039
4771
  'transition-property': unset,
5040
4772
  'translate': "unset"
5041
- );
5042
-
4773
+ );
5043
4774
  $scroll-props: (
5044
4775
  'font-family': "unset",
5045
4776
  'font-size': "unset",
@@ -5057,8 +4788,7 @@ $scroll-props: (
5057
4788
  'transition-mode': "unset",
5058
4789
  'transition-property': unset,
5059
4790
  'translate': "unset"
5060
- );
5061
-
4791
+ );
5062
4792
  $search-box-props: (
5063
4793
  'font-family': "unset",
5064
4794
  'font-size': "unset",
@@ -5084,8 +4814,7 @@ $search-box-props: (
5084
4814
  'foreground-color': unset,
5085
4815
  'height': unset,
5086
4816
  'shadow': unset
5087
- );
5088
-
4817
+ );
5089
4818
  $segment-props: (
5090
4819
  'font-family': "unset",
5091
4820
  'font-size': "unset",
@@ -5110,8 +4839,7 @@ $segment-props: (
5110
4839
  'border-width': unset,
5111
4840
  'foreground-color': unset,
5112
4841
  'indicator-height': unset
5113
- );
5114
-
4842
+ );
5115
4843
  $segment-item-props: (
5116
4844
  'font-family': unset,
5117
4845
  'font-size': unset,
@@ -5146,8 +4874,7 @@ $segment-item-props: (
5146
4874
  'color-hover': unset,
5147
4875
  'padding-end': unset,
5148
4876
  'padding-start': unset
5149
- );
5150
-
4877
+ );
5151
4878
  $select-props: (
5152
4879
  'font-family': "unset",
5153
4880
  'font-size': "unset",
@@ -5172,8 +4899,7 @@ $select-props: (
5172
4899
  'border-width': unset,
5173
4900
  'foreground-color': unset,
5174
4901
  'shadow': unset
5175
- );
5176
-
4902
+ );
5177
4903
  $select-item-props: (
5178
4904
  'font-family': "unset",
5179
4905
  'font-size': "unset",
@@ -5198,8 +4924,7 @@ $select-item-props: (
5198
4924
  'border-width': unset,
5199
4925
  'foreground-color': unset,
5200
4926
  'shadow': unset
5201
- );
5202
-
4927
+ );
5203
4928
  $select-item-group-props: (
5204
4929
  'font-family': "unset",
5205
4930
  'font-size': "unset",
@@ -5224,8 +4949,7 @@ $select-item-group-props: (
5224
4949
  'border-width': unset,
5225
4950
  'foreground-color': unset,
5226
4951
  'shadow': unset
5227
- );
5228
-
4952
+ );
5229
4953
  $signature-pad-props: (
5230
4954
  'font-family': "unset",
5231
4955
  'font-size': "unset",
@@ -5250,8 +4974,7 @@ $signature-pad-props: (
5250
4974
  'border-width': unset,
5251
4975
  'foreground-color': unset,
5252
4976
  'shadow': unset
5253
- );
5254
-
4977
+ );
5255
4978
  $skeleton-props: (
5256
4979
  'font-family': "unset",
5257
4980
  'font-size': "unset",
@@ -5275,8 +4998,7 @@ $skeleton-props: (
5275
4998
  'border-style': unset,
5276
4999
  'border-width': unset,
5277
5000
  'foreground-color': unset
5278
- );
5279
-
5001
+ );
5280
5002
  $slider-props: (
5281
5003
  'font-family': unset,
5282
5004
  'font-size': unset,
@@ -5337,8 +5059,7 @@ $slider-props: (
5337
5059
  'tooltip-transition-mode': unset,
5338
5060
  'tooltip-transition-property': unset,
5339
5061
  'track-size': unset
5340
- );
5341
-
5062
+ );
5342
5063
  $slider2-props: (
5343
5064
  'font-family': "unset",
5344
5065
  'font-size': "unset",
@@ -5356,8 +5077,7 @@ $slider2-props: (
5356
5077
  'transition-mode': "unset",
5357
5078
  'transition-property': unset,
5358
5079
  'translate': "unset"
5359
- );
5360
-
5080
+ );
5361
5081
  $slider2thumb-props: (
5362
5082
  'font-family': "unset",
5363
5083
  'font-size': "unset",
@@ -5376,8 +5096,7 @@ $slider2thumb-props: (
5376
5096
  'transition-property': unset,
5377
5097
  'translate': "unset",
5378
5098
  'size': unset
5379
- );
5380
-
5099
+ );
5381
5100
  $spacer-props: (
5382
5101
  'font-family': "unset",
5383
5102
  'font-size': "unset",
@@ -5395,8 +5114,7 @@ $spacer-props: (
5395
5114
  'transition-mode': "unset",
5396
5115
  'transition-property': unset,
5397
5116
  'translate': "unset"
5398
- );
5399
-
5117
+ );
5400
5118
  $split-props: (
5401
5119
  'font-family': "unset",
5402
5120
  'font-size': "unset",
@@ -5424,8 +5142,7 @@ $split-props: (
5424
5142
  'thumb-border-color': var(--cosmopolitan-scheme-highlight),
5425
5143
  'thumb-border-radius': var(--cosmopolitan-layout-radius),
5426
5144
  'thumb-foreground-color': var(--cosmopolitan-scheme-foreground)
5427
- );
5428
-
5145
+ );
5429
5146
  $split-button-props: (
5430
5147
  'font-family': unset,
5431
5148
  'font-size': unset,
@@ -5452,8 +5169,7 @@ $split-button-props: (
5452
5169
  'foreground-color': unset,
5453
5170
  'line-height': unset,
5454
5171
  'shadow': unset
5455
- );
5456
-
5172
+ );
5457
5173
  $stack-props: (
5458
5174
  'font-family': "unset",
5459
5175
  'font-size': "unset",
@@ -5471,8 +5187,7 @@ $stack-props: (
5471
5187
  'transition-mode': "unset",
5472
5188
  'transition-property': unset,
5473
5189
  'translate': "unset"
5474
- );
5475
-
5190
+ );
5476
5191
  $sticky-props: (
5477
5192
  'font-family': "unset",
5478
5193
  'font-size': "unset",
@@ -5492,8 +5207,7 @@ $sticky-props: (
5492
5207
  'translate': "unset",
5493
5208
  'left': unset,
5494
5209
  'top': unset
5495
- );
5496
-
5210
+ );
5497
5211
  $success-state-props: (
5498
5212
  'font-family': "unset",
5499
5213
  'font-size': "unset",
@@ -5519,8 +5233,7 @@ $success-state-props: (
5519
5233
  'header-font-text-decoration': unset,
5520
5234
  'header-font-text-transform': unset,
5521
5235
  'header-font-weight': unset
5522
- );
5523
-
5236
+ );
5524
5237
  $summary-props: (
5525
5238
  'font-family': "unset",
5526
5239
  'font-size': "unset",
@@ -5538,8 +5251,7 @@ $summary-props: (
5538
5251
  'transition-mode': "unset",
5539
5252
  'transition-property': unset,
5540
5253
  'translate': "unset"
5541
- );
5542
-
5254
+ );
5543
5255
  $swipe-props: (
5544
5256
  'font-family': "unset",
5545
5257
  'font-size': "unset",
@@ -5557,8 +5269,7 @@ $swipe-props: (
5557
5269
  'transition-mode': "unset",
5558
5270
  'transition-property': unset,
5559
5271
  'translate': "unset"
5560
- );
5561
-
5272
+ );
5562
5273
  $tab-props: (
5563
5274
  'font-family': var(--cosmopolitan-font-family),
5564
5275
  'font-size': var(--cosmopolitan-typography-content-font-size),
@@ -5590,8 +5301,7 @@ $tab-props: (
5590
5301
  'strip-padding-left': 0,
5591
5302
  'strip-padding-right': 0,
5592
5303
  'strip-padding-top': 0
5593
- );
5594
-
5304
+ );
5595
5305
  $tab-item-props: (
5596
5306
  'font-family': "unset",
5597
5307
  'font-size': "unset",
@@ -5612,8 +5322,7 @@ $tab-item-props: (
5612
5322
  'border-radius': unset,
5613
5323
  'border-style': unset,
5614
5324
  'border-width': unset
5615
- );
5616
-
5325
+ );
5617
5326
  $tab-panel-props: (
5618
5327
  'font-family': "unset",
5619
5328
  'font-size': "unset",
@@ -5632,8 +5341,7 @@ $tab-panel-props: (
5632
5341
  'transition-property': unset,
5633
5342
  'translate': "unset",
5634
5343
  'background-color': unset
5635
- );
5636
-
5344
+ );
5637
5345
  $tab-strip-props: (
5638
5346
  'font-family': var(--cosmopolitan-font-family),
5639
5347
  'font-size': var(--cosmopolitan-typography-button-font-size),
@@ -5657,8 +5365,7 @@ $tab-strip-props: (
5657
5365
  'border-style': solid,
5658
5366
  'border-width': 0,
5659
5367
  'foreground-color': unset
5660
- );
5661
-
5368
+ );
5662
5369
  $tab-strip-item-props: (
5663
5370
  'font-family': var(--cosmopolitan-font-family),
5664
5371
  'font-size': var(--cosmopolitan-typography-button-font-size),
@@ -5685,8 +5392,7 @@ $tab-strip-item-props: (
5685
5392
  'shadow': var(--cosmopolitan-elevation-none),
5686
5393
  'size': 56px,
5687
5394
  'thickness': 4px
5688
- );
5689
-
5395
+ );
5690
5396
  $table-props: (
5691
5397
  'font-family': unset,
5692
5398
  'font-size': unset,
@@ -5711,8 +5417,7 @@ $table-props: (
5711
5417
  'border-width': unset,
5712
5418
  'foreground-color': unset,
5713
5419
  'shadow': unset
5714
- );
5715
-
5420
+ );
5716
5421
  $table-body-props: (
5717
5422
  'font-family': unset,
5718
5423
  'font-size': unset,
@@ -5737,8 +5442,7 @@ $table-body-props: (
5737
5442
  'border-width': unset,
5738
5443
  'foreground-color': unset,
5739
5444
  'shadow': unset
5740
- );
5741
-
5445
+ );
5742
5446
  $table-cell-props: (
5743
5447
  'font-family': unset,
5744
5448
  'font-size': unset,
@@ -5763,8 +5467,7 @@ $table-cell-props: (
5763
5467
  'border-width': unset,
5764
5468
  'foreground-color': unset,
5765
5469
  'shadow': unset
5766
- );
5767
-
5470
+ );
5768
5471
  $table-footer-props: (
5769
5472
  'font-family': unset,
5770
5473
  'font-size': unset,
@@ -5789,8 +5492,7 @@ $table-footer-props: (
5789
5492
  'border-width': unset,
5790
5493
  'foreground-color': unset,
5791
5494
  'shadow': unset
5792
- );
5793
-
5495
+ );
5794
5496
  $table-header-props: (
5795
5497
  'font-family': unset,
5796
5498
  'font-size': unset,
@@ -5815,8 +5517,7 @@ $table-header-props: (
5815
5517
  'border-width': unset,
5816
5518
  'foreground-color': unset,
5817
5519
  'shadow': unset
5818
- );
5819
-
5520
+ );
5820
5521
  $table-row-props: (
5821
5522
  'font-family': unset,
5822
5523
  'font-size': unset,
@@ -5841,8 +5542,7 @@ $table-row-props: (
5841
5542
  'border-width': unset,
5842
5543
  'foreground-color': unset,
5843
5544
  'shadow': unset
5844
- );
5845
-
5545
+ );
5846
5546
  $text-props: (
5847
5547
  'font-family': var(--cosmopolitan-font-family),
5848
5548
  'font-size': var(--cosmopolitan-typography-content-font-size),
@@ -5869,8 +5569,7 @@ $text-props: (
5869
5569
  'font-transform': var(--cosmopolitan-typography-content-text-transform),
5870
5570
  'foreground-color': var(--cosmopolitan-scheme-foreground),
5871
5571
  'shadow': var(--cosmopolitan-elevation-none)
5872
- );
5873
-
5572
+ );
5874
5573
  $text-box-props: (
5875
5574
  'font-family': "unset",
5876
5575
  'font-size': "unset",
@@ -5896,8 +5595,7 @@ $text-box-props: (
5896
5595
  'foreground-color': unset,
5897
5596
  'height': unset,
5898
5597
  'shadow': unset
5899
- );
5900
-
5598
+ );
5901
5599
  $text-format-props: (
5902
5600
  'font-family': "unset",
5903
5601
  'font-size': "unset",
@@ -5915,8 +5613,7 @@ $text-format-props: (
5915
5613
  'transition-mode': "unset",
5916
5614
  'transition-property': unset,
5917
5615
  'translate': "unset"
5918
- );
5919
-
5616
+ );
5920
5617
  $tick-bar-props: (
5921
5618
  'font-family': unset,
5922
5619
  'font-size': unset,
@@ -5945,8 +5642,7 @@ $tick-bar-props: (
5945
5642
  'tick-size': unset,
5946
5643
  'tick-text-gap': unset,
5947
5644
  'tick-width': unset
5948
- );
5949
-
5645
+ );
5950
5646
  $tile-list-props: (
5951
5647
  'font-family': "unset",
5952
5648
  'font-size': "unset",
@@ -5965,8 +5661,7 @@ $tile-list-props: (
5965
5661
  'transition-property': unset,
5966
5662
  'translate': "unset",
5967
5663
  'gutter-size': unset
5968
- );
5969
-
5664
+ );
5970
5665
  $tile-list-item-props: (
5971
5666
  'font-family': "unset",
5972
5667
  'font-size': "unset",
@@ -5991,8 +5686,7 @@ $tile-list-item-props: (
5991
5686
  'dragover-border-color': unset,
5992
5687
  'header-bg-color': unset,
5993
5688
  'header-padding': unset
5994
- );
5995
-
5689
+ );
5996
5690
  $time-box-props: (
5997
5691
  'font-family': "unset",
5998
5692
  'font-size': "unset",
@@ -6018,8 +5712,7 @@ $time-box-props: (
6018
5712
  'foreground-color': unset,
6019
5713
  'height': unset,
6020
5714
  'shadow': unset
6021
- );
6022
-
5715
+ );
6023
5716
  $title-bar-props: (
6024
5717
  'font-family': unset,
6025
5718
  'font-size': unset,
@@ -6037,8 +5730,7 @@ $title-bar-props: (
6037
5730
  'transition-mode': "unset",
6038
5731
  'transition-property': unset,
6039
5732
  'translate': "unset"
6040
- );
6041
-
5733
+ );
6042
5734
  $title-layout-props: (
6043
5735
  'font-family': "unset",
6044
5736
  'font-size': "unset",
@@ -6057,8 +5749,7 @@ $title-layout-props: (
6057
5749
  'transition-property': unset,
6058
5750
  'translate': "unset",
6059
5751
  'background-color': unset
6060
- );
6061
-
5752
+ );
6062
5753
  $toast-props: (
6063
5754
  'font-family': unset,
6064
5755
  'font-size': unset,
@@ -6085,8 +5776,7 @@ $toast-props: (
6085
5776
  'foreground-color': unset,
6086
5777
  'progress-ring-fill-color': unset,
6087
5778
  'shadow': unset
6088
- );
6089
-
5779
+ );
6090
5780
  $toggle-button-props: (
6091
5781
  'font-family': var(--cosmopolitan-typography-button-font-family),
6092
5782
  'font-size': var(--cosmopolitan-typography-button-font-size),
@@ -6114,8 +5804,7 @@ $toggle-button-props: (
6114
5804
  'line-height': calc(var(--toggle-button-font-line-height) - 4px),
6115
5805
  'shadow': var(--cosmopolitan-elevation-none),
6116
5806
  'width': auto
6117
- );
6118
-
5807
+ );
6119
5808
  $toggle-switch-props: (
6120
5809
  'font-family': "unset",
6121
5810
  'font-size': "unset",
@@ -6140,8 +5829,7 @@ $toggle-switch-props: (
6140
5829
  'border-width': unset,
6141
5830
  'foreground-color': unset,
6142
5831
  'shadow': unset
6143
- );
6144
-
5832
+ );
6145
5833
  $toggletip-props: (
6146
5834
  'font-family': "unset",
6147
5835
  'font-size': "unset",
@@ -6159,8 +5847,7 @@ $toggletip-props: (
6159
5847
  'transition-mode': "unset",
6160
5848
  'transition-property': unset,
6161
5849
  'translate': "unset"
6162
- );
6163
-
5850
+ );
6164
5851
  $toolbar-props: (
6165
5852
  'font-family': unset,
6166
5853
  'font-size': 24px,
@@ -6191,8 +5878,7 @@ $toolbar-props: (
6191
5878
  'shadow-offset-x': unset,
6192
5879
  'shadow-offset-y': unset,
6193
5880
  'shadow-spread': unset
6194
- );
6195
-
5881
+ );
6196
5882
  $tooltip-props: (
6197
5883
  'font-family': unset,
6198
5884
  'font-size': unset,
@@ -6218,8 +5904,7 @@ $tooltip-props: (
6218
5904
  'foreground-color': unset,
6219
5905
  'max-width': unset,
6220
5906
  'shadow': unset
6221
- );
6222
-
5907
+ );
6223
5908
  $tree-props: (
6224
5909
  'font-family': unset,
6225
5910
  'font-size': unset,
@@ -6237,8 +5922,7 @@ $tree-props: (
6237
5922
  'transition-mode': "unset",
6238
5923
  'transition-property': unset,
6239
5924
  'translate': "unset"
6240
- );
6241
-
5925
+ );
6242
5926
  $tree-item-props: (
6243
5927
  'font-family': unset,
6244
5928
  'font-size': unset,
@@ -6262,9 +5946,11 @@ $tree-item-props: (
6262
5946
  'border-style': unset,
6263
5947
  'border-width': unset,
6264
5948
  'foreground-color': unset,
6265
- 'shadow': unset
6266
- );
6267
-
5949
+ 'shadow': unset,
5950
+ 'indent-color': unset,
5951
+ 'indent-size': unset,
5952
+ 'indent-offset': unset
5953
+ );
6268
5954
  $up-down-spinner-props: (
6269
5955
  'font-family': "unset",
6270
5956
  'font-size': "unset",
@@ -6282,8 +5968,7 @@ $up-down-spinner-props: (
6282
5968
  'transition-mode': "unset",
6283
5969
  'transition-property': unset,
6284
5970
  'translate': "unset"
6285
- );
6286
-
5971
+ );
6287
5972
  $video-props: (
6288
5973
  'font-family': unset,
6289
5974
  'font-size': unset,
@@ -6316,8 +6001,7 @@ $video-props: (
6316
6001
  'legend-font-text-transform': unset,
6317
6002
  'legend-font-weight': unset,
6318
6003
  'shadow': unset
6319
- );
6320
-
6004
+ );
6321
6005
  $virtualize-props: (
6322
6006
  'font-family': "unset",
6323
6007
  'font-size': "unset",
@@ -6335,8 +6019,7 @@ $virtualize-props: (
6335
6019
  'transition-mode': "unset",
6336
6020
  'transition-property': unset,
6337
6021
  'translate': "unset"
6338
- );
6339
-
6022
+ );
6340
6023
  $wizard-props: (
6341
6024
  'font-family': "unset",
6342
6025
  'font-size': "unset",
@@ -6355,8 +6038,7 @@ $wizard-props: (
6355
6038
  'transition-property': unset,
6356
6039
  'translate': "unset",
6357
6040
  'border-color': unset
6358
- );
6359
-
6041
+ );
6360
6042
  $wizard-step-props: (
6361
6043
  'font-family': "unset",
6362
6044
  'font-size': "unset",
@@ -6374,8 +6056,7 @@ $wizard-step-props: (
6374
6056
  'transition-mode': "unset",
6375
6057
  'transition-property': unset,
6376
6058
  'translate': "unset"
6377
- );
6378
-
6059
+ );
6379
6060
  $wrap-props: (
6380
6061
  'font-family': "unset",
6381
6062
  'font-size': "unset",