@breadstone/mosaik-themes 0.0.231 → 0.0.232
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.
- package/index.cjs +2155 -2041
- package/index.cjs.map +1 -1
- package/index.d.mts +525 -372
- package/index.d.ts +525 -372
- package/index.js +2153 -2037
- package/index.js.map +1 -1
- package/package.json +3 -4
- package/tailwind/v3/plugins/joyTailwindPlugin.js +4 -0
- package/tailwind/v3/plugins/joyTailwindPlugin.js.map +1 -1
- package/tailwind/v3/presets/joyTailwindPresets.js +4 -0
- package/tailwind/v3/presets/joyTailwindPresets.js.map +1 -1
- package/themes/___joy-tokens.css +8 -0
- package/themes/cosmopolitan.scss +670 -36
- package/themes/joy-tokens.scss +8 -0
- package/themes/joy.scss +1111 -474
- package/themes/memphis.scss +717 -83
package/themes/memphis.scss
CHANGED
|
@@ -1400,6 +1400,130 @@ $accordion-props: (
|
|
|
1400
1400
|
'transition-property': unset,
|
|
1401
1401
|
'translate': none
|
|
1402
1402
|
);
|
|
1403
|
+
/**
|
|
1404
|
+
* ------------------------------------------------------------------------------
|
|
1405
|
+
* <auto-generated>
|
|
1406
|
+
* This code was generated by a tool.
|
|
1407
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
1408
|
+
* the code is regenerated.
|
|
1409
|
+
* </auto-generated>
|
|
1410
|
+
* ------------------------------------------------------------------------------
|
|
1411
|
+
*/
|
|
1412
|
+
$actionbar-group-props: (
|
|
1413
|
+
'font-family': unset,
|
|
1414
|
+
'font-letter-spacing': unset,
|
|
1415
|
+
'font-line-height': unset,
|
|
1416
|
+
'font-size': unset,
|
|
1417
|
+
'font-text-decoration': unset,
|
|
1418
|
+
'font-text-transform': unset,
|
|
1419
|
+
'font-weight': unset,
|
|
1420
|
+
'gap': calc(var(--memphis-layout-space) / 2),
|
|
1421
|
+
'label-color': var(--memphis-scheme-muted),
|
|
1422
|
+
'label-font-size': var(--memphis-typography-caption-font-size),
|
|
1423
|
+
'label-font-weight': 600,
|
|
1424
|
+
'padding-bottom': 0,
|
|
1425
|
+
'padding-left': 0,
|
|
1426
|
+
'padding-right': 0,
|
|
1427
|
+
'padding-top': 0,
|
|
1428
|
+
'transition-duration': .2s,
|
|
1429
|
+
'transition-mode': ease,
|
|
1430
|
+
'transition-property': (all),
|
|
1431
|
+
'translate': unset
|
|
1432
|
+
);
|
|
1433
|
+
/**
|
|
1434
|
+
* ------------------------------------------------------------------------------
|
|
1435
|
+
* <auto-generated>
|
|
1436
|
+
* This code was generated by a tool.
|
|
1437
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
1438
|
+
* the code is regenerated.
|
|
1439
|
+
* </auto-generated>
|
|
1440
|
+
* ------------------------------------------------------------------------------
|
|
1441
|
+
*/
|
|
1442
|
+
$actionbar-item-props: (
|
|
1443
|
+
'background-color': transparent,
|
|
1444
|
+
'background-color-active': var(--memphis-scheme-selected),
|
|
1445
|
+
'background-color-hover': var(--memphis-scheme-highlight),
|
|
1446
|
+
'border-radius': var(--memphis-layout-radius),
|
|
1447
|
+
'font-family': unset,
|
|
1448
|
+
'font-letter-spacing': unset,
|
|
1449
|
+
'font-line-height': unset,
|
|
1450
|
+
'font-size': unset,
|
|
1451
|
+
'font-text-decoration': unset,
|
|
1452
|
+
'font-text-transform': unset,
|
|
1453
|
+
'font-weight': unset,
|
|
1454
|
+
'gap': unset,
|
|
1455
|
+
'padding-bottom': calc(var(--memphis-layout-space) / 2),
|
|
1456
|
+
'padding-left': calc(var(--memphis-layout-space) / 2),
|
|
1457
|
+
'padding-right': calc(var(--memphis-layout-space) / 2),
|
|
1458
|
+
'padding-top': calc(var(--memphis-layout-space) / 2),
|
|
1459
|
+
'transition-duration': .2s,
|
|
1460
|
+
'transition-mode': ease,
|
|
1461
|
+
'transition-property': (background-color),
|
|
1462
|
+
'translate': unset
|
|
1463
|
+
);
|
|
1464
|
+
/**
|
|
1465
|
+
* ------------------------------------------------------------------------------
|
|
1466
|
+
* <auto-generated>
|
|
1467
|
+
* This code was generated by a tool.
|
|
1468
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
1469
|
+
* the code is regenerated.
|
|
1470
|
+
* </auto-generated>
|
|
1471
|
+
* ------------------------------------------------------------------------------
|
|
1472
|
+
*/
|
|
1473
|
+
$actionbar-separator-props: (
|
|
1474
|
+
'background-color': var(--memphis-scheme-contrast),
|
|
1475
|
+
'font-family': unset,
|
|
1476
|
+
'font-letter-spacing': unset,
|
|
1477
|
+
'font-line-height': unset,
|
|
1478
|
+
'font-size': unset,
|
|
1479
|
+
'font-text-decoration': unset,
|
|
1480
|
+
'font-text-transform': unset,
|
|
1481
|
+
'font-weight': unset,
|
|
1482
|
+
'gap': unset,
|
|
1483
|
+
'padding-bottom': unset,
|
|
1484
|
+
'padding-left': unset,
|
|
1485
|
+
'padding-right': unset,
|
|
1486
|
+
'padding-top': unset,
|
|
1487
|
+
'thickness': 2px,
|
|
1488
|
+
'transition-duration': .2s,
|
|
1489
|
+
'transition-mode': ease,
|
|
1490
|
+
'transition-property': (all),
|
|
1491
|
+
'translate': unset
|
|
1492
|
+
);
|
|
1493
|
+
/**
|
|
1494
|
+
* ------------------------------------------------------------------------------
|
|
1495
|
+
* <auto-generated>
|
|
1496
|
+
* This code was generated by a tool.
|
|
1497
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
1498
|
+
* the code is regenerated.
|
|
1499
|
+
* </auto-generated>
|
|
1500
|
+
* ------------------------------------------------------------------------------
|
|
1501
|
+
*/
|
|
1502
|
+
$actionbar-props: (
|
|
1503
|
+
'background-color': var(--memphis-scheme-background),
|
|
1504
|
+
'border-color': var(--memphis-scheme-contrast),
|
|
1505
|
+
'border-radius': var(--memphis-layout-radius),
|
|
1506
|
+
'border-style': solid,
|
|
1507
|
+
'border-width': var(--memphis-layout-thickness),
|
|
1508
|
+
'font-family': var(--memphis-font-family),
|
|
1509
|
+
'font-letter-spacing': unset,
|
|
1510
|
+
'font-line-height': unset,
|
|
1511
|
+
'font-size': var(--memphis-typography-body-font-size),
|
|
1512
|
+
'font-text-decoration': unset,
|
|
1513
|
+
'font-text-transform': unset,
|
|
1514
|
+
'font-weight': normal,
|
|
1515
|
+
'foreground-color': var(--memphis-scheme-foreground),
|
|
1516
|
+
'gap': var(--memphis-layout-space),
|
|
1517
|
+
'min-height': 48px,
|
|
1518
|
+
'padding-bottom': var(--memphis-layout-space),
|
|
1519
|
+
'padding-left': var(--memphis-layout-space),
|
|
1520
|
+
'padding-right': var(--memphis-layout-space),
|
|
1521
|
+
'padding-top': var(--memphis-layout-space),
|
|
1522
|
+
'transition-duration': .2s,
|
|
1523
|
+
'transition-mode': ease,
|
|
1524
|
+
'transition-property': (all),
|
|
1525
|
+
'translate': unset
|
|
1526
|
+
);
|
|
1403
1527
|
/**
|
|
1404
1528
|
* ------------------------------------------------------------------------------
|
|
1405
1529
|
* <auto-generated>
|
|
@@ -2162,7 +2286,7 @@ $button-props: (
|
|
|
2162
2286
|
'padding-top': var(--memphis-layout-space),
|
|
2163
2287
|
'progress-ring-width': var(--memphis-layout-thickness),
|
|
2164
2288
|
'ripple-color': unset,
|
|
2165
|
-
'ripple-duration':
|
|
2289
|
+
'ripple-duration': 0.20s,
|
|
2166
2290
|
'shadow': var(--memphis-elevation-semilight-offset-x-0) var(--memphis-elevation-semilight-offset-y-0) var(--memphis-elevation-semilight-blur-0) var(--memphis-elevation-semilight-spread-0) var(--memphis-elevation-semilight-color-0),
|
|
2167
2291
|
'shadow-blur': var(--memphis-elevation-semilight-blur-0),
|
|
2168
2292
|
'shadow-color': var(--memphis-elevation-semilight-color-0),
|
|
@@ -2359,7 +2483,7 @@ $calendar-item-props: (
|
|
|
2359
2483
|
'padding-right': 12px,
|
|
2360
2484
|
'padding-top': var(--memphis-layout-space),
|
|
2361
2485
|
'ripple-color': unset,
|
|
2362
|
-
'ripple-duration':
|
|
2486
|
+
'ripple-duration': 0.20s,
|
|
2363
2487
|
'shadow': var(--memphis-elevation-light-offset-x-0) var(--memphis-elevation-light-offset-y-0) var(--memphis-elevation-light-blur-0) var(--memphis-elevation-light-spread-0) var(--memphis-elevation-light-color-0),
|
|
2364
2488
|
'shadow-blur': var(--memphis-elevation-light-blur-0),
|
|
2365
2489
|
'shadow-color': var(--memphis-elevation-light-color-0),
|
|
@@ -3542,7 +3666,7 @@ $chip-props: (
|
|
|
3542
3666
|
'padding-right': var(--memphis-layout-space),
|
|
3543
3667
|
'padding-top': var(--memphis-layout-space),
|
|
3544
3668
|
'ripple-color': unset,
|
|
3545
|
-
'ripple-duration':
|
|
3669
|
+
'ripple-duration': 0.20s,
|
|
3546
3670
|
'shadow': var(--memphis-elevation-light-offset-x-0) var(--memphis-elevation-light-offset-y-0) var(--memphis-elevation-light-blur-0) var(--memphis-elevation-light-spread-0) var(--memphis-elevation-light-color-0),
|
|
3547
3671
|
'shadow-blur': var(--memphis-elevation-light-blur-0),
|
|
3548
3672
|
'shadow-color': var(--memphis-elevation-light-color-0),
|
|
@@ -4522,7 +4646,7 @@ $combo-item-props: (
|
|
|
4522
4646
|
'padding-right': calc(var(--memphis-layout-space) * 1.5),
|
|
4523
4647
|
'padding-top': calc(var(--memphis-layout-space) / 2),
|
|
4524
4648
|
'ripple-color': var(--memphis-color-light-secondary-200),
|
|
4525
|
-
'ripple-duration':
|
|
4649
|
+
'ripple-duration': 0.20s,
|
|
4526
4650
|
'shadow': unset unset unset unset unset,
|
|
4527
4651
|
'shadow-blur': unset,
|
|
4528
4652
|
'shadow-color': unset,
|
|
@@ -4609,7 +4733,7 @@ $compound-button-props: (
|
|
|
4609
4733
|
'padding-top': var(--memphis-layout-space),
|
|
4610
4734
|
'progress-ring-width': var(--memphis-layout-thickness),
|
|
4611
4735
|
'ripple-color': unset,
|
|
4612
|
-
'ripple-duration':
|
|
4736
|
+
'ripple-duration': 0.20s,
|
|
4613
4737
|
'shadow': var(--memphis-elevation-semilight-offset-x-0) var(--memphis-elevation-semilight-offset-y-0) var(--memphis-elevation-semilight-blur-0) var(--memphis-elevation-semilight-spread-0) var(--memphis-elevation-semilight-color-0),
|
|
4614
4738
|
'shadow-blur': var(--memphis-elevation-semilight-blur-0),
|
|
4615
4739
|
'shadow-color': var(--memphis-elevation-semilight-color-0),
|
|
@@ -4731,6 +4855,7 @@ $data-list-props: (
|
|
|
4731
4855
|
* ------------------------------------------------------------------------------
|
|
4732
4856
|
*/
|
|
4733
4857
|
$data-table-props: (
|
|
4858
|
+
'border-radius': var(--memphis-layout-radius),
|
|
4734
4859
|
'font-family': unset,
|
|
4735
4860
|
'font-letter-spacing': unset,
|
|
4736
4861
|
'font-line-height': unset,
|
|
@@ -4838,6 +4963,129 @@ $date-time-box-props: (
|
|
|
4838
4963
|
'transition-property': (unset),
|
|
4839
4964
|
'translate': none
|
|
4840
4965
|
);
|
|
4966
|
+
/**
|
|
4967
|
+
* ------------------------------------------------------------------------------
|
|
4968
|
+
* <auto-generated>
|
|
4969
|
+
* This code was generated by a tool.
|
|
4970
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
4971
|
+
* the code is regenerated.
|
|
4972
|
+
* </auto-generated>
|
|
4973
|
+
* ------------------------------------------------------------------------------
|
|
4974
|
+
*/
|
|
4975
|
+
$designer-props: (
|
|
4976
|
+
'font-family': unset,
|
|
4977
|
+
'font-letter-spacing': unset,
|
|
4978
|
+
'font-line-height': unset,
|
|
4979
|
+
'font-size': unset,
|
|
4980
|
+
'font-text-decoration': unset,
|
|
4981
|
+
'font-text-transform': unset,
|
|
4982
|
+
'font-weight': unset,
|
|
4983
|
+
'gap': unset,
|
|
4984
|
+
'padding-bottom': unset,
|
|
4985
|
+
'padding-left': unset,
|
|
4986
|
+
'padding-right': unset,
|
|
4987
|
+
'padding-top': unset,
|
|
4988
|
+
'transition-duration': unset,
|
|
4989
|
+
'transition-mode': unset,
|
|
4990
|
+
'transition-property': unset,
|
|
4991
|
+
'translate': unset
|
|
4992
|
+
);
|
|
4993
|
+
/**
|
|
4994
|
+
* ------------------------------------------------------------------------------
|
|
4995
|
+
* <auto-generated>
|
|
4996
|
+
* This code was generated by a tool.
|
|
4997
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
4998
|
+
* the code is regenerated.
|
|
4999
|
+
* </auto-generated>
|
|
5000
|
+
* ------------------------------------------------------------------------------
|
|
5001
|
+
*/
|
|
5002
|
+
$designer-canvas-props: (
|
|
5003
|
+
'background-color': var(--memphis-scheme-surface),
|
|
5004
|
+
'dot-color': var(--memphis-color-neutral-400),
|
|
5005
|
+
'dot-size': 1px,
|
|
5006
|
+
'dot-spacing': 20px,
|
|
5007
|
+
'font-family': unset,
|
|
5008
|
+
'font-letter-spacing': unset,
|
|
5009
|
+
'font-line-height': unset,
|
|
5010
|
+
'font-size': unset,
|
|
5011
|
+
'font-text-decoration': unset,
|
|
5012
|
+
'font-text-transform': unset,
|
|
5013
|
+
'font-weight': unset,
|
|
5014
|
+
'gap': unset,
|
|
5015
|
+
'padding-bottom': unset,
|
|
5016
|
+
'padding-left': unset,
|
|
5017
|
+
'padding-right': unset,
|
|
5018
|
+
'padding-top': unset,
|
|
5019
|
+
'transition-duration': unset,
|
|
5020
|
+
'transition-mode': unset,
|
|
5021
|
+
'transition-property': unset,
|
|
5022
|
+
'translate': unset
|
|
5023
|
+
);
|
|
5024
|
+
/**
|
|
5025
|
+
* ------------------------------------------------------------------------------
|
|
5026
|
+
* <auto-generated>
|
|
5027
|
+
* This code was generated by a tool.
|
|
5028
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
5029
|
+
* the code is regenerated.
|
|
5030
|
+
* </auto-generated>
|
|
5031
|
+
* ------------------------------------------------------------------------------
|
|
5032
|
+
*/
|
|
5033
|
+
$designer-content-props: (
|
|
5034
|
+
'font-family': unset,
|
|
5035
|
+
'font-letter-spacing': unset,
|
|
5036
|
+
'font-line-height': unset,
|
|
5037
|
+
'font-size': unset,
|
|
5038
|
+
'font-text-decoration': unset,
|
|
5039
|
+
'font-text-transform': unset,
|
|
5040
|
+
'font-weight': unset,
|
|
5041
|
+
'gap': unset,
|
|
5042
|
+
'padding-bottom': unset,
|
|
5043
|
+
'padding-left': unset,
|
|
5044
|
+
'padding-right': unset,
|
|
5045
|
+
'padding-top': unset,
|
|
5046
|
+
'transition-duration': unset,
|
|
5047
|
+
'transition-mode': unset,
|
|
5048
|
+
'transition-property': unset,
|
|
5049
|
+
'translate': unset
|
|
5050
|
+
);
|
|
5051
|
+
/**
|
|
5052
|
+
* ------------------------------------------------------------------------------
|
|
5053
|
+
* <auto-generated>
|
|
5054
|
+
* This code was generated by a tool.
|
|
5055
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
5056
|
+
* the code is regenerated.
|
|
5057
|
+
* </auto-generated>
|
|
5058
|
+
* ------------------------------------------------------------------------------
|
|
5059
|
+
*/
|
|
5060
|
+
$designer-frame-props: (
|
|
5061
|
+
'background-color': var(--memphis-scheme-background),
|
|
5062
|
+
'border-color': var(--memphis-color-neutral-300),
|
|
5063
|
+
'border-width': 1px,
|
|
5064
|
+
'bounds-color': var(--memphis-color-neutral-500),
|
|
5065
|
+
'bounds-font-size': 11px,
|
|
5066
|
+
'font-family': unset,
|
|
5067
|
+
'font-letter-spacing': unset,
|
|
5068
|
+
'font-line-height': unset,
|
|
5069
|
+
'font-size': unset,
|
|
5070
|
+
'font-text-decoration': unset,
|
|
5071
|
+
'font-text-transform': unset,
|
|
5072
|
+
'font-weight': unset,
|
|
5073
|
+
'gap': unset,
|
|
5074
|
+
'padding-bottom': unset,
|
|
5075
|
+
'padding-left': unset,
|
|
5076
|
+
'padding-right': unset,
|
|
5077
|
+
'padding-top': unset,
|
|
5078
|
+
'shadow': unset unset unset unset unset,
|
|
5079
|
+
'shadow-blur': unset,
|
|
5080
|
+
'shadow-color': unset,
|
|
5081
|
+
'shadow-offset-x': unset,
|
|
5082
|
+
'shadow-offset-y': unset,
|
|
5083
|
+
'shadow-spread': unset,
|
|
5084
|
+
'transition-duration': unset,
|
|
5085
|
+
'transition-mode': unset,
|
|
5086
|
+
'transition-property': unset,
|
|
5087
|
+
'translate': unset
|
|
5088
|
+
);
|
|
4841
5089
|
/**
|
|
4842
5090
|
* ------------------------------------------------------------------------------
|
|
4843
5091
|
* <auto-generated>
|
|
@@ -5621,7 +5869,7 @@ $drop-down-button-props: (
|
|
|
5621
5869
|
'progress-ring-width': var(--memphis-layout-thickness),
|
|
5622
5870
|
'progress-thickness': var(--memphis-layout-thickness),
|
|
5623
5871
|
'ripple-color': unset,
|
|
5624
|
-
'ripple-duration':
|
|
5872
|
+
'ripple-duration': 0.20s,
|
|
5625
5873
|
'shadow': unset unset unset unset unset,
|
|
5626
5874
|
'shadow-blur': unset,
|
|
5627
5875
|
'shadow-color': unset,
|
|
@@ -5715,7 +5963,12 @@ $dropdown-props: (
|
|
|
5715
5963
|
* </auto-generated>
|
|
5716
5964
|
* ------------------------------------------------------------------------------
|
|
5717
5965
|
*/
|
|
5718
|
-
$
|
|
5966
|
+
$duration-box-props: (
|
|
5967
|
+
'background-color': unset,
|
|
5968
|
+
'border-color': unset,
|
|
5969
|
+
'border-radius': unset,
|
|
5970
|
+
'border-style': unset,
|
|
5971
|
+
'border-width': unset,
|
|
5719
5972
|
'font-family': unset,
|
|
5720
5973
|
'font-letter-spacing': unset,
|
|
5721
5974
|
'font-line-height': unset,
|
|
@@ -5723,7 +5976,9 @@ $elevation-props: (
|
|
|
5723
5976
|
'font-text-decoration': unset,
|
|
5724
5977
|
'font-text-transform': unset,
|
|
5725
5978
|
'font-weight': unset,
|
|
5979
|
+
'foreground-color': unset,
|
|
5726
5980
|
'gap': unset,
|
|
5981
|
+
'height': unset,
|
|
5727
5982
|
'padding-bottom': unset,
|
|
5728
5983
|
'padding-left': unset,
|
|
5729
5984
|
'padding-right': unset,
|
|
@@ -5736,7 +5991,7 @@ $elevation-props: (
|
|
|
5736
5991
|
'shadow-spread': unset,
|
|
5737
5992
|
'transition-duration': unset,
|
|
5738
5993
|
'transition-mode': unset,
|
|
5739
|
-
'transition-property': unset,
|
|
5994
|
+
'transition-property': (unset),
|
|
5740
5995
|
'translate': none
|
|
5741
5996
|
);
|
|
5742
5997
|
/**
|
|
@@ -5748,8 +6003,7 @@ $elevation-props: (
|
|
|
5748
6003
|
* </auto-generated>
|
|
5749
6004
|
* ------------------------------------------------------------------------------
|
|
5750
6005
|
*/
|
|
5751
|
-
$
|
|
5752
|
-
'background-color': unset,
|
|
6006
|
+
$elevation-props: (
|
|
5753
6007
|
'font-family': unset,
|
|
5754
6008
|
'font-letter-spacing': unset,
|
|
5755
6009
|
'font-line-height': unset,
|
|
@@ -5782,7 +6036,8 @@ $emoji-props: (
|
|
|
5782
6036
|
* </auto-generated>
|
|
5783
6037
|
* ------------------------------------------------------------------------------
|
|
5784
6038
|
*/
|
|
5785
|
-
$
|
|
6039
|
+
$emoji-props: (
|
|
6040
|
+
'background-color': unset,
|
|
5786
6041
|
'font-family': unset,
|
|
5787
6042
|
'font-letter-spacing': unset,
|
|
5788
6043
|
'font-line-height': unset,
|
|
@@ -5790,22 +6045,55 @@ $empty-state-props: (
|
|
|
5790
6045
|
'font-text-decoration': unset,
|
|
5791
6046
|
'font-text-transform': unset,
|
|
5792
6047
|
'font-weight': unset,
|
|
5793
|
-
'
|
|
5794
|
-
'
|
|
5795
|
-
'
|
|
5796
|
-
'
|
|
5797
|
-
'
|
|
5798
|
-
'
|
|
5799
|
-
'
|
|
5800
|
-
'
|
|
5801
|
-
'
|
|
5802
|
-
'
|
|
5803
|
-
'
|
|
5804
|
-
'
|
|
5805
|
-
'
|
|
5806
|
-
'
|
|
5807
|
-
'
|
|
5808
|
-
|
|
6048
|
+
'gap': unset,
|
|
6049
|
+
'padding-bottom': unset,
|
|
6050
|
+
'padding-left': unset,
|
|
6051
|
+
'padding-right': unset,
|
|
6052
|
+
'padding-top': unset,
|
|
6053
|
+
'shadow': unset unset unset unset unset,
|
|
6054
|
+
'shadow-blur': unset,
|
|
6055
|
+
'shadow-color': unset,
|
|
6056
|
+
'shadow-offset-x': unset,
|
|
6057
|
+
'shadow-offset-y': unset,
|
|
6058
|
+
'shadow-spread': unset,
|
|
6059
|
+
'transition-duration': unset,
|
|
6060
|
+
'transition-mode': unset,
|
|
6061
|
+
'transition-property': unset,
|
|
6062
|
+
'translate': none
|
|
6063
|
+
);
|
|
6064
|
+
/**
|
|
6065
|
+
* ------------------------------------------------------------------------------
|
|
6066
|
+
* <auto-generated>
|
|
6067
|
+
* This code was generated by a tool.
|
|
6068
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
6069
|
+
* the code is regenerated.
|
|
6070
|
+
* </auto-generated>
|
|
6071
|
+
* ------------------------------------------------------------------------------
|
|
6072
|
+
*/
|
|
6073
|
+
$empty-state-props: (
|
|
6074
|
+
'font-family': unset,
|
|
6075
|
+
'font-letter-spacing': unset,
|
|
6076
|
+
'font-line-height': unset,
|
|
6077
|
+
'font-size': unset,
|
|
6078
|
+
'font-text-decoration': unset,
|
|
6079
|
+
'font-text-transform': unset,
|
|
6080
|
+
'font-weight': unset,
|
|
6081
|
+
'foreground-color': var(--memphis-scheme-middlelight),
|
|
6082
|
+
'gap': var(--memphis-layout-space),
|
|
6083
|
+
'header-font-family': var(--memphis-font-family),
|
|
6084
|
+
'header-font-letter-spacing': var(--memphis-typography-body1-letter-spacing),
|
|
6085
|
+
'header-font-line-height': var(--memphis-typography-body1-line-height),
|
|
6086
|
+
'header-font-size': var(--memphis-typography-body1-font-size),
|
|
6087
|
+
'header-font-text-decoration': var(--memphis-typography-body1-text-decoration),
|
|
6088
|
+
'header-font-text-transform': var(--memphis-typography-body1-text-transform),
|
|
6089
|
+
'header-font-weight': var(--memphis-typography-body1-font-weight),
|
|
6090
|
+
'padding-bottom': calc(var(--memphis-layout-space) * 2),
|
|
6091
|
+
'padding-left': calc(var(--memphis-layout-space) * 2),
|
|
6092
|
+
'padding-right': calc(var(--memphis-layout-space) * 2),
|
|
6093
|
+
'padding-top': calc(var(--memphis-layout-space) * 2),
|
|
6094
|
+
'shadow': unset unset unset unset unset,
|
|
6095
|
+
'shadow-blur': unset,
|
|
6096
|
+
'shadow-color': unset,
|
|
5809
6097
|
'shadow-offset-x': unset,
|
|
5810
6098
|
'shadow-offset-y': unset,
|
|
5811
6099
|
'shadow-spread': unset,
|
|
@@ -6189,7 +6477,7 @@ $expander-props: (
|
|
|
6189
6477
|
'padding-right': calc(var(--memphis-layout-space) * 2),
|
|
6190
6478
|
'padding-top': var(--memphis-layout-space),
|
|
6191
6479
|
'ripple-color': unset,
|
|
6192
|
-
'ripple-duration':
|
|
6480
|
+
'ripple-duration': 0.20s,
|
|
6193
6481
|
'shadow': var(--memphis-elevation-semilight-offset-x-0) var(--memphis-elevation-semilight-offset-y-0) var(--memphis-elevation-semilight-blur-0) var(--memphis-elevation-semilight-spread-0) var(--memphis-elevation-semilight-color-0),
|
|
6194
6482
|
'shadow-blur': var(--memphis-elevation-semilight-blur-0),
|
|
6195
6483
|
'shadow-color': var(--memphis-elevation-semilight-color-0),
|
|
@@ -6542,7 +6830,7 @@ $floating-action-button-props: (
|
|
|
6542
6830
|
'padding-top': var(--memphis-layout-space),
|
|
6543
6831
|
'progress-ring-width': var(--memphis-layout-thickness),
|
|
6544
6832
|
'ripple-color': unset,
|
|
6545
|
-
'ripple-duration':
|
|
6833
|
+
'ripple-duration': 0.20s,
|
|
6546
6834
|
'shadow': var(--memphis-elevation-semilight-offset-x-0) var(--memphis-elevation-semilight-offset-y-0) var(--memphis-elevation-semilight-blur-0) var(--memphis-elevation-semilight-spread-0) var(--memphis-elevation-semilight-color-0),
|
|
6547
6835
|
'shadow-blur': var(--memphis-elevation-semilight-blur-0),
|
|
6548
6836
|
'shadow-color': var(--memphis-elevation-semilight-color-0),
|
|
@@ -6856,7 +7144,7 @@ $focus-ring-props: (
|
|
|
6856
7144
|
'padding-left': unset,
|
|
6857
7145
|
'padding-right': unset,
|
|
6858
7146
|
'padding-top': unset,
|
|
6859
|
-
'shadow':
|
|
7147
|
+
'shadow': none,
|
|
6860
7148
|
'shadow-blur': unset,
|
|
6861
7149
|
'shadow-color': unset,
|
|
6862
7150
|
'shadow-offset-x': unset,
|
|
@@ -7742,7 +8030,7 @@ $list-item-props: (
|
|
|
7742
8030
|
'padding-right': unset,
|
|
7743
8031
|
'padding-top': unset,
|
|
7744
8032
|
'ripple-color': unset,
|
|
7745
|
-
'ripple-duration':
|
|
8033
|
+
'ripple-duration': 0.20s,
|
|
7746
8034
|
'shadow': unset unset unset unset unset,
|
|
7747
8035
|
'shadow-blur': unset,
|
|
7748
8036
|
'shadow-color': unset,
|
|
@@ -8120,7 +8408,7 @@ $menu-item-props: (
|
|
|
8120
8408
|
'padding-right': calc(var(--memphis-layout-space) * 2),
|
|
8121
8409
|
'padding-top': var(--memphis-layout-space),
|
|
8122
8410
|
'ripple-color': unset,
|
|
8123
|
-
'ripple-duration':
|
|
8411
|
+
'ripple-duration': 0.20s,
|
|
8124
8412
|
'shadow': unset unset unset unset unset,
|
|
8125
8413
|
'shadow-blur': unset,
|
|
8126
8414
|
'shadow-color': unset,
|
|
@@ -8163,6 +8451,10 @@ $menu-item-group-props: (
|
|
|
8163
8451
|
'header-font-text-decoration': unset,
|
|
8164
8452
|
'header-font-text-transform': unset,
|
|
8165
8453
|
'header-font-weight': unset,
|
|
8454
|
+
'header-padding-bottom': var(--memphis-layout-space),
|
|
8455
|
+
'header-padding-left': var(--memphis-layout-space),
|
|
8456
|
+
'header-padding-right': var(--memphis-layout-space),
|
|
8457
|
+
'header-padding-top': calc(var(--memphis-layout-space) * 2),
|
|
8166
8458
|
'padding-bottom': unset,
|
|
8167
8459
|
'padding-left': unset,
|
|
8168
8460
|
'padding-right': unset,
|
|
@@ -8227,27 +8519,50 @@ $message-props: (
|
|
|
8227
8519
|
* ------------------------------------------------------------------------------
|
|
8228
8520
|
*/
|
|
8229
8521
|
$message-box-props: (
|
|
8230
|
-
'
|
|
8231
|
-
'
|
|
8232
|
-
'
|
|
8233
|
-
'
|
|
8234
|
-
'
|
|
8235
|
-
'
|
|
8236
|
-
'font-
|
|
8237
|
-
'
|
|
8238
|
-
'
|
|
8239
|
-
'
|
|
8240
|
-
'
|
|
8241
|
-
'
|
|
8242
|
-
'
|
|
8243
|
-
'
|
|
8244
|
-
'
|
|
8245
|
-
'
|
|
8246
|
-
'
|
|
8247
|
-
'
|
|
8248
|
-
'
|
|
8249
|
-
'
|
|
8250
|
-
'
|
|
8522
|
+
'background-color': var(--memphis-scheme-background),
|
|
8523
|
+
'border-color': var(--memphis-scheme-contrast),
|
|
8524
|
+
'border-radius': var(--memphis-layout-radius),
|
|
8525
|
+
'border-style': solid,
|
|
8526
|
+
'border-width': var(--memphis-layout-thickness),
|
|
8527
|
+
'divider-height': 1px,
|
|
8528
|
+
'font-family': var(--memphis-font-family),
|
|
8529
|
+
'font-letter-spacing': var(--memphis-typography-body1-letter-spacing),
|
|
8530
|
+
'font-line-height': var(--memphis-typography-body1-line-height),
|
|
8531
|
+
'font-size': var(--memphis-typography-body1-font-size),
|
|
8532
|
+
'font-text-decoration': var(--memphis-typography-body1-text-decoration),
|
|
8533
|
+
'font-text-transform': var(--memphis-typography-body1-text-transform),
|
|
8534
|
+
'font-weight': var(--memphis-typography-body1-font-weight),
|
|
8535
|
+
'foreground-color': var(--memphis-scheme-foreground),
|
|
8536
|
+
'gap': var(--memphis-layout-space),
|
|
8537
|
+
'header-font-family': var(--memphis-font-family),
|
|
8538
|
+
'header-font-letter-spacing': var(--memphis-typography-headline6-letter-spacing),
|
|
8539
|
+
'header-font-line-height': var(--memphis-typography-headline6-line-height),
|
|
8540
|
+
'header-font-size': var(--memphis-typography-headline6-font-size),
|
|
8541
|
+
'header-font-text-decoration': var(--memphis-typography-headline6-text-decoration),
|
|
8542
|
+
'header-font-text-transform': var(--memphis-typography-headline6-text-transform),
|
|
8543
|
+
'header-font-weight': var(--memphis-typography-headline6-font-weight),
|
|
8544
|
+
'header-foreground-color': var(--memphis-scheme-foreground),
|
|
8545
|
+
'padding-bottom': var(--memphis-layout-space),
|
|
8546
|
+
'padding-left': calc(var(--memphis-layout-space)*2),
|
|
8547
|
+
'padding-right': calc(var(--memphis-layout-space)*2),
|
|
8548
|
+
'padding-top': var(--memphis-layout-space),
|
|
8549
|
+
'shadow': var(--memphis-elevation-bold-offset-x-0) var(--memphis-elevation-bold-offset-y-0) var(--memphis-elevation-bold-blur-0) var(--memphis-elevation-bold-spread-0) var(--memphis-elevation-bold-color-0),
|
|
8550
|
+
'shadow-blur': var(--memphis-elevation-bold-blur-0),
|
|
8551
|
+
'shadow-color': var(--memphis-elevation-bold-color-0),
|
|
8552
|
+
'shadow-offset-x': var(--memphis-elevation-bold-offset-x-0),
|
|
8553
|
+
'shadow-offset-y': var(--memphis-elevation-bold-offset-y-0),
|
|
8554
|
+
'shadow-spread': var(--memphis-elevation-bold-spread-0),
|
|
8555
|
+
'sub-header-font-family': var(--memphis-font-family),
|
|
8556
|
+
'sub-header-font-letter-spacing': var(--memphis-typography-subtitle2-letter-spacing),
|
|
8557
|
+
'sub-header-font-line-height': var(--memphis-typography-subtitle2-line-height),
|
|
8558
|
+
'sub-header-font-size': var(--memphis-typography-subtitle2-font-size),
|
|
8559
|
+
'sub-header-font-text-decoration': var(--memphis-typography-subtitle2-text-decoration),
|
|
8560
|
+
'sub-header-font-text-transform': var(--memphis-typography-subtitle2-text-transform),
|
|
8561
|
+
'sub-header-font-weight': var(--memphis-typography-subtitle2-font-weight),
|
|
8562
|
+
'sub-header-foreground-color': var(--memphis-scheme-middlelight),
|
|
8563
|
+
'transition-duration': .2s,
|
|
8564
|
+
'transition-mode': ease,
|
|
8565
|
+
'transition-property': (background-color, color, border-color, opacity, box-shadow, margin),
|
|
8251
8566
|
'translate': none
|
|
8252
8567
|
);
|
|
8253
8568
|
/**
|
|
@@ -9102,6 +9417,61 @@ $portal-projection-props: (
|
|
|
9102
9417
|
'transition-property': unset,
|
|
9103
9418
|
'translate': none
|
|
9104
9419
|
);
|
|
9420
|
+
/**
|
|
9421
|
+
* ------------------------------------------------------------------------------
|
|
9422
|
+
* <auto-generated>
|
|
9423
|
+
* This code was generated by a tool.
|
|
9424
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
9425
|
+
* the code is regenerated.
|
|
9426
|
+
* </auto-generated>
|
|
9427
|
+
* ------------------------------------------------------------------------------
|
|
9428
|
+
*/
|
|
9429
|
+
$press-button-props: (
|
|
9430
|
+
'background-color': var(--memphis-scheme-background),
|
|
9431
|
+
'border-color': var(--memphis-scheme-highlight),
|
|
9432
|
+
'border-radius': var(--memphis-layout-radius),
|
|
9433
|
+
'border-style': solid,
|
|
9434
|
+
'border-width': var(--memphis-layout-thickness),
|
|
9435
|
+
'focus-ring-active-width': 8px,
|
|
9436
|
+
'focus-ring-color': unset,
|
|
9437
|
+
'focus-ring-inward-offset': 2px,
|
|
9438
|
+
'focus-ring-outward-offset': unset,
|
|
9439
|
+
'font-family': var(--memphis-typography-button-font-family),
|
|
9440
|
+
'font-letter-spacing': var(--memphis-typography-button-letter-spacing),
|
|
9441
|
+
'font-line-height': var(--memphis-typography-button-line-height),
|
|
9442
|
+
'font-size': var(--memphis-typography-button-font-size),
|
|
9443
|
+
'font-text-decoration': var(--memphis-typography-button-text-decoration),
|
|
9444
|
+
'font-text-transform': var(--memphis-typography-button-text-transform),
|
|
9445
|
+
'font-weight': var(--memphis-typography-button-font-weight),
|
|
9446
|
+
'foreground-color': var(--memphis-scheme-foreground),
|
|
9447
|
+
'gap': var(--memphis-layout-space),
|
|
9448
|
+
'height': auto,
|
|
9449
|
+
'icon-min-width': 36px,
|
|
9450
|
+
'icon-min-height': 36px,
|
|
9451
|
+
'line-height': calc(var(--press-button-font-line-height) - 4px),
|
|
9452
|
+
'min-height': calc(calc(var(--memphis-layout-space) * 5) - calc(var(--memphis-layout-space) / 2)),
|
|
9453
|
+
'min-width': 64px,
|
|
9454
|
+
'padding-bottom': var(--memphis-layout-space),
|
|
9455
|
+
'padding-left': var(--memphis-layout-space),
|
|
9456
|
+
'padding-right': var(--memphis-layout-space),
|
|
9457
|
+
'padding-top': var(--memphis-layout-space),
|
|
9458
|
+
'progress-fill-color': currentColor,
|
|
9459
|
+
'progress-ring-width': var(--memphis-layout-thickness),
|
|
9460
|
+
'progress-thickness': var(--memphis-layout-thickness),
|
|
9461
|
+
'ripple-color': unset,
|
|
9462
|
+
'ripple-duration': 0.20s,
|
|
9463
|
+
'shadow': unset unset unset unset unset,
|
|
9464
|
+
'shadow-blur': unset,
|
|
9465
|
+
'shadow-color': unset,
|
|
9466
|
+
'shadow-offset-x': unset,
|
|
9467
|
+
'shadow-offset-y': unset,
|
|
9468
|
+
'shadow-spread': unset,
|
|
9469
|
+
'transition-duration': var(--memphis-layout-transition),
|
|
9470
|
+
'transition-mode': ease,
|
|
9471
|
+
'transition-property': (background-color, color, border-color, opacity, box-shadow, translate),
|
|
9472
|
+
'translate': none,
|
|
9473
|
+
'width': auto
|
|
9474
|
+
);
|
|
9105
9475
|
/**
|
|
9106
9476
|
* ------------------------------------------------------------------------------
|
|
9107
9477
|
* <auto-generated>
|
|
@@ -9442,7 +9812,7 @@ $repeat-button-props: (
|
|
|
9442
9812
|
'progress-ring-width': var(--memphis-layout-thickness),
|
|
9443
9813
|
'progress-thickness': var(--memphis-layout-thickness),
|
|
9444
9814
|
'ripple-color': unset,
|
|
9445
|
-
'ripple-duration':
|
|
9815
|
+
'ripple-duration': 0.20s,
|
|
9446
9816
|
'shadow': unset unset unset unset unset,
|
|
9447
9817
|
'shadow-blur': unset,
|
|
9448
9818
|
'shadow-color': unset,
|
|
@@ -10124,7 +10494,7 @@ $scheduler-event-props: (
|
|
|
10124
10494
|
'padding-right': unset,
|
|
10125
10495
|
'padding-top': unset,
|
|
10126
10496
|
'ripple-color': unset,
|
|
10127
|
-
'ripple-duration':
|
|
10497
|
+
'ripple-duration': 0.20s,
|
|
10128
10498
|
'shadow': var(--memphis-elevation-light-offset-x-1) var(--memphis-elevation-light-offset-y-1) var(--memphis-elevation-light-blur-1) var(--memphis-elevation-light-spread-1) var(--memphis-elevation-light-color-1),
|
|
10129
10499
|
'shadow-blur': var(--memphis-elevation-light-blur-1),
|
|
10130
10500
|
'shadow-color': var(--memphis-elevation-light-color-1),
|
|
@@ -10683,7 +11053,7 @@ $select-item-props: (
|
|
|
10683
11053
|
'padding-right': calc(var(--memphis-layout-space) * 1.5),
|
|
10684
11054
|
'padding-top': calc(var(--memphis-layout-space) / 2),
|
|
10685
11055
|
'ripple-color': var(--memphis-color-light-secondary-200),
|
|
10686
|
-
'ripple-duration':
|
|
11056
|
+
'ripple-duration': 0.20s,
|
|
10687
11057
|
'shadow': unset unset unset unset unset,
|
|
10688
11058
|
'shadow-blur': unset,
|
|
10689
11059
|
'shadow-color': unset,
|
|
@@ -10705,33 +11075,44 @@ $select-item-props: (
|
|
|
10705
11075
|
* ------------------------------------------------------------------------------
|
|
10706
11076
|
*/
|
|
10707
11077
|
$select-item-group-props: (
|
|
10708
|
-
'background-color':
|
|
10709
|
-
'border-color':
|
|
10710
|
-
'border-radius':
|
|
10711
|
-
'border-style':
|
|
10712
|
-
'border-width':
|
|
10713
|
-
'font-family':
|
|
10714
|
-
'font-letter-spacing':
|
|
10715
|
-
'font-line-height':
|
|
10716
|
-
'font-size':
|
|
10717
|
-
'font-text-decoration':
|
|
10718
|
-
'font-text-transform':
|
|
10719
|
-
'font-weight':
|
|
10720
|
-
'foreground-color':
|
|
10721
|
-
'gap':
|
|
10722
|
-
'
|
|
10723
|
-
'
|
|
10724
|
-
'
|
|
10725
|
-
'
|
|
11078
|
+
'background-color': unset,
|
|
11079
|
+
'border-color': unset,
|
|
11080
|
+
'border-radius': unset,
|
|
11081
|
+
'border-style': unset,
|
|
11082
|
+
'border-width': unset,
|
|
11083
|
+
'font-family': unset,
|
|
11084
|
+
'font-letter-spacing': unset,
|
|
11085
|
+
'font-line-height': unset,
|
|
11086
|
+
'font-size': unset,
|
|
11087
|
+
'font-text-decoration': unset,
|
|
11088
|
+
'font-text-transform': unset,
|
|
11089
|
+
'font-weight': unset,
|
|
11090
|
+
'foreground-color': unset,
|
|
11091
|
+
'gap': unset,
|
|
11092
|
+
'header-font-family': unset,
|
|
11093
|
+
'header-font-letter-spacing': unset,
|
|
11094
|
+
'header-font-line-height': unset,
|
|
11095
|
+
'header-font-size': unset,
|
|
11096
|
+
'header-font-text-decoration': unset,
|
|
11097
|
+
'header-font-text-transform': unset,
|
|
11098
|
+
'header-font-weight': unset,
|
|
11099
|
+
'header-padding-bottom': var(--memphis-layout-space),
|
|
11100
|
+
'header-padding-left': var(--memphis-layout-space),
|
|
11101
|
+
'header-padding-right': var(--memphis-layout-space),
|
|
11102
|
+
'header-padding-top': calc(var(--memphis-layout-space) * 2),
|
|
11103
|
+
'padding-bottom': unset,
|
|
11104
|
+
'padding-left': unset,
|
|
11105
|
+
'padding-right': unset,
|
|
11106
|
+
'padding-top': unset,
|
|
10726
11107
|
'shadow': unset unset unset unset unset,
|
|
10727
11108
|
'shadow-blur': unset,
|
|
10728
11109
|
'shadow-color': unset,
|
|
10729
11110
|
'shadow-offset-x': unset,
|
|
10730
11111
|
'shadow-offset-y': unset,
|
|
10731
11112
|
'shadow-spread': unset,
|
|
10732
|
-
'transition-duration':
|
|
10733
|
-
'transition-mode':
|
|
10734
|
-
'transition-property': (
|
|
11113
|
+
'transition-duration': unset,
|
|
11114
|
+
'transition-mode': unset,
|
|
11115
|
+
'transition-property': (unset),
|
|
10735
11116
|
'translate': none
|
|
10736
11117
|
);
|
|
10737
11118
|
/**
|
|
@@ -11278,7 +11659,7 @@ $split-button-props: (
|
|
|
11278
11659
|
'progress-ring-width': var(--memphis-layout-thickness),
|
|
11279
11660
|
'progress-thickness': var(--memphis-layout-thickness),
|
|
11280
11661
|
'ripple-color': unset,
|
|
11281
|
-
'ripple-duration':
|
|
11662
|
+
'ripple-duration': 0.20s,
|
|
11282
11663
|
'shadow': unset unset unset unset unset,
|
|
11283
11664
|
'shadow-blur': unset,
|
|
11284
11665
|
'shadow-color': unset,
|
|
@@ -11742,7 +12123,7 @@ $tab-strip-item-props: (
|
|
|
11742
12123
|
'padding-right': var(--memphis-layout-space),
|
|
11743
12124
|
'padding-top': calc(var(--memphis-layout-space) * 2),
|
|
11744
12125
|
'ripple-color': unset,
|
|
11745
|
-
'ripple-duration':
|
|
12126
|
+
'ripple-duration': 0.20s,
|
|
11746
12127
|
'shadow': unset unset unset unset unset,
|
|
11747
12128
|
'shadow-blur': unset,
|
|
11748
12129
|
'shadow-color': unset,
|
|
@@ -11766,11 +12147,16 @@ $tab-strip-item-props: (
|
|
|
11766
12147
|
* ------------------------------------------------------------------------------
|
|
11767
12148
|
*/
|
|
11768
12149
|
$table-props: (
|
|
12150
|
+
'alternating-color': var(--memphis-scheme-semi-transparent),
|
|
11769
12151
|
'background-color': var(--memphis-scheme-background),
|
|
11770
12152
|
'border-color': var(--memphis-scheme-contrast),
|
|
11771
12153
|
'border-radius': var(--memphis-layout-radius),
|
|
11772
12154
|
'border-style': solid,
|
|
11773
12155
|
'border-width': var(--memphis-layout-thickness),
|
|
12156
|
+
'column-border-color': var(--memphis-scheme-contrast),
|
|
12157
|
+
'column-border-radius': unset,
|
|
12158
|
+
'column-border-style': solid,
|
|
12159
|
+
'column-border-width': 0px,
|
|
11774
12160
|
'font-family': var(--memphis-font-family),
|
|
11775
12161
|
'font-letter-spacing': unset,
|
|
11776
12162
|
'font-line-height': unset,
|
|
@@ -11780,10 +12166,15 @@ $table-props: (
|
|
|
11780
12166
|
'font-weight': var(--memphis-typography-body1-font-weight),
|
|
11781
12167
|
'foreground-color': var(--memphis-scheme-foreground),
|
|
11782
12168
|
'gap': var(--memphis-layout-space),
|
|
12169
|
+
'line-thickness': var(--memphis-layout-thickness),
|
|
11783
12170
|
'padding-bottom': var(--memphis-layout-space),
|
|
11784
12171
|
'padding-left': calc(var(--memphis-layout-space) * 2),
|
|
11785
12172
|
'padding-right': calc(var(--memphis-layout-space) * 2),
|
|
11786
12173
|
'padding-top': var(--memphis-layout-space),
|
|
12174
|
+
'row-border-color': var(--memphis-scheme-contrast),
|
|
12175
|
+
'row-border-radius': unset,
|
|
12176
|
+
'row-border-style': solid,
|
|
12177
|
+
'row-border-width': var(--memphis-layout-thickness),
|
|
11787
12178
|
'shadow': unset unset unset unset unset,
|
|
11788
12179
|
'shadow-blur': unset,
|
|
11789
12180
|
'shadow-color': unset,
|
|
@@ -11843,7 +12234,7 @@ $table-body-props: (
|
|
|
11843
12234
|
* </auto-generated>
|
|
11844
12235
|
* ------------------------------------------------------------------------------
|
|
11845
12236
|
*/
|
|
11846
|
-
$table-cell-props: (
|
|
12237
|
+
$table-body-cell-props: (
|
|
11847
12238
|
'background-color': var(--memphis-scheme-background),
|
|
11848
12239
|
'border-color': var(--memphis-scheme-highlight),
|
|
11849
12240
|
'border-radius': var(--memphis-layout-radius),
|
|
@@ -11873,6 +12264,81 @@ $table-cell-props: (
|
|
|
11873
12264
|
'transition-property': (all),
|
|
11874
12265
|
'translate': none
|
|
11875
12266
|
);
|
|
12267
|
+
/**
|
|
12268
|
+
* ------------------------------------------------------------------------------
|
|
12269
|
+
* <auto-generated>
|
|
12270
|
+
* This code was generated by a tool.
|
|
12271
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
12272
|
+
* the code is regenerated.
|
|
12273
|
+
* </auto-generated>
|
|
12274
|
+
* ------------------------------------------------------------------------------
|
|
12275
|
+
*/
|
|
12276
|
+
$table-body-row-props: (
|
|
12277
|
+
'border-color': var(--memphis-scheme-contrast),
|
|
12278
|
+
'border-radius': var(--memphis-layout-radius),
|
|
12279
|
+
'border-style': solid,
|
|
12280
|
+
'border-width': 0px,
|
|
12281
|
+
'font-family': var(--memphis-font-family),
|
|
12282
|
+
'font-letter-spacing': unset,
|
|
12283
|
+
'font-line-height': unset,
|
|
12284
|
+
'font-size': var(--memphis-typography-body1-font-size),
|
|
12285
|
+
'font-text-decoration': unset,
|
|
12286
|
+
'font-text-transform': unset,
|
|
12287
|
+
'font-weight': var(--memphis-typography-body1-font-weight),
|
|
12288
|
+
'foreground-color': var(--memphis-color-neutral-50),
|
|
12289
|
+
'gap': var(--memphis-layout-space),
|
|
12290
|
+
'padding-bottom': var(--memphis-layout-space),
|
|
12291
|
+
'padding-left': 0,
|
|
12292
|
+
'padding-right': 0,
|
|
12293
|
+
'padding-top': var(--memphis-layout-space),
|
|
12294
|
+
'shadow': unset unset unset unset unset,
|
|
12295
|
+
'shadow-blur': unset,
|
|
12296
|
+
'shadow-color': unset,
|
|
12297
|
+
'shadow-offset-x': unset,
|
|
12298
|
+
'shadow-offset-y': unset,
|
|
12299
|
+
'shadow-spread': unset,
|
|
12300
|
+
'transition-duration': .2s,
|
|
12301
|
+
'transition-mode': ease,
|
|
12302
|
+
'transition-property': (background-color, border-color),
|
|
12303
|
+
'translate': none
|
|
12304
|
+
);
|
|
12305
|
+
/**
|
|
12306
|
+
* ------------------------------------------------------------------------------
|
|
12307
|
+
* <auto-generated>
|
|
12308
|
+
* This code was generated by a tool.
|
|
12309
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
12310
|
+
* the code is regenerated.
|
|
12311
|
+
* </auto-generated>
|
|
12312
|
+
* ------------------------------------------------------------------------------
|
|
12313
|
+
*/
|
|
12314
|
+
$table-column-editor-props: (
|
|
12315
|
+
'background-color': var(--memphis-scheme-background),
|
|
12316
|
+
'border-color': var(--memphis-scheme-highlight),
|
|
12317
|
+
'border-radius': var(--memphis-layout-radius),
|
|
12318
|
+
'font-family': unset,
|
|
12319
|
+
'font-letter-spacing': unset,
|
|
12320
|
+
'font-line-height': unset,
|
|
12321
|
+
'font-size': unset,
|
|
12322
|
+
'font-text-decoration': unset,
|
|
12323
|
+
'font-text-transform': unset,
|
|
12324
|
+
'font-weight': unset,
|
|
12325
|
+
'foreground-color': var(--memphis-scheme-foreground),
|
|
12326
|
+
'gap': var(--memphis-layout-space),
|
|
12327
|
+
'item-gap': var(--memphis-layout-space),
|
|
12328
|
+
'item-hover-background-color': var(--memphis-scheme-highlight),
|
|
12329
|
+
'item-padding-bottom': calc(var(--memphis-layout-space) * 0.5),
|
|
12330
|
+
'item-padding-left': var(--memphis-layout-space),
|
|
12331
|
+
'item-padding-right': var(--memphis-layout-space),
|
|
12332
|
+
'item-padding-top': calc(var(--memphis-layout-space) * 0.5),
|
|
12333
|
+
'padding-bottom': var(--memphis-layout-space),
|
|
12334
|
+
'padding-left': var(--memphis-layout-space),
|
|
12335
|
+
'padding-right': var(--memphis-layout-space),
|
|
12336
|
+
'padding-top': var(--memphis-layout-space),
|
|
12337
|
+
'transition-duration': var(--memphis-duration-short),
|
|
12338
|
+
'transition-mode': ease,
|
|
12339
|
+
'transition-property': (background-color, color),
|
|
12340
|
+
'translate': unset
|
|
12341
|
+
);
|
|
11876
12342
|
/**
|
|
11877
12343
|
* ------------------------------------------------------------------------------
|
|
11878
12344
|
* <auto-generated>
|
|
@@ -11912,6 +12378,84 @@ $table-footer-props: (
|
|
|
11912
12378
|
'transition-property': (all),
|
|
11913
12379
|
'translate': none
|
|
11914
12380
|
);
|
|
12381
|
+
/**
|
|
12382
|
+
* ------------------------------------------------------------------------------
|
|
12383
|
+
* <auto-generated>
|
|
12384
|
+
* This code was generated by a tool.
|
|
12385
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
12386
|
+
* the code is regenerated.
|
|
12387
|
+
* </auto-generated>
|
|
12388
|
+
* ------------------------------------------------------------------------------
|
|
12389
|
+
*/
|
|
12390
|
+
$table-footer-cell-props: (
|
|
12391
|
+
'background-color': var(--memphis-scheme-background),
|
|
12392
|
+
'border-color': var(--memphis-scheme-highlight),
|
|
12393
|
+
'border-radius': var(--memphis-layout-radius),
|
|
12394
|
+
'border-style': unset,
|
|
12395
|
+
'border-width': 0px,
|
|
12396
|
+
'font-family': var(--memphis-font-family),
|
|
12397
|
+
'font-letter-spacing': unset,
|
|
12398
|
+
'font-line-height': unset,
|
|
12399
|
+
'font-size': var(--memphis-typography-body1-font-size),
|
|
12400
|
+
'font-text-decoration': unset,
|
|
12401
|
+
'font-text-transform': unset,
|
|
12402
|
+
'font-weight': var(--memphis-typography-body1-font-weight),
|
|
12403
|
+
'foreground-color': var(--memphis-color-neutral-50),
|
|
12404
|
+
'gap': var(--memphis-layout-space),
|
|
12405
|
+
'padding-bottom': 0px,
|
|
12406
|
+
'padding-left': calc(var(--memphis-layout-space)*2),
|
|
12407
|
+
'padding-right': calc(var(--memphis-layout-space)*2),
|
|
12408
|
+
'padding-top': 0px,
|
|
12409
|
+
'shadow': unset unset unset unset unset,
|
|
12410
|
+
'shadow-blur': unset,
|
|
12411
|
+
'shadow-color': unset,
|
|
12412
|
+
'shadow-offset-x': unset,
|
|
12413
|
+
'shadow-offset-y': unset,
|
|
12414
|
+
'shadow-spread': unset,
|
|
12415
|
+
'transition-duration': .2s,
|
|
12416
|
+
'transition-mode': ease,
|
|
12417
|
+
'transition-property': (all),
|
|
12418
|
+
'translate': none
|
|
12419
|
+
);
|
|
12420
|
+
/**
|
|
12421
|
+
* ------------------------------------------------------------------------------
|
|
12422
|
+
* <auto-generated>
|
|
12423
|
+
* This code was generated by a tool.
|
|
12424
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
12425
|
+
* the code is regenerated.
|
|
12426
|
+
* </auto-generated>
|
|
12427
|
+
* ------------------------------------------------------------------------------
|
|
12428
|
+
*/
|
|
12429
|
+
$table-footer-row-props: (
|
|
12430
|
+
'background-color': var(--memphis-color-neutral-500),
|
|
12431
|
+
'border-color': var(--memphis-scheme-contrast),
|
|
12432
|
+
'border-radius': var(--memphis-layout-radius),
|
|
12433
|
+
'border-style': solid,
|
|
12434
|
+
'border-width': 0px,
|
|
12435
|
+
'font-family': var(--memphis-font-family),
|
|
12436
|
+
'font-letter-spacing': unset,
|
|
12437
|
+
'font-line-height': unset,
|
|
12438
|
+
'font-size': var(--memphis-typography-body1-font-size),
|
|
12439
|
+
'font-text-decoration': unset,
|
|
12440
|
+
'font-text-transform': unset,
|
|
12441
|
+
'font-weight': var(--memphis-typography-body1-font-weight),
|
|
12442
|
+
'foreground-color': var(--memphis-color-neutral-50),
|
|
12443
|
+
'gap': var(--memphis-layout-space),
|
|
12444
|
+
'padding-bottom': var(--memphis-layout-space),
|
|
12445
|
+
'padding-left': 0,
|
|
12446
|
+
'padding-right': 0,
|
|
12447
|
+
'padding-top': var(--memphis-layout-space),
|
|
12448
|
+
'shadow': unset unset unset unset unset,
|
|
12449
|
+
'shadow-blur': unset,
|
|
12450
|
+
'shadow-color': unset,
|
|
12451
|
+
'shadow-offset-x': unset,
|
|
12452
|
+
'shadow-offset-y': unset,
|
|
12453
|
+
'shadow-spread': unset,
|
|
12454
|
+
'transition-duration': .2s,
|
|
12455
|
+
'transition-mode': ease,
|
|
12456
|
+
'transition-property': (all),
|
|
12457
|
+
'translate': none
|
|
12458
|
+
);
|
|
11915
12459
|
/**
|
|
11916
12460
|
* ------------------------------------------------------------------------------
|
|
11917
12461
|
* <auto-generated>
|
|
@@ -11960,7 +12504,50 @@ $table-header-props: (
|
|
|
11960
12504
|
* </auto-generated>
|
|
11961
12505
|
* ------------------------------------------------------------------------------
|
|
11962
12506
|
*/
|
|
11963
|
-
$table-
|
|
12507
|
+
$table-header-cell-props: (
|
|
12508
|
+
'background-color': var(--memphis-scheme-background),
|
|
12509
|
+
'border-color': var(--memphis-scheme-highlight),
|
|
12510
|
+
'border-radius': var(--memphis-layout-radius),
|
|
12511
|
+
'border-style': unset,
|
|
12512
|
+
'border-width': 0px,
|
|
12513
|
+
'font-family': var(--memphis-font-family),
|
|
12514
|
+
'font-letter-spacing': unset,
|
|
12515
|
+
'font-line-height': unset,
|
|
12516
|
+
'font-size': var(--memphis-typography-body1-font-size),
|
|
12517
|
+
'font-text-decoration': unset,
|
|
12518
|
+
'font-text-transform': unset,
|
|
12519
|
+
'font-weight': var(--memphis-typography-body1-font-weight),
|
|
12520
|
+
'foreground-color': var(--memphis-color-neutral-50),
|
|
12521
|
+
'gap': var(--memphis-layout-space),
|
|
12522
|
+
'padding-bottom': 0px,
|
|
12523
|
+
'padding-left': calc(var(--memphis-layout-space)*2),
|
|
12524
|
+
'padding-right': calc(var(--memphis-layout-space)*2),
|
|
12525
|
+
'padding-top': 0px,
|
|
12526
|
+
'resize-handle-color': var(--memphis-color-primary-500),
|
|
12527
|
+
'resize-handle-width': 2px,
|
|
12528
|
+
'separator-color': var(--memphis-scheme-highlight),
|
|
12529
|
+
'separator-width': 1px,
|
|
12530
|
+
'shadow': unset unset unset unset unset,
|
|
12531
|
+
'shadow-blur': unset,
|
|
12532
|
+
'shadow-color': unset,
|
|
12533
|
+
'shadow-offset-x': unset,
|
|
12534
|
+
'shadow-offset-y': unset,
|
|
12535
|
+
'shadow-spread': unset,
|
|
12536
|
+
'transition-duration': .2s,
|
|
12537
|
+
'transition-mode': ease,
|
|
12538
|
+
'transition-property': (all),
|
|
12539
|
+
'translate': none
|
|
12540
|
+
);
|
|
12541
|
+
/**
|
|
12542
|
+
* ------------------------------------------------------------------------------
|
|
12543
|
+
* <auto-generated>
|
|
12544
|
+
* This code was generated by a tool.
|
|
12545
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
12546
|
+
* the code is regenerated.
|
|
12547
|
+
* </auto-generated>
|
|
12548
|
+
* ------------------------------------------------------------------------------
|
|
12549
|
+
*/
|
|
12550
|
+
$table-header-row-props: (
|
|
11964
12551
|
'background-color': var(--memphis-color-neutral-500),
|
|
11965
12552
|
'border-color': var(--memphis-scheme-contrast),
|
|
11966
12553
|
'border-radius': var(--memphis-layout-radius),
|
|
@@ -11987,7 +12574,7 @@ $table-row-props: (
|
|
|
11987
12574
|
'shadow-spread': unset,
|
|
11988
12575
|
'transition-duration': .2s,
|
|
11989
12576
|
'transition-mode': ease,
|
|
11990
|
-
'transition-property': (
|
|
12577
|
+
'transition-property': (background-color, border-color),
|
|
11991
12578
|
'translate': none
|
|
11992
12579
|
);
|
|
11993
12580
|
/**
|
|
@@ -12222,6 +12809,51 @@ $tick-bar-props: (
|
|
|
12222
12809
|
'transition-property': (unset),
|
|
12223
12810
|
'translate': none
|
|
12224
12811
|
);
|
|
12812
|
+
/**
|
|
12813
|
+
* ------------------------------------------------------------------------------
|
|
12814
|
+
* <auto-generated>
|
|
12815
|
+
* This code was generated by a tool.
|
|
12816
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
12817
|
+
* the code is regenerated.
|
|
12818
|
+
* </auto-generated>
|
|
12819
|
+
* ------------------------------------------------------------------------------
|
|
12820
|
+
*/
|
|
12821
|
+
$tile-props: (
|
|
12822
|
+
'background-color': var(--memphis-scheme-background),
|
|
12823
|
+
'border-color': var(--memphis-scheme-contrast),
|
|
12824
|
+
'border-radius': var(--memphis-layout-radius),
|
|
12825
|
+
'border-style': solid,
|
|
12826
|
+
'border-width': var(--memphis-layout-thickness),
|
|
12827
|
+
'focus-ring-active-width': 8px,
|
|
12828
|
+
'focus-ring-color': var(--memphis-scheme-highlight),
|
|
12829
|
+
'focus-ring-inward-offset': 2px,
|
|
12830
|
+
'focus-ring-outward-offset': 2px,
|
|
12831
|
+
'font-family': var(--memphis-font-family),
|
|
12832
|
+
'font-letter-spacing': var(--memphis-typography-body1-letter-spacing),
|
|
12833
|
+
'font-line-height': var(--memphis-typography-body1-line-height),
|
|
12834
|
+
'font-size': var(--memphis-typography-body1-font-size),
|
|
12835
|
+
'font-text-decoration': var(--memphis-typography-body1-text-decoration),
|
|
12836
|
+
'font-text-transform': var(--memphis-typography-body1-text-transform),
|
|
12837
|
+
'font-weight': var(--memphis-typography-body1-font-weight),
|
|
12838
|
+
'foreground-color': var(--memphis-scheme-foreground),
|
|
12839
|
+
'gap': var(--memphis-layout-space),
|
|
12840
|
+
'padding-bottom': var(--memphis-layout-space),
|
|
12841
|
+
'padding-left': var(--memphis-layout-space),
|
|
12842
|
+
'padding-right': var(--memphis-layout-space),
|
|
12843
|
+
'padding-top': var(--memphis-layout-space),
|
|
12844
|
+
'ripple-color': var(--memphis-scheme-highlight),
|
|
12845
|
+
'ripple-duration': 0.20s,
|
|
12846
|
+
'shadow': var(--memphis-elevation-bold-offset-x-0) var(--memphis-elevation-bold-offset-y-0) var(--memphis-elevation-bold-blur-0) var(--memphis-elevation-bold-spread-0) var(--memphis-elevation-bold-color-0),
|
|
12847
|
+
'shadow-blur': var(--memphis-elevation-bold-blur-0),
|
|
12848
|
+
'shadow-color': var(--memphis-elevation-bold-color-0),
|
|
12849
|
+
'shadow-offset-x': var(--memphis-elevation-bold-offset-x-0),
|
|
12850
|
+
'shadow-offset-y': var(--memphis-elevation-bold-offset-y-0),
|
|
12851
|
+
'shadow-spread': var(--memphis-elevation-bold-spread-0),
|
|
12852
|
+
'transition-duration': .2s,
|
|
12853
|
+
'transition-mode': ease,
|
|
12854
|
+
'transition-property': (background-color, color, border-color, box-shadow),
|
|
12855
|
+
'translate': none
|
|
12856
|
+
);
|
|
12225
12857
|
/**
|
|
12226
12858
|
* ------------------------------------------------------------------------------
|
|
12227
12859
|
* <auto-generated>
|
|
@@ -12714,10 +13346,12 @@ $toast-props: (
|
|
|
12714
13346
|
'font-weight': var(--memphis-typography-body2-font-weight),
|
|
12715
13347
|
'foreground-color': var(--memphis-scheme-foreground),
|
|
12716
13348
|
'gap': var(--memphis-layout-space),
|
|
13349
|
+
'offset-y': var(--memphis-layout-space),
|
|
12717
13350
|
'padding-bottom': calc(var(--memphis-layout-space) * 1.2),
|
|
12718
13351
|
'padding-left': calc(var(--memphis-layout-space) * 2.4),
|
|
12719
13352
|
'padding-right': calc(var(--memphis-layout-space) * 2.4),
|
|
12720
13353
|
'padding-top': calc(var(--memphis-layout-space) * 1.2),
|
|
13354
|
+
'progress-fill-color': currentColor,
|
|
12721
13355
|
'progress-ring-fill-color': var(--memphis-color-light-info-500),
|
|
12722
13356
|
'shadow': unset unset unset unset unset,
|
|
12723
13357
|
'shadow-blur': unset,
|
|
@@ -12770,7 +13404,7 @@ $toggle-button-props: (
|
|
|
12770
13404
|
'padding-top': var(--memphis-layout-space),
|
|
12771
13405
|
'progress-ring-width': var(--memphis-layout-thickness),
|
|
12772
13406
|
'ripple-color': unset,
|
|
12773
|
-
'ripple-duration':
|
|
13407
|
+
'ripple-duration': 0.20s,
|
|
12774
13408
|
'shadow': unset unset unset unset unset,
|
|
12775
13409
|
'shadow-blur': unset,
|
|
12776
13410
|
'shadow-color': unset,
|