@codecademy/gamut 68.0.1-alpha.0f6254.0 → 68.0.1-alpha.4aeb6d.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.
Files changed (48) hide show
  1. package/dist/Alert/elements.d.ts +3 -3
  2. package/dist/Anchor/index.d.ts +66 -18
  3. package/dist/Badge/index.d.ts +74 -14
  4. package/dist/Box/Box.d.ts +1 -1
  5. package/dist/Box/FlexBox.d.ts +1 -1
  6. package/dist/Box/GridBox.d.ts +1 -1
  7. package/dist/Box/props.d.ts +204 -40
  8. package/dist/Button/CTAButton.d.ts +2 -2
  9. package/dist/Button/FillButton.d.ts +4 -4
  10. package/dist/Button/IconButton.d.ts +4 -4
  11. package/dist/Button/StrokeButton.d.ts +4 -4
  12. package/dist/Button/TextButton.d.ts +4 -4
  13. package/dist/Button/shared/InlineIconButton.d.ts +2 -2
  14. package/dist/Button/shared/styles.d.ts +193 -41
  15. package/dist/ButtonBase/ButtonBase.d.ts +2 -2
  16. package/dist/Card/elements.d.ts +634 -145
  17. package/dist/ConnectedForm/utils.d.ts +2 -2
  18. package/dist/ContentContainer/index.d.ts +1 -1
  19. package/dist/Disclosure/elements.d.ts +13 -13
  20. package/dist/Form/elements/Form.d.ts +196 -44
  21. package/dist/Form/elements/FormGroup.d.ts +1 -1
  22. package/dist/GridForm/GridFormButtons/index.d.ts +4 -4
  23. package/dist/GridForm/GridFormSections/GridFormSectionBreak.d.ts +144 -28
  24. package/dist/InternalFloatingCard/InternalFloatingCard.d.ts +31 -7
  25. package/dist/Layout/Column.d.ts +61 -13
  26. package/dist/Layout/LayoutGrid.d.ts +61 -13
  27. package/dist/List/elements.d.ts +278 -67
  28. package/dist/Menu/Menu.d.ts +1 -1
  29. package/dist/Menu/elements.d.ts +208 -44
  30. package/dist/Pagination/AnimatedPaginationButtons.d.ts +196 -45
  31. package/dist/Pagination/EllipsisButton.d.ts +4 -4
  32. package/dist/Pagination/PaginationButton.d.ts +6 -6
  33. package/dist/Pagination/utils.d.ts +194 -43
  34. package/dist/Popover/elements.d.ts +2 -2
  35. package/dist/Tabs/TabButton.d.ts +2 -2
  36. package/dist/Tabs/TabNav.d.ts +1 -1
  37. package/dist/Tabs/TabNavLink.d.ts +2 -2
  38. package/dist/Tabs/props.d.ts +60 -12
  39. package/dist/Tag/elements.d.ts +11 -11
  40. package/dist/Tag/types.d.ts +60 -12
  41. package/dist/Tip/InfoTip/InfoTipButton.d.ts +4 -4
  42. package/dist/Tip/InfoTip/styles.d.ts +1 -1
  43. package/dist/Tip/PreviewTip/elements.d.ts +6 -6
  44. package/dist/Tip/ToolTip/elements.d.ts +1 -1
  45. package/dist/Tip/shared/elements.d.ts +3 -3
  46. package/dist/Toggle/elements.d.ts +135 -27
  47. package/dist/Typography/Text.d.ts +76 -16
  48. package/package.json +9 -9
@@ -34,12 +34,10 @@ export declare const AnimatedFadeButton: (props: {
34
34
  suppressContentEditableWarning?: boolean | undefined;
35
35
  suppressHydrationWarning?: boolean | undefined;
36
36
  accessKey?: string | undefined;
37
- autoCapitalize?: (string & {}) | "none" | "off" | "on" | "sentences" | "words" | "characters" | undefined;
38
37
  autoFocus?: boolean | undefined;
39
38
  contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
40
39
  contextMenu?: string | undefined;
41
40
  draggable?: (boolean | "false" | "true") | undefined;
42
- enterKeyHint?: "search" | "next" | "enter" | "done" | "go" | "previous" | "send" | undefined;
43
41
  hidden?: boolean | undefined;
44
42
  id?: string | undefined;
45
43
  lang?: string | undefined;
@@ -60,6 +58,7 @@ export declare const AnimatedFadeButton: (props: {
60
58
  rev?: string | undefined;
61
59
  typeof?: string | undefined;
62
60
  vocab?: string | undefined;
61
+ autoCapitalize?: string | undefined;
63
62
  autoCorrect?: string | undefined;
64
63
  autoSave?: string | undefined;
65
64
  itemProp?: string | undefined;
@@ -72,8 +71,6 @@ export declare const AnimatedFadeButton: (props: {
72
71
  unselectable?: "off" | "on" | undefined;
73
72
  inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
74
73
  is?: string | undefined;
75
- exportparts?: string | undefined;
76
- part?: string | undefined;
77
74
  "aria-activedescendant"?: string | undefined;
78
75
  "aria-atomic"?: (boolean | "false" | "true") | undefined;
79
76
  "aria-autocomplete"?: "none" | "inline" | "both" | "list" | undefined;
@@ -147,7 +144,7 @@ export declare const AnimatedFadeButton: (props: {
147
144
  onBlurCapture?: import("react").FocusEventHandler<HTMLButtonElement> | (import("react").FocusEventHandler<HTMLButtonElement> & import("react").FocusEventHandler<HTMLAnchorElement>) | undefined;
148
145
  onChange?: import("react").FormEventHandler<HTMLButtonElement> | (import("react").FormEventHandler<HTMLButtonElement> & import("react").FormEventHandler<HTMLAnchorElement>) | undefined;
149
146
  onChangeCapture?: import("react").FormEventHandler<HTMLButtonElement> | (import("react").FormEventHandler<HTMLButtonElement> & import("react").FormEventHandler<HTMLAnchorElement>) | undefined;
150
- onBeforeInput?: import("react").InputEventHandler<HTMLButtonElement> | (import("react").InputEventHandler<HTMLButtonElement> & import("react").InputEventHandler<HTMLAnchorElement>) | undefined;
147
+ onBeforeInput?: import("react").FormEventHandler<HTMLButtonElement> | (import("react").FormEventHandler<HTMLButtonElement> & import("react").FormEventHandler<HTMLAnchorElement>) | undefined;
151
148
  onBeforeInputCapture?: import("react").FormEventHandler<HTMLButtonElement> | (import("react").FormEventHandler<HTMLButtonElement> & import("react").FormEventHandler<HTMLAnchorElement>) | undefined;
152
149
  onInput?: import("react").FormEventHandler<HTMLButtonElement> | (import("react").FormEventHandler<HTMLButtonElement> & import("react").FormEventHandler<HTMLAnchorElement>) | undefined;
153
150
  onInputCapture?: import("react").FormEventHandler<HTMLButtonElement> | (import("react").FormEventHandler<HTMLButtonElement> & import("react").FormEventHandler<HTMLAnchorElement>) | undefined;
@@ -197,6 +194,8 @@ export declare const AnimatedFadeButton: (props: {
197
194
  onProgressCapture?: import("react").ReactEventHandler<HTMLButtonElement> | (import("react").ReactEventHandler<HTMLButtonElement> & import("react").ReactEventHandler<HTMLAnchorElement>) | undefined;
198
195
  onRateChange?: import("react").ReactEventHandler<HTMLButtonElement> | (import("react").ReactEventHandler<HTMLButtonElement> & import("react").ReactEventHandler<HTMLAnchorElement>) | undefined;
199
196
  onRateChangeCapture?: import("react").ReactEventHandler<HTMLButtonElement> | (import("react").ReactEventHandler<HTMLButtonElement> & import("react").ReactEventHandler<HTMLAnchorElement>) | undefined;
197
+ onResize?: import("react").ReactEventHandler<HTMLButtonElement> | (import("react").ReactEventHandler<HTMLButtonElement> & import("react").ReactEventHandler<HTMLAnchorElement>) | undefined;
198
+ onResizeCapture?: import("react").ReactEventHandler<HTMLButtonElement> | (import("react").ReactEventHandler<HTMLButtonElement> & import("react").ReactEventHandler<HTMLAnchorElement>) | undefined;
200
199
  onSeeked?: import("react").ReactEventHandler<HTMLButtonElement> | (import("react").ReactEventHandler<HTMLButtonElement> & import("react").ReactEventHandler<HTMLAnchorElement>) | undefined;
201
200
  onSeekedCapture?: import("react").ReactEventHandler<HTMLButtonElement> | (import("react").ReactEventHandler<HTMLButtonElement> & import("react").ReactEventHandler<HTMLAnchorElement>) | undefined;
202
201
  onSeeking?: import("react").ReactEventHandler<HTMLButtonElement> | (import("react").ReactEventHandler<HTMLButtonElement> & import("react").ReactEventHandler<HTMLAnchorElement>) | undefined;
@@ -370,11 +369,19 @@ export declare const AnimatedFadeButton: (props: {
370
369
  readonly property: "zIndex";
371
370
  }>;
372
371
  borderBottom?: import("@codecademy/variance/dist/types/config").Scale<{
373
- readonly property: "borderBottom";
372
+ readonly property: {
373
+ readonly physical: "borderBottom";
374
+ readonly logical: "borderBlockEnd";
375
+ };
376
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
374
377
  readonly scale: "borders";
375
378
  }>;
376
379
  borderLeft?: import("@codecademy/variance/dist/types/config").Scale<{
377
- readonly property: "borderLeft";
380
+ readonly property: {
381
+ readonly physical: "borderLeft";
382
+ readonly logical: "borderInlineStart";
383
+ };
384
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
378
385
  readonly scale: "borders";
379
386
  }>;
380
387
  borderRadius?: import("@codecademy/variance/dist/types/config").Scale<{
@@ -382,14 +389,22 @@ export declare const AnimatedFadeButton: (props: {
382
389
  readonly scale: "borderRadii";
383
390
  }>;
384
391
  borderRight?: import("@codecademy/variance/dist/types/config").Scale<{
385
- readonly property: "borderRight";
392
+ readonly property: {
393
+ readonly physical: "borderRight";
394
+ readonly logical: "borderInlineEnd";
395
+ };
396
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
386
397
  readonly scale: "borders";
387
398
  }>;
388
399
  borderStyle?: import("@codecademy/variance/dist/types/config").Scale<{
389
400
  readonly property: "borderStyle";
390
401
  }>;
391
402
  borderTop?: import("@codecademy/variance/dist/types/config").Scale<{
392
- readonly property: "borderTop";
403
+ readonly property: {
404
+ readonly physical: "borderTop";
405
+ readonly logical: "borderBlockStart";
406
+ };
407
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
393
408
  readonly scale: "borders";
394
409
  }>;
395
410
  borderWidth?: import("@codecademy/variance/dist/types/config").Scale<{
@@ -419,29 +434,53 @@ export declare const AnimatedFadeButton: (props: {
419
434
  ellipsis?: boolean | undefined;
420
435
  px?: import("@codecademy/variance/dist/types/config").Scale<{
421
436
  readonly property: "padding";
422
- readonly properties: readonly ["paddingLeft", "paddingRight"];
437
+ readonly properties: {
438
+ readonly physical: readonly ["paddingLeft", "paddingRight"];
439
+ readonly logical: readonly ["paddingInlineStart", "paddingInlineEnd"];
440
+ };
423
441
  readonly scale: "spacing";
442
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
424
443
  }>;
425
444
  py?: import("@codecademy/variance/dist/types/config").Scale<{
426
445
  readonly property: "padding";
427
- readonly properties: readonly ["paddingTop", "paddingBottom"];
446
+ readonly properties: {
447
+ readonly physical: readonly ["paddingTop", "paddingBottom"];
448
+ readonly logical: readonly ["paddingBlockStart", "paddingBlockEnd"];
449
+ };
428
450
  readonly scale: "spacing";
451
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
429
452
  }>;
430
453
  pt?: import("@codecademy/variance/dist/types/config").Scale<{
431
- readonly property: "paddingTop";
454
+ readonly property: {
455
+ readonly physical: "paddingTop";
456
+ readonly logical: "paddingBlockStart";
457
+ };
432
458
  readonly scale: "spacing";
459
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
433
460
  }>;
434
461
  pb?: import("@codecademy/variance/dist/types/config").Scale<{
435
- readonly property: "paddingBottom";
462
+ readonly property: {
463
+ readonly physical: "paddingBottom";
464
+ readonly logical: "paddingBlockEnd";
465
+ };
436
466
  readonly scale: "spacing";
467
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
437
468
  }>;
438
469
  pr?: import("@codecademy/variance/dist/types/config").Scale<{
439
- readonly property: "paddingRight";
470
+ readonly property: {
471
+ readonly physical: "paddingRight";
472
+ readonly logical: "paddingInlineEnd";
473
+ };
440
474
  readonly scale: "spacing";
475
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
441
476
  }>;
442
477
  pl?: import("@codecademy/variance/dist/types/config").Scale<{
443
- readonly property: "paddingLeft";
478
+ readonly property: {
479
+ readonly physical: "paddingLeft";
480
+ readonly logical: "paddingInlineStart";
481
+ };
444
482
  readonly scale: "spacing";
483
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
445
484
  }>;
446
485
  m?: import("@codecademy/variance/dist/types/config").Scale<{
447
486
  readonly property: "margin";
@@ -449,115 +488,227 @@ export declare const AnimatedFadeButton: (props: {
449
488
  }>;
450
489
  mx?: import("@codecademy/variance/dist/types/config").Scale<{
451
490
  readonly property: "margin";
452
- readonly properties: readonly ["marginLeft", "marginRight"];
491
+ readonly properties: {
492
+ readonly physical: readonly ["marginLeft", "marginRight"];
493
+ readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
494
+ };
495
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
453
496
  readonly scale: "spacing";
454
497
  }>;
455
498
  my?: import("@codecademy/variance/dist/types/config").Scale<{
456
499
  readonly property: "margin";
457
- readonly properties: readonly ["marginTop", "marginBottom"];
500
+ readonly properties: {
501
+ readonly physical: readonly ["marginTop", "marginBottom"];
502
+ readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
503
+ };
504
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
458
505
  readonly scale: "spacing";
459
506
  }>;
460
507
  mt?: import("@codecademy/variance/dist/types/config").Scale<{
461
- readonly property: "marginTop";
508
+ readonly property: {
509
+ readonly physical: "marginTop";
510
+ readonly logical: "marginBlockStart";
511
+ };
462
512
  readonly scale: "spacing";
513
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
463
514
  }>;
464
515
  mb?: import("@codecademy/variance/dist/types/config").Scale<{
465
- readonly property: "marginBottom";
516
+ readonly property: {
517
+ readonly physical: "marginBottom";
518
+ readonly logical: "marginBlockEnd";
519
+ };
466
520
  readonly scale: "spacing";
521
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
467
522
  }>;
468
523
  mr?: import("@codecademy/variance/dist/types/config").Scale<{
469
- readonly property: "marginRight";
524
+ readonly property: {
525
+ readonly physical: "marginRight";
526
+ readonly logical: "marginInlineEnd";
527
+ };
470
528
  readonly scale: "spacing";
529
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
471
530
  }>;
472
531
  ml?: import("@codecademy/variance/dist/types/config").Scale<{
473
- readonly property: "marginLeft";
532
+ readonly property: {
533
+ readonly physical: "marginLeft";
534
+ readonly logical: "marginInlineStart";
535
+ };
474
536
  readonly scale: "spacing";
537
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
475
538
  }>;
476
539
  borderX?: import("@codecademy/variance/dist/types/config").Scale<{
477
540
  readonly property: "border";
478
- readonly properties: readonly ["borderLeft", "borderRight"];
541
+ readonly properties: {
542
+ readonly physical: readonly ["borderLeft", "borderRight"];
543
+ readonly logical: readonly ["borderInlineStart", "borderInlineEnd"];
544
+ };
545
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
479
546
  readonly scale: "borders";
480
547
  }>;
481
548
  borderY?: import("@codecademy/variance/dist/types/config").Scale<{
482
549
  readonly property: "border";
483
- readonly properties: readonly ["borderTop", "borderBottom"];
550
+ readonly properties: {
551
+ readonly physical: readonly ["borderTop", "borderBottom"];
552
+ readonly logical: readonly ["borderBlockStart", "borderBlockEnd"];
553
+ };
554
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
484
555
  readonly scale: "borders";
485
556
  }>;
486
557
  borderWidthX?: import("@codecademy/variance/dist/types/config").Scale<{
487
558
  readonly property: "borderWidth";
488
- readonly properties: readonly ["borderLeftWidth", "borderRightWidth"];
559
+ readonly properties: {
560
+ readonly physical: readonly ["borderLeftWidth", "borderRightWidth"];
561
+ readonly logical: readonly ["borderInlineStartWidth", "borderInlineEndWidth"];
562
+ };
563
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
489
564
  }>;
490
565
  borderWidthY?: import("@codecademy/variance/dist/types/config").Scale<{
491
566
  readonly property: "borderWidth";
492
- readonly properties: readonly ["borderTopWidth", "borderBottomWidth"];
567
+ readonly properties: {
568
+ readonly physical: readonly ["borderTopWidth", "borderBottomWidth"];
569
+ readonly logical: readonly ["borderBlockStartWidth", "borderBlockEndWidth"];
570
+ };
571
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
493
572
  }>;
494
573
  borderWidthLeft?: import("@codecademy/variance/dist/types/config").Scale<{
495
- readonly property: "borderLeftWidth";
574
+ readonly property: {
575
+ readonly physical: "borderLeftWidth";
576
+ readonly logical: "borderInlineStartWidth";
577
+ };
578
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
496
579
  }>;
497
580
  borderWidthRight?: import("@codecademy/variance/dist/types/config").Scale<{
498
- readonly property: "borderRightWidth";
581
+ readonly property: {
582
+ readonly physical: "borderRightWidth";
583
+ readonly logical: "borderInlineEndWidth";
584
+ };
585
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
499
586
  }>;
500
587
  borderWidthTop?: import("@codecademy/variance/dist/types/config").Scale<{
501
- readonly property: "borderTopWidth";
588
+ readonly property: {
589
+ readonly physical: "borderTopWidth";
590
+ readonly logical: "borderBlockStartWidth";
591
+ };
592
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
502
593
  }>;
503
594
  borderWidthBottom?: import("@codecademy/variance/dist/types/config").Scale<{
504
- readonly property: "borderBottomWidth";
595
+ readonly property: {
596
+ readonly physical: "borderBottomWidth";
597
+ readonly logical: "borderBlockEndWidth";
598
+ };
599
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
505
600
  }>;
506
601
  borderRadiusLeft?: import("@codecademy/variance/dist/types/config").Scale<{
507
602
  readonly property: "borderRadius";
508
- readonly properties: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
603
+ readonly properties: {
604
+ readonly physical: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
605
+ readonly logical: readonly ["borderStartStartRadius", "borderEndStartRadius"];
606
+ };
607
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
509
608
  readonly scale: "borderRadii";
510
609
  }>;
511
610
  borderRadiusTop?: import("@codecademy/variance/dist/types/config").Scale<{
512
611
  readonly property: "borderRadius";
513
- readonly properties: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
612
+ readonly properties: {
613
+ readonly physical: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
614
+ readonly logical: readonly ["borderStartStartRadius", "borderStartEndRadius"];
615
+ };
616
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
514
617
  readonly scale: "borderRadii";
515
618
  }>;
516
619
  borderRadiusBottom?: import("@codecademy/variance/dist/types/config").Scale<{
517
620
  readonly property: "borderRadius";
518
- readonly properties: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
621
+ readonly properties: {
622
+ readonly physical: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
623
+ readonly logical: readonly ["borderEndStartRadius", "borderEndEndRadius"];
624
+ };
625
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
519
626
  readonly scale: "borderRadii";
520
627
  }>;
521
628
  borderRadiusRight?: import("@codecademy/variance/dist/types/config").Scale<{
522
629
  readonly property: "borderRadius";
523
- readonly properties: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
630
+ readonly properties: {
631
+ readonly physical: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
632
+ readonly logical: readonly ["borderStartEndRadius", "borderEndEndRadius"];
633
+ };
634
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
524
635
  readonly scale: "borderRadii";
525
636
  }>;
526
637
  borderRadiusTopLeft?: import("@codecademy/variance/dist/types/config").Scale<{
527
- readonly property: "borderTopLeftRadius";
638
+ readonly property: {
639
+ readonly physical: "borderTopLeftRadius";
640
+ readonly logical: "borderStartStartRadius";
641
+ };
642
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
528
643
  readonly scale: "borderRadii";
529
644
  }>;
530
645
  borderRadiusTopRight?: import("@codecademy/variance/dist/types/config").Scale<{
531
- readonly property: "borderTopRightRadius";
646
+ readonly property: {
647
+ readonly physical: "borderTopRightRadius";
648
+ readonly logical: "borderStartEndRadius";
649
+ };
650
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
532
651
  readonly scale: "borderRadii";
533
652
  }>;
534
653
  borderRadiusBottomRight?: import("@codecademy/variance/dist/types/config").Scale<{
535
- readonly property: "borderBottomRightRadius";
654
+ readonly property: {
655
+ readonly physical: "borderBottomRightRadius";
656
+ readonly logical: "borderEndEndRadius";
657
+ };
658
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
536
659
  readonly scale: "borderRadii";
537
660
  }>;
538
661
  borderRadiusBottomLeft?: import("@codecademy/variance/dist/types/config").Scale<{
539
- readonly property: "borderBottomLeftRadius";
662
+ readonly property: {
663
+ readonly physical: "borderBottomLeftRadius";
664
+ readonly logical: "borderEndStartRadius";
665
+ };
666
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
540
667
  readonly scale: "borderRadii";
541
668
  }>;
542
669
  borderStyleX?: import("@codecademy/variance/dist/types/config").Scale<{
543
670
  readonly property: "borderStyle";
544
- readonly properties: readonly ["borderLeftStyle", "borderRightStyle"];
671
+ readonly properties: {
672
+ readonly physical: readonly ["borderLeftStyle", "borderRightStyle"];
673
+ readonly logical: readonly ["borderInlineStartStyle", "borderInlineEndStyle"];
674
+ };
675
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
545
676
  }>;
546
677
  borderStyleY?: import("@codecademy/variance/dist/types/config").Scale<{
547
678
  readonly property: "borderStyle";
548
- readonly properties: readonly ["borderTopStyle", "borderBottomStyle"];
679
+ readonly properties: {
680
+ readonly physical: readonly ["borderTopStyle", "borderBottomStyle"];
681
+ readonly logical: readonly ["borderBlockStartStyle", "borderBlockEndStyle"];
682
+ };
683
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
549
684
  }>;
550
685
  borderStyleLeft?: import("@codecademy/variance/dist/types/config").Scale<{
551
- readonly property: "borderLeftStyle";
686
+ readonly property: {
687
+ readonly physical: "borderLeftStyle";
688
+ readonly logical: "borderInlineStartStyle";
689
+ };
690
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
552
691
  }>;
553
692
  borderStyleRight?: import("@codecademy/variance/dist/types/config").Scale<{
554
- readonly property: "borderRightStyle";
693
+ readonly property: {
694
+ readonly physical: "borderRightStyle";
695
+ readonly logical: "borderInlineEndStyle";
696
+ };
697
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
555
698
  }>;
556
699
  borderStyleTop?: import("@codecademy/variance/dist/types/config").Scale<{
557
- readonly property: "borderTopStyle";
700
+ readonly property: {
701
+ readonly physical: "borderTopStyle";
702
+ readonly logical: "borderBlockStartStyle";
703
+ };
704
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
558
705
  }>;
559
706
  borderStyleBottom?: import("@codecademy/variance/dist/types/config").Scale<{
560
- readonly property: "borderBottomStyle";
707
+ readonly property: {
708
+ readonly physical: "borderBottomStyle";
709
+ readonly logical: "borderBlockEndStyle";
710
+ };
711
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
561
712
  }>;
562
713
  dimensions?: import("@codecademy/variance/dist/types/config").Scale<{
563
714
  readonly property: "width";
@@ -581,7 +732,7 @@ export declare const AnimatedSlideButton: (props: (Omit<Omit<{
581
732
  as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
582
733
  } & {
583
734
  theme?: import("@emotion/react").Theme | undefined;
584
- } & Pick<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "disabled" | "name" | "form" | "slot" | "style" | "title" | "dir" | "children" | "className" | "aria-hidden" | "onAnimationStart" | "onDragStart" | "onDragEnd" | "onDrag" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDragCapture" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "type" | keyof import("react").ClassAttributes<HTMLButtonElement> | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "value">, "ref"> & import("react").RefAttributes<HTMLAnchorElement | HTMLButtonElement> & {
735
+ } & Pick<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "disabled" | "name" | "form" | "slot" | "style" | "title" | "dir" | "children" | "className" | "aria-hidden" | "onAnimationStart" | "onDragStart" | "onDragEnd" | "onDrag" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDragCapture" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "type" | keyof import("react").ClassAttributes<HTMLButtonElement> | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "value">, "ref"> & import("react").RefAttributes<HTMLAnchorElement | HTMLButtonElement> & {
585
736
  theme?: import("@emotion/react").Theme | undefined;
586
737
  } & import("../Button/shared").ButtonBaseProps & import("./PaginationButton").BasePaginationButtonProps & Partial<Record<"selected" | "ellipsis", boolean>> & {
587
738
  theme?: import("@emotion/react").Theme | undefined;
@@ -597,7 +748,7 @@ export declare const AnimatedSlideButton: (props: (Omit<Omit<{
597
748
  as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
598
749
  } & {
599
750
  theme?: import("@emotion/react").Theme | undefined;
600
- } & Pick<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "disabled" | "name" | "form" | "slot" | "style" | "title" | "dir" | "children" | "className" | "aria-hidden" | "onAnimationStart" | "onDragStart" | "onDragEnd" | "onDrag" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDragCapture" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "type" | keyof import("react").ClassAttributes<HTMLButtonElement> | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "value"> & Pick<import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "slot" | "style" | "title" | "dir" | "children" | "className" | "aria-hidden" | "onAnimationStart" | "onDragStart" | "onDragEnd" | "onDrag" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDragCapture" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "media" | "target" | "type" | "href" | keyof import("react").ClassAttributes<HTMLAnchorElement> | "download" | "hrefLang" | "ping" | "referrerPolicy">, "ref"> & import("react").RefAttributes<HTMLAnchorElement | HTMLButtonElement> & {
751
+ } & Pick<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "disabled" | "name" | "form" | "slot" | "style" | "title" | "dir" | "children" | "className" | "aria-hidden" | "onAnimationStart" | "onDragStart" | "onDragEnd" | "onDrag" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDragCapture" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "type" | keyof import("react").ClassAttributes<HTMLButtonElement> | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "value"> & Pick<import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "slot" | "style" | "title" | "dir" | "children" | "className" | "aria-hidden" | "onAnimationStart" | "onDragStart" | "onDragEnd" | "onDrag" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDragCapture" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "media" | "target" | "type" | "href" | keyof import("react").ClassAttributes<HTMLAnchorElement> | "download" | "hrefLang" | "ping" | "referrerPolicy">, "ref"> & import("react").RefAttributes<HTMLAnchorElement | HTMLButtonElement> & {
601
752
  theme?: import("@emotion/react").Theme | undefined;
602
753
  } & import("../Button/shared").ButtonBaseProps & import("./PaginationButton").BasePaginationButtonProps & Partial<Record<"selected" | "ellipsis", boolean>> & {
603
754
  theme?: import("@emotion/react").Theme | undefined;