@homebound/beam 3.5.1 → 3.7.0

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/dist/index.d.cts CHANGED
@@ -40,6 +40,18 @@ type RuntimeStyles = RawCssProperties & {
40
40
  readonly __kind: "runtime";
41
41
  };
42
42
  type Typography = "xs2" | "xs2Sb" | "xs" | "xsSb" | "sm" | "smSb" | "md" | "mdSb" | "lg" | "xl" | "xl2";
43
+ type CssSetVarKeys = `--${string}`;
44
+ type CssSetVarScalar = string | number;
45
+ type CssSetVarValue = CssSetVarScalar | {
46
+ default?: CssSetVarScalar;
47
+ media?: Partial<Record<Breakpoint, CssSetVarScalar>>;
48
+ container?: Array<{
49
+ name?: string;
50
+ gt?: number;
51
+ lt?: number;
52
+ value: CssSetVarScalar;
53
+ }>;
54
+ };
43
55
  declare module "react" {
44
56
  interface HTMLAttributes<T> {
45
57
  css?: Properties;
@@ -515,39 +527,39 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
515
527
  cn(value: Properties["containerName"]): CssBuilder<T & {
516
528
  containerName: csstype.Property.ContainerName | undefined;
517
529
  }, S>;
518
- /** Sets `top: "0px"`. */
530
+ /** Sets `top: "calc(var(--t-spacing) * 0)"`. */
519
531
  get top0(): CssBuilder<T & {
520
532
  top: csstype.Property.Top<string | 0> | undefined;
521
533
  }, S>;
522
- /** Sets `top: "8px"`. */
534
+ /** Sets `top: "calc(var(--t-spacing) * 1)"`. */
523
535
  get top1(): CssBuilder<T & {
524
536
  top: csstype.Property.Top<string | 0> | undefined;
525
537
  }, S>;
526
- /** Sets `top: "16px"`. */
538
+ /** Sets `top: "calc(var(--t-spacing) * 2)"`. */
527
539
  get top2(): CssBuilder<T & {
528
540
  top: csstype.Property.Top<string | 0> | undefined;
529
541
  }, S>;
530
- /** Sets `top: "24px"`. */
542
+ /** Sets `top: "calc(var(--t-spacing) * 3)"`. */
531
543
  get top3(): CssBuilder<T & {
532
544
  top: csstype.Property.Top<string | 0> | undefined;
533
545
  }, S>;
534
- /** Sets `top: "32px"`. */
546
+ /** Sets `top: "calc(var(--t-spacing) * 4)"`. */
535
547
  get top4(): CssBuilder<T & {
536
548
  top: csstype.Property.Top<string | 0> | undefined;
537
549
  }, S>;
538
- /** Sets `top: "40px"`. */
550
+ /** Sets `top: "calc(var(--t-spacing) * 5)"`. */
539
551
  get top5(): CssBuilder<T & {
540
552
  top: csstype.Property.Top<string | 0> | undefined;
541
553
  }, S>;
542
- /** Sets `top: "48px"`. */
554
+ /** Sets `top: "calc(var(--t-spacing) * 6)"`. */
543
555
  get top6(): CssBuilder<T & {
544
556
  top: csstype.Property.Top<string | 0> | undefined;
545
557
  }, S>;
546
- /** Sets `top: "56px"`. */
558
+ /** Sets `top: "calc(var(--t-spacing) * 7)"`. */
547
559
  get top7(): CssBuilder<T & {
548
560
  top: csstype.Property.Top<string | 0> | undefined;
549
561
  }, S>;
550
- /** Sets `top: "64px"`. */
562
+ /** Sets `top: "calc(var(--t-spacing) * 8)"`. */
551
563
  get top8(): CssBuilder<T & {
552
564
  top: csstype.Property.Top<string | 0> | undefined;
553
565
  }, S>;
@@ -559,39 +571,39 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
559
571
  topPx(px: number): CssBuilder<T & {
560
572
  top: csstype.Property.Top<string | 0> | undefined;
561
573
  }, S>;
562
- /** Sets `right: "0px"`. */
574
+ /** Sets `right: "calc(var(--t-spacing) * 0)"`. */
563
575
  get right0(): CssBuilder<T & {
564
576
  right: csstype.Property.Right<string | 0> | undefined;
565
577
  }, S>;
566
- /** Sets `right: "8px"`. */
578
+ /** Sets `right: "calc(var(--t-spacing) * 1)"`. */
567
579
  get right1(): CssBuilder<T & {
568
580
  right: csstype.Property.Right<string | 0> | undefined;
569
581
  }, S>;
570
- /** Sets `right: "16px"`. */
582
+ /** Sets `right: "calc(var(--t-spacing) * 2)"`. */
571
583
  get right2(): CssBuilder<T & {
572
584
  right: csstype.Property.Right<string | 0> | undefined;
573
585
  }, S>;
574
- /** Sets `right: "24px"`. */
586
+ /** Sets `right: "calc(var(--t-spacing) * 3)"`. */
575
587
  get right3(): CssBuilder<T & {
576
588
  right: csstype.Property.Right<string | 0> | undefined;
577
589
  }, S>;
578
- /** Sets `right: "32px"`. */
590
+ /** Sets `right: "calc(var(--t-spacing) * 4)"`. */
579
591
  get right4(): CssBuilder<T & {
580
592
  right: csstype.Property.Right<string | 0> | undefined;
581
593
  }, S>;
582
- /** Sets `right: "40px"`. */
594
+ /** Sets `right: "calc(var(--t-spacing) * 5)"`. */
583
595
  get right5(): CssBuilder<T & {
584
596
  right: csstype.Property.Right<string | 0> | undefined;
585
597
  }, S>;
586
- /** Sets `right: "48px"`. */
598
+ /** Sets `right: "calc(var(--t-spacing) * 6)"`. */
587
599
  get right6(): CssBuilder<T & {
588
600
  right: csstype.Property.Right<string | 0> | undefined;
589
601
  }, S>;
590
- /** Sets `right: "56px"`. */
602
+ /** Sets `right: "calc(var(--t-spacing) * 7)"`. */
591
603
  get right7(): CssBuilder<T & {
592
604
  right: csstype.Property.Right<string | 0> | undefined;
593
605
  }, S>;
594
- /** Sets `right: "64px"`. */
606
+ /** Sets `right: "calc(var(--t-spacing) * 8)"`. */
595
607
  get right8(): CssBuilder<T & {
596
608
  right: csstype.Property.Right<string | 0> | undefined;
597
609
  }, S>;
@@ -603,39 +615,39 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
603
615
  rightPx(px: number): CssBuilder<T & {
604
616
  right: csstype.Property.Right<string | 0> | undefined;
605
617
  }, S>;
606
- /** Sets `bottom: "0px"`. */
618
+ /** Sets `bottom: "calc(var(--t-spacing) * 0)"`. */
607
619
  get bottom0(): CssBuilder<T & {
608
620
  bottom: csstype.Property.Bottom<string | 0> | undefined;
609
621
  }, S>;
610
- /** Sets `bottom: "8px"`. */
622
+ /** Sets `bottom: "calc(var(--t-spacing) * 1)"`. */
611
623
  get bottom1(): CssBuilder<T & {
612
624
  bottom: csstype.Property.Bottom<string | 0> | undefined;
613
625
  }, S>;
614
- /** Sets `bottom: "16px"`. */
626
+ /** Sets `bottom: "calc(var(--t-spacing) * 2)"`. */
615
627
  get bottom2(): CssBuilder<T & {
616
628
  bottom: csstype.Property.Bottom<string | 0> | undefined;
617
629
  }, S>;
618
- /** Sets `bottom: "24px"`. */
630
+ /** Sets `bottom: "calc(var(--t-spacing) * 3)"`. */
619
631
  get bottom3(): CssBuilder<T & {
620
632
  bottom: csstype.Property.Bottom<string | 0> | undefined;
621
633
  }, S>;
622
- /** Sets `bottom: "32px"`. */
634
+ /** Sets `bottom: "calc(var(--t-spacing) * 4)"`. */
623
635
  get bottom4(): CssBuilder<T & {
624
636
  bottom: csstype.Property.Bottom<string | 0> | undefined;
625
637
  }, S>;
626
- /** Sets `bottom: "40px"`. */
638
+ /** Sets `bottom: "calc(var(--t-spacing) * 5)"`. */
627
639
  get bottom5(): CssBuilder<T & {
628
640
  bottom: csstype.Property.Bottom<string | 0> | undefined;
629
641
  }, S>;
630
- /** Sets `bottom: "48px"`. */
642
+ /** Sets `bottom: "calc(var(--t-spacing) * 6)"`. */
631
643
  get bottom6(): CssBuilder<T & {
632
644
  bottom: csstype.Property.Bottom<string | 0> | undefined;
633
645
  }, S>;
634
- /** Sets `bottom: "56px"`. */
646
+ /** Sets `bottom: "calc(var(--t-spacing) * 7)"`. */
635
647
  get bottom7(): CssBuilder<T & {
636
648
  bottom: csstype.Property.Bottom<string | 0> | undefined;
637
649
  }, S>;
638
- /** Sets `bottom: "64px"`. */
650
+ /** Sets `bottom: "calc(var(--t-spacing) * 8)"`. */
639
651
  get bottom8(): CssBuilder<T & {
640
652
  bottom: csstype.Property.Bottom<string | 0> | undefined;
641
653
  }, S>;
@@ -647,39 +659,39 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
647
659
  bottomPx(px: number): CssBuilder<T & {
648
660
  bottom: csstype.Property.Bottom<string | 0> | undefined;
649
661
  }, S>;
650
- /** Sets `left: "0px"`. */
662
+ /** Sets `left: "calc(var(--t-spacing) * 0)"`. */
651
663
  get left0(): CssBuilder<T & {
652
664
  left: csstype.Property.Left<string | 0> | undefined;
653
665
  }, S>;
654
- /** Sets `left: "8px"`. */
666
+ /** Sets `left: "calc(var(--t-spacing) * 1)"`. */
655
667
  get left1(): CssBuilder<T & {
656
668
  left: csstype.Property.Left<string | 0> | undefined;
657
669
  }, S>;
658
- /** Sets `left: "16px"`. */
670
+ /** Sets `left: "calc(var(--t-spacing) * 2)"`. */
659
671
  get left2(): CssBuilder<T & {
660
672
  left: csstype.Property.Left<string | 0> | undefined;
661
673
  }, S>;
662
- /** Sets `left: "24px"`. */
674
+ /** Sets `left: "calc(var(--t-spacing) * 3)"`. */
663
675
  get left3(): CssBuilder<T & {
664
676
  left: csstype.Property.Left<string | 0> | undefined;
665
677
  }, S>;
666
- /** Sets `left: "32px"`. */
678
+ /** Sets `left: "calc(var(--t-spacing) * 4)"`. */
667
679
  get left4(): CssBuilder<T & {
668
680
  left: csstype.Property.Left<string | 0> | undefined;
669
681
  }, S>;
670
- /** Sets `left: "40px"`. */
682
+ /** Sets `left: "calc(var(--t-spacing) * 5)"`. */
671
683
  get left5(): CssBuilder<T & {
672
684
  left: csstype.Property.Left<string | 0> | undefined;
673
685
  }, S>;
674
- /** Sets `left: "48px"`. */
686
+ /** Sets `left: "calc(var(--t-spacing) * 6)"`. */
675
687
  get left6(): CssBuilder<T & {
676
688
  left: csstype.Property.Left<string | 0> | undefined;
677
689
  }, S>;
678
- /** Sets `left: "56px"`. */
690
+ /** Sets `left: "calc(var(--t-spacing) * 7)"`. */
679
691
  get left7(): CssBuilder<T & {
680
692
  left: csstype.Property.Left<string | 0> | undefined;
681
693
  }, S>;
682
- /** Sets `left: "64px"`. */
694
+ /** Sets `left: "calc(var(--t-spacing) * 8)"`. */
683
695
  get left8(): CssBuilder<T & {
684
696
  left: csstype.Property.Left<string | 0> | undefined;
685
697
  }, S>;
@@ -1215,39 +1227,39 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
1215
1227
  gac(value: Properties["gridAutoColumns"]): CssBuilder<T & {
1216
1228
  gridAutoColumns: csstype.Property.GridAutoColumns<string | 0> | undefined;
1217
1229
  }, S>;
1218
- /** Sets `gap: "0px"`. */
1230
+ /** Sets `gap: "calc(var(--t-spacing) * 0)"`. */
1219
1231
  get gap0(): CssBuilder<T & {
1220
1232
  gap: csstype.Property.Gap<string | 0> | undefined;
1221
1233
  }, S>;
1222
- /** Sets `gap: "8px"`. */
1234
+ /** Sets `gap: "calc(var(--t-spacing) * 1)"`. */
1223
1235
  get gap1(): CssBuilder<T & {
1224
1236
  gap: csstype.Property.Gap<string | 0> | undefined;
1225
1237
  }, S>;
1226
- /** Sets `gap: "16px"`. */
1238
+ /** Sets `gap: "calc(var(--t-spacing) * 2)"`. */
1227
1239
  get gap2(): CssBuilder<T & {
1228
1240
  gap: csstype.Property.Gap<string | 0> | undefined;
1229
1241
  }, S>;
1230
- /** Sets `gap: "24px"`. */
1242
+ /** Sets `gap: "calc(var(--t-spacing) * 3)"`. */
1231
1243
  get gap3(): CssBuilder<T & {
1232
1244
  gap: csstype.Property.Gap<string | 0> | undefined;
1233
1245
  }, S>;
1234
- /** Sets `gap: "32px"`. */
1246
+ /** Sets `gap: "calc(var(--t-spacing) * 4)"`. */
1235
1247
  get gap4(): CssBuilder<T & {
1236
1248
  gap: csstype.Property.Gap<string | 0> | undefined;
1237
1249
  }, S>;
1238
- /** Sets `gap: "40px"`. */
1250
+ /** Sets `gap: "calc(var(--t-spacing) * 5)"`. */
1239
1251
  get gap5(): CssBuilder<T & {
1240
1252
  gap: csstype.Property.Gap<string | 0> | undefined;
1241
1253
  }, S>;
1242
- /** Sets `gap: "48px"`. */
1254
+ /** Sets `gap: "calc(var(--t-spacing) * 6)"`. */
1243
1255
  get gap6(): CssBuilder<T & {
1244
1256
  gap: csstype.Property.Gap<string | 0> | undefined;
1245
1257
  }, S>;
1246
- /** Sets `gap: "56px"`. */
1258
+ /** Sets `gap: "calc(var(--t-spacing) * 7)"`. */
1247
1259
  get gap7(): CssBuilder<T & {
1248
1260
  gap: csstype.Property.Gap<string | 0> | undefined;
1249
1261
  }, S>;
1250
- /** Sets `gap: "64px"`. */
1262
+ /** Sets `gap: "calc(var(--t-spacing) * 8)"`. */
1251
1263
  get gap8(): CssBuilder<T & {
1252
1264
  gap: csstype.Property.Gap<string | 0> | undefined;
1253
1265
  }, S>;
@@ -1259,39 +1271,39 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
1259
1271
  gapPx(px: number): CssBuilder<T & {
1260
1272
  gap: csstype.Property.Gap<string | 0> | undefined;
1261
1273
  }, S>;
1262
- /** Sets `rowGap: "0px"`. */
1274
+ /** Sets `rowGap: "calc(var(--t-spacing) * 0)"`. */
1263
1275
  get rg0(): CssBuilder<T & {
1264
1276
  rowGap: csstype.Property.RowGap<string | 0> | undefined;
1265
1277
  }, S>;
1266
- /** Sets `rowGap: "8px"`. */
1278
+ /** Sets `rowGap: "calc(var(--t-spacing) * 1)"`. */
1267
1279
  get rg1(): CssBuilder<T & {
1268
1280
  rowGap: csstype.Property.RowGap<string | 0> | undefined;
1269
1281
  }, S>;
1270
- /** Sets `rowGap: "16px"`. */
1282
+ /** Sets `rowGap: "calc(var(--t-spacing) * 2)"`. */
1271
1283
  get rg2(): CssBuilder<T & {
1272
1284
  rowGap: csstype.Property.RowGap<string | 0> | undefined;
1273
1285
  }, S>;
1274
- /** Sets `rowGap: "24px"`. */
1286
+ /** Sets `rowGap: "calc(var(--t-spacing) * 3)"`. */
1275
1287
  get rg3(): CssBuilder<T & {
1276
1288
  rowGap: csstype.Property.RowGap<string | 0> | undefined;
1277
1289
  }, S>;
1278
- /** Sets `rowGap: "32px"`. */
1290
+ /** Sets `rowGap: "calc(var(--t-spacing) * 4)"`. */
1279
1291
  get rg4(): CssBuilder<T & {
1280
1292
  rowGap: csstype.Property.RowGap<string | 0> | undefined;
1281
1293
  }, S>;
1282
- /** Sets `rowGap: "40px"`. */
1294
+ /** Sets `rowGap: "calc(var(--t-spacing) * 5)"`. */
1283
1295
  get rg5(): CssBuilder<T & {
1284
1296
  rowGap: csstype.Property.RowGap<string | 0> | undefined;
1285
1297
  }, S>;
1286
- /** Sets `rowGap: "48px"`. */
1298
+ /** Sets `rowGap: "calc(var(--t-spacing) * 6)"`. */
1287
1299
  get rg6(): CssBuilder<T & {
1288
1300
  rowGap: csstype.Property.RowGap<string | 0> | undefined;
1289
1301
  }, S>;
1290
- /** Sets `rowGap: "56px"`. */
1302
+ /** Sets `rowGap: "calc(var(--t-spacing) * 7)"`. */
1291
1303
  get rg7(): CssBuilder<T & {
1292
1304
  rowGap: csstype.Property.RowGap<string | 0> | undefined;
1293
1305
  }, S>;
1294
- /** Sets `rowGap: "64px"`. */
1306
+ /** Sets `rowGap: "calc(var(--t-spacing) * 8)"`. */
1295
1307
  get rg8(): CssBuilder<T & {
1296
1308
  rowGap: csstype.Property.RowGap<string | 0> | undefined;
1297
1309
  }, S>;
@@ -1303,39 +1315,39 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
1303
1315
  rgPx(px: number): CssBuilder<T & {
1304
1316
  rowGap: csstype.Property.RowGap<string | 0> | undefined;
1305
1317
  }, S>;
1306
- /** Sets `columnGap: "0px"`. */
1318
+ /** Sets `columnGap: "calc(var(--t-spacing) * 0)"`. */
1307
1319
  get cg0(): CssBuilder<T & {
1308
1320
  columnGap: csstype.Property.ColumnGap<string | 0> | undefined;
1309
1321
  }, S>;
1310
- /** Sets `columnGap: "8px"`. */
1322
+ /** Sets `columnGap: "calc(var(--t-spacing) * 1)"`. */
1311
1323
  get cg1(): CssBuilder<T & {
1312
1324
  columnGap: csstype.Property.ColumnGap<string | 0> | undefined;
1313
1325
  }, S>;
1314
- /** Sets `columnGap: "16px"`. */
1326
+ /** Sets `columnGap: "calc(var(--t-spacing) * 2)"`. */
1315
1327
  get cg2(): CssBuilder<T & {
1316
1328
  columnGap: csstype.Property.ColumnGap<string | 0> | undefined;
1317
1329
  }, S>;
1318
- /** Sets `columnGap: "24px"`. */
1330
+ /** Sets `columnGap: "calc(var(--t-spacing) * 3)"`. */
1319
1331
  get cg3(): CssBuilder<T & {
1320
1332
  columnGap: csstype.Property.ColumnGap<string | 0> | undefined;
1321
1333
  }, S>;
1322
- /** Sets `columnGap: "32px"`. */
1334
+ /** Sets `columnGap: "calc(var(--t-spacing) * 4)"`. */
1323
1335
  get cg4(): CssBuilder<T & {
1324
1336
  columnGap: csstype.Property.ColumnGap<string | 0> | undefined;
1325
1337
  }, S>;
1326
- /** Sets `columnGap: "40px"`. */
1338
+ /** Sets `columnGap: "calc(var(--t-spacing) * 5)"`. */
1327
1339
  get cg5(): CssBuilder<T & {
1328
1340
  columnGap: csstype.Property.ColumnGap<string | 0> | undefined;
1329
1341
  }, S>;
1330
- /** Sets `columnGap: "48px"`. */
1342
+ /** Sets `columnGap: "calc(var(--t-spacing) * 6)"`. */
1331
1343
  get cg6(): CssBuilder<T & {
1332
1344
  columnGap: csstype.Property.ColumnGap<string | 0> | undefined;
1333
1345
  }, S>;
1334
- /** Sets `columnGap: "56px"`. */
1346
+ /** Sets `columnGap: "calc(var(--t-spacing) * 7)"`. */
1335
1347
  get cg7(): CssBuilder<T & {
1336
1348
  columnGap: csstype.Property.ColumnGap<string | 0> | undefined;
1337
1349
  }, S>;
1338
- /** Sets `columnGap: "64px"`. */
1350
+ /** Sets `columnGap: "calc(var(--t-spacing) * 8)"`. */
1339
1351
  get cg8(): CssBuilder<T & {
1340
1352
  columnGap: csstype.Property.ColumnGap<string | 0> | undefined;
1341
1353
  }, S>;
@@ -1347,39 +1359,39 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
1347
1359
  cgPx(px: number): CssBuilder<T & {
1348
1360
  columnGap: csstype.Property.ColumnGap<string | 0> | undefined;
1349
1361
  }, S>;
1350
- /** Sets `height: "0px"`. */
1362
+ /** Sets `height: "calc(var(--t-spacing) * 0)"`. */
1351
1363
  get h0(): CssBuilder<T & {
1352
1364
  height: csstype.Property.Height<string | 0> | undefined;
1353
1365
  }, S>;
1354
- /** Sets `height: "8px"`. */
1366
+ /** Sets `height: "calc(var(--t-spacing) * 1)"`. */
1355
1367
  get h1(): CssBuilder<T & {
1356
1368
  height: csstype.Property.Height<string | 0> | undefined;
1357
1369
  }, S>;
1358
- /** Sets `height: "16px"`. */
1370
+ /** Sets `height: "calc(var(--t-spacing) * 2)"`. */
1359
1371
  get h2(): CssBuilder<T & {
1360
1372
  height: csstype.Property.Height<string | 0> | undefined;
1361
1373
  }, S>;
1362
- /** Sets `height: "24px"`. */
1374
+ /** Sets `height: "calc(var(--t-spacing) * 3)"`. */
1363
1375
  get h3(): CssBuilder<T & {
1364
1376
  height: csstype.Property.Height<string | 0> | undefined;
1365
1377
  }, S>;
1366
- /** Sets `height: "32px"`. */
1378
+ /** Sets `height: "calc(var(--t-spacing) * 4)"`. */
1367
1379
  get h4(): CssBuilder<T & {
1368
1380
  height: csstype.Property.Height<string | 0> | undefined;
1369
1381
  }, S>;
1370
- /** Sets `height: "40px"`. */
1382
+ /** Sets `height: "calc(var(--t-spacing) * 5)"`. */
1371
1383
  get h5(): CssBuilder<T & {
1372
1384
  height: csstype.Property.Height<string | 0> | undefined;
1373
1385
  }, S>;
1374
- /** Sets `height: "48px"`. */
1386
+ /** Sets `height: "calc(var(--t-spacing) * 6)"`. */
1375
1387
  get h6(): CssBuilder<T & {
1376
1388
  height: csstype.Property.Height<string | 0> | undefined;
1377
1389
  }, S>;
1378
- /** Sets `height: "56px"`. */
1390
+ /** Sets `height: "calc(var(--t-spacing) * 7)"`. */
1379
1391
  get h7(): CssBuilder<T & {
1380
1392
  height: csstype.Property.Height<string | 0> | undefined;
1381
1393
  }, S>;
1382
- /** Sets `height: "64px"`. */
1394
+ /** Sets `height: "calc(var(--t-spacing) * 8)"`. */
1383
1395
  get h8(): CssBuilder<T & {
1384
1396
  height: csstype.Property.Height<string | 0> | undefined;
1385
1397
  }, S>;
@@ -2617,39 +2629,39 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
2617
2629
  fill(value: Properties["fill"]): CssBuilder<T & {
2618
2630
  fill: csstype.Property.Fill | undefined;
2619
2631
  }, S>;
2620
- /** Sets `marginTop: "0px"`. */
2632
+ /** Sets `marginTop: "calc(var(--t-spacing) * 0)"`. */
2621
2633
  get mt0(): CssBuilder<T & {
2622
2634
  marginTop: csstype.Property.MarginTop<string | 0> | undefined;
2623
2635
  }, S>;
2624
- /** Sets `marginTop: "8px"`. */
2636
+ /** Sets `marginTop: "calc(var(--t-spacing) * 1)"`. */
2625
2637
  get mt1(): CssBuilder<T & {
2626
2638
  marginTop: csstype.Property.MarginTop<string | 0> | undefined;
2627
2639
  }, S>;
2628
- /** Sets `marginTop: "16px"`. */
2640
+ /** Sets `marginTop: "calc(var(--t-spacing) * 2)"`. */
2629
2641
  get mt2(): CssBuilder<T & {
2630
2642
  marginTop: csstype.Property.MarginTop<string | 0> | undefined;
2631
2643
  }, S>;
2632
- /** Sets `marginTop: "24px"`. */
2644
+ /** Sets `marginTop: "calc(var(--t-spacing) * 3)"`. */
2633
2645
  get mt3(): CssBuilder<T & {
2634
2646
  marginTop: csstype.Property.MarginTop<string | 0> | undefined;
2635
2647
  }, S>;
2636
- /** Sets `marginTop: "32px"`. */
2648
+ /** Sets `marginTop: "calc(var(--t-spacing) * 4)"`. */
2637
2649
  get mt4(): CssBuilder<T & {
2638
2650
  marginTop: csstype.Property.MarginTop<string | 0> | undefined;
2639
2651
  }, S>;
2640
- /** Sets `marginTop: "40px"`. */
2652
+ /** Sets `marginTop: "calc(var(--t-spacing) * 5)"`. */
2641
2653
  get mt5(): CssBuilder<T & {
2642
2654
  marginTop: csstype.Property.MarginTop<string | 0> | undefined;
2643
2655
  }, S>;
2644
- /** Sets `marginTop: "48px"`. */
2656
+ /** Sets `marginTop: "calc(var(--t-spacing) * 6)"`. */
2645
2657
  get mt6(): CssBuilder<T & {
2646
2658
  marginTop: csstype.Property.MarginTop<string | 0> | undefined;
2647
2659
  }, S>;
2648
- /** Sets `marginTop: "56px"`. */
2660
+ /** Sets `marginTop: "calc(var(--t-spacing) * 7)"`. */
2649
2661
  get mt7(): CssBuilder<T & {
2650
2662
  marginTop: csstype.Property.MarginTop<string | 0> | undefined;
2651
2663
  }, S>;
2652
- /** Sets `marginTop: "64px"`. */
2664
+ /** Sets `marginTop: "calc(var(--t-spacing) * 8)"`. */
2653
2665
  get mt8(): CssBuilder<T & {
2654
2666
  marginTop: csstype.Property.MarginTop<string | 0> | undefined;
2655
2667
  }, S>;
@@ -2665,39 +2677,39 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
2665
2677
  mtPx(px: number): CssBuilder<T & {
2666
2678
  marginTop: csstype.Property.MarginTop<string | 0> | undefined;
2667
2679
  }, S>;
2668
- /** Sets `marginRight: "0px"`. */
2680
+ /** Sets `marginRight: "calc(var(--t-spacing) * 0)"`. */
2669
2681
  get mr0(): CssBuilder<T & {
2670
2682
  marginRight: csstype.Property.MarginRight<string | 0> | undefined;
2671
2683
  }, S>;
2672
- /** Sets `marginRight: "8px"`. */
2684
+ /** Sets `marginRight: "calc(var(--t-spacing) * 1)"`. */
2673
2685
  get mr1(): CssBuilder<T & {
2674
2686
  marginRight: csstype.Property.MarginRight<string | 0> | undefined;
2675
2687
  }, S>;
2676
- /** Sets `marginRight: "16px"`. */
2688
+ /** Sets `marginRight: "calc(var(--t-spacing) * 2)"`. */
2677
2689
  get mr2(): CssBuilder<T & {
2678
2690
  marginRight: csstype.Property.MarginRight<string | 0> | undefined;
2679
2691
  }, S>;
2680
- /** Sets `marginRight: "24px"`. */
2692
+ /** Sets `marginRight: "calc(var(--t-spacing) * 3)"`. */
2681
2693
  get mr3(): CssBuilder<T & {
2682
2694
  marginRight: csstype.Property.MarginRight<string | 0> | undefined;
2683
2695
  }, S>;
2684
- /** Sets `marginRight: "32px"`. */
2696
+ /** Sets `marginRight: "calc(var(--t-spacing) * 4)"`. */
2685
2697
  get mr4(): CssBuilder<T & {
2686
2698
  marginRight: csstype.Property.MarginRight<string | 0> | undefined;
2687
2699
  }, S>;
2688
- /** Sets `marginRight: "40px"`. */
2700
+ /** Sets `marginRight: "calc(var(--t-spacing) * 5)"`. */
2689
2701
  get mr5(): CssBuilder<T & {
2690
2702
  marginRight: csstype.Property.MarginRight<string | 0> | undefined;
2691
2703
  }, S>;
2692
- /** Sets `marginRight: "48px"`. */
2704
+ /** Sets `marginRight: "calc(var(--t-spacing) * 6)"`. */
2693
2705
  get mr6(): CssBuilder<T & {
2694
2706
  marginRight: csstype.Property.MarginRight<string | 0> | undefined;
2695
2707
  }, S>;
2696
- /** Sets `marginRight: "56px"`. */
2708
+ /** Sets `marginRight: "calc(var(--t-spacing) * 7)"`. */
2697
2709
  get mr7(): CssBuilder<T & {
2698
2710
  marginRight: csstype.Property.MarginRight<string | 0> | undefined;
2699
2711
  }, S>;
2700
- /** Sets `marginRight: "64px"`. */
2712
+ /** Sets `marginRight: "calc(var(--t-spacing) * 8)"`. */
2701
2713
  get mr8(): CssBuilder<T & {
2702
2714
  marginRight: csstype.Property.MarginRight<string | 0> | undefined;
2703
2715
  }, S>;
@@ -2713,39 +2725,39 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
2713
2725
  mrPx(px: number): CssBuilder<T & {
2714
2726
  marginRight: csstype.Property.MarginRight<string | 0> | undefined;
2715
2727
  }, S>;
2716
- /** Sets `marginBottom: "0px"`. */
2728
+ /** Sets `marginBottom: "calc(var(--t-spacing) * 0)"`. */
2717
2729
  get mb0(): CssBuilder<T & {
2718
2730
  marginBottom: csstype.Property.MarginBottom<string | 0> | undefined;
2719
2731
  }, S>;
2720
- /** Sets `marginBottom: "8px"`. */
2732
+ /** Sets `marginBottom: "calc(var(--t-spacing) * 1)"`. */
2721
2733
  get mb1(): CssBuilder<T & {
2722
2734
  marginBottom: csstype.Property.MarginBottom<string | 0> | undefined;
2723
2735
  }, S>;
2724
- /** Sets `marginBottom: "16px"`. */
2736
+ /** Sets `marginBottom: "calc(var(--t-spacing) * 2)"`. */
2725
2737
  get mb2(): CssBuilder<T & {
2726
2738
  marginBottom: csstype.Property.MarginBottom<string | 0> | undefined;
2727
2739
  }, S>;
2728
- /** Sets `marginBottom: "24px"`. */
2740
+ /** Sets `marginBottom: "calc(var(--t-spacing) * 3)"`. */
2729
2741
  get mb3(): CssBuilder<T & {
2730
2742
  marginBottom: csstype.Property.MarginBottom<string | 0> | undefined;
2731
2743
  }, S>;
2732
- /** Sets `marginBottom: "32px"`. */
2744
+ /** Sets `marginBottom: "calc(var(--t-spacing) * 4)"`. */
2733
2745
  get mb4(): CssBuilder<T & {
2734
2746
  marginBottom: csstype.Property.MarginBottom<string | 0> | undefined;
2735
2747
  }, S>;
2736
- /** Sets `marginBottom: "40px"`. */
2748
+ /** Sets `marginBottom: "calc(var(--t-spacing) * 5)"`. */
2737
2749
  get mb5(): CssBuilder<T & {
2738
2750
  marginBottom: csstype.Property.MarginBottom<string | 0> | undefined;
2739
2751
  }, S>;
2740
- /** Sets `marginBottom: "48px"`. */
2752
+ /** Sets `marginBottom: "calc(var(--t-spacing) * 6)"`. */
2741
2753
  get mb6(): CssBuilder<T & {
2742
2754
  marginBottom: csstype.Property.MarginBottom<string | 0> | undefined;
2743
2755
  }, S>;
2744
- /** Sets `marginBottom: "56px"`. */
2756
+ /** Sets `marginBottom: "calc(var(--t-spacing) * 7)"`. */
2745
2757
  get mb7(): CssBuilder<T & {
2746
2758
  marginBottom: csstype.Property.MarginBottom<string | 0> | undefined;
2747
2759
  }, S>;
2748
- /** Sets `marginBottom: "64px"`. */
2760
+ /** Sets `marginBottom: "calc(var(--t-spacing) * 8)"`. */
2749
2761
  get mb8(): CssBuilder<T & {
2750
2762
  marginBottom: csstype.Property.MarginBottom<string | 0> | undefined;
2751
2763
  }, S>;
@@ -2761,39 +2773,39 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
2761
2773
  mbPx(px: number): CssBuilder<T & {
2762
2774
  marginBottom: csstype.Property.MarginBottom<string | 0> | undefined;
2763
2775
  }, S>;
2764
- /** Sets `marginLeft: "0px"`. */
2776
+ /** Sets `marginLeft: "calc(var(--t-spacing) * 0)"`. */
2765
2777
  get ml0(): CssBuilder<T & {
2766
2778
  marginLeft: csstype.Property.MarginLeft<string | 0> | undefined;
2767
2779
  }, S>;
2768
- /** Sets `marginLeft: "8px"`. */
2780
+ /** Sets `marginLeft: "calc(var(--t-spacing) * 1)"`. */
2769
2781
  get ml1(): CssBuilder<T & {
2770
2782
  marginLeft: csstype.Property.MarginLeft<string | 0> | undefined;
2771
2783
  }, S>;
2772
- /** Sets `marginLeft: "16px"`. */
2784
+ /** Sets `marginLeft: "calc(var(--t-spacing) * 2)"`. */
2773
2785
  get ml2(): CssBuilder<T & {
2774
2786
  marginLeft: csstype.Property.MarginLeft<string | 0> | undefined;
2775
2787
  }, S>;
2776
- /** Sets `marginLeft: "24px"`. */
2788
+ /** Sets `marginLeft: "calc(var(--t-spacing) * 3)"`. */
2777
2789
  get ml3(): CssBuilder<T & {
2778
2790
  marginLeft: csstype.Property.MarginLeft<string | 0> | undefined;
2779
2791
  }, S>;
2780
- /** Sets `marginLeft: "32px"`. */
2792
+ /** Sets `marginLeft: "calc(var(--t-spacing) * 4)"`. */
2781
2793
  get ml4(): CssBuilder<T & {
2782
2794
  marginLeft: csstype.Property.MarginLeft<string | 0> | undefined;
2783
2795
  }, S>;
2784
- /** Sets `marginLeft: "40px"`. */
2796
+ /** Sets `marginLeft: "calc(var(--t-spacing) * 5)"`. */
2785
2797
  get ml5(): CssBuilder<T & {
2786
2798
  marginLeft: csstype.Property.MarginLeft<string | 0> | undefined;
2787
2799
  }, S>;
2788
- /** Sets `marginLeft: "48px"`. */
2800
+ /** Sets `marginLeft: "calc(var(--t-spacing) * 6)"`. */
2789
2801
  get ml6(): CssBuilder<T & {
2790
2802
  marginLeft: csstype.Property.MarginLeft<string | 0> | undefined;
2791
2803
  }, S>;
2792
- /** Sets `marginLeft: "56px"`. */
2804
+ /** Sets `marginLeft: "calc(var(--t-spacing) * 7)"`. */
2793
2805
  get ml7(): CssBuilder<T & {
2794
2806
  marginLeft: csstype.Property.MarginLeft<string | 0> | undefined;
2795
2807
  }, S>;
2796
- /** Sets `marginLeft: "64px"`. */
2808
+ /** Sets `marginLeft: "calc(var(--t-spacing) * 8)"`. */
2797
2809
  get ml8(): CssBuilder<T & {
2798
2810
  marginLeft: csstype.Property.MarginLeft<string | 0> | undefined;
2799
2811
  }, S>;
@@ -2809,55 +2821,55 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
2809
2821
  mlPx(px: number): CssBuilder<T & {
2810
2822
  marginLeft: csstype.Property.MarginLeft<string | 0> | undefined;
2811
2823
  }, S>;
2812
- /** Sets `marginLeft: "0px"; marginRight: "0px"`. */
2824
+ /** Sets `marginLeft: "calc(var(--t-spacing) * 0)"; marginRight: "calc(var(--t-spacing) * 0)"`. */
2813
2825
  get mx0(): CssBuilder<T & {
2814
2826
  marginLeft: csstype.Property.MarginLeft<string | 0> | undefined;
2815
2827
  } & {
2816
2828
  marginRight: csstype.Property.MarginRight<string | 0> | undefined;
2817
2829
  }, S>;
2818
- /** Sets `marginLeft: "8px"; marginRight: "8px"`. */
2830
+ /** Sets `marginLeft: "calc(var(--t-spacing) * 1)"; marginRight: "calc(var(--t-spacing) * 1)"`. */
2819
2831
  get mx1(): CssBuilder<T & {
2820
2832
  marginLeft: csstype.Property.MarginLeft<string | 0> | undefined;
2821
2833
  } & {
2822
2834
  marginRight: csstype.Property.MarginRight<string | 0> | undefined;
2823
2835
  }, S>;
2824
- /** Sets `marginLeft: "16px"; marginRight: "16px"`. */
2836
+ /** Sets `marginLeft: "calc(var(--t-spacing) * 2)"; marginRight: "calc(var(--t-spacing) * 2)"`. */
2825
2837
  get mx2(): CssBuilder<T & {
2826
2838
  marginLeft: csstype.Property.MarginLeft<string | 0> | undefined;
2827
2839
  } & {
2828
2840
  marginRight: csstype.Property.MarginRight<string | 0> | undefined;
2829
2841
  }, S>;
2830
- /** Sets `marginLeft: "24px"; marginRight: "24px"`. */
2842
+ /** Sets `marginLeft: "calc(var(--t-spacing) * 3)"; marginRight: "calc(var(--t-spacing) * 3)"`. */
2831
2843
  get mx3(): CssBuilder<T & {
2832
2844
  marginLeft: csstype.Property.MarginLeft<string | 0> | undefined;
2833
2845
  } & {
2834
2846
  marginRight: csstype.Property.MarginRight<string | 0> | undefined;
2835
2847
  }, S>;
2836
- /** Sets `marginLeft: "32px"; marginRight: "32px"`. */
2848
+ /** Sets `marginLeft: "calc(var(--t-spacing) * 4)"; marginRight: "calc(var(--t-spacing) * 4)"`. */
2837
2849
  get mx4(): CssBuilder<T & {
2838
2850
  marginLeft: csstype.Property.MarginLeft<string | 0> | undefined;
2839
2851
  } & {
2840
2852
  marginRight: csstype.Property.MarginRight<string | 0> | undefined;
2841
2853
  }, S>;
2842
- /** Sets `marginLeft: "40px"; marginRight: "40px"`. */
2854
+ /** Sets `marginLeft: "calc(var(--t-spacing) * 5)"; marginRight: "calc(var(--t-spacing) * 5)"`. */
2843
2855
  get mx5(): CssBuilder<T & {
2844
2856
  marginLeft: csstype.Property.MarginLeft<string | 0> | undefined;
2845
2857
  } & {
2846
2858
  marginRight: csstype.Property.MarginRight<string | 0> | undefined;
2847
2859
  }, S>;
2848
- /** Sets `marginLeft: "48px"; marginRight: "48px"`. */
2860
+ /** Sets `marginLeft: "calc(var(--t-spacing) * 6)"; marginRight: "calc(var(--t-spacing) * 6)"`. */
2849
2861
  get mx6(): CssBuilder<T & {
2850
2862
  marginLeft: csstype.Property.MarginLeft<string | 0> | undefined;
2851
2863
  } & {
2852
2864
  marginRight: csstype.Property.MarginRight<string | 0> | undefined;
2853
2865
  }, S>;
2854
- /** Sets `marginLeft: "56px"; marginRight: "56px"`. */
2866
+ /** Sets `marginLeft: "calc(var(--t-spacing) * 7)"; marginRight: "calc(var(--t-spacing) * 7)"`. */
2855
2867
  get mx7(): CssBuilder<T & {
2856
2868
  marginLeft: csstype.Property.MarginLeft<string | 0> | undefined;
2857
2869
  } & {
2858
2870
  marginRight: csstype.Property.MarginRight<string | 0> | undefined;
2859
2871
  }, S>;
2860
- /** Sets `marginLeft: "64px"; marginRight: "64px"`. */
2872
+ /** Sets `marginLeft: "calc(var(--t-spacing) * 8)"; marginRight: "calc(var(--t-spacing) * 8)"`. */
2861
2873
  get mx8(): CssBuilder<T & {
2862
2874
  marginLeft: csstype.Property.MarginLeft<string | 0> | undefined;
2863
2875
  } & {
@@ -2881,55 +2893,55 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
2881
2893
  } & {
2882
2894
  marginRight: csstype.Property.MarginRight<string | 0> | undefined;
2883
2895
  }, S>;
2884
- /** Sets `marginTop: "0px"; marginBottom: "0px"`. */
2896
+ /** Sets `marginTop: "calc(var(--t-spacing) * 0)"; marginBottom: "calc(var(--t-spacing) * 0)"`. */
2885
2897
  get my0(): CssBuilder<T & {
2886
2898
  marginTop: csstype.Property.MarginTop<string | 0> | undefined;
2887
2899
  } & {
2888
2900
  marginBottom: csstype.Property.MarginBottom<string | 0> | undefined;
2889
2901
  }, S>;
2890
- /** Sets `marginTop: "8px"; marginBottom: "8px"`. */
2902
+ /** Sets `marginTop: "calc(var(--t-spacing) * 1)"; marginBottom: "calc(var(--t-spacing) * 1)"`. */
2891
2903
  get my1(): CssBuilder<T & {
2892
2904
  marginTop: csstype.Property.MarginTop<string | 0> | undefined;
2893
2905
  } & {
2894
2906
  marginBottom: csstype.Property.MarginBottom<string | 0> | undefined;
2895
2907
  }, S>;
2896
- /** Sets `marginTop: "16px"; marginBottom: "16px"`. */
2908
+ /** Sets `marginTop: "calc(var(--t-spacing) * 2)"; marginBottom: "calc(var(--t-spacing) * 2)"`. */
2897
2909
  get my2(): CssBuilder<T & {
2898
2910
  marginTop: csstype.Property.MarginTop<string | 0> | undefined;
2899
2911
  } & {
2900
2912
  marginBottom: csstype.Property.MarginBottom<string | 0> | undefined;
2901
2913
  }, S>;
2902
- /** Sets `marginTop: "24px"; marginBottom: "24px"`. */
2914
+ /** Sets `marginTop: "calc(var(--t-spacing) * 3)"; marginBottom: "calc(var(--t-spacing) * 3)"`. */
2903
2915
  get my3(): CssBuilder<T & {
2904
2916
  marginTop: csstype.Property.MarginTop<string | 0> | undefined;
2905
2917
  } & {
2906
2918
  marginBottom: csstype.Property.MarginBottom<string | 0> | undefined;
2907
2919
  }, S>;
2908
- /** Sets `marginTop: "32px"; marginBottom: "32px"`. */
2920
+ /** Sets `marginTop: "calc(var(--t-spacing) * 4)"; marginBottom: "calc(var(--t-spacing) * 4)"`. */
2909
2921
  get my4(): CssBuilder<T & {
2910
2922
  marginTop: csstype.Property.MarginTop<string | 0> | undefined;
2911
2923
  } & {
2912
2924
  marginBottom: csstype.Property.MarginBottom<string | 0> | undefined;
2913
2925
  }, S>;
2914
- /** Sets `marginTop: "40px"; marginBottom: "40px"`. */
2926
+ /** Sets `marginTop: "calc(var(--t-spacing) * 5)"; marginBottom: "calc(var(--t-spacing) * 5)"`. */
2915
2927
  get my5(): CssBuilder<T & {
2916
2928
  marginTop: csstype.Property.MarginTop<string | 0> | undefined;
2917
2929
  } & {
2918
2930
  marginBottom: csstype.Property.MarginBottom<string | 0> | undefined;
2919
2931
  }, S>;
2920
- /** Sets `marginTop: "48px"; marginBottom: "48px"`. */
2932
+ /** Sets `marginTop: "calc(var(--t-spacing) * 6)"; marginBottom: "calc(var(--t-spacing) * 6)"`. */
2921
2933
  get my6(): CssBuilder<T & {
2922
2934
  marginTop: csstype.Property.MarginTop<string | 0> | undefined;
2923
2935
  } & {
2924
2936
  marginBottom: csstype.Property.MarginBottom<string | 0> | undefined;
2925
2937
  }, S>;
2926
- /** Sets `marginTop: "56px"; marginBottom: "56px"`. */
2938
+ /** Sets `marginTop: "calc(var(--t-spacing) * 7)"; marginBottom: "calc(var(--t-spacing) * 7)"`. */
2927
2939
  get my7(): CssBuilder<T & {
2928
2940
  marginTop: csstype.Property.MarginTop<string | 0> | undefined;
2929
2941
  } & {
2930
2942
  marginBottom: csstype.Property.MarginBottom<string | 0> | undefined;
2931
2943
  }, S>;
2932
- /** Sets `marginTop: "64px"; marginBottom: "64px"`. */
2944
+ /** Sets `marginTop: "calc(var(--t-spacing) * 8)"; marginBottom: "calc(var(--t-spacing) * 8)"`. */
2933
2945
  get my8(): CssBuilder<T & {
2934
2946
  marginTop: csstype.Property.MarginTop<string | 0> | undefined;
2935
2947
  } & {
@@ -2953,7 +2965,7 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
2953
2965
  } & {
2954
2966
  marginBottom: csstype.Property.MarginBottom<string | 0> | undefined;
2955
2967
  }, S>;
2956
- /** Sets `marginTop: "0px"; marginBottom: "0px"; marginRight: "0px"; marginLeft: "0px"`. */
2968
+ /** Sets `marginTop: "calc(var(--t-spacing) * 0)"; marginBottom: "calc(var(--t-spacing) * 0)"; marginRight: "calc(var(--t-spacing) * 0)"; marginLeft: "calc(var(--t-spacing) * 0)"`. */
2957
2969
  get m0(): CssBuilder<T & {
2958
2970
  marginTop: csstype.Property.MarginTop<string | 0> | undefined;
2959
2971
  } & {
@@ -2963,7 +2975,7 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
2963
2975
  } & {
2964
2976
  marginLeft: csstype.Property.MarginLeft<string | 0> | undefined;
2965
2977
  }, S>;
2966
- /** Sets `marginTop: "8px"; marginBottom: "8px"; marginRight: "8px"; marginLeft: "8px"`. */
2978
+ /** Sets `marginTop: "calc(var(--t-spacing) * 1)"; marginBottom: "calc(var(--t-spacing) * 1)"; marginRight: "calc(var(--t-spacing) * 1)"; marginLeft: "calc(var(--t-spacing) * 1)"`. */
2967
2979
  get m1(): CssBuilder<T & {
2968
2980
  marginTop: csstype.Property.MarginTop<string | 0> | undefined;
2969
2981
  } & {
@@ -2973,7 +2985,7 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
2973
2985
  } & {
2974
2986
  marginLeft: csstype.Property.MarginLeft<string | 0> | undefined;
2975
2987
  }, S>;
2976
- /** Sets `marginTop: "16px"; marginBottom: "16px"; marginRight: "16px"; marginLeft: "16px"`. */
2988
+ /** Sets `marginTop: "calc(var(--t-spacing) * 2)"; marginBottom: "calc(var(--t-spacing) * 2)"; marginRight: "calc(var(--t-spacing) * 2)"; marginLeft: "calc(var(--t-spacing) * 2)"`. */
2977
2989
  get m2(): CssBuilder<T & {
2978
2990
  marginTop: csstype.Property.MarginTop<string | 0> | undefined;
2979
2991
  } & {
@@ -2983,7 +2995,7 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
2983
2995
  } & {
2984
2996
  marginLeft: csstype.Property.MarginLeft<string | 0> | undefined;
2985
2997
  }, S>;
2986
- /** Sets `marginTop: "24px"; marginBottom: "24px"; marginRight: "24px"; marginLeft: "24px"`. */
2998
+ /** Sets `marginTop: "calc(var(--t-spacing) * 3)"; marginBottom: "calc(var(--t-spacing) * 3)"; marginRight: "calc(var(--t-spacing) * 3)"; marginLeft: "calc(var(--t-spacing) * 3)"`. */
2987
2999
  get m3(): CssBuilder<T & {
2988
3000
  marginTop: csstype.Property.MarginTop<string | 0> | undefined;
2989
3001
  } & {
@@ -2993,7 +3005,7 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
2993
3005
  } & {
2994
3006
  marginLeft: csstype.Property.MarginLeft<string | 0> | undefined;
2995
3007
  }, S>;
2996
- /** Sets `marginTop: "32px"; marginBottom: "32px"; marginRight: "32px"; marginLeft: "32px"`. */
3008
+ /** Sets `marginTop: "calc(var(--t-spacing) * 4)"; marginBottom: "calc(var(--t-spacing) * 4)"; marginRight: "calc(var(--t-spacing) * 4)"; marginLeft: "calc(var(--t-spacing) * 4)"`. */
2997
3009
  get m4(): CssBuilder<T & {
2998
3010
  marginTop: csstype.Property.MarginTop<string | 0> | undefined;
2999
3011
  } & {
@@ -3003,7 +3015,7 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
3003
3015
  } & {
3004
3016
  marginLeft: csstype.Property.MarginLeft<string | 0> | undefined;
3005
3017
  }, S>;
3006
- /** Sets `marginTop: "40px"; marginBottom: "40px"; marginRight: "40px"; marginLeft: "40px"`. */
3018
+ /** Sets `marginTop: "calc(var(--t-spacing) * 5)"; marginBottom: "calc(var(--t-spacing) * 5)"; marginRight: "calc(var(--t-spacing) * 5)"; marginLeft: "calc(var(--t-spacing) * 5)"`. */
3007
3019
  get m5(): CssBuilder<T & {
3008
3020
  marginTop: csstype.Property.MarginTop<string | 0> | undefined;
3009
3021
  } & {
@@ -3013,7 +3025,7 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
3013
3025
  } & {
3014
3026
  marginLeft: csstype.Property.MarginLeft<string | 0> | undefined;
3015
3027
  }, S>;
3016
- /** Sets `marginTop: "48px"; marginBottom: "48px"; marginRight: "48px"; marginLeft: "48px"`. */
3028
+ /** Sets `marginTop: "calc(var(--t-spacing) * 6)"; marginBottom: "calc(var(--t-spacing) * 6)"; marginRight: "calc(var(--t-spacing) * 6)"; marginLeft: "calc(var(--t-spacing) * 6)"`. */
3017
3029
  get m6(): CssBuilder<T & {
3018
3030
  marginTop: csstype.Property.MarginTop<string | 0> | undefined;
3019
3031
  } & {
@@ -3023,7 +3035,7 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
3023
3035
  } & {
3024
3036
  marginLeft: csstype.Property.MarginLeft<string | 0> | undefined;
3025
3037
  }, S>;
3026
- /** Sets `marginTop: "56px"; marginBottom: "56px"; marginRight: "56px"; marginLeft: "56px"`. */
3038
+ /** Sets `marginTop: "calc(var(--t-spacing) * 7)"; marginBottom: "calc(var(--t-spacing) * 7)"; marginRight: "calc(var(--t-spacing) * 7)"; marginLeft: "calc(var(--t-spacing) * 7)"`. */
3027
3039
  get m7(): CssBuilder<T & {
3028
3040
  marginTop: csstype.Property.MarginTop<string | 0> | undefined;
3029
3041
  } & {
@@ -3033,7 +3045,7 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
3033
3045
  } & {
3034
3046
  marginLeft: csstype.Property.MarginLeft<string | 0> | undefined;
3035
3047
  }, S>;
3036
- /** Sets `marginTop: "64px"; marginBottom: "64px"; marginRight: "64px"; marginLeft: "64px"`. */
3048
+ /** Sets `marginTop: "calc(var(--t-spacing) * 8)"; marginBottom: "calc(var(--t-spacing) * 8)"; marginRight: "calc(var(--t-spacing) * 8)"; marginLeft: "calc(var(--t-spacing) * 8)"`. */
3037
3049
  get m8(): CssBuilder<T & {
3038
3050
  marginTop: csstype.Property.MarginTop<string | 0> | undefined;
3039
3051
  } & {
@@ -3073,39 +3085,39 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
3073
3085
  } & {
3074
3086
  marginLeft: csstype.Property.MarginLeft<string | 0> | undefined;
3075
3087
  }, S>;
3076
- /** Sets `paddingTop: "0px"`. */
3088
+ /** Sets `paddingTop: "calc(var(--t-spacing) * 0)"`. */
3077
3089
  get pt0(): CssBuilder<T & {
3078
3090
  paddingTop: csstype.Property.PaddingTop<string | 0> | undefined;
3079
3091
  }, S>;
3080
- /** Sets `paddingTop: "8px"`. */
3092
+ /** Sets `paddingTop: "calc(var(--t-spacing) * 1)"`. */
3081
3093
  get pt1(): CssBuilder<T & {
3082
3094
  paddingTop: csstype.Property.PaddingTop<string | 0> | undefined;
3083
3095
  }, S>;
3084
- /** Sets `paddingTop: "16px"`. */
3096
+ /** Sets `paddingTop: "calc(var(--t-spacing) * 2)"`. */
3085
3097
  get pt2(): CssBuilder<T & {
3086
3098
  paddingTop: csstype.Property.PaddingTop<string | 0> | undefined;
3087
3099
  }, S>;
3088
- /** Sets `paddingTop: "24px"`. */
3100
+ /** Sets `paddingTop: "calc(var(--t-spacing) * 3)"`. */
3089
3101
  get pt3(): CssBuilder<T & {
3090
3102
  paddingTop: csstype.Property.PaddingTop<string | 0> | undefined;
3091
3103
  }, S>;
3092
- /** Sets `paddingTop: "32px"`. */
3104
+ /** Sets `paddingTop: "calc(var(--t-spacing) * 4)"`. */
3093
3105
  get pt4(): CssBuilder<T & {
3094
3106
  paddingTop: csstype.Property.PaddingTop<string | 0> | undefined;
3095
3107
  }, S>;
3096
- /** Sets `paddingTop: "40px"`. */
3108
+ /** Sets `paddingTop: "calc(var(--t-spacing) * 5)"`. */
3097
3109
  get pt5(): CssBuilder<T & {
3098
3110
  paddingTop: csstype.Property.PaddingTop<string | 0> | undefined;
3099
3111
  }, S>;
3100
- /** Sets `paddingTop: "48px"`. */
3112
+ /** Sets `paddingTop: "calc(var(--t-spacing) * 6)"`. */
3101
3113
  get pt6(): CssBuilder<T & {
3102
3114
  paddingTop: csstype.Property.PaddingTop<string | 0> | undefined;
3103
3115
  }, S>;
3104
- /** Sets `paddingTop: "56px"`. */
3116
+ /** Sets `paddingTop: "calc(var(--t-spacing) * 7)"`. */
3105
3117
  get pt7(): CssBuilder<T & {
3106
3118
  paddingTop: csstype.Property.PaddingTop<string | 0> | undefined;
3107
3119
  }, S>;
3108
- /** Sets `paddingTop: "64px"`. */
3120
+ /** Sets `paddingTop: "calc(var(--t-spacing) * 8)"`. */
3109
3121
  get pt8(): CssBuilder<T & {
3110
3122
  paddingTop: csstype.Property.PaddingTop<string | 0> | undefined;
3111
3123
  }, S>;
@@ -3117,39 +3129,39 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
3117
3129
  ptPx(px: number): CssBuilder<T & {
3118
3130
  paddingTop: csstype.Property.PaddingTop<string | 0> | undefined;
3119
3131
  }, S>;
3120
- /** Sets `paddingRight: "0px"`. */
3132
+ /** Sets `paddingRight: "calc(var(--t-spacing) * 0)"`. */
3121
3133
  get pr0(): CssBuilder<T & {
3122
3134
  paddingRight: csstype.Property.PaddingRight<string | 0> | undefined;
3123
3135
  }, S>;
3124
- /** Sets `paddingRight: "8px"`. */
3136
+ /** Sets `paddingRight: "calc(var(--t-spacing) * 1)"`. */
3125
3137
  get pr1(): CssBuilder<T & {
3126
3138
  paddingRight: csstype.Property.PaddingRight<string | 0> | undefined;
3127
3139
  }, S>;
3128
- /** Sets `paddingRight: "16px"`. */
3140
+ /** Sets `paddingRight: "calc(var(--t-spacing) * 2)"`. */
3129
3141
  get pr2(): CssBuilder<T & {
3130
3142
  paddingRight: csstype.Property.PaddingRight<string | 0> | undefined;
3131
3143
  }, S>;
3132
- /** Sets `paddingRight: "24px"`. */
3144
+ /** Sets `paddingRight: "calc(var(--t-spacing) * 3)"`. */
3133
3145
  get pr3(): CssBuilder<T & {
3134
3146
  paddingRight: csstype.Property.PaddingRight<string | 0> | undefined;
3135
3147
  }, S>;
3136
- /** Sets `paddingRight: "32px"`. */
3148
+ /** Sets `paddingRight: "calc(var(--t-spacing) * 4)"`. */
3137
3149
  get pr4(): CssBuilder<T & {
3138
3150
  paddingRight: csstype.Property.PaddingRight<string | 0> | undefined;
3139
3151
  }, S>;
3140
- /** Sets `paddingRight: "40px"`. */
3152
+ /** Sets `paddingRight: "calc(var(--t-spacing) * 5)"`. */
3141
3153
  get pr5(): CssBuilder<T & {
3142
3154
  paddingRight: csstype.Property.PaddingRight<string | 0> | undefined;
3143
3155
  }, S>;
3144
- /** Sets `paddingRight: "48px"`. */
3156
+ /** Sets `paddingRight: "calc(var(--t-spacing) * 6)"`. */
3145
3157
  get pr6(): CssBuilder<T & {
3146
3158
  paddingRight: csstype.Property.PaddingRight<string | 0> | undefined;
3147
3159
  }, S>;
3148
- /** Sets `paddingRight: "56px"`. */
3160
+ /** Sets `paddingRight: "calc(var(--t-spacing) * 7)"`. */
3149
3161
  get pr7(): CssBuilder<T & {
3150
3162
  paddingRight: csstype.Property.PaddingRight<string | 0> | undefined;
3151
3163
  }, S>;
3152
- /** Sets `paddingRight: "64px"`. */
3164
+ /** Sets `paddingRight: "calc(var(--t-spacing) * 8)"`. */
3153
3165
  get pr8(): CssBuilder<T & {
3154
3166
  paddingRight: csstype.Property.PaddingRight<string | 0> | undefined;
3155
3167
  }, S>;
@@ -3161,39 +3173,39 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
3161
3173
  prPx(px: number): CssBuilder<T & {
3162
3174
  paddingRight: csstype.Property.PaddingRight<string | 0> | undefined;
3163
3175
  }, S>;
3164
- /** Sets `paddingBottom: "0px"`. */
3176
+ /** Sets `paddingBottom: "calc(var(--t-spacing) * 0)"`. */
3165
3177
  get pb0(): CssBuilder<T & {
3166
3178
  paddingBottom: csstype.Property.PaddingBottom<string | 0> | undefined;
3167
3179
  }, S>;
3168
- /** Sets `paddingBottom: "8px"`. */
3180
+ /** Sets `paddingBottom: "calc(var(--t-spacing) * 1)"`. */
3169
3181
  get pb1(): CssBuilder<T & {
3170
3182
  paddingBottom: csstype.Property.PaddingBottom<string | 0> | undefined;
3171
3183
  }, S>;
3172
- /** Sets `paddingBottom: "16px"`. */
3184
+ /** Sets `paddingBottom: "calc(var(--t-spacing) * 2)"`. */
3173
3185
  get pb2(): CssBuilder<T & {
3174
3186
  paddingBottom: csstype.Property.PaddingBottom<string | 0> | undefined;
3175
3187
  }, S>;
3176
- /** Sets `paddingBottom: "24px"`. */
3188
+ /** Sets `paddingBottom: "calc(var(--t-spacing) * 3)"`. */
3177
3189
  get pb3(): CssBuilder<T & {
3178
3190
  paddingBottom: csstype.Property.PaddingBottom<string | 0> | undefined;
3179
3191
  }, S>;
3180
- /** Sets `paddingBottom: "32px"`. */
3192
+ /** Sets `paddingBottom: "calc(var(--t-spacing) * 4)"`. */
3181
3193
  get pb4(): CssBuilder<T & {
3182
3194
  paddingBottom: csstype.Property.PaddingBottom<string | 0> | undefined;
3183
3195
  }, S>;
3184
- /** Sets `paddingBottom: "40px"`. */
3196
+ /** Sets `paddingBottom: "calc(var(--t-spacing) * 5)"`. */
3185
3197
  get pb5(): CssBuilder<T & {
3186
3198
  paddingBottom: csstype.Property.PaddingBottom<string | 0> | undefined;
3187
3199
  }, S>;
3188
- /** Sets `paddingBottom: "48px"`. */
3200
+ /** Sets `paddingBottom: "calc(var(--t-spacing) * 6)"`. */
3189
3201
  get pb6(): CssBuilder<T & {
3190
3202
  paddingBottom: csstype.Property.PaddingBottom<string | 0> | undefined;
3191
3203
  }, S>;
3192
- /** Sets `paddingBottom: "56px"`. */
3204
+ /** Sets `paddingBottom: "calc(var(--t-spacing) * 7)"`. */
3193
3205
  get pb7(): CssBuilder<T & {
3194
3206
  paddingBottom: csstype.Property.PaddingBottom<string | 0> | undefined;
3195
3207
  }, S>;
3196
- /** Sets `paddingBottom: "64px"`. */
3208
+ /** Sets `paddingBottom: "calc(var(--t-spacing) * 8)"`. */
3197
3209
  get pb8(): CssBuilder<T & {
3198
3210
  paddingBottom: csstype.Property.PaddingBottom<string | 0> | undefined;
3199
3211
  }, S>;
@@ -3205,39 +3217,39 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
3205
3217
  pbPx(px: number): CssBuilder<T & {
3206
3218
  paddingBottom: csstype.Property.PaddingBottom<string | 0> | undefined;
3207
3219
  }, S>;
3208
- /** Sets `paddingLeft: "0px"`. */
3220
+ /** Sets `paddingLeft: "calc(var(--t-spacing) * 0)"`. */
3209
3221
  get pl0(): CssBuilder<T & {
3210
3222
  paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
3211
3223
  }, S>;
3212
- /** Sets `paddingLeft: "8px"`. */
3224
+ /** Sets `paddingLeft: "calc(var(--t-spacing) * 1)"`. */
3213
3225
  get pl1(): CssBuilder<T & {
3214
3226
  paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
3215
3227
  }, S>;
3216
- /** Sets `paddingLeft: "16px"`. */
3228
+ /** Sets `paddingLeft: "calc(var(--t-spacing) * 2)"`. */
3217
3229
  get pl2(): CssBuilder<T & {
3218
3230
  paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
3219
3231
  }, S>;
3220
- /** Sets `paddingLeft: "24px"`. */
3232
+ /** Sets `paddingLeft: "calc(var(--t-spacing) * 3)"`. */
3221
3233
  get pl3(): CssBuilder<T & {
3222
3234
  paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
3223
3235
  }, S>;
3224
- /** Sets `paddingLeft: "32px"`. */
3236
+ /** Sets `paddingLeft: "calc(var(--t-spacing) * 4)"`. */
3225
3237
  get pl4(): CssBuilder<T & {
3226
3238
  paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
3227
3239
  }, S>;
3228
- /** Sets `paddingLeft: "40px"`. */
3240
+ /** Sets `paddingLeft: "calc(var(--t-spacing) * 5)"`. */
3229
3241
  get pl5(): CssBuilder<T & {
3230
3242
  paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
3231
3243
  }, S>;
3232
- /** Sets `paddingLeft: "48px"`. */
3244
+ /** Sets `paddingLeft: "calc(var(--t-spacing) * 6)"`. */
3233
3245
  get pl6(): CssBuilder<T & {
3234
3246
  paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
3235
3247
  }, S>;
3236
- /** Sets `paddingLeft: "56px"`. */
3248
+ /** Sets `paddingLeft: "calc(var(--t-spacing) * 7)"`. */
3237
3249
  get pl7(): CssBuilder<T & {
3238
3250
  paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
3239
3251
  }, S>;
3240
- /** Sets `paddingLeft: "64px"`. */
3252
+ /** Sets `paddingLeft: "calc(var(--t-spacing) * 8)"`. */
3241
3253
  get pl8(): CssBuilder<T & {
3242
3254
  paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
3243
3255
  }, S>;
@@ -3249,55 +3261,55 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
3249
3261
  plPx(px: number): CssBuilder<T & {
3250
3262
  paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
3251
3263
  }, S>;
3252
- /** Sets `paddingLeft: "0px"; paddingRight: "0px"`. */
3264
+ /** Sets `paddingLeft: "calc(var(--t-spacing) * 0)"; paddingRight: "calc(var(--t-spacing) * 0)"`. */
3253
3265
  get px0(): CssBuilder<T & {
3254
3266
  paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
3255
3267
  } & {
3256
3268
  paddingRight: csstype.Property.PaddingRight<string | 0> | undefined;
3257
3269
  }, S>;
3258
- /** Sets `paddingLeft: "8px"; paddingRight: "8px"`. */
3270
+ /** Sets `paddingLeft: "calc(var(--t-spacing) * 1)"; paddingRight: "calc(var(--t-spacing) * 1)"`. */
3259
3271
  get px1(): CssBuilder<T & {
3260
3272
  paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
3261
3273
  } & {
3262
3274
  paddingRight: csstype.Property.PaddingRight<string | 0> | undefined;
3263
3275
  }, S>;
3264
- /** Sets `paddingLeft: "16px"; paddingRight: "16px"`. */
3276
+ /** Sets `paddingLeft: "calc(var(--t-spacing) * 2)"; paddingRight: "calc(var(--t-spacing) * 2)"`. */
3265
3277
  get px2(): CssBuilder<T & {
3266
3278
  paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
3267
3279
  } & {
3268
3280
  paddingRight: csstype.Property.PaddingRight<string | 0> | undefined;
3269
3281
  }, S>;
3270
- /** Sets `paddingLeft: "24px"; paddingRight: "24px"`. */
3282
+ /** Sets `paddingLeft: "calc(var(--t-spacing) * 3)"; paddingRight: "calc(var(--t-spacing) * 3)"`. */
3271
3283
  get px3(): CssBuilder<T & {
3272
3284
  paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
3273
3285
  } & {
3274
3286
  paddingRight: csstype.Property.PaddingRight<string | 0> | undefined;
3275
3287
  }, S>;
3276
- /** Sets `paddingLeft: "32px"; paddingRight: "32px"`. */
3288
+ /** Sets `paddingLeft: "calc(var(--t-spacing) * 4)"; paddingRight: "calc(var(--t-spacing) * 4)"`. */
3277
3289
  get px4(): CssBuilder<T & {
3278
3290
  paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
3279
3291
  } & {
3280
3292
  paddingRight: csstype.Property.PaddingRight<string | 0> | undefined;
3281
3293
  }, S>;
3282
- /** Sets `paddingLeft: "40px"; paddingRight: "40px"`. */
3294
+ /** Sets `paddingLeft: "calc(var(--t-spacing) * 5)"; paddingRight: "calc(var(--t-spacing) * 5)"`. */
3283
3295
  get px5(): CssBuilder<T & {
3284
3296
  paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
3285
3297
  } & {
3286
3298
  paddingRight: csstype.Property.PaddingRight<string | 0> | undefined;
3287
3299
  }, S>;
3288
- /** Sets `paddingLeft: "48px"; paddingRight: "48px"`. */
3300
+ /** Sets `paddingLeft: "calc(var(--t-spacing) * 6)"; paddingRight: "calc(var(--t-spacing) * 6)"`. */
3289
3301
  get px6(): CssBuilder<T & {
3290
3302
  paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
3291
3303
  } & {
3292
3304
  paddingRight: csstype.Property.PaddingRight<string | 0> | undefined;
3293
3305
  }, S>;
3294
- /** Sets `paddingLeft: "56px"; paddingRight: "56px"`. */
3306
+ /** Sets `paddingLeft: "calc(var(--t-spacing) * 7)"; paddingRight: "calc(var(--t-spacing) * 7)"`. */
3295
3307
  get px7(): CssBuilder<T & {
3296
3308
  paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
3297
3309
  } & {
3298
3310
  paddingRight: csstype.Property.PaddingRight<string | 0> | undefined;
3299
3311
  }, S>;
3300
- /** Sets `paddingLeft: "64px"; paddingRight: "64px"`. */
3312
+ /** Sets `paddingLeft: "calc(var(--t-spacing) * 8)"; paddingRight: "calc(var(--t-spacing) * 8)"`. */
3301
3313
  get px8(): CssBuilder<T & {
3302
3314
  paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
3303
3315
  } & {
@@ -3315,55 +3327,55 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
3315
3327
  } & {
3316
3328
  paddingRight: csstype.Property.PaddingRight<string | 0> | undefined;
3317
3329
  }, S>;
3318
- /** Sets `paddingTop: "0px"; paddingBottom: "0px"`. */
3330
+ /** Sets `paddingTop: "calc(var(--t-spacing) * 0)"; paddingBottom: "calc(var(--t-spacing) * 0)"`. */
3319
3331
  get py0(): CssBuilder<T & {
3320
3332
  paddingTop: csstype.Property.PaddingTop<string | 0> | undefined;
3321
3333
  } & {
3322
3334
  paddingBottom: csstype.Property.PaddingBottom<string | 0> | undefined;
3323
3335
  }, S>;
3324
- /** Sets `paddingTop: "8px"; paddingBottom: "8px"`. */
3336
+ /** Sets `paddingTop: "calc(var(--t-spacing) * 1)"; paddingBottom: "calc(var(--t-spacing) * 1)"`. */
3325
3337
  get py1(): CssBuilder<T & {
3326
3338
  paddingTop: csstype.Property.PaddingTop<string | 0> | undefined;
3327
3339
  } & {
3328
3340
  paddingBottom: csstype.Property.PaddingBottom<string | 0> | undefined;
3329
3341
  }, S>;
3330
- /** Sets `paddingTop: "16px"; paddingBottom: "16px"`. */
3342
+ /** Sets `paddingTop: "calc(var(--t-spacing) * 2)"; paddingBottom: "calc(var(--t-spacing) * 2)"`. */
3331
3343
  get py2(): CssBuilder<T & {
3332
3344
  paddingTop: csstype.Property.PaddingTop<string | 0> | undefined;
3333
3345
  } & {
3334
3346
  paddingBottom: csstype.Property.PaddingBottom<string | 0> | undefined;
3335
3347
  }, S>;
3336
- /** Sets `paddingTop: "24px"; paddingBottom: "24px"`. */
3348
+ /** Sets `paddingTop: "calc(var(--t-spacing) * 3)"; paddingBottom: "calc(var(--t-spacing) * 3)"`. */
3337
3349
  get py3(): CssBuilder<T & {
3338
3350
  paddingTop: csstype.Property.PaddingTop<string | 0> | undefined;
3339
3351
  } & {
3340
3352
  paddingBottom: csstype.Property.PaddingBottom<string | 0> | undefined;
3341
3353
  }, S>;
3342
- /** Sets `paddingTop: "32px"; paddingBottom: "32px"`. */
3354
+ /** Sets `paddingTop: "calc(var(--t-spacing) * 4)"; paddingBottom: "calc(var(--t-spacing) * 4)"`. */
3343
3355
  get py4(): CssBuilder<T & {
3344
3356
  paddingTop: csstype.Property.PaddingTop<string | 0> | undefined;
3345
3357
  } & {
3346
3358
  paddingBottom: csstype.Property.PaddingBottom<string | 0> | undefined;
3347
3359
  }, S>;
3348
- /** Sets `paddingTop: "40px"; paddingBottom: "40px"`. */
3360
+ /** Sets `paddingTop: "calc(var(--t-spacing) * 5)"; paddingBottom: "calc(var(--t-spacing) * 5)"`. */
3349
3361
  get py5(): CssBuilder<T & {
3350
3362
  paddingTop: csstype.Property.PaddingTop<string | 0> | undefined;
3351
3363
  } & {
3352
3364
  paddingBottom: csstype.Property.PaddingBottom<string | 0> | undefined;
3353
3365
  }, S>;
3354
- /** Sets `paddingTop: "48px"; paddingBottom: "48px"`. */
3366
+ /** Sets `paddingTop: "calc(var(--t-spacing) * 6)"; paddingBottom: "calc(var(--t-spacing) * 6)"`. */
3355
3367
  get py6(): CssBuilder<T & {
3356
3368
  paddingTop: csstype.Property.PaddingTop<string | 0> | undefined;
3357
3369
  } & {
3358
3370
  paddingBottom: csstype.Property.PaddingBottom<string | 0> | undefined;
3359
3371
  }, S>;
3360
- /** Sets `paddingTop: "56px"; paddingBottom: "56px"`. */
3372
+ /** Sets `paddingTop: "calc(var(--t-spacing) * 7)"; paddingBottom: "calc(var(--t-spacing) * 7)"`. */
3361
3373
  get py7(): CssBuilder<T & {
3362
3374
  paddingTop: csstype.Property.PaddingTop<string | 0> | undefined;
3363
3375
  } & {
3364
3376
  paddingBottom: csstype.Property.PaddingBottom<string | 0> | undefined;
3365
3377
  }, S>;
3366
- /** Sets `paddingTop: "64px"; paddingBottom: "64px"`. */
3378
+ /** Sets `paddingTop: "calc(var(--t-spacing) * 8)"; paddingBottom: "calc(var(--t-spacing) * 8)"`. */
3367
3379
  get py8(): CssBuilder<T & {
3368
3380
  paddingTop: csstype.Property.PaddingTop<string | 0> | undefined;
3369
3381
  } & {
@@ -3381,7 +3393,7 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
3381
3393
  } & {
3382
3394
  paddingBottom: csstype.Property.PaddingBottom<string | 0> | undefined;
3383
3395
  }, S>;
3384
- /** Sets `paddingTop: "0px"; paddingBottom: "0px"; paddingRight: "0px"; paddingLeft: "0px"`. */
3396
+ /** Sets `paddingTop: "calc(var(--t-spacing) * 0)"; paddingBottom: "calc(var(--t-spacing) * 0)"; paddingRight: "calc(var(--t-spacing) * 0)"; paddingLeft: "calc(var(--t-spacing) * 0)"`. */
3385
3397
  get p0(): CssBuilder<T & {
3386
3398
  paddingTop: csstype.Property.PaddingTop<string | 0> | undefined;
3387
3399
  } & {
@@ -3391,7 +3403,7 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
3391
3403
  } & {
3392
3404
  paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
3393
3405
  }, S>;
3394
- /** Sets `paddingTop: "8px"; paddingBottom: "8px"; paddingRight: "8px"; paddingLeft: "8px"`. */
3406
+ /** Sets `paddingTop: "calc(var(--t-spacing) * 1)"; paddingBottom: "calc(var(--t-spacing) * 1)"; paddingRight: "calc(var(--t-spacing) * 1)"; paddingLeft: "calc(var(--t-spacing) * 1)"`. */
3395
3407
  get p1(): CssBuilder<T & {
3396
3408
  paddingTop: csstype.Property.PaddingTop<string | 0> | undefined;
3397
3409
  } & {
@@ -3401,7 +3413,7 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
3401
3413
  } & {
3402
3414
  paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
3403
3415
  }, S>;
3404
- /** Sets `paddingTop: "16px"; paddingBottom: "16px"; paddingRight: "16px"; paddingLeft: "16px"`. */
3416
+ /** Sets `paddingTop: "calc(var(--t-spacing) * 2)"; paddingBottom: "calc(var(--t-spacing) * 2)"; paddingRight: "calc(var(--t-spacing) * 2)"; paddingLeft: "calc(var(--t-spacing) * 2)"`. */
3405
3417
  get p2(): CssBuilder<T & {
3406
3418
  paddingTop: csstype.Property.PaddingTop<string | 0> | undefined;
3407
3419
  } & {
@@ -3411,7 +3423,7 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
3411
3423
  } & {
3412
3424
  paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
3413
3425
  }, S>;
3414
- /** Sets `paddingTop: "24px"; paddingBottom: "24px"; paddingRight: "24px"; paddingLeft: "24px"`. */
3426
+ /** Sets `paddingTop: "calc(var(--t-spacing) * 3)"; paddingBottom: "calc(var(--t-spacing) * 3)"; paddingRight: "calc(var(--t-spacing) * 3)"; paddingLeft: "calc(var(--t-spacing) * 3)"`. */
3415
3427
  get p3(): CssBuilder<T & {
3416
3428
  paddingTop: csstype.Property.PaddingTop<string | 0> | undefined;
3417
3429
  } & {
@@ -3421,7 +3433,7 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
3421
3433
  } & {
3422
3434
  paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
3423
3435
  }, S>;
3424
- /** Sets `paddingTop: "32px"; paddingBottom: "32px"; paddingRight: "32px"; paddingLeft: "32px"`. */
3436
+ /** Sets `paddingTop: "calc(var(--t-spacing) * 4)"; paddingBottom: "calc(var(--t-spacing) * 4)"; paddingRight: "calc(var(--t-spacing) * 4)"; paddingLeft: "calc(var(--t-spacing) * 4)"`. */
3425
3437
  get p4(): CssBuilder<T & {
3426
3438
  paddingTop: csstype.Property.PaddingTop<string | 0> | undefined;
3427
3439
  } & {
@@ -3431,7 +3443,7 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
3431
3443
  } & {
3432
3444
  paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
3433
3445
  }, S>;
3434
- /** Sets `paddingTop: "40px"; paddingBottom: "40px"; paddingRight: "40px"; paddingLeft: "40px"`. */
3446
+ /** Sets `paddingTop: "calc(var(--t-spacing) * 5)"; paddingBottom: "calc(var(--t-spacing) * 5)"; paddingRight: "calc(var(--t-spacing) * 5)"; paddingLeft: "calc(var(--t-spacing) * 5)"`. */
3435
3447
  get p5(): CssBuilder<T & {
3436
3448
  paddingTop: csstype.Property.PaddingTop<string | 0> | undefined;
3437
3449
  } & {
@@ -3441,7 +3453,7 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
3441
3453
  } & {
3442
3454
  paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
3443
3455
  }, S>;
3444
- /** Sets `paddingTop: "48px"; paddingBottom: "48px"; paddingRight: "48px"; paddingLeft: "48px"`. */
3456
+ /** Sets `paddingTop: "calc(var(--t-spacing) * 6)"; paddingBottom: "calc(var(--t-spacing) * 6)"; paddingRight: "calc(var(--t-spacing) * 6)"; paddingLeft: "calc(var(--t-spacing) * 6)"`. */
3445
3457
  get p6(): CssBuilder<T & {
3446
3458
  paddingTop: csstype.Property.PaddingTop<string | 0> | undefined;
3447
3459
  } & {
@@ -3451,7 +3463,7 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
3451
3463
  } & {
3452
3464
  paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
3453
3465
  }, S>;
3454
- /** Sets `paddingTop: "56px"; paddingBottom: "56px"; paddingRight: "56px"; paddingLeft: "56px"`. */
3466
+ /** Sets `paddingTop: "calc(var(--t-spacing) * 7)"; paddingBottom: "calc(var(--t-spacing) * 7)"; paddingRight: "calc(var(--t-spacing) * 7)"; paddingLeft: "calc(var(--t-spacing) * 7)"`. */
3455
3467
  get p7(): CssBuilder<T & {
3456
3468
  paddingTop: csstype.Property.PaddingTop<string | 0> | undefined;
3457
3469
  } & {
@@ -3461,7 +3473,7 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
3461
3473
  } & {
3462
3474
  paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
3463
3475
  }, S>;
3464
- /** Sets `paddingTop: "64px"; paddingBottom: "64px"; paddingRight: "64px"; paddingLeft: "64px"`. */
3476
+ /** Sets `paddingTop: "calc(var(--t-spacing) * 8)"; paddingBottom: "calc(var(--t-spacing) * 8)"; paddingRight: "calc(var(--t-spacing) * 8)"; paddingLeft: "calc(var(--t-spacing) * 8)"`. */
3465
3477
  get p8(): CssBuilder<T & {
3466
3478
  paddingTop: csstype.Property.PaddingTop<string | 0> | undefined;
3467
3479
  } & {
@@ -3871,39 +3883,39 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
3871
3883
  maxwPx(px: number): CssBuilder<T & {
3872
3884
  maxWidth: csstype.Property.MaxWidth<string | 0> | undefined;
3873
3885
  }, S>;
3874
- /** Sets `width: "0px"`. */
3886
+ /** Sets `width: "calc(var(--t-spacing) * 0)"`. */
3875
3887
  get w0(): CssBuilder<T & {
3876
3888
  width: csstype.Property.Width<string | 0> | undefined;
3877
3889
  }, S>;
3878
- /** Sets `width: "8px"`. */
3890
+ /** Sets `width: "calc(var(--t-spacing) * 1)"`. */
3879
3891
  get w1(): CssBuilder<T & {
3880
3892
  width: csstype.Property.Width<string | 0> | undefined;
3881
3893
  }, S>;
3882
- /** Sets `width: "16px"`. */
3894
+ /** Sets `width: "calc(var(--t-spacing) * 2)"`. */
3883
3895
  get w2(): CssBuilder<T & {
3884
3896
  width: csstype.Property.Width<string | 0> | undefined;
3885
3897
  }, S>;
3886
- /** Sets `width: "24px"`. */
3898
+ /** Sets `width: "calc(var(--t-spacing) * 3)"`. */
3887
3899
  get w3(): CssBuilder<T & {
3888
3900
  width: csstype.Property.Width<string | 0> | undefined;
3889
3901
  }, S>;
3890
- /** Sets `width: "32px"`. */
3902
+ /** Sets `width: "calc(var(--t-spacing) * 4)"`. */
3891
3903
  get w4(): CssBuilder<T & {
3892
3904
  width: csstype.Property.Width<string | 0> | undefined;
3893
3905
  }, S>;
3894
- /** Sets `width: "40px"`. */
3906
+ /** Sets `width: "calc(var(--t-spacing) * 5)"`. */
3895
3907
  get w5(): CssBuilder<T & {
3896
3908
  width: csstype.Property.Width<string | 0> | undefined;
3897
3909
  }, S>;
3898
- /** Sets `width: "48px"`. */
3910
+ /** Sets `width: "calc(var(--t-spacing) * 6)"`. */
3899
3911
  get w6(): CssBuilder<T & {
3900
3912
  width: csstype.Property.Width<string | 0> | undefined;
3901
3913
  }, S>;
3902
- /** Sets `width: "56px"`. */
3914
+ /** Sets `width: "calc(var(--t-spacing) * 7)"`. */
3903
3915
  get w7(): CssBuilder<T & {
3904
3916
  width: csstype.Property.Width<string | 0> | undefined;
3905
3917
  }, S>;
3906
- /** Sets `width: "64px"`. */
3918
+ /** Sets `width: "calc(var(--t-spacing) * 8)"`. */
3907
3919
  get w8(): CssBuilder<T & {
3908
3920
  width: csstype.Property.Width<string | 0> | undefined;
3909
3921
  }, S>;
@@ -4098,6 +4110,7 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
4098
4110
  *
4099
4111
  * `when(":hover")` — same semantics as `onHover`
4100
4112
  * `when(":hover:not(:disabled)")` — hover only while enabled
4113
+ * `when('[data-state="open"]')` — match an element state attribute
4101
4114
  */
4102
4115
  when(selector: string): CssBuilder<T, S>;
4103
4116
  /**
@@ -4110,7 +4123,7 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
4110
4123
  /**
4111
4124
  * Apply different styles for each selector in the object.
4112
4125
  *
4113
- * `when({ ":hover": Css.blue.$, ":focus": Css.red.$ })`
4126
+ * `when({ ":hover": Css.blue.$, '[data-state="open"]': Css.red.$ })`
4114
4127
  */
4115
4128
  when<W extends Record<string, Properties>>(selectors: W): CssBuilder<T & UnionToIntersection<W[keyof W]>, S>;
4116
4129
  ifContainer(_props: {
@@ -4146,6 +4159,8 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
4146
4159
  className(className: string | undefined): CssBuilder<T, S>;
4147
4160
  /** Marker for the build-time transform to append raw inline styles. */
4148
4161
  style(inlineStyle: InlineStyle): CssBuilder<T, S>;
4162
+ /** Set CSS custom properties via atomic classes (resolved at build time on web). */
4163
+ setVar(_values: Partial<Record<CssSetVarKeys, CssSetVarValue>>): CssBuilder<T, S>;
4149
4164
  /** Convert a style hash into `{ className, style }` props for manual spreading into non-`css=` contexts. */
4150
4165
  props(styles: Properties): Record<string, unknown>;
4151
4166
  /** Tagged template literal for raw CSS in .css.ts files; passes through the string as-is. */
@@ -4156,7 +4171,7 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
4156
4171
  private unsupportedRuntime;
4157
4172
  private newCss;
4158
4173
  }
4159
- /** Converts `inc` into pixels value with a `px` suffix. */
4174
+ /** Converts `inc` into a spacing length using `--t-spacing` (build-time atomic CSS). */
4160
4175
  declare function maybeInc(inc: number | string): string;
4161
4176
  /** Converts `inc` into pixels. */
4162
4177
  declare function increment(inc: number): number;
@@ -6639,6 +6654,7 @@ type RadioFieldOption<K extends string> = {
6639
6654
  /** Disable only specific option, with an optional reason */
6640
6655
  disabled?: boolean | ReactNode;
6641
6656
  };
6657
+ type RadioGroupFieldLayout = "vertical" | "horizontal";
6642
6658
  type RadioGroupFieldProps<K extends string> = {
6643
6659
  /** The label for the choice itself, i.e. "Favorite Cheese". */
6644
6660
  label: string;
@@ -6653,6 +6669,8 @@ type RadioGroupFieldProps<K extends string> = {
6653
6669
  helperText?: string | ReactNode;
6654
6670
  onBlur?: () => void;
6655
6671
  onFocus?: () => void;
6672
+ /** Direction of the options. Defaults to "vertical". */
6673
+ layout?: RadioGroupFieldLayout;
6656
6674
  } & Pick<PresentationFieldProps, "labelStyle">;
6657
6675
  /**
6658
6676
  * Provides a radio group with label.
@@ -7668,173 +7686,6 @@ type HeaderBreadcrumb = {
7668
7686
  right?: ReactNode;
7669
7687
  };
7670
7688
 
7671
- type FormSection<F> = {
7672
- title?: string;
7673
- icon?: IconKey;
7674
- rows: BoundFormInputConfig<F>;
7675
- };
7676
- type FormSectionConfig<F> = FormSection<F>[];
7677
- type ActionButtonProps$1 = Pick<ButtonProps, "onClick" | "label" | "disabled" | "tooltip">;
7678
- type FormPageLayoutProps<F> = {
7679
- pageTitle: string;
7680
- breadCrumb?: HeaderBreadcrumb | HeaderBreadcrumb[];
7681
- formState: ObjectState<F>;
7682
- formSections: FormSectionConfig<F>;
7683
- submitAction: ActionButtonProps$1;
7684
- cancelAction?: ActionButtonProps$1;
7685
- tertiaryAction?: ActionButtonProps$1;
7686
- rightSideBar?: SidebarContentProps[];
7687
- };
7688
- declare function FormPageLayoutComponent<F>(props: FormPageLayoutProps<F>): JSX.Element;
7689
- declare const FormPageLayout: typeof FormPageLayoutComponent;
7690
-
7691
- /** Provides a way to extend the full width of the ScrollableParent */
7692
- declare function FullBleed({ children, omitPadding }: {
7693
- children: ReactElement;
7694
- omitPadding?: boolean;
7695
- }): ReactElement<any, string | React$1.JSXElementConstructor<any>>;
7696
-
7697
- type BreakpointsType = Record<Breakpoint, boolean>;
7698
- /**
7699
- * A React hook to return a record of responsive breakpoints that updates on resize.
7700
- *
7701
- * @example
7702
- * const breakpoints = useBreakpoint();
7703
- * if (breakpoints.mdAndDown) { ...do something cool }
7704
- */
7705
- declare function useBreakpoint(): BreakpointsType;
7706
-
7707
- /**
7708
- * Evaluates a computed function `fn` to a regular value and triggers a re-render whenever it changes.
7709
- *
7710
- * Some examples:
7711
- *
7712
- * ```ts
7713
- * // Good, watching a single value
7714
- * const firstName = useComputed(() => author.firstName, [author]);
7715
- *
7716
- * // Good, watching multiple values in a single `useComputed`
7717
- * const { firstName, lastName } = useComputed(() => {
7718
- * // Make sure to read the values
7719
- * const { firstName, lastName } = author;
7720
- * return { firstName, lastName };
7721
- * }, [author]);
7722
- *
7723
- * // Good, watching a form-state field
7724
- * const firstName = useComputed(() => {
7725
- * return formState.firstName.value;
7726
- * }, [formState]);
7727
- *
7728
- * // Good, watching an observable `formState` + a POJO/immutable `items` which is not an observable
7729
- * const item = useComputed(() => {
7730
- * return items.find((i) => i.id === formState.itemId.value);
7731
- * }, [formState, items]);
7732
- *
7733
- * // Bad, fn and deps are "watching the same thing".
7734
- * const firstName = useComputed(() => {
7735
- * return formState.firstName.value;
7736
- * }, [formState.firstName.value]);
7737
- * ```
7738
- *
7739
- * Note that the difference between the `fn` and the `deps` is:
7740
- *
7741
- * - `fn` is "which values we are watching in the observable" (i.e. store or `formState`), and
7742
- * - `deps` is "which observable we're watching" (i.e. store or `formState`)
7743
- *
7744
- * So the `deps` array shouldn't overlap with any of the "watched values" of the `fn` lambda,
7745
- * other than the root observer itself (which admittedly should rarely change, i.e. our stores
7746
- * are generally global-ish/very stable, but can change if the user switches pages i.e. "from
7747
- * editing author:1 t editing author:2").
7748
- */
7749
- declare function useComputed<T>(fn: (prev: T | undefined) => T, deps: readonly any[]): T;
7750
-
7751
- interface UsePersistedFilterProps$1<F> {
7752
- filterDefs: FilterDefs<F>;
7753
- }
7754
- interface FilterHook<F> {
7755
- filter: F;
7756
- setFilter: (filter: F) => void;
7757
- }
7758
- declare function useFilter<F>({ filterDefs }: UsePersistedFilterProps$1<F>): FilterHook<F>;
7759
-
7760
- interface GroupByHook<G extends string> {
7761
- /** The current group by value. */
7762
- value: G;
7763
- /** Called when the group by have changed. */
7764
- setValue: (groupBy: G) => void;
7765
- /** The list of group by options. */
7766
- options: Array<{
7767
- id: G;
7768
- name: string;
7769
- }>;
7770
- }
7771
- declare function useGroupBy<G extends string>(opts: Record<G, string>): GroupByHook<G>;
7772
-
7773
- interface useHoverProps {
7774
- onHoverStart?: VoidFunction;
7775
- onHoverEnd?: VoidFunction;
7776
- onHoverChange?: (isHovering: boolean) => void;
7777
- disabled?: boolean;
7778
- }
7779
- declare function useHover(props: useHoverProps): {
7780
- hoverProps: HTMLAttributes<HTMLElement>;
7781
- isHovered: boolean;
7782
- };
7783
-
7784
- type UsePersistedFilterProps<F> = {
7785
- filterDefs: FilterDefs<F>;
7786
- storageKey: string;
7787
- };
7788
- type PersistedFilterHook<F> = {
7789
- filter: F;
7790
- setFilter: (filter: F) => void;
7791
- };
7792
- /**
7793
- * Persists filter details in both browser storage and query parameters.
7794
- * If a valid filter is present in the query params, then that will be used.
7795
- * Otherwise it looks at browser storage, and finally the defaultFilter prop.
7796
- */
7797
- declare function usePersistedFilter<F>({ storageKey, filterDefs }: UsePersistedFilterProps<F>): PersistedFilterHook<F>;
7798
-
7799
- type UseQueryState<V> = [V, (value: V) => void];
7800
- /**
7801
- * Very similar to `useState` but persists in the query string.
7802
- *
7803
- * It currently doesn't fallback on session storage, which maybe it should if
7804
- * this is used for group bys, b/c that is what usePersistedFilter does.
7805
- *
7806
- * Also only supports string values right now.
7807
- */
7808
- declare function useQueryState<V extends string = string>(name: string, initialValue: V): UseQueryState<V>;
7809
-
7810
- type UseSessionStorage<T> = [T, (value: T) => void];
7811
- declare function useSessionStorage<T>(key: string, defaultValue: T): UseSessionStorage<T>;
7812
-
7813
- /**
7814
- * Page settings, either a pageNumber+pageSize or offset+limit.
7815
- *
7816
- * This component is implemented in terms of "page number + page size",
7817
- * but our backend wants offset+limit, so we accept both and translate.
7818
- */
7819
- type PageSettings = PageNumberAndSize | OffsetAndLimit;
7820
- type PageNumberAndSize = {
7821
- pageNumber: number;
7822
- pageSize: number;
7823
- };
7824
- type OffsetAndLimit = {
7825
- offset: number;
7826
- limit: number;
7827
- };
7828
- declare const defaultPage: OffsetAndLimit;
7829
- interface PaginationProps {
7830
- page: readonly [PageNumberAndSize, Dispatch<PageNumberAndSize>] | readonly [OffsetAndLimit, Dispatch<OffsetAndLimit>];
7831
- totalCount: number;
7832
- pageSizes?: number[];
7833
- }
7834
- declare function Pagination(props: PaginationProps): JSX.Element;
7835
- declare function toLimitAndOffset(page: PageSettings): OffsetAndLimit;
7836
- declare function toPageNumberSize(page: PageSettings): PageNumberAndSize;
7837
-
7838
7689
  interface GridTableCollapseToggleProps extends Pick<IconButtonProps, "compact"> {
7839
7690
  row: GridDataRow<any>;
7840
7691
  }
@@ -8042,8 +7893,8 @@ type QueryResult<QData> = {
8042
7893
  data?: QData;
8043
7894
  };
8044
7895
 
8045
- type ActionButtonMenuProps = Omit<ButtonMenuProps, "trigger">;
8046
- type ActionButtonProps = Pick<ButtonProps, "onClick" | "label" | "disabled" | "tooltip">;
7896
+ /** Shared action button props used across layout header and panel components. */
7897
+ type ActionButtonProps = Pick<ButtonProps, "onClick" | "label" | "disabled" | "tooltip" | "icon">;
8047
7898
  type OmittedTableProps = "filter" | "stickyHeader" | "style" | "rows";
8048
7899
  type BaseTableProps<R extends Kinded, X extends Only<GridTableXss, X>> = Omit<GridTableProps<R, X>, OmittedTableProps>;
8049
7900
  type GridTablePropsWithRows<R extends Kinded, X extends Only<GridTableXss, X>> = BaseTableProps<R, X> & {
@@ -8051,20 +7902,193 @@ type GridTablePropsWithRows<R extends Kinded, X extends Only<GridTableXss, X>> =
8051
7902
  query?: never;
8052
7903
  createRows?: never;
8053
7904
  };
8054
- type QueryTablePropsWithQuery<R extends Kinded, X extends Only<GridTableXss, X>, QData> = BaseTableProps<R, X> & {
7905
+ type BaseQueryTableProps<R extends Kinded, X extends Only<GridTableXss, X>, QData> = BaseTableProps<R, X> & {
8055
7906
  query: QueryResult<QData>;
8056
7907
  createRows: (data: QData | undefined) => GridDataRow<R>[];
7908
+ rows?: never;
7909
+ };
7910
+ declare function isGridTableProps<R extends Kinded, X extends Only<GridTableXss, X>, Q extends {
7911
+ rows?: never;
7912
+ }>(props: GridTablePropsWithRows<R, X> | Q): props is GridTablePropsWithRows<R, X>;
7913
+
7914
+ type FormSection<F> = {
7915
+ title?: string;
7916
+ icon?: IconKey;
7917
+ rows: BoundFormInputConfig<F>;
7918
+ };
7919
+ type FormSectionConfig<F> = FormSection<F>[];
7920
+ type FormPageLayoutProps<F> = {
7921
+ pageTitle: ReactNode;
7922
+ breadCrumb?: HeaderBreadcrumb | HeaderBreadcrumb[];
7923
+ formState: ObjectState<F>;
7924
+ formSections: FormSectionConfig<F>;
7925
+ submitAction: ActionButtonProps;
7926
+ cancelAction?: ActionButtonProps;
7927
+ tertiaryAction?: ActionButtonProps;
7928
+ rightSideBar?: SidebarContentProps[];
7929
+ };
7930
+ declare function FormPageLayoutComponent<F>(props: FormPageLayoutProps<F>): JSX.Element;
7931
+ declare const FormPageLayout: typeof FormPageLayoutComponent;
7932
+
7933
+ /** Provides a way to extend the full width of the ScrollableParent */
7934
+ declare function FullBleed({ children, omitPadding }: {
7935
+ children: ReactElement;
7936
+ omitPadding?: boolean;
7937
+ }): ReactElement<any, string | React$1.JSXElementConstructor<any>>;
7938
+
7939
+ type BreakpointsType = Record<Breakpoint, boolean>;
7940
+ /**
7941
+ * A React hook to return a record of responsive breakpoints that updates on resize.
7942
+ *
7943
+ * @example
7944
+ * const breakpoints = useBreakpoint();
7945
+ * if (breakpoints.mdAndDown) { ...do something cool }
7946
+ */
7947
+ declare function useBreakpoint(): BreakpointsType;
7948
+
7949
+ /**
7950
+ * Evaluates a computed function `fn` to a regular value and triggers a re-render whenever it changes.
7951
+ *
7952
+ * Some examples:
7953
+ *
7954
+ * ```ts
7955
+ * // Good, watching a single value
7956
+ * const firstName = useComputed(() => author.firstName, [author]);
7957
+ *
7958
+ * // Good, watching multiple values in a single `useComputed`
7959
+ * const { firstName, lastName } = useComputed(() => {
7960
+ * // Make sure to read the values
7961
+ * const { firstName, lastName } = author;
7962
+ * return { firstName, lastName };
7963
+ * }, [author]);
7964
+ *
7965
+ * // Good, watching a form-state field
7966
+ * const firstName = useComputed(() => {
7967
+ * return formState.firstName.value;
7968
+ * }, [formState]);
7969
+ *
7970
+ * // Good, watching an observable `formState` + a POJO/immutable `items` which is not an observable
7971
+ * const item = useComputed(() => {
7972
+ * return items.find((i) => i.id === formState.itemId.value);
7973
+ * }, [formState, items]);
7974
+ *
7975
+ * // Bad, fn and deps are "watching the same thing".
7976
+ * const firstName = useComputed(() => {
7977
+ * return formState.firstName.value;
7978
+ * }, [formState.firstName.value]);
7979
+ * ```
7980
+ *
7981
+ * Note that the difference between the `fn` and the `deps` is:
7982
+ *
7983
+ * - `fn` is "which values we are watching in the observable" (i.e. store or `formState`), and
7984
+ * - `deps` is "which observable we're watching" (i.e. store or `formState`)
7985
+ *
7986
+ * So the `deps` array shouldn't overlap with any of the "watched values" of the `fn` lambda,
7987
+ * other than the root observer itself (which admittedly should rarely change, i.e. our stores
7988
+ * are generally global-ish/very stable, but can change if the user switches pages i.e. "from
7989
+ * editing author:1 t editing author:2").
7990
+ */
7991
+ declare function useComputed<T>(fn: (prev: T | undefined) => T, deps: readonly any[]): T;
7992
+
7993
+ interface UsePersistedFilterProps$1<F> {
7994
+ filterDefs: FilterDefs<F>;
7995
+ }
7996
+ interface FilterHook<F> {
7997
+ filter: F;
7998
+ setFilter: (filter: F) => void;
7999
+ }
8000
+ declare function useFilter<F>({ filterDefs }: UsePersistedFilterProps$1<F>): FilterHook<F>;
8001
+
8002
+ interface GroupByHook<G extends string> {
8003
+ /** The current group by value. */
8004
+ value: G;
8005
+ /** Called when the group by have changed. */
8006
+ setValue: (groupBy: G) => void;
8007
+ /** The list of group by options. */
8008
+ options: Array<{
8009
+ id: G;
8010
+ name: string;
8011
+ }>;
8012
+ }
8013
+ declare function useGroupBy<G extends string>(opts: Record<G, string>): GroupByHook<G>;
8014
+
8015
+ interface useHoverProps {
8016
+ onHoverStart?: VoidFunction;
8017
+ onHoverEnd?: VoidFunction;
8018
+ onHoverChange?: (isHovering: boolean) => void;
8019
+ disabled?: boolean;
8020
+ }
8021
+ declare function useHover(props: useHoverProps): {
8022
+ hoverProps: HTMLAttributes<HTMLElement>;
8023
+ isHovered: boolean;
8024
+ };
8025
+
8026
+ type UsePersistedFilterProps<F> = {
8027
+ filterDefs: FilterDefs<F>;
8028
+ storageKey: string;
8029
+ };
8030
+ type PersistedFilterHook<F> = {
8031
+ filter: F;
8032
+ setFilter: (filter: F) => void;
8033
+ };
8034
+ /**
8035
+ * Persists filter details in both browser storage and query parameters.
8036
+ * If a valid filter is present in the query params, then that will be used.
8037
+ * Otherwise it looks at browser storage, and finally the defaultFilter prop.
8038
+ */
8039
+ declare function usePersistedFilter<F>({ storageKey, filterDefs }: UsePersistedFilterProps<F>): PersistedFilterHook<F>;
8040
+
8041
+ type UseQueryState<V> = [V, (value: V) => void];
8042
+ /**
8043
+ * Very similar to `useState` but persists in the query string.
8044
+ *
8045
+ * It currently doesn't fallback on session storage, which maybe it should if
8046
+ * this is used for group bys, b/c that is what usePersistedFilter does.
8047
+ *
8048
+ * Also only supports string values right now.
8049
+ */
8050
+ declare function useQueryState<V extends string = string>(name: string, initialValue: V): UseQueryState<V>;
8051
+
8052
+ type UseSessionStorage<T> = [T, (value: T) => void];
8053
+ declare function useSessionStorage<T>(key: string, defaultValue: T): UseSessionStorage<T>;
8054
+
8055
+ /**
8056
+ * Page settings, either a pageNumber+pageSize or offset+limit.
8057
+ *
8058
+ * This component is implemented in terms of "page number + page size",
8059
+ * but our backend wants offset+limit, so we accept both and translate.
8060
+ */
8061
+ type PageSettings = PageNumberAndSize | OffsetAndLimit;
8062
+ type PageNumberAndSize = {
8063
+ pageNumber: number;
8064
+ pageSize: number;
8065
+ };
8066
+ type OffsetAndLimit = {
8067
+ offset: number;
8068
+ limit: number;
8069
+ };
8070
+ declare const defaultPage: OffsetAndLimit;
8071
+ interface PaginationProps {
8072
+ page: readonly [PageNumberAndSize, Dispatch<PageNumberAndSize>] | readonly [OffsetAndLimit, Dispatch<OffsetAndLimit>];
8073
+ totalCount: number;
8074
+ pageSizes?: number[];
8075
+ }
8076
+ declare function Pagination(props: PaginationProps): JSX.Element;
8077
+ declare function toLimitAndOffset(page: PageSettings): OffsetAndLimit;
8078
+ declare function toPageNumberSize(page: PageSettings): PageNumberAndSize;
8079
+
8080
+ type ActionButtonMenuProps = Omit<ButtonMenuProps, "trigger">;
8081
+ type QueryTablePropsWithQuery<R extends Kinded, X extends Only<GridTableXss, X>, QData> = BaseQueryTableProps<R, X, QData> & {
8057
8082
  getPageInfo?: (data: QData) => {
8058
8083
  hasNextPage: boolean;
8059
8084
  };
8060
8085
  emptyFallback?: string;
8061
8086
  keepHeaderWhenLoading?: boolean;
8062
- rows?: never;
8063
8087
  };
8064
8088
  type GridTableLayoutProps<F extends Record<string, unknown>, R extends Kinded, X extends Only<GridTableXss, X>, QData> = {
8065
- pageTitle: string;
8089
+ pageTitle: ReactNode;
8066
8090
  tableProps: GridTablePropsWithRows<R, X> | QueryTablePropsWithQuery<R, X, QData>;
8067
- breadcrumb?: HeaderBreadcrumb | HeaderBreadcrumb[];
8091
+ breadCrumb?: HeaderBreadcrumb | HeaderBreadcrumb[];
8068
8092
  layoutState?: ReturnType<typeof useGridTableLayoutState<F>>;
8069
8093
  /** Renders a ButtonMenu with "verticalDots" icon as trigger */
8070
8094
  actionMenu?: ActionButtonMenuProps;
@@ -8305,6 +8329,36 @@ interface ScrollableParentContextProviderProps {
8305
8329
  declare function ScrollableParent(props: PropsWithChildren<ScrollableParentContextProviderProps>): JSX.Element;
8306
8330
  declare function useScrollableParent(): ScrollableParentContextProps;
8307
8331
 
8332
+ type SidePanelProps = {
8333
+ title: ReactNode;
8334
+ content: ReactNode;
8335
+ primaryAction?: ActionButtonProps;
8336
+ secondaryAction?: ActionButtonProps;
8337
+ };
8338
+ type TableReviewLayoutProps<R extends Kinded, X extends Only<GridTableXss, X>, QData> = {
8339
+ pageTitle: ReactNode;
8340
+ breadCrumb?: HeaderBreadcrumb | HeaderBreadcrumb[];
8341
+ /** Instructional text rendered below the title, above the table. */
8342
+ description: ReactNode;
8343
+ closeAction: VoidFunction;
8344
+ tableProps: GridTablePropsWithRows<R, X> | BaseQueryTableProps<R, X, QData>;
8345
+ /**
8346
+ * Replaces the table region with centered content.
8347
+ *
8348
+ * For rows-based tables: shown automatically when `tableProps.rows` contains no data rows.
8349
+ * For query-based tables: shown when prop is defined; TableReviewLayout does not peek into query results to determine if empty.
8350
+ */
8351
+ emptyState?: ReactNode;
8352
+ /**
8353
+ * When set, slides open the panel column and renders a `SidePanel` with the given props.
8354
+ */
8355
+ panelContent?: SidePanelProps;
8356
+ onPanelClose?: VoidFunction;
8357
+ /** Defaults to 450. */
8358
+ rightPaneWidth?: number;
8359
+ };
8360
+ declare function TableReviewLayout<R extends Kinded, X extends Only<GridTableXss, X>, QData>(props: TableReviewLayoutProps<R, X, QData>): JSX.Element;
8361
+
8308
8362
  interface LoaderProps {
8309
8363
  size?: "xs" | "sm" | "md" | "lg";
8310
8364
  contrast?: boolean;
@@ -8559,4 +8613,4 @@ declare function resolveTooltip(disabled?: boolean | ReactNode, tooltip?: ReactN
8559
8613
  */
8560
8614
  declare function defaultTestId(label: string): string;
8561
8615
 
8562
- export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, AutoSaveIndicator, AutoSaveStatus, AutoSaveStatusContext, AutoSaveStatusProvider, Autocomplete, type AutocompleteProps, Avatar, AvatarButton, type AvatarButtonProps, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, Banner, type BannerProps, type BannerTypes, BaseFilter, type BeamButtonProps, type BeamFocusableProps, BeamProvider, type BeamTextFieldProps, BoundCheckboxField, type BoundCheckboxFieldProps, BoundCheckboxGroupField, type BoundCheckboxGroupFieldProps, BoundChipSelectField, BoundDateField, type BoundDateFieldProps, BoundDateRangeField, type BoundDateRangeFieldProps, BoundForm, type BoundFormInputConfig, type BoundFormProps, type BoundFormRowInputs, BoundIconCardField, type BoundIconCardFieldProps, BoundIconCardGroupField, type BoundIconCardGroupFieldProps, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breakpoint, Breakpoints, type BuildtimeStyles, Button, ButtonDatePicker, ButtonGroup, type ButtonGroupButton, type ButtonGroupProps, ButtonMenu, type ButtonMenuProps, ButtonModal, type ButtonModalProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardProps, type CardTag, type CardType, type CheckFn, Checkbox, CheckboxGroup, type CheckboxGroupItemOption, type CheckboxGroupProps, type CheckboxProps, Chip, type ChipProps, ChipSelectField, type ChipSelectFieldProps, type ChipType, ChipTypes, type ChipValue, Chips, type ChipsProps, CollapseToggle, CollapsedContext, ConfirmCloseModal, type ContentStack, Copy, CountBadge, type CountBadgeProps, Css, CssReset, DESC, DateField, type DateFieldFormat, type DateFieldMode, type DateFieldProps, type DateFilterValue, type DateMatcher, type DateRange, DateRangeField, type DateRangeFieldProps, type DateRangeFilterValue, type Direction, type DiscriminateUnion, type DividerMenuItemType, DnDGrid, DnDGridItemHandle, type DnDGridItemHandleProps, type DnDGridItemProps, type DnDGridProps, type DragData, EXPANDABLE_HEADER, EditColumnsButton, ErrorMessage, FieldGroup, type Filter, type FilterDefs, _FilterDropdownMenu as FilterDropdownMenu, type FilterImpls, FilterModal, _Filters as Filters, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, type FormSectionConfig, type FormWidth, FullBleed, type GridCellAlignment, type GridCellContent, type GridColumn, type GridColumnBorder, type GridColumnWithId, type GridDataRow, type GridRowKind, type GridRowLookup, type GridSortConfig, type GridStyle, GridTable, type GridTableApi, type GridTableCollapseToggleProps, type GridTableDefaults, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, HelperText, Icon, IconButton, type IconButtonProps, IconCard, type IconCardProps, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type InfiniteScroll, type InlineStyle, type InputStylePalette, KEPT_GROUP, type Kinded, Loader, LoadingSkeleton, type LoadingSkeletonProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBody, ModalFilterItem, ModalFooter, ModalHeader, type ModalProps, type ModalSize, MultiLineSelectField, type MultiLineSelectFieldProps, MultiSelectField, type MultiSelectFieldProps, NavLink, type NestedOption, type NestedOptionsOrLoad, NumberField, type NumberFieldProps, type NumberFieldType, type OffsetAndLimit, type OnRowDragEvent, type OnRowSelect, type Only, type OpenDetailOpts, type OpenInDrawerOpts, OpenModal, type OpenRightPaneOpts, type Optional, type Padding, type PageNumberAndSize, type PageSettings, Pagination, type PaginationConfig, Palette, type Pin, type Placement, type PlainDate, type PresentationFieldProps, PresentationProvider, PreventBrowserScroll, type Properties, RIGHT_SIDEBAR_MIN_WIDTH, type RadioFieldOption, RadioGroupField, type RadioGroupFieldProps, type RenderAs, type RenderCellFn, ResponsiveGrid, type ResponsiveGridConfig, ResponsiveGridContext, ResponsiveGridItem, type ResponsiveGridItemProps, type ResponsiveGridProps, RichTextField, RichTextFieldImpl, type RichTextFieldProps, RightPaneContext, RightPaneLayout, type RightPaneLayoutContextProps, RightPaneProvider, RightSidebar, type RightSidebarProps, type RouteTab, type RouteTabWithContent, Row, type RowStyle, type RowStyles, RuntimeCss, type RuntimeStyles, ScrollShadows, ScrollableContent, ScrollableFooter, ScrollableParent, SelectField, type SelectFieldProps, SelectToggle, type SelectedState, type SidebarContentProps, type SimpleHeaderAndData, SortHeader, type SortOn, type SortState, StaticField, type Step, Stepper, type StepperProps, type StyleKind, SubmitButton, type SubmitButtonProps, SuperDrawerContent, SuperDrawerHeader, SuperDrawerWidth, type SupportedDateFormat, Switch, type SwitchProps, TOTALS, type Tab, TabContent, type TabWithContent, TableState, TableStateContext, Tabs, TabsWithContent, Tag, type TagType, type TestIds, TextAreaField, type TextAreaFieldProps, TextField, type TextFieldApi, type TextFieldInternalProps, type TextFieldProps, type TextFieldXss, Toast, ToggleButton, type ToggleButtonProps, ToggleChip, ToggleChipGroup, type ToggleChipGroupProps, type ToggleChipProps, ToggleChips, type ToggleChipsProps, Tooltip, TreeSelectField, type TreeSelectFieldProps, type TriggerNoticeProps, type Typography, type UseModalHook, type UsePersistedFilterProps, type UseQueryState, type UseRightPaneHook, type UseSnackbarHook, type UseSuperDrawerHook, type UseToastProps, type Value, type Xss, actionColumn, applyRowFn, assignDefaultColumnIds, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundIconCardField, boundIconCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnSizes, cardStyle, checkboxFilter, chipBaseStyles, chipDisabledStyles, chipHoverOnlyStyles, chipHoverStyles, collapseColumn, column, condensedStyle, createRowLookup, dateColumn, dateFilter, dateFormats, dateRangeFilter, defaultPage, defaultRenderFn, defaultStyle, defaultTestId, dragHandleColumn, emptyCell, ensureClientSideSortValueIsSortable, filterTestIdPrefix, formatDate, formatDateRange, formatPlainDate, formatValue, generateColumnId, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getJustification, getTableRefWidthStyles, getTableStyles, headerRenderFn, hoverStyles, iconButtonCircleStylesHover, iconButtonContrastStylesHover, iconButtonStylesHover, iconCardStylesHover, increment, insertAtIndex, isCursorBelowMidpoint, isGridCellContent, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeInc, maybeTooltip, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, selectedStyles, setDefaultStyle, setGridTableDefaults, setRunningInJest, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBreakpoint, useComputed, useDnDGridItem, type useDnDGridItemProps, useFilter, useGridTableApi, useGridTableLayoutState, useGroupBy, useHover, useModal, usePersistedFilter, useQueryState, useResponsiveGrid, useResponsiveGridItem, type useResponsiveGridProps, useRightPane, useRightPaneContext, useRuntimeStyle, useScrollableParent, useSessionStorage, useSetupColumnSizes, useSnackbar, useSuperDrawer, useTestIds, useToast, useTreeSelectFieldProvider, useVirtualizedScrollParent, visit, zIndices };
8616
+ export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, type ActionButtonProps, AutoSaveIndicator, AutoSaveStatus, AutoSaveStatusContext, AutoSaveStatusProvider, Autocomplete, type AutocompleteProps, Avatar, AvatarButton, type AvatarButtonProps, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, Banner, type BannerProps, type BannerTypes, BaseFilter, type BaseQueryTableProps, type BaseTableProps, type BeamButtonProps, type BeamFocusableProps, BeamProvider, type BeamTextFieldProps, BoundCheckboxField, type BoundCheckboxFieldProps, BoundCheckboxGroupField, type BoundCheckboxGroupFieldProps, BoundChipSelectField, BoundDateField, type BoundDateFieldProps, BoundDateRangeField, type BoundDateRangeFieldProps, BoundForm, type BoundFormInputConfig, type BoundFormProps, type BoundFormRowInputs, BoundIconCardField, type BoundIconCardFieldProps, BoundIconCardGroupField, type BoundIconCardGroupFieldProps, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breakpoint, Breakpoints, type BuildtimeStyles, Button, ButtonDatePicker, ButtonGroup, type ButtonGroupButton, type ButtonGroupProps, ButtonMenu, type ButtonMenuProps, ButtonModal, type ButtonModalProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardProps, type CardTag, type CardType, type CheckFn, Checkbox, CheckboxGroup, type CheckboxGroupItemOption, type CheckboxGroupProps, type CheckboxProps, Chip, type ChipProps, ChipSelectField, type ChipSelectFieldProps, type ChipType, ChipTypes, type ChipValue, Chips, type ChipsProps, CollapseToggle, CollapsedContext, ConfirmCloseModal, type ContentStack, Copy, CountBadge, type CountBadgeProps, Css, CssReset, type CssSetVarKeys, type CssSetVarScalar, type CssSetVarValue, DESC, DateField, type DateFieldFormat, type DateFieldMode, type DateFieldProps, type DateFilterValue, type DateMatcher, type DateRange, DateRangeField, type DateRangeFieldProps, type DateRangeFilterValue, type Direction, type DiscriminateUnion, type DividerMenuItemType, DnDGrid, DnDGridItemHandle, type DnDGridItemHandleProps, type DnDGridItemProps, type DnDGridProps, type DragData, EXPANDABLE_HEADER, EditColumnsButton, ErrorMessage, FieldGroup, type Filter, type FilterDefs, _FilterDropdownMenu as FilterDropdownMenu, type FilterImpls, FilterModal, _Filters as Filters, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, type FormSectionConfig, type FormWidth, FullBleed, type GridCellAlignment, type GridCellContent, type GridColumn, type GridColumnBorder, type GridColumnWithId, type GridDataRow, type GridRowKind, type GridRowLookup, type GridSortConfig, type GridStyle, GridTable, type GridTableApi, type GridTableCollapseToggleProps, type GridTableDefaults, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTablePropsWithRows, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, HelperText, Icon, IconButton, type IconButtonProps, IconCard, type IconCardProps, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type InfiniteScroll, type InlineStyle, type InputStylePalette, KEPT_GROUP, type Kinded, Loader, LoadingSkeleton, type LoadingSkeletonProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBody, ModalFilterItem, ModalFooter, ModalHeader, type ModalProps, type ModalSize, MultiLineSelectField, type MultiLineSelectFieldProps, MultiSelectField, type MultiSelectFieldProps, NavLink, type NestedOption, type NestedOptionsOrLoad, NumberField, type NumberFieldProps, type NumberFieldType, type OffsetAndLimit, type OnRowDragEvent, type OnRowSelect, type Only, type OpenDetailOpts, type OpenInDrawerOpts, OpenModal, type OpenRightPaneOpts, type Optional, type Padding, type PageNumberAndSize, type PageSettings, Pagination, type PaginationConfig, Palette, type Pin, type Placement, type PlainDate, type PresentationFieldProps, PresentationProvider, PreventBrowserScroll, type Properties, RIGHT_SIDEBAR_MIN_WIDTH, type RadioFieldOption, RadioGroupField, type RadioGroupFieldProps, type RenderAs, type RenderCellFn, ResponsiveGrid, type ResponsiveGridConfig, ResponsiveGridContext, ResponsiveGridItem, type ResponsiveGridItemProps, type ResponsiveGridProps, RichTextField, RichTextFieldImpl, type RichTextFieldProps, RightPaneContext, RightPaneLayout, type RightPaneLayoutContextProps, RightPaneProvider, RightSidebar, type RightSidebarProps, type RouteTab, type RouteTabWithContent, Row, type RowStyle, type RowStyles, RuntimeCss, type RuntimeStyles, ScrollShadows, ScrollableContent, ScrollableFooter, ScrollableParent, SelectField, type SelectFieldProps, SelectToggle, type SelectedState, type SidePanelProps, type SidebarContentProps, type SimpleHeaderAndData, SortHeader, type SortOn, type SortState, StaticField, type Step, Stepper, type StepperProps, type StyleKind, SubmitButton, type SubmitButtonProps, SuperDrawerContent, SuperDrawerHeader, SuperDrawerWidth, type SupportedDateFormat, Switch, type SwitchProps, TOTALS, type Tab, TabContent, type TabWithContent, TableReviewLayout, type TableReviewLayoutProps, TableState, TableStateContext, Tabs, TabsWithContent, Tag, type TagType, type TestIds, TextAreaField, type TextAreaFieldProps, TextField, type TextFieldApi, type TextFieldInternalProps, type TextFieldProps, type TextFieldXss, Toast, ToggleButton, type ToggleButtonProps, ToggleChip, ToggleChipGroup, type ToggleChipGroupProps, type ToggleChipProps, ToggleChips, type ToggleChipsProps, Tooltip, TreeSelectField, type TreeSelectFieldProps, type TriggerNoticeProps, type Typography, type UseModalHook, type UsePersistedFilterProps, type UseQueryState, type UseRightPaneHook, type UseSnackbarHook, type UseSuperDrawerHook, type UseToastProps, type Value, type Xss, actionColumn, applyRowFn, assignDefaultColumnIds, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundIconCardField, boundIconCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnSizes, cardStyle, checkboxFilter, chipBaseStyles, chipDisabledStyles, chipHoverOnlyStyles, chipHoverStyles, collapseColumn, column, condensedStyle, createRowLookup, dateColumn, dateFilter, dateFormats, dateRangeFilter, defaultPage, defaultRenderFn, defaultStyle, defaultTestId, dragHandleColumn, emptyCell, ensureClientSideSortValueIsSortable, filterTestIdPrefix, formatDate, formatDateRange, formatPlainDate, formatValue, generateColumnId, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getJustification, getTableRefWidthStyles, getTableStyles, headerRenderFn, hoverStyles, iconButtonCircleStylesHover, iconButtonContrastStylesHover, iconButtonStylesHover, iconCardStylesHover, increment, insertAtIndex, isCursorBelowMidpoint, isGridCellContent, isGridTableProps, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeInc, maybeTooltip, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, selectedStyles, setDefaultStyle, setGridTableDefaults, setRunningInJest, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBreakpoint, useComputed, useDnDGridItem, type useDnDGridItemProps, useFilter, useGridTableApi, useGridTableLayoutState, useGroupBy, useHover, useModal, usePersistedFilter, useQueryState, useResponsiveGrid, useResponsiveGridItem, type useResponsiveGridProps, useRightPane, useRightPaneContext, useRuntimeStyle, useScrollableParent, useSessionStorage, useSetupColumnSizes, useSnackbar, useSuperDrawer, useTestIds, useToast, useTreeSelectFieldProvider, useVirtualizedScrollParent, visit, zIndices };