@breadstone/mosaik-themes 0.0.231 → 0.0.233
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/cosmopolitan.scss
CHANGED
|
@@ -1274,6 +1274,130 @@ $accordion-props: (
|
|
|
1274
1274
|
'transition-property': unset,
|
|
1275
1275
|
'translate': none
|
|
1276
1276
|
);
|
|
1277
|
+
/**
|
|
1278
|
+
* ------------------------------------------------------------------------------
|
|
1279
|
+
* <auto-generated>
|
|
1280
|
+
* This code was generated by a tool.
|
|
1281
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
1282
|
+
* the code is regenerated.
|
|
1283
|
+
* </auto-generated>
|
|
1284
|
+
* ------------------------------------------------------------------------------
|
|
1285
|
+
*/
|
|
1286
|
+
$actionbar-group-props: (
|
|
1287
|
+
'font-family': unset,
|
|
1288
|
+
'font-letter-spacing': unset,
|
|
1289
|
+
'font-line-height': unset,
|
|
1290
|
+
'font-size': unset,
|
|
1291
|
+
'font-text-decoration': unset,
|
|
1292
|
+
'font-text-transform': unset,
|
|
1293
|
+
'font-weight': unset,
|
|
1294
|
+
'gap': 4px,
|
|
1295
|
+
'label-color': unset,
|
|
1296
|
+
'label-font-size': 11px,
|
|
1297
|
+
'label-font-weight': 600,
|
|
1298
|
+
'padding-bottom': 0,
|
|
1299
|
+
'padding-left': 0,
|
|
1300
|
+
'padding-right': 0,
|
|
1301
|
+
'padding-top': 0,
|
|
1302
|
+
'transition-duration': .2s,
|
|
1303
|
+
'transition-mode': ease,
|
|
1304
|
+
'transition-property': (all),
|
|
1305
|
+
'translate': unset
|
|
1306
|
+
);
|
|
1307
|
+
/**
|
|
1308
|
+
* ------------------------------------------------------------------------------
|
|
1309
|
+
* <auto-generated>
|
|
1310
|
+
* This code was generated by a tool.
|
|
1311
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
1312
|
+
* the code is regenerated.
|
|
1313
|
+
* </auto-generated>
|
|
1314
|
+
* ------------------------------------------------------------------------------
|
|
1315
|
+
*/
|
|
1316
|
+
$actionbar-item-props: (
|
|
1317
|
+
'background-color': transparent,
|
|
1318
|
+
'background-color-active': rgba(0, 0, 0, 0.08),
|
|
1319
|
+
'background-color-hover': rgba(0, 0, 0, 0.04),
|
|
1320
|
+
'border-radius': 4px,
|
|
1321
|
+
'font-family': unset,
|
|
1322
|
+
'font-letter-spacing': unset,
|
|
1323
|
+
'font-line-height': unset,
|
|
1324
|
+
'font-size': unset,
|
|
1325
|
+
'font-text-decoration': unset,
|
|
1326
|
+
'font-text-transform': unset,
|
|
1327
|
+
'font-weight': unset,
|
|
1328
|
+
'gap': unset,
|
|
1329
|
+
'padding-bottom': 4px,
|
|
1330
|
+
'padding-left': 4px,
|
|
1331
|
+
'padding-right': 4px,
|
|
1332
|
+
'padding-top': 4px,
|
|
1333
|
+
'transition-duration': .2s,
|
|
1334
|
+
'transition-mode': ease,
|
|
1335
|
+
'transition-property': (background-color),
|
|
1336
|
+
'translate': unset
|
|
1337
|
+
);
|
|
1338
|
+
/**
|
|
1339
|
+
* ------------------------------------------------------------------------------
|
|
1340
|
+
* <auto-generated>
|
|
1341
|
+
* This code was generated by a tool.
|
|
1342
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
1343
|
+
* the code is regenerated.
|
|
1344
|
+
* </auto-generated>
|
|
1345
|
+
* ------------------------------------------------------------------------------
|
|
1346
|
+
*/
|
|
1347
|
+
$actionbar-separator-props: (
|
|
1348
|
+
'background-color': rgba(0, 0, 0, 0.12),
|
|
1349
|
+
'font-family': unset,
|
|
1350
|
+
'font-letter-spacing': unset,
|
|
1351
|
+
'font-line-height': unset,
|
|
1352
|
+
'font-size': unset,
|
|
1353
|
+
'font-text-decoration': unset,
|
|
1354
|
+
'font-text-transform': unset,
|
|
1355
|
+
'font-weight': unset,
|
|
1356
|
+
'gap': unset,
|
|
1357
|
+
'padding-bottom': unset,
|
|
1358
|
+
'padding-left': unset,
|
|
1359
|
+
'padding-right': unset,
|
|
1360
|
+
'padding-top': unset,
|
|
1361
|
+
'thickness': 1px,
|
|
1362
|
+
'transition-duration': .2s,
|
|
1363
|
+
'transition-mode': ease,
|
|
1364
|
+
'transition-property': (all),
|
|
1365
|
+
'translate': unset
|
|
1366
|
+
);
|
|
1367
|
+
/**
|
|
1368
|
+
* ------------------------------------------------------------------------------
|
|
1369
|
+
* <auto-generated>
|
|
1370
|
+
* This code was generated by a tool.
|
|
1371
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
1372
|
+
* the code is regenerated.
|
|
1373
|
+
* </auto-generated>
|
|
1374
|
+
* ------------------------------------------------------------------------------
|
|
1375
|
+
*/
|
|
1376
|
+
$actionbar-props: (
|
|
1377
|
+
'background-color': unset,
|
|
1378
|
+
'border-color': unset,
|
|
1379
|
+
'border-radius': unset,
|
|
1380
|
+
'border-style': solid,
|
|
1381
|
+
'border-width': 1px,
|
|
1382
|
+
'font-family': unset,
|
|
1383
|
+
'font-letter-spacing': unset,
|
|
1384
|
+
'font-line-height': unset,
|
|
1385
|
+
'font-size': 14px,
|
|
1386
|
+
'font-text-decoration': unset,
|
|
1387
|
+
'font-text-transform': unset,
|
|
1388
|
+
'font-weight': normal,
|
|
1389
|
+
'foreground-color': unset,
|
|
1390
|
+
'gap': 8px,
|
|
1391
|
+
'min-height': 48px,
|
|
1392
|
+
'padding-bottom': 8px,
|
|
1393
|
+
'padding-left': 8px,
|
|
1394
|
+
'padding-right': 8px,
|
|
1395
|
+
'padding-top': 8px,
|
|
1396
|
+
'transition-duration': .2s,
|
|
1397
|
+
'transition-mode': ease,
|
|
1398
|
+
'transition-property': (all),
|
|
1399
|
+
'translate': unset
|
|
1400
|
+
);
|
|
1277
1401
|
/**
|
|
1278
1402
|
* ------------------------------------------------------------------------------
|
|
1279
1403
|
* <auto-generated>
|
|
@@ -1341,7 +1465,7 @@ $anchor-props: (
|
|
|
1341
1465
|
'transition-duration': .2s,
|
|
1342
1466
|
'transition-mode': ease,
|
|
1343
1467
|
'transition-property': (background-color, color, border-color, opacity, box-shadow),
|
|
1344
|
-
'translate':
|
|
1468
|
+
'translate': none
|
|
1345
1469
|
);
|
|
1346
1470
|
/**
|
|
1347
1471
|
* ------------------------------------------------------------------------------
|
|
@@ -2036,7 +2160,7 @@ $button-props: (
|
|
|
2036
2160
|
'padding-top': var(--cosmopolitan-layout-space),
|
|
2037
2161
|
'progress-ring-width': var(--cosmopolitan-layout-thickness),
|
|
2038
2162
|
'ripple-color': unset,
|
|
2039
|
-
'ripple-duration':
|
|
2163
|
+
'ripple-duration': 0.20s,
|
|
2040
2164
|
'shadow': var(--cosmopolitan-elevation-semilight-offset-x-0) var(--cosmopolitan-elevation-semilight-offset-y-0) var(--cosmopolitan-elevation-semilight-blur-0) var(--cosmopolitan-elevation-semilight-spread-0) var(--cosmopolitan-elevation-semilight-color-0),
|
|
2041
2165
|
'shadow-blur': var(--cosmopolitan-elevation-semilight-blur-0),
|
|
2042
2166
|
'shadow-color': var(--cosmopolitan-elevation-semilight-color-0),
|
|
@@ -2233,7 +2357,7 @@ $calendar-item-props: (
|
|
|
2233
2357
|
'padding-right': 12px,
|
|
2234
2358
|
'padding-top': var(--cosmopolitan-layout-space),
|
|
2235
2359
|
'ripple-color': unset,
|
|
2236
|
-
'ripple-duration':
|
|
2360
|
+
'ripple-duration': 0.20s,
|
|
2237
2361
|
'shadow': var(--cosmopolitan-elevation-light-offset-x-0) var(--cosmopolitan-elevation-light-offset-y-0) var(--cosmopolitan-elevation-light-blur-0) var(--cosmopolitan-elevation-light-spread-0) var(--cosmopolitan-elevation-light-color-0),
|
|
2238
2362
|
'shadow-blur': var(--cosmopolitan-elevation-light-blur-0),
|
|
2239
2363
|
'shadow-color': var(--cosmopolitan-elevation-light-color-0),
|
|
@@ -3416,7 +3540,7 @@ $chip-props: (
|
|
|
3416
3540
|
'padding-right': unset,
|
|
3417
3541
|
'padding-top': unset,
|
|
3418
3542
|
'ripple-color': unset,
|
|
3419
|
-
'ripple-duration':
|
|
3543
|
+
'ripple-duration': 0.20s,
|
|
3420
3544
|
'shadow': var(--cosmopolitan-elevation-light-offset-x-0) var(--cosmopolitan-elevation-light-offset-y-0) var(--cosmopolitan-elevation-light-blur-0) var(--cosmopolitan-elevation-light-spread-0) var(--cosmopolitan-elevation-light-color-0),
|
|
3421
3545
|
'shadow-blur': var(--cosmopolitan-elevation-light-blur-0),
|
|
3422
3546
|
'shadow-color': var(--cosmopolitan-elevation-light-color-0),
|
|
@@ -4396,7 +4520,7 @@ $combo-item-props: (
|
|
|
4396
4520
|
'padding-right': unset,
|
|
4397
4521
|
'padding-top': unset,
|
|
4398
4522
|
'ripple-color': var(--cosmopolitan-color-light-secondary-200),
|
|
4399
|
-
'ripple-duration':
|
|
4523
|
+
'ripple-duration': 0.20s,
|
|
4400
4524
|
'shadow': unset unset unset unset unset,
|
|
4401
4525
|
'shadow-blur': unset,
|
|
4402
4526
|
'shadow-color': unset,
|
|
@@ -4483,7 +4607,7 @@ $compound-button-props: (
|
|
|
4483
4607
|
'padding-top': var(--cosmopolitan-layout-space),
|
|
4484
4608
|
'progress-ring-width': var(--cosmopolitan-layout-thickness),
|
|
4485
4609
|
'ripple-color': unset,
|
|
4486
|
-
'ripple-duration':
|
|
4610
|
+
'ripple-duration': 0.20s,
|
|
4487
4611
|
'shadow': var(--cosmopolitan-elevation-semilight-offset-x-0) var(--cosmopolitan-elevation-semilight-offset-y-0) var(--cosmopolitan-elevation-semilight-blur-0) var(--cosmopolitan-elevation-semilight-spread-0) var(--cosmopolitan-elevation-semilight-color-0),
|
|
4488
4612
|
'shadow-blur': var(--cosmopolitan-elevation-semilight-blur-0),
|
|
4489
4613
|
'shadow-color': var(--cosmopolitan-elevation-semilight-color-0),
|
|
@@ -4605,6 +4729,7 @@ $data-list-props: (
|
|
|
4605
4729
|
* ------------------------------------------------------------------------------
|
|
4606
4730
|
*/
|
|
4607
4731
|
$data-table-props: (
|
|
4732
|
+
'border-radius': var(--cosmopolitan-layout-radius),
|
|
4608
4733
|
'font-family': unset,
|
|
4609
4734
|
'font-letter-spacing': unset,
|
|
4610
4735
|
'font-line-height': unset,
|
|
@@ -4712,6 +4837,129 @@ $date-time-box-props: (
|
|
|
4712
4837
|
'transition-property': (background-color, color, border-color, opacity, box-shadow),
|
|
4713
4838
|
'translate': none
|
|
4714
4839
|
);
|
|
4840
|
+
/**
|
|
4841
|
+
* ------------------------------------------------------------------------------
|
|
4842
|
+
* <auto-generated>
|
|
4843
|
+
* This code was generated by a tool.
|
|
4844
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
4845
|
+
* the code is regenerated.
|
|
4846
|
+
* </auto-generated>
|
|
4847
|
+
* ------------------------------------------------------------------------------
|
|
4848
|
+
*/
|
|
4849
|
+
$designer-props: (
|
|
4850
|
+
'font-family': unset,
|
|
4851
|
+
'font-letter-spacing': unset,
|
|
4852
|
+
'font-line-height': unset,
|
|
4853
|
+
'font-size': unset,
|
|
4854
|
+
'font-text-decoration': unset,
|
|
4855
|
+
'font-text-transform': unset,
|
|
4856
|
+
'font-weight': unset,
|
|
4857
|
+
'gap': unset,
|
|
4858
|
+
'padding-bottom': unset,
|
|
4859
|
+
'padding-left': unset,
|
|
4860
|
+
'padding-right': unset,
|
|
4861
|
+
'padding-top': unset,
|
|
4862
|
+
'transition-duration': unset,
|
|
4863
|
+
'transition-mode': unset,
|
|
4864
|
+
'transition-property': unset,
|
|
4865
|
+
'translate': unset
|
|
4866
|
+
);
|
|
4867
|
+
/**
|
|
4868
|
+
* ------------------------------------------------------------------------------
|
|
4869
|
+
* <auto-generated>
|
|
4870
|
+
* This code was generated by a tool.
|
|
4871
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
4872
|
+
* the code is regenerated.
|
|
4873
|
+
* </auto-generated>
|
|
4874
|
+
* ------------------------------------------------------------------------------
|
|
4875
|
+
*/
|
|
4876
|
+
$designer-canvas-props: (
|
|
4877
|
+
'background-color': var(--cosmopolitan-scheme-surface),
|
|
4878
|
+
'dot-color': var(--cosmopolitan-color-neutral-400),
|
|
4879
|
+
'dot-size': 1px,
|
|
4880
|
+
'dot-spacing': 20px,
|
|
4881
|
+
'font-family': unset,
|
|
4882
|
+
'font-letter-spacing': unset,
|
|
4883
|
+
'font-line-height': unset,
|
|
4884
|
+
'font-size': unset,
|
|
4885
|
+
'font-text-decoration': unset,
|
|
4886
|
+
'font-text-transform': unset,
|
|
4887
|
+
'font-weight': unset,
|
|
4888
|
+
'gap': unset,
|
|
4889
|
+
'padding-bottom': unset,
|
|
4890
|
+
'padding-left': unset,
|
|
4891
|
+
'padding-right': unset,
|
|
4892
|
+
'padding-top': unset,
|
|
4893
|
+
'transition-duration': unset,
|
|
4894
|
+
'transition-mode': unset,
|
|
4895
|
+
'transition-property': unset,
|
|
4896
|
+
'translate': unset
|
|
4897
|
+
);
|
|
4898
|
+
/**
|
|
4899
|
+
* ------------------------------------------------------------------------------
|
|
4900
|
+
* <auto-generated>
|
|
4901
|
+
* This code was generated by a tool.
|
|
4902
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
4903
|
+
* the code is regenerated.
|
|
4904
|
+
* </auto-generated>
|
|
4905
|
+
* ------------------------------------------------------------------------------
|
|
4906
|
+
*/
|
|
4907
|
+
$designer-content-props: (
|
|
4908
|
+
'font-family': unset,
|
|
4909
|
+
'font-letter-spacing': unset,
|
|
4910
|
+
'font-line-height': unset,
|
|
4911
|
+
'font-size': unset,
|
|
4912
|
+
'font-text-decoration': unset,
|
|
4913
|
+
'font-text-transform': unset,
|
|
4914
|
+
'font-weight': unset,
|
|
4915
|
+
'gap': unset,
|
|
4916
|
+
'padding-bottom': unset,
|
|
4917
|
+
'padding-left': unset,
|
|
4918
|
+
'padding-right': unset,
|
|
4919
|
+
'padding-top': unset,
|
|
4920
|
+
'transition-duration': unset,
|
|
4921
|
+
'transition-mode': unset,
|
|
4922
|
+
'transition-property': unset,
|
|
4923
|
+
'translate': unset
|
|
4924
|
+
);
|
|
4925
|
+
/**
|
|
4926
|
+
* ------------------------------------------------------------------------------
|
|
4927
|
+
* <auto-generated>
|
|
4928
|
+
* This code was generated by a tool.
|
|
4929
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
4930
|
+
* the code is regenerated.
|
|
4931
|
+
* </auto-generated>
|
|
4932
|
+
* ------------------------------------------------------------------------------
|
|
4933
|
+
*/
|
|
4934
|
+
$designer-frame-props: (
|
|
4935
|
+
'background-color': var(--cosmopolitan-scheme-background),
|
|
4936
|
+
'border-color': var(--cosmopolitan-color-neutral-300),
|
|
4937
|
+
'border-width': 1px,
|
|
4938
|
+
'bounds-color': var(--cosmopolitan-color-neutral-500),
|
|
4939
|
+
'bounds-font-size': 11px,
|
|
4940
|
+
'font-family': unset,
|
|
4941
|
+
'font-letter-spacing': unset,
|
|
4942
|
+
'font-line-height': unset,
|
|
4943
|
+
'font-size': unset,
|
|
4944
|
+
'font-text-decoration': unset,
|
|
4945
|
+
'font-text-transform': unset,
|
|
4946
|
+
'font-weight': unset,
|
|
4947
|
+
'gap': unset,
|
|
4948
|
+
'padding-bottom': unset,
|
|
4949
|
+
'padding-left': unset,
|
|
4950
|
+
'padding-right': unset,
|
|
4951
|
+
'padding-top': unset,
|
|
4952
|
+
'shadow': unset unset unset unset unset,
|
|
4953
|
+
'shadow-blur': unset,
|
|
4954
|
+
'shadow-color': unset,
|
|
4955
|
+
'shadow-offset-x': unset,
|
|
4956
|
+
'shadow-offset-y': unset,
|
|
4957
|
+
'shadow-spread': unset,
|
|
4958
|
+
'transition-duration': unset,
|
|
4959
|
+
'transition-mode': unset,
|
|
4960
|
+
'transition-property': unset,
|
|
4961
|
+
'translate': unset
|
|
4962
|
+
);
|
|
4715
4963
|
/**
|
|
4716
4964
|
* ------------------------------------------------------------------------------
|
|
4717
4965
|
* <auto-generated>
|
|
@@ -5495,7 +5743,7 @@ $drop-down-button-props: (
|
|
|
5495
5743
|
'progress-ring-width': var(--cosmopolitan-layout-thickness),
|
|
5496
5744
|
'progress-thickness': var(--cosmopolitan-layout-thickness),
|
|
5497
5745
|
'ripple-color': unset,
|
|
5498
|
-
'ripple-duration':
|
|
5746
|
+
'ripple-duration': 0.20s,
|
|
5499
5747
|
'shadow': unset unset unset unset unset,
|
|
5500
5748
|
'shadow-blur': unset,
|
|
5501
5749
|
'shadow-color': unset,
|
|
@@ -5580,6 +5828,46 @@ $dropdown-props: (
|
|
|
5580
5828
|
'transition-property': unset,
|
|
5581
5829
|
'translate': none
|
|
5582
5830
|
);
|
|
5831
|
+
/**
|
|
5832
|
+
* ------------------------------------------------------------------------------
|
|
5833
|
+
* <auto-generated>
|
|
5834
|
+
* This code was generated by a tool.
|
|
5835
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
5836
|
+
* the code is regenerated.
|
|
5837
|
+
* </auto-generated>
|
|
5838
|
+
* ------------------------------------------------------------------------------
|
|
5839
|
+
*/
|
|
5840
|
+
$duration-box-props: (
|
|
5841
|
+
'background-color': unset,
|
|
5842
|
+
'border-color': unset,
|
|
5843
|
+
'border-radius': unset,
|
|
5844
|
+
'border-style': unset,
|
|
5845
|
+
'border-width': unset,
|
|
5846
|
+
'font-family': var(--cosmopolitan-font-family),
|
|
5847
|
+
'font-letter-spacing': unset,
|
|
5848
|
+
'font-line-height': unset,
|
|
5849
|
+
'font-size': 16px,
|
|
5850
|
+
'font-text-decoration': unset,
|
|
5851
|
+
'font-text-transform': unset,
|
|
5852
|
+
'font-weight': normal,
|
|
5853
|
+
'foreground-color': unset,
|
|
5854
|
+
'gap': var(--cosmopolitan-layout-space),
|
|
5855
|
+
'height': unset,
|
|
5856
|
+
'padding-bottom': var(--cosmopolitan-layout-space),
|
|
5857
|
+
'padding-left': calc(var(--cosmopolitan-layout-space) * 1.5),
|
|
5858
|
+
'padding-right': calc(var(--cosmopolitan-layout-space) * 1.5),
|
|
5859
|
+
'padding-top': var(--cosmopolitan-layout-space),
|
|
5860
|
+
'shadow': unset unset unset unset unset,
|
|
5861
|
+
'shadow-blur': unset,
|
|
5862
|
+
'shadow-color': unset,
|
|
5863
|
+
'shadow-offset-x': unset,
|
|
5864
|
+
'shadow-offset-y': unset,
|
|
5865
|
+
'shadow-spread': unset,
|
|
5866
|
+
'transition-duration': var(--cosmopolitan-duration-short),
|
|
5867
|
+
'transition-mode': ease,
|
|
5868
|
+
'transition-property': (background-color, color, border-color, opacity, box-shadow),
|
|
5869
|
+
'translate': none
|
|
5870
|
+
);
|
|
5583
5871
|
/**
|
|
5584
5872
|
* ------------------------------------------------------------------------------
|
|
5585
5873
|
* <auto-generated>
|
|
@@ -6063,7 +6351,7 @@ $expander-props: (
|
|
|
6063
6351
|
'padding-right': unset,
|
|
6064
6352
|
'padding-top': unset,
|
|
6065
6353
|
'ripple-color': unset,
|
|
6066
|
-
'ripple-duration':
|
|
6354
|
+
'ripple-duration': 0.20s,
|
|
6067
6355
|
'shadow': var(--cosmopolitan-elevation-light-offset-x-1) var(--cosmopolitan-elevation-light-offset-y-1) var(--cosmopolitan-elevation-light-blur-1) var(--cosmopolitan-elevation-light-spread-1) var(--cosmopolitan-elevation-light-color-1),
|
|
6068
6356
|
'shadow-blur': var(--cosmopolitan-elevation-light-blur-1),
|
|
6069
6357
|
'shadow-color': var(--cosmopolitan-elevation-light-color-1),
|
|
@@ -6416,7 +6704,7 @@ $floating-action-button-props: (
|
|
|
6416
6704
|
'padding-top': var(--cosmopolitan-layout-space),
|
|
6417
6705
|
'progress-ring-width': var(--cosmopolitan-layout-thickness),
|
|
6418
6706
|
'ripple-color': unset,
|
|
6419
|
-
'ripple-duration':
|
|
6707
|
+
'ripple-duration': 0.20s,
|
|
6420
6708
|
'shadow': var(--cosmopolitan-elevation-semilight-offset-x-0) var(--cosmopolitan-elevation-semilight-offset-y-0) var(--cosmopolitan-elevation-semilight-blur-0) var(--cosmopolitan-elevation-semilight-spread-0) var(--cosmopolitan-elevation-semilight-color-0),
|
|
6421
6709
|
'shadow-blur': var(--cosmopolitan-elevation-semilight-blur-0),
|
|
6422
6710
|
'shadow-color': var(--cosmopolitan-elevation-semilight-color-0),
|
|
@@ -6730,7 +7018,7 @@ $focus-ring-props: (
|
|
|
6730
7018
|
'padding-left': unset,
|
|
6731
7019
|
'padding-right': unset,
|
|
6732
7020
|
'padding-top': unset,
|
|
6733
|
-
'shadow':
|
|
7021
|
+
'shadow': none,
|
|
6734
7022
|
'shadow-blur': unset,
|
|
6735
7023
|
'shadow-color': unset,
|
|
6736
7024
|
'shadow-offset-x': unset,
|
|
@@ -7616,7 +7904,7 @@ $list-item-props: (
|
|
|
7616
7904
|
'padding-right': unset,
|
|
7617
7905
|
'padding-top': unset,
|
|
7618
7906
|
'ripple-color': unset,
|
|
7619
|
-
'ripple-duration':
|
|
7907
|
+
'ripple-duration': 0.20s,
|
|
7620
7908
|
'shadow': unset unset unset unset unset,
|
|
7621
7909
|
'shadow-blur': unset,
|
|
7622
7910
|
'shadow-color': unset,
|
|
@@ -7989,7 +8277,7 @@ $menu-item-props: (
|
|
|
7989
8277
|
'padding-right': unset,
|
|
7990
8278
|
'padding-top': unset,
|
|
7991
8279
|
'ripple-color': unset,
|
|
7992
|
-
'ripple-duration':
|
|
8280
|
+
'ripple-duration': 0.20s,
|
|
7993
8281
|
'shadow': unset unset unset unset unset,
|
|
7994
8282
|
'shadow-blur': unset,
|
|
7995
8283
|
'shadow-color': unset,
|
|
@@ -8032,6 +8320,10 @@ $menu-item-group-props: (
|
|
|
8032
8320
|
'header-font-text-decoration': unset,
|
|
8033
8321
|
'header-font-text-transform': unset,
|
|
8034
8322
|
'header-font-weight': unset,
|
|
8323
|
+
'header-padding-bottom': var(--cosmopolitan-layout-space),
|
|
8324
|
+
'header-padding-left': var(--cosmopolitan-layout-space),
|
|
8325
|
+
'header-padding-right': var(--cosmopolitan-layout-space),
|
|
8326
|
+
'header-padding-top': calc(var(--cosmopolitan-layout-space) * 2),
|
|
8035
8327
|
'padding-bottom': unset,
|
|
8036
8328
|
'padding-left': unset,
|
|
8037
8329
|
'padding-right': unset,
|
|
@@ -8096,6 +8388,12 @@ $message-props: (
|
|
|
8096
8388
|
* ------------------------------------------------------------------------------
|
|
8097
8389
|
*/
|
|
8098
8390
|
$message-box-props: (
|
|
8391
|
+
'background-color': unset,
|
|
8392
|
+
'border-color': unset,
|
|
8393
|
+
'border-radius': unset,
|
|
8394
|
+
'border-style': unset,
|
|
8395
|
+
'border-width': unset,
|
|
8396
|
+
'divider-height': unset,
|
|
8099
8397
|
'font-family': unset,
|
|
8100
8398
|
'font-letter-spacing': unset,
|
|
8101
8399
|
'font-line-height': unset,
|
|
@@ -8103,7 +8401,16 @@ $message-box-props: (
|
|
|
8103
8401
|
'font-text-decoration': unset,
|
|
8104
8402
|
'font-text-transform': unset,
|
|
8105
8403
|
'font-weight': unset,
|
|
8404
|
+
'foreground-color': unset,
|
|
8106
8405
|
'gap': unset,
|
|
8406
|
+
'header-font-family': unset,
|
|
8407
|
+
'header-font-letter-spacing': unset,
|
|
8408
|
+
'header-font-line-height': unset,
|
|
8409
|
+
'header-font-size': unset,
|
|
8410
|
+
'header-font-text-decoration': unset,
|
|
8411
|
+
'header-font-text-transform': unset,
|
|
8412
|
+
'header-font-weight': unset,
|
|
8413
|
+
'header-foreground-color': unset,
|
|
8107
8414
|
'padding-bottom': unset,
|
|
8108
8415
|
'padding-left': unset,
|
|
8109
8416
|
'padding-right': unset,
|
|
@@ -8114,9 +8421,17 @@ $message-box-props: (
|
|
|
8114
8421
|
'shadow-offset-x': unset,
|
|
8115
8422
|
'shadow-offset-y': unset,
|
|
8116
8423
|
'shadow-spread': unset,
|
|
8424
|
+
'sub-header-font-family': unset,
|
|
8425
|
+
'sub-header-font-letter-spacing': unset,
|
|
8426
|
+
'sub-header-font-line-height': unset,
|
|
8427
|
+
'sub-header-font-size': unset,
|
|
8428
|
+
'sub-header-font-text-decoration': unset,
|
|
8429
|
+
'sub-header-font-text-transform': unset,
|
|
8430
|
+
'sub-header-font-weight': unset,
|
|
8431
|
+
'sub-header-foreground-color': unset,
|
|
8117
8432
|
'transition-duration': unset,
|
|
8118
8433
|
'transition-mode': unset,
|
|
8119
|
-
'transition-property': unset,
|
|
8434
|
+
'transition-property': (unset),
|
|
8120
8435
|
'translate': none
|
|
8121
8436
|
);
|
|
8122
8437
|
/**
|
|
@@ -8971,6 +9286,61 @@ $portal-projection-props: (
|
|
|
8971
9286
|
'transition-property': unset,
|
|
8972
9287
|
'translate': none
|
|
8973
9288
|
);
|
|
9289
|
+
/**
|
|
9290
|
+
* ------------------------------------------------------------------------------
|
|
9291
|
+
* <auto-generated>
|
|
9292
|
+
* This code was generated by a tool.
|
|
9293
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
9294
|
+
* the code is regenerated.
|
|
9295
|
+
* </auto-generated>
|
|
9296
|
+
* ------------------------------------------------------------------------------
|
|
9297
|
+
*/
|
|
9298
|
+
$press-button-props: (
|
|
9299
|
+
'background-color': unset,
|
|
9300
|
+
'border-color': unset,
|
|
9301
|
+
'border-radius': unset,
|
|
9302
|
+
'border-style': unset,
|
|
9303
|
+
'border-width': unset,
|
|
9304
|
+
'focus-ring-active-width': 8px,
|
|
9305
|
+
'focus-ring-color': unset,
|
|
9306
|
+
'focus-ring-inward-offset': 2px,
|
|
9307
|
+
'focus-ring-outward-offset': unset,
|
|
9308
|
+
'font-family': unset,
|
|
9309
|
+
'font-letter-spacing': unset,
|
|
9310
|
+
'font-line-height': unset,
|
|
9311
|
+
'font-size': unset,
|
|
9312
|
+
'font-text-decoration': unset,
|
|
9313
|
+
'font-text-transform': unset,
|
|
9314
|
+
'font-weight': unset,
|
|
9315
|
+
'foreground-color': unset,
|
|
9316
|
+
'gap': unset,
|
|
9317
|
+
'height': auto,
|
|
9318
|
+
'icon-min-width': 36px,
|
|
9319
|
+
'icon-min-height': 36px,
|
|
9320
|
+
'line-height': unset,
|
|
9321
|
+
'min-height': calc(calc(var(--joy-layout-space) * 5) - calc(var(--joy-layout-space) / 2)),
|
|
9322
|
+
'min-width': 64px,
|
|
9323
|
+
'padding-bottom': unset,
|
|
9324
|
+
'padding-left': unset,
|
|
9325
|
+
'padding-right': unset,
|
|
9326
|
+
'padding-top': unset,
|
|
9327
|
+
'progress-fill-color': currentColor,
|
|
9328
|
+
'progress-ring-width': var(--cosmopolitan-layout-thickness),
|
|
9329
|
+
'progress-thickness': var(--cosmopolitan-layout-thickness),
|
|
9330
|
+
'ripple-color': unset,
|
|
9331
|
+
'ripple-duration': 0.20s,
|
|
9332
|
+
'shadow': unset unset unset unset unset,
|
|
9333
|
+
'shadow-blur': unset,
|
|
9334
|
+
'shadow-color': unset,
|
|
9335
|
+
'shadow-offset-x': unset,
|
|
9336
|
+
'shadow-offset-y': unset,
|
|
9337
|
+
'shadow-spread': unset,
|
|
9338
|
+
'transition-duration': unset,
|
|
9339
|
+
'transition-mode': unset,
|
|
9340
|
+
'transition-property': (unset),
|
|
9341
|
+
'translate': none,
|
|
9342
|
+
'width': auto
|
|
9343
|
+
);
|
|
8974
9344
|
/**
|
|
8975
9345
|
* ------------------------------------------------------------------------------
|
|
8976
9346
|
* <auto-generated>
|
|
@@ -9311,7 +9681,7 @@ $repeat-button-props: (
|
|
|
9311
9681
|
'progress-ring-width': var(--cosmopolitan-layout-thickness),
|
|
9312
9682
|
'progress-thickness': var(--cosmopolitan-layout-thickness),
|
|
9313
9683
|
'ripple-color': unset,
|
|
9314
|
-
'ripple-duration':
|
|
9684
|
+
'ripple-duration': 0.20s,
|
|
9315
9685
|
'shadow': unset unset unset unset unset,
|
|
9316
9686
|
'shadow-blur': unset,
|
|
9317
9687
|
'shadow-color': unset,
|
|
@@ -9993,7 +10363,7 @@ $scheduler-event-props: (
|
|
|
9993
10363
|
'padding-right': unset,
|
|
9994
10364
|
'padding-top': unset,
|
|
9995
10365
|
'ripple-color': unset,
|
|
9996
|
-
'ripple-duration':
|
|
10366
|
+
'ripple-duration': 0.20s,
|
|
9997
10367
|
'shadow': var(--cosmopolitan-elevation-light-offset-x-1) var(--cosmopolitan-elevation-light-offset-y-1) var(--cosmopolitan-elevation-light-blur-1) var(--cosmopolitan-elevation-light-spread-1) var(--cosmopolitan-elevation-light-color-1),
|
|
9998
10368
|
'shadow-blur': var(--cosmopolitan-elevation-light-blur-1),
|
|
9999
10369
|
'shadow-color': var(--cosmopolitan-elevation-light-color-1),
|
|
@@ -10552,7 +10922,7 @@ $select-item-props: (
|
|
|
10552
10922
|
'padding-right': 16px,
|
|
10553
10923
|
'padding-top': 8px,
|
|
10554
10924
|
'ripple-color': var(--cosmopolitan-color-light-secondary-200),
|
|
10555
|
-
'ripple-duration':
|
|
10925
|
+
'ripple-duration': 0.20s,
|
|
10556
10926
|
'shadow': unset unset unset unset unset,
|
|
10557
10927
|
'shadow-blur': unset,
|
|
10558
10928
|
'shadow-color': unset,
|
|
@@ -10579,28 +10949,39 @@ $select-item-group-props: (
|
|
|
10579
10949
|
'border-radius': unset,
|
|
10580
10950
|
'border-style': unset,
|
|
10581
10951
|
'border-width': unset,
|
|
10582
|
-
'font-family':
|
|
10583
|
-
'font-letter-spacing':
|
|
10584
|
-
'font-line-height':
|
|
10585
|
-
'font-size':
|
|
10586
|
-
'font-text-decoration':
|
|
10587
|
-
'font-text-transform':
|
|
10588
|
-
'font-weight':
|
|
10952
|
+
'font-family': unset,
|
|
10953
|
+
'font-letter-spacing': unset,
|
|
10954
|
+
'font-line-height': unset,
|
|
10955
|
+
'font-size': unset,
|
|
10956
|
+
'font-text-decoration': unset,
|
|
10957
|
+
'font-text-transform': unset,
|
|
10958
|
+
'font-weight': unset,
|
|
10589
10959
|
'foreground-color': unset,
|
|
10590
|
-
'gap':
|
|
10591
|
-
'
|
|
10592
|
-
'
|
|
10593
|
-
'
|
|
10594
|
-
'
|
|
10960
|
+
'gap': unset,
|
|
10961
|
+
'header-font-family': unset,
|
|
10962
|
+
'header-font-letter-spacing': unset,
|
|
10963
|
+
'header-font-line-height': unset,
|
|
10964
|
+
'header-font-size': unset,
|
|
10965
|
+
'header-font-text-decoration': unset,
|
|
10966
|
+
'header-font-text-transform': unset,
|
|
10967
|
+
'header-font-weight': unset,
|
|
10968
|
+
'header-padding-bottom': var(--cosmopolitan-layout-space),
|
|
10969
|
+
'header-padding-left': var(--cosmopolitan-layout-space),
|
|
10970
|
+
'header-padding-right': var(--cosmopolitan-layout-space),
|
|
10971
|
+
'header-padding-top': calc(var(--cosmopolitan-layout-space) * 2),
|
|
10972
|
+
'padding-bottom': unset,
|
|
10973
|
+
'padding-left': unset,
|
|
10974
|
+
'padding-right': unset,
|
|
10975
|
+
'padding-top': unset,
|
|
10595
10976
|
'shadow': unset unset unset unset unset,
|
|
10596
10977
|
'shadow-blur': unset,
|
|
10597
10978
|
'shadow-color': unset,
|
|
10598
10979
|
'shadow-offset-x': unset,
|
|
10599
10980
|
'shadow-offset-y': unset,
|
|
10600
10981
|
'shadow-spread': unset,
|
|
10601
|
-
'transition-duration':
|
|
10602
|
-
'transition-mode':
|
|
10603
|
-
'transition-property': (
|
|
10982
|
+
'transition-duration': unset,
|
|
10983
|
+
'transition-mode': unset,
|
|
10984
|
+
'transition-property': (unset),
|
|
10604
10985
|
'translate': none
|
|
10605
10986
|
);
|
|
10606
10987
|
/**
|
|
@@ -11147,7 +11528,7 @@ $split-button-props: (
|
|
|
11147
11528
|
'progress-ring-width': var(--cosmopolitan-layout-thickness),
|
|
11148
11529
|
'progress-thickness': var(--cosmopolitan-layout-thickness),
|
|
11149
11530
|
'ripple-color': unset,
|
|
11150
|
-
'ripple-duration':
|
|
11531
|
+
'ripple-duration': 0.20s,
|
|
11151
11532
|
'shadow': unset unset unset unset unset,
|
|
11152
11533
|
'shadow-blur': unset,
|
|
11153
11534
|
'shadow-color': unset,
|
|
@@ -11611,7 +11992,7 @@ $tab-strip-item-props: (
|
|
|
11611
11992
|
'padding-right': var(--cosmopolitan-layout-space),
|
|
11612
11993
|
'padding-top': calc(var(--cosmopolitan-layout-space) * 2),
|
|
11613
11994
|
'ripple-color': unset,
|
|
11614
|
-
'ripple-duration':
|
|
11995
|
+
'ripple-duration': 0.20s,
|
|
11615
11996
|
'shadow': unset unset unset unset unset,
|
|
11616
11997
|
'shadow-blur': unset,
|
|
11617
11998
|
'shadow-color': unset,
|
|
@@ -11635,11 +12016,16 @@ $tab-strip-item-props: (
|
|
|
11635
12016
|
* ------------------------------------------------------------------------------
|
|
11636
12017
|
*/
|
|
11637
12018
|
$table-props: (
|
|
12019
|
+
'alternating-color': unset,
|
|
11638
12020
|
'background-color': unset,
|
|
11639
12021
|
'border-color': unset,
|
|
11640
12022
|
'border-radius': unset,
|
|
11641
12023
|
'border-style': unset,
|
|
11642
12024
|
'border-width': unset,
|
|
12025
|
+
'column-border-color': unset,
|
|
12026
|
+
'column-border-radius': unset,
|
|
12027
|
+
'column-border-style': unset,
|
|
12028
|
+
'column-border-width': unset,
|
|
11643
12029
|
'font-family': unset,
|
|
11644
12030
|
'font-letter-spacing': unset,
|
|
11645
12031
|
'font-line-height': unset,
|
|
@@ -11649,10 +12035,15 @@ $table-props: (
|
|
|
11649
12035
|
'font-weight': unset,
|
|
11650
12036
|
'foreground-color': unset,
|
|
11651
12037
|
'gap': unset,
|
|
12038
|
+
'line-thickness': unset,
|
|
11652
12039
|
'padding-bottom': unset,
|
|
11653
12040
|
'padding-left': unset,
|
|
11654
12041
|
'padding-right': unset,
|
|
11655
12042
|
'padding-top': unset,
|
|
12043
|
+
'row-border-color': unset,
|
|
12044
|
+
'row-border-radius': unset,
|
|
12045
|
+
'row-border-style': unset,
|
|
12046
|
+
'row-border-width': unset,
|
|
11656
12047
|
'shadow': unset unset unset unset unset,
|
|
11657
12048
|
'shadow-blur': unset,
|
|
11658
12049
|
'shadow-color': unset,
|
|
@@ -11712,7 +12103,7 @@ $table-body-props: (
|
|
|
11712
12103
|
* </auto-generated>
|
|
11713
12104
|
* ------------------------------------------------------------------------------
|
|
11714
12105
|
*/
|
|
11715
|
-
$table-cell-props: (
|
|
12106
|
+
$table-body-cell-props: (
|
|
11716
12107
|
'background-color': unset,
|
|
11717
12108
|
'border-color': unset,
|
|
11718
12109
|
'border-radius': unset,
|
|
@@ -11742,6 +12133,81 @@ $table-cell-props: (
|
|
|
11742
12133
|
'transition-property': (unset),
|
|
11743
12134
|
'translate': none
|
|
11744
12135
|
);
|
|
12136
|
+
/**
|
|
12137
|
+
* ------------------------------------------------------------------------------
|
|
12138
|
+
* <auto-generated>
|
|
12139
|
+
* This code was generated by a tool.
|
|
12140
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
12141
|
+
* the code is regenerated.
|
|
12142
|
+
* </auto-generated>
|
|
12143
|
+
* ------------------------------------------------------------------------------
|
|
12144
|
+
*/
|
|
12145
|
+
$table-body-row-props: (
|
|
12146
|
+
'border-color': unset,
|
|
12147
|
+
'border-radius': unset,
|
|
12148
|
+
'border-style': unset,
|
|
12149
|
+
'border-width': unset,
|
|
12150
|
+
'font-family': unset,
|
|
12151
|
+
'font-letter-spacing': unset,
|
|
12152
|
+
'font-line-height': unset,
|
|
12153
|
+
'font-size': unset,
|
|
12154
|
+
'font-text-decoration': unset,
|
|
12155
|
+
'font-text-transform': unset,
|
|
12156
|
+
'font-weight': unset,
|
|
12157
|
+
'foreground-color': unset,
|
|
12158
|
+
'gap': unset,
|
|
12159
|
+
'padding-bottom': unset,
|
|
12160
|
+
'padding-left': unset,
|
|
12161
|
+
'padding-right': unset,
|
|
12162
|
+
'padding-top': unset,
|
|
12163
|
+
'shadow': unset unset unset unset unset,
|
|
12164
|
+
'shadow-blur': unset,
|
|
12165
|
+
'shadow-color': unset,
|
|
12166
|
+
'shadow-offset-x': unset,
|
|
12167
|
+
'shadow-offset-y': unset,
|
|
12168
|
+
'shadow-spread': unset,
|
|
12169
|
+
'transition-duration': unset,
|
|
12170
|
+
'transition-mode': unset,
|
|
12171
|
+
'transition-property': (unset),
|
|
12172
|
+
'translate': none
|
|
12173
|
+
);
|
|
12174
|
+
/**
|
|
12175
|
+
* ------------------------------------------------------------------------------
|
|
12176
|
+
* <auto-generated>
|
|
12177
|
+
* This code was generated by a tool.
|
|
12178
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
12179
|
+
* the code is regenerated.
|
|
12180
|
+
* </auto-generated>
|
|
12181
|
+
* ------------------------------------------------------------------------------
|
|
12182
|
+
*/
|
|
12183
|
+
$table-column-editor-props: (
|
|
12184
|
+
'background-color': var(--cosmopolitan-scheme-background),
|
|
12185
|
+
'border-color': var(--cosmopolitan-scheme-highlight),
|
|
12186
|
+
'border-radius': var(--cosmopolitan-layout-radius),
|
|
12187
|
+
'font-family': unset,
|
|
12188
|
+
'font-letter-spacing': unset,
|
|
12189
|
+
'font-line-height': unset,
|
|
12190
|
+
'font-size': unset,
|
|
12191
|
+
'font-text-decoration': unset,
|
|
12192
|
+
'font-text-transform': unset,
|
|
12193
|
+
'font-weight': unset,
|
|
12194
|
+
'foreground-color': var(--cosmopolitan-scheme-foreground),
|
|
12195
|
+
'gap': var(--cosmopolitan-layout-space),
|
|
12196
|
+
'item-gap': var(--cosmopolitan-layout-space),
|
|
12197
|
+
'item-hover-background-color': var(--cosmopolitan-scheme-highlight),
|
|
12198
|
+
'item-padding-bottom': calc(var(--cosmopolitan-layout-space) * 0.5),
|
|
12199
|
+
'item-padding-left': var(--cosmopolitan-layout-space),
|
|
12200
|
+
'item-padding-right': var(--cosmopolitan-layout-space),
|
|
12201
|
+
'item-padding-top': calc(var(--cosmopolitan-layout-space) * 0.5),
|
|
12202
|
+
'padding-bottom': var(--cosmopolitan-layout-space),
|
|
12203
|
+
'padding-left': var(--cosmopolitan-layout-space),
|
|
12204
|
+
'padding-right': var(--cosmopolitan-layout-space),
|
|
12205
|
+
'padding-top': var(--cosmopolitan-layout-space),
|
|
12206
|
+
'transition-duration': var(--cosmopolitan-duration-short),
|
|
12207
|
+
'transition-mode': ease,
|
|
12208
|
+
'transition-property': (background-color, color),
|
|
12209
|
+
'translate': unset
|
|
12210
|
+
);
|
|
11745
12211
|
/**
|
|
11746
12212
|
* ------------------------------------------------------------------------------
|
|
11747
12213
|
* <auto-generated>
|
|
@@ -11781,6 +12247,84 @@ $table-footer-props: (
|
|
|
11781
12247
|
'transition-property': (unset),
|
|
11782
12248
|
'translate': none
|
|
11783
12249
|
);
|
|
12250
|
+
/**
|
|
12251
|
+
* ------------------------------------------------------------------------------
|
|
12252
|
+
* <auto-generated>
|
|
12253
|
+
* This code was generated by a tool.
|
|
12254
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
12255
|
+
* the code is regenerated.
|
|
12256
|
+
* </auto-generated>
|
|
12257
|
+
* ------------------------------------------------------------------------------
|
|
12258
|
+
*/
|
|
12259
|
+
$table-footer-cell-props: (
|
|
12260
|
+
'background-color': unset,
|
|
12261
|
+
'border-color': unset,
|
|
12262
|
+
'border-radius': unset,
|
|
12263
|
+
'border-style': unset,
|
|
12264
|
+
'border-width': unset,
|
|
12265
|
+
'font-family': unset,
|
|
12266
|
+
'font-letter-spacing': unset,
|
|
12267
|
+
'font-line-height': unset,
|
|
12268
|
+
'font-size': unset,
|
|
12269
|
+
'font-text-decoration': unset,
|
|
12270
|
+
'font-text-transform': unset,
|
|
12271
|
+
'font-weight': unset,
|
|
12272
|
+
'foreground-color': unset,
|
|
12273
|
+
'gap': unset,
|
|
12274
|
+
'padding-bottom': unset,
|
|
12275
|
+
'padding-left': unset,
|
|
12276
|
+
'padding-right': unset,
|
|
12277
|
+
'padding-top': unset,
|
|
12278
|
+
'shadow': unset unset unset unset unset,
|
|
12279
|
+
'shadow-blur': unset,
|
|
12280
|
+
'shadow-color': unset,
|
|
12281
|
+
'shadow-offset-x': unset,
|
|
12282
|
+
'shadow-offset-y': unset,
|
|
12283
|
+
'shadow-spread': unset,
|
|
12284
|
+
'transition-duration': unset,
|
|
12285
|
+
'transition-mode': unset,
|
|
12286
|
+
'transition-property': (unset),
|
|
12287
|
+
'translate': none
|
|
12288
|
+
);
|
|
12289
|
+
/**
|
|
12290
|
+
* ------------------------------------------------------------------------------
|
|
12291
|
+
* <auto-generated>
|
|
12292
|
+
* This code was generated by a tool.
|
|
12293
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
12294
|
+
* the code is regenerated.
|
|
12295
|
+
* </auto-generated>
|
|
12296
|
+
* ------------------------------------------------------------------------------
|
|
12297
|
+
*/
|
|
12298
|
+
$table-footer-row-props: (
|
|
12299
|
+
'background-color': unset,
|
|
12300
|
+
'border-color': unset,
|
|
12301
|
+
'border-radius': unset,
|
|
12302
|
+
'border-style': unset,
|
|
12303
|
+
'border-width': unset,
|
|
12304
|
+
'font-family': unset,
|
|
12305
|
+
'font-letter-spacing': unset,
|
|
12306
|
+
'font-line-height': unset,
|
|
12307
|
+
'font-size': unset,
|
|
12308
|
+
'font-text-decoration': unset,
|
|
12309
|
+
'font-text-transform': unset,
|
|
12310
|
+
'font-weight': unset,
|
|
12311
|
+
'foreground-color': unset,
|
|
12312
|
+
'gap': unset,
|
|
12313
|
+
'padding-bottom': unset,
|
|
12314
|
+
'padding-left': unset,
|
|
12315
|
+
'padding-right': unset,
|
|
12316
|
+
'padding-top': unset,
|
|
12317
|
+
'shadow': unset unset unset unset unset,
|
|
12318
|
+
'shadow-blur': unset,
|
|
12319
|
+
'shadow-color': unset,
|
|
12320
|
+
'shadow-offset-x': unset,
|
|
12321
|
+
'shadow-offset-y': unset,
|
|
12322
|
+
'shadow-spread': unset,
|
|
12323
|
+
'transition-duration': unset,
|
|
12324
|
+
'transition-mode': unset,
|
|
12325
|
+
'transition-property': (unset),
|
|
12326
|
+
'translate': none
|
|
12327
|
+
);
|
|
11784
12328
|
/**
|
|
11785
12329
|
* ------------------------------------------------------------------------------
|
|
11786
12330
|
* <auto-generated>
|
|
@@ -11829,7 +12373,50 @@ $table-header-props: (
|
|
|
11829
12373
|
* </auto-generated>
|
|
11830
12374
|
* ------------------------------------------------------------------------------
|
|
11831
12375
|
*/
|
|
11832
|
-
$table-
|
|
12376
|
+
$table-header-cell-props: (
|
|
12377
|
+
'background-color': unset,
|
|
12378
|
+
'border-color': unset,
|
|
12379
|
+
'border-radius': unset,
|
|
12380
|
+
'border-style': unset,
|
|
12381
|
+
'border-width': unset,
|
|
12382
|
+
'font-family': unset,
|
|
12383
|
+
'font-letter-spacing': unset,
|
|
12384
|
+
'font-line-height': unset,
|
|
12385
|
+
'font-size': unset,
|
|
12386
|
+
'font-text-decoration': unset,
|
|
12387
|
+
'font-text-transform': unset,
|
|
12388
|
+
'font-weight': unset,
|
|
12389
|
+
'foreground-color': unset,
|
|
12390
|
+
'gap': unset,
|
|
12391
|
+
'padding-bottom': unset,
|
|
12392
|
+
'padding-left': unset,
|
|
12393
|
+
'padding-right': unset,
|
|
12394
|
+
'padding-top': unset,
|
|
12395
|
+
'resize-handle-color': unset,
|
|
12396
|
+
'resize-handle-width': 2px,
|
|
12397
|
+
'separator-color': unset,
|
|
12398
|
+
'separator-width': 1px,
|
|
12399
|
+
'shadow': unset unset unset unset unset,
|
|
12400
|
+
'shadow-blur': unset,
|
|
12401
|
+
'shadow-color': unset,
|
|
12402
|
+
'shadow-offset-x': unset,
|
|
12403
|
+
'shadow-offset-y': unset,
|
|
12404
|
+
'shadow-spread': unset,
|
|
12405
|
+
'transition-duration': unset,
|
|
12406
|
+
'transition-mode': unset,
|
|
12407
|
+
'transition-property': (unset),
|
|
12408
|
+
'translate': none
|
|
12409
|
+
);
|
|
12410
|
+
/**
|
|
12411
|
+
* ------------------------------------------------------------------------------
|
|
12412
|
+
* <auto-generated>
|
|
12413
|
+
* This code was generated by a tool.
|
|
12414
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
12415
|
+
* the code is regenerated.
|
|
12416
|
+
* </auto-generated>
|
|
12417
|
+
* ------------------------------------------------------------------------------
|
|
12418
|
+
*/
|
|
12419
|
+
$table-header-row-props: (
|
|
11833
12420
|
'background-color': unset,
|
|
11834
12421
|
'border-color': unset,
|
|
11835
12422
|
'border-radius': unset,
|
|
@@ -12091,6 +12678,51 @@ $tick-bar-props: (
|
|
|
12091
12678
|
'transition-property': (unset),
|
|
12092
12679
|
'translate': none
|
|
12093
12680
|
);
|
|
12681
|
+
/**
|
|
12682
|
+
* ------------------------------------------------------------------------------
|
|
12683
|
+
* <auto-generated>
|
|
12684
|
+
* This code was generated by a tool.
|
|
12685
|
+
* Changes to this file may cause incorrect behavior and will be lost if
|
|
12686
|
+
* the code is regenerated.
|
|
12687
|
+
* </auto-generated>
|
|
12688
|
+
* ------------------------------------------------------------------------------
|
|
12689
|
+
*/
|
|
12690
|
+
$tile-props: (
|
|
12691
|
+
'background-color': unset,
|
|
12692
|
+
'border-color': unset,
|
|
12693
|
+
'border-radius': unset,
|
|
12694
|
+
'border-style': solid,
|
|
12695
|
+
'border-width': unset,
|
|
12696
|
+
'focus-ring-active-width': 8px,
|
|
12697
|
+
'focus-ring-color': unset,
|
|
12698
|
+
'focus-ring-inward-offset': 2px,
|
|
12699
|
+
'focus-ring-outward-offset': 2px,
|
|
12700
|
+
'font-family': unset,
|
|
12701
|
+
'font-letter-spacing': unset,
|
|
12702
|
+
'font-line-height': unset,
|
|
12703
|
+
'font-size': unset,
|
|
12704
|
+
'font-text-decoration': unset,
|
|
12705
|
+
'font-text-transform': unset,
|
|
12706
|
+
'font-weight': unset,
|
|
12707
|
+
'foreground-color': unset,
|
|
12708
|
+
'gap': unset,
|
|
12709
|
+
'padding-bottom': unset,
|
|
12710
|
+
'padding-left': unset,
|
|
12711
|
+
'padding-right': unset,
|
|
12712
|
+
'padding-top': unset,
|
|
12713
|
+
'ripple-color': unset,
|
|
12714
|
+
'ripple-duration': 0.20s,
|
|
12715
|
+
'shadow': unset unset unset unset unset,
|
|
12716
|
+
'shadow-blur': unset,
|
|
12717
|
+
'shadow-color': unset,
|
|
12718
|
+
'shadow-offset-x': unset,
|
|
12719
|
+
'shadow-offset-y': unset,
|
|
12720
|
+
'shadow-spread': unset,
|
|
12721
|
+
'transition-duration': .2s,
|
|
12722
|
+
'transition-mode': ease,
|
|
12723
|
+
'transition-property': (background-color, color, border-color, box-shadow),
|
|
12724
|
+
'translate': none
|
|
12725
|
+
);
|
|
12094
12726
|
/**
|
|
12095
12727
|
* ------------------------------------------------------------------------------
|
|
12096
12728
|
* <auto-generated>
|
|
@@ -12583,10 +13215,12 @@ $toast-props: (
|
|
|
12583
13215
|
'font-weight': unset,
|
|
12584
13216
|
'foreground-color': unset,
|
|
12585
13217
|
'gap': unset,
|
|
13218
|
+
'offset-y': unset,
|
|
12586
13219
|
'padding-bottom': unset,
|
|
12587
13220
|
'padding-left': unset,
|
|
12588
13221
|
'padding-right': unset,
|
|
12589
13222
|
'padding-top': unset,
|
|
13223
|
+
'progress-fill-color': currentColor,
|
|
12590
13224
|
'progress-ring-fill-color': unset,
|
|
12591
13225
|
'shadow': unset unset unset unset unset,
|
|
12592
13226
|
'shadow-blur': unset,
|
|
@@ -12639,7 +13273,7 @@ $toggle-button-props: (
|
|
|
12639
13273
|
'padding-top': var(--cosmopolitan-layout-space),
|
|
12640
13274
|
'progress-ring-width': var(--cosmopolitan-layout-thickness),
|
|
12641
13275
|
'ripple-color': unset,
|
|
12642
|
-
'ripple-duration':
|
|
13276
|
+
'ripple-duration': 0.20s,
|
|
12643
13277
|
'shadow': unset unset unset unset unset,
|
|
12644
13278
|
'shadow-blur': unset,
|
|
12645
13279
|
'shadow-color': unset,
|