@transferwise/components 46.30.2 → 46.32.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 (80) hide show
  1. package/build/index.js +931 -523
  2. package/build/index.js.map +1 -1
  3. package/build/index.mjs +928 -523
  4. package/build/index.mjs.map +1 -1
  5. package/build/main.css +135 -0
  6. package/build/styles/carousel/Carousel.css +135 -0
  7. package/build/styles/main.css +135 -0
  8. package/build/types/carousel/Carousel.d.ts +26 -0
  9. package/build/types/carousel/Carousel.d.ts.map +1 -0
  10. package/build/types/carousel/index.d.ts +3 -0
  11. package/build/types/carousel/index.d.ts.map +1 -0
  12. package/build/types/common/card/Card.d.ts +2 -2
  13. package/build/types/common/card/Card.d.ts.map +1 -1
  14. package/build/types/dateInput/DateInput.d.ts +5 -4
  15. package/build/types/dateInput/DateInput.d.ts.map +1 -1
  16. package/build/types/dateLookup/DateLookup.d.ts +11 -4
  17. package/build/types/dateLookup/DateLookup.d.ts.map +1 -1
  18. package/build/types/field/Field.d.ts +12 -0
  19. package/build/types/field/Field.d.ts.map +1 -0
  20. package/build/types/index.d.ts +6 -0
  21. package/build/types/index.d.ts.map +1 -1
  22. package/build/types/inputs/Input.d.ts.map +1 -1
  23. package/build/types/inputs/SelectInput.d.ts +1 -1
  24. package/build/types/inputs/SelectInput.d.ts.map +1 -1
  25. package/build/types/inputs/TextArea.d.ts.map +1 -1
  26. package/build/types/inputs/_common.d.ts +2 -2
  27. package/build/types/inputs/_common.d.ts.map +1 -1
  28. package/build/types/inputs/contexts.d.ts +24 -0
  29. package/build/types/inputs/contexts.d.ts.map +1 -0
  30. package/build/types/label/Label.d.ts +9 -0
  31. package/build/types/label/Label.d.ts.map +1 -0
  32. package/build/types/phoneNumberInput/PhoneNumberInput.d.ts +1 -1
  33. package/build/types/phoneNumberInput/PhoneNumberInput.d.ts.map +1 -1
  34. package/build/types/promoCard/PromoCard.d.ts +16 -5
  35. package/build/types/promoCard/PromoCard.d.ts.map +1 -1
  36. package/build/types/radioGroup/RadioGroup.d.ts.map +1 -1
  37. package/build/types/switch/Switch.d.ts +6 -3
  38. package/build/types/switch/Switch.d.ts.map +1 -1
  39. package/package.json +3 -3
  40. package/src/carousel/Carousel.css +135 -0
  41. package/src/carousel/Carousel.less +133 -0
  42. package/src/carousel/Carousel.spec.tsx +221 -0
  43. package/src/carousel/Carousel.story.tsx +63 -0
  44. package/src/carousel/Carousel.tsx +345 -0
  45. package/src/carousel/index.ts +3 -0
  46. package/src/common/card/Card.tsx +51 -43
  47. package/src/dateInput/DateInput.rtl.spec.tsx +17 -0
  48. package/src/dateInput/DateInput.tsx +28 -22
  49. package/src/dateLookup/DateLookup.keyboardEvents.spec.js +2 -2
  50. package/src/dateLookup/DateLookup.rtl.spec.tsx +21 -0
  51. package/src/dateLookup/DateLookup.state.spec.js +5 -5
  52. package/src/dateLookup/DateLookup.tests.story.tsx +4 -11
  53. package/src/dateLookup/DateLookup.tsx +24 -9
  54. package/src/dateLookup/DateLookup.view.spec.js +11 -11
  55. package/src/field/Field.spec.tsx +95 -0
  56. package/src/field/Field.story.tsx +59 -0
  57. package/src/field/Field.tsx +70 -0
  58. package/src/index.ts +6 -0
  59. package/src/inputs/Input.tsx +5 -3
  60. package/src/inputs/SelectInput.spec.tsx +10 -0
  61. package/src/inputs/SelectInput.tsx +9 -4
  62. package/src/inputs/TextArea.tsx +6 -3
  63. package/src/inputs/_ButtonInput.tsx +2 -2
  64. package/src/inputs/_common.ts +2 -2
  65. package/src/inputs/contexts.tsx +45 -0
  66. package/src/label/Label.spec.tsx +26 -0
  67. package/src/label/Label.story.tsx +37 -0
  68. package/src/label/Label.tsx +20 -0
  69. package/src/main.css +135 -0
  70. package/src/main.less +1 -0
  71. package/src/phoneNumberInput/PhoneNumberInput.story.tsx +16 -22
  72. package/src/phoneNumberInput/PhoneNumberInput.tsx +14 -2
  73. package/src/promoCard/PromoCard.story.tsx +2 -2
  74. package/src/promoCard/PromoCard.tsx +30 -9
  75. package/src/radioGroup/RadioGroup.rtl.spec.tsx +14 -0
  76. package/src/radioGroup/RadioGroup.story.tsx +26 -0
  77. package/src/radioGroup/RadioGroup.tsx +4 -1
  78. package/src/switch/Switch.spec.tsx +10 -0
  79. package/src/switch/Switch.tsx +22 -13
  80. package/src/utilities/logActionRequired.js +1 -1
package/build/main.css CHANGED
@@ -643,6 +643,141 @@ div.critical-comms .critical-comms-body {
643
643
  border-radius: 16px 16px 0 0;
644
644
  border-radius: var(--radius-medium) var(--radius-medium) 0 0;
645
645
  }
646
+ .carousel-wrapper {
647
+ overflow: hidden;
648
+ }
649
+ .carousel {
650
+ display: flex;
651
+ align-items: center;
652
+ overflow-x: scroll;
653
+ overflow-y: hidden;
654
+ scroll-snap-type: x mandatory;
655
+ scroll-behavior: smooth;
656
+ gap: 16px;
657
+ gap: var(--size-16);
658
+ padding: 8px;
659
+ padding: var(--size-8);
660
+ margin: 8px;
661
+ margin: var(--size-8);
662
+ }
663
+ @media (max-width: 767px) {
664
+ .carousel {
665
+ gap: 8px;
666
+ gap: var(--size-8);
667
+ }
668
+ }
669
+ .carousel__header {
670
+ display: flex;
671
+ align-items: center;
672
+ overflow: hidden;
673
+ min-height: 32px;
674
+ min-height: var(--size-32);
675
+ padding-bottom: 16px;
676
+ padding-bottom: var(--size-16);
677
+ }
678
+ .carousel__card,
679
+ .carousel__card:hover,
680
+ .carousel__card:focus,
681
+ .carousel__card:focus-within {
682
+ -webkit-text-decoration: none;
683
+ text-decoration: none;
684
+ transition: none !important;
685
+ box-shadow: none !important;
686
+ }
687
+ .carousel__card {
688
+ display: block;
689
+ position: relative;
690
+ text-align: left;
691
+ border: none;
692
+ overflow: hidden;
693
+ background: rgba(134,167,189,0.10196);
694
+ background: var(--color-background-neutral);
695
+ border-radius: 32px;
696
+ border-radius: var(--size-32);
697
+ scroll-snap-align: center;
698
+ -webkit-scroll-snap-align: center;
699
+ transition: all 0.4s !important;
700
+ }
701
+ @media (min-width: 1200px) {
702
+ .carousel__card {
703
+ min-width: 280px;
704
+ width: 280px;
705
+ height: 280px;
706
+ }
707
+ }
708
+ @media (max-width: 1199px) {
709
+ .carousel__card {
710
+ min-width: 242px;
711
+ width: 242px;
712
+ height: 242px;
713
+ }
714
+ }
715
+ @media (max-width: 767px) {
716
+ .carousel__card {
717
+ min-width: 336px;
718
+ width: 336px;
719
+ height: 336px;
720
+ scroll-snap-stop: always;
721
+ }
722
+ }
723
+ .carousel__card:focus,
724
+ .carousel__card:has(:focus-visible) {
725
+ outline: var(--ring-outline-color) solid var(--ring-outline-width) !important;
726
+ outline-offset: var(--ring-outline-offset) !important;
727
+ }
728
+ .carousel__card:hover {
729
+ background-color: var(--color-background-neutral-hover);
730
+ }
731
+ .carousel__card:focus {
732
+ background-color: var(--color-background-neutral-hover);
733
+ }
734
+ .carousel__card-content {
735
+ height: 100%;
736
+ font-weight: normal;
737
+ padding: 24px;
738
+ padding: var(--size-24);
739
+ }
740
+ .carousel__scroll-button {
741
+ width: 32px;
742
+ width: var(--size-32);
743
+ height: 32px;
744
+ height: var(--size-32);
745
+ align-items: center;
746
+ justify-content: center;
747
+ }
748
+ .carousel__indicators {
749
+ display: flex;
750
+ justify-content: center;
751
+ padding-top: 8px;
752
+ padding-top: var(--size-8);
753
+ gap: 8px;
754
+ gap: var(--size-8);
755
+ }
756
+ .carousel__indicator {
757
+ width: 12px;
758
+ width: var(--size-12);
759
+ height: 12px;
760
+ height: var(--size-12);
761
+ border-radius: 8px;
762
+ border-radius: var(--size-8);
763
+ background: #c9cbce;
764
+ background: var(--color-interactive-secondary);
765
+ border: none;
766
+ -webkit-appearance: none;
767
+ -moz-appearance: none;
768
+ appearance: none;
769
+ transition: all 0.1s;
770
+ }
771
+ .carousel__indicator:hover {
772
+ width: 16px;
773
+ width: var(--size-16);
774
+ }
775
+ .carousel__indicator--selected,
776
+ .carousel__indicator--selected:hover {
777
+ background: var(--color-interactive-primary);
778
+ width: 24px;
779
+ width: var(--size-24);
780
+ }
646
781
  .np-checkbox-button input[type="checkbox"] {
647
782
  position: absolute;
648
783
  width: 24px;
@@ -0,0 +1,135 @@
1
+ .carousel-wrapper {
2
+ overflow: hidden;
3
+ }
4
+ .carousel {
5
+ display: flex;
6
+ align-items: center;
7
+ overflow-x: scroll;
8
+ overflow-y: hidden;
9
+ scroll-snap-type: x mandatory;
10
+ scroll-behavior: smooth;
11
+ gap: 16px;
12
+ gap: var(--size-16);
13
+ padding: 8px;
14
+ padding: var(--size-8);
15
+ margin: 8px;
16
+ margin: var(--size-8);
17
+ }
18
+ @media (max-width: 767px) {
19
+ .carousel {
20
+ gap: 8px;
21
+ gap: var(--size-8);
22
+ }
23
+ }
24
+ .carousel__header {
25
+ display: flex;
26
+ align-items: center;
27
+ overflow: hidden;
28
+ min-height: 32px;
29
+ min-height: var(--size-32);
30
+ padding-bottom: 16px;
31
+ padding-bottom: var(--size-16);
32
+ }
33
+ .carousel__card,
34
+ .carousel__card:hover,
35
+ .carousel__card:focus,
36
+ .carousel__card:focus-within {
37
+ -webkit-text-decoration: none;
38
+ text-decoration: none;
39
+ transition: none !important;
40
+ box-shadow: none !important;
41
+ }
42
+ .carousel__card {
43
+ display: block;
44
+ position: relative;
45
+ text-align: left;
46
+ border: none;
47
+ overflow: hidden;
48
+ background: rgba(134,167,189,0.10196);
49
+ background: var(--color-background-neutral);
50
+ border-radius: 32px;
51
+ border-radius: var(--size-32);
52
+ scroll-snap-align: center;
53
+ -webkit-scroll-snap-align: center;
54
+ transition: all 0.4s !important;
55
+ }
56
+ @media (min-width: 1200px) {
57
+ .carousel__card {
58
+ min-width: 280px;
59
+ width: 280px;
60
+ height: 280px;
61
+ }
62
+ }
63
+ @media (max-width: 1199px) {
64
+ .carousel__card {
65
+ min-width: 242px;
66
+ width: 242px;
67
+ height: 242px;
68
+ }
69
+ }
70
+ @media (max-width: 767px) {
71
+ .carousel__card {
72
+ min-width: 336px;
73
+ width: 336px;
74
+ height: 336px;
75
+ scroll-snap-stop: always;
76
+ }
77
+ }
78
+ .carousel__card:focus,
79
+ .carousel__card:has(:focus-visible) {
80
+ outline: var(--ring-outline-color) solid var(--ring-outline-width) !important;
81
+ outline-offset: var(--ring-outline-offset) !important;
82
+ }
83
+ .carousel__card:hover {
84
+ background-color: var(--color-background-neutral-hover);
85
+ }
86
+ .carousel__card:focus {
87
+ background-color: var(--color-background-neutral-hover);
88
+ }
89
+ .carousel__card-content {
90
+ height: 100%;
91
+ font-weight: normal;
92
+ padding: 24px;
93
+ padding: var(--size-24);
94
+ }
95
+ .carousel__scroll-button {
96
+ width: 32px;
97
+ width: var(--size-32);
98
+ height: 32px;
99
+ height: var(--size-32);
100
+ align-items: center;
101
+ justify-content: center;
102
+ }
103
+ .carousel__indicators {
104
+ display: flex;
105
+ justify-content: center;
106
+ padding-top: 8px;
107
+ padding-top: var(--size-8);
108
+ gap: 8px;
109
+ gap: var(--size-8);
110
+ }
111
+ .carousel__indicator {
112
+ width: 12px;
113
+ width: var(--size-12);
114
+ height: 12px;
115
+ height: var(--size-12);
116
+ border-radius: 8px;
117
+ border-radius: var(--size-8);
118
+ background: #c9cbce;
119
+ background: var(--color-interactive-secondary);
120
+ border: none;
121
+ -webkit-appearance: none;
122
+ -moz-appearance: none;
123
+ appearance: none;
124
+ transition: all 0.1s;
125
+ }
126
+ .carousel__indicator:hover {
127
+ width: 16px;
128
+ width: var(--size-16);
129
+ }
130
+ .carousel__indicator--selected,
131
+ .carousel__indicator--selected:hover {
132
+ background: var(--color-interactive-primary);
133
+ width: 24px;
134
+ width: var(--size-24);
135
+ }
@@ -643,6 +643,141 @@ div.critical-comms .critical-comms-body {
643
643
  border-radius: 16px 16px 0 0;
644
644
  border-radius: var(--radius-medium) var(--radius-medium) 0 0;
645
645
  }
646
+ .carousel-wrapper {
647
+ overflow: hidden;
648
+ }
649
+ .carousel {
650
+ display: flex;
651
+ align-items: center;
652
+ overflow-x: scroll;
653
+ overflow-y: hidden;
654
+ scroll-snap-type: x mandatory;
655
+ scroll-behavior: smooth;
656
+ gap: 16px;
657
+ gap: var(--size-16);
658
+ padding: 8px;
659
+ padding: var(--size-8);
660
+ margin: 8px;
661
+ margin: var(--size-8);
662
+ }
663
+ @media (max-width: 767px) {
664
+ .carousel {
665
+ gap: 8px;
666
+ gap: var(--size-8);
667
+ }
668
+ }
669
+ .carousel__header {
670
+ display: flex;
671
+ align-items: center;
672
+ overflow: hidden;
673
+ min-height: 32px;
674
+ min-height: var(--size-32);
675
+ padding-bottom: 16px;
676
+ padding-bottom: var(--size-16);
677
+ }
678
+ .carousel__card,
679
+ .carousel__card:hover,
680
+ .carousel__card:focus,
681
+ .carousel__card:focus-within {
682
+ -webkit-text-decoration: none;
683
+ text-decoration: none;
684
+ transition: none !important;
685
+ box-shadow: none !important;
686
+ }
687
+ .carousel__card {
688
+ display: block;
689
+ position: relative;
690
+ text-align: left;
691
+ border: none;
692
+ overflow: hidden;
693
+ background: rgba(134,167,189,0.10196);
694
+ background: var(--color-background-neutral);
695
+ border-radius: 32px;
696
+ border-radius: var(--size-32);
697
+ scroll-snap-align: center;
698
+ -webkit-scroll-snap-align: center;
699
+ transition: all 0.4s !important;
700
+ }
701
+ @media (min-width: 1200px) {
702
+ .carousel__card {
703
+ min-width: 280px;
704
+ width: 280px;
705
+ height: 280px;
706
+ }
707
+ }
708
+ @media (max-width: 1199px) {
709
+ .carousel__card {
710
+ min-width: 242px;
711
+ width: 242px;
712
+ height: 242px;
713
+ }
714
+ }
715
+ @media (max-width: 767px) {
716
+ .carousel__card {
717
+ min-width: 336px;
718
+ width: 336px;
719
+ height: 336px;
720
+ scroll-snap-stop: always;
721
+ }
722
+ }
723
+ .carousel__card:focus,
724
+ .carousel__card:has(:focus-visible) {
725
+ outline: var(--ring-outline-color) solid var(--ring-outline-width) !important;
726
+ outline-offset: var(--ring-outline-offset) !important;
727
+ }
728
+ .carousel__card:hover {
729
+ background-color: var(--color-background-neutral-hover);
730
+ }
731
+ .carousel__card:focus {
732
+ background-color: var(--color-background-neutral-hover);
733
+ }
734
+ .carousel__card-content {
735
+ height: 100%;
736
+ font-weight: normal;
737
+ padding: 24px;
738
+ padding: var(--size-24);
739
+ }
740
+ .carousel__scroll-button {
741
+ width: 32px;
742
+ width: var(--size-32);
743
+ height: 32px;
744
+ height: var(--size-32);
745
+ align-items: center;
746
+ justify-content: center;
747
+ }
748
+ .carousel__indicators {
749
+ display: flex;
750
+ justify-content: center;
751
+ padding-top: 8px;
752
+ padding-top: var(--size-8);
753
+ gap: 8px;
754
+ gap: var(--size-8);
755
+ }
756
+ .carousel__indicator {
757
+ width: 12px;
758
+ width: var(--size-12);
759
+ height: 12px;
760
+ height: var(--size-12);
761
+ border-radius: 8px;
762
+ border-radius: var(--size-8);
763
+ background: #c9cbce;
764
+ background: var(--color-interactive-secondary);
765
+ border: none;
766
+ -webkit-appearance: none;
767
+ -moz-appearance: none;
768
+ appearance: none;
769
+ transition: all 0.1s;
770
+ }
771
+ .carousel__indicator:hover {
772
+ width: 16px;
773
+ width: var(--size-16);
774
+ }
775
+ .carousel__indicator--selected,
776
+ .carousel__indicator--selected:hover {
777
+ background: var(--color-interactive-primary);
778
+ width: 24px;
779
+ width: var(--size-24);
780
+ }
646
781
  .np-checkbox-button input[type="checkbox"] {
647
782
  position: absolute;
648
783
  width: 24px;
@@ -0,0 +1,26 @@
1
+ import { type CSSProperties, type ReactNode } from 'react';
2
+ import type { PromoCardLinkProps } from '../promoCard/PromoCard';
3
+ export type CarouselCardCommon = {
4
+ id: string;
5
+ href?: string;
6
+ onClick?: () => void;
7
+ className?: string;
8
+ styles?: CSSProperties;
9
+ };
10
+ export type CarouselDefaultCard = CarouselCardCommon & {
11
+ type: 'anchor' | 'button';
12
+ content: ReactNode;
13
+ };
14
+ export type CarouselPromoCard = CarouselCardCommon & {
15
+ type: 'promo';
16
+ } & Omit<PromoCardLinkProps, 'type'>;
17
+ export type CarouselCard = CarouselDefaultCard | CarouselPromoCard;
18
+ export interface CarouselProps {
19
+ header: string | ReactNode;
20
+ className?: string;
21
+ cards: CarouselCard[];
22
+ onClick?: (cardId: string) => void;
23
+ }
24
+ declare const Carousel: React.FC<CarouselProps>;
25
+ export default Carousel;
26
+ //# sourceMappingURL=Carousel.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Carousel.d.ts","sourceRoot":"","sources":["../../../src/carousel/Carousel.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,aAAa,EAAE,KAAK,SAAS,EAA+B,MAAM,OAAO,CAAC;AAIxF,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAGjE,MAAM,MAAM,kBAAkB,GAAG;IAC/B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,aAAa,CAAC;CACxB,CAAC;AAEF,MAAM,MAAM,mBAAmB,GAAG,kBAAkB,GAAG;IACrD,IAAI,EAAE,QAAQ,GAAG,QAAQ,CAAC;IAC1B,OAAO,EAAE,SAAS,CAAC;CACpB,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG,kBAAkB,GAAG;IACnD,IAAI,EAAE,OAAO,CAAC;CACf,GAAG,IAAI,CAAC,kBAAkB,EAAE,MAAM,CAAC,CAAC;AAErC,MAAM,MAAM,YAAY,GAAG,mBAAmB,GAAG,iBAAiB,CAAC;AACnE,MAAM,WAAW,aAAa;IAC5B,MAAM,EAAE,MAAM,GAAG,SAAS,CAAC;IAC3B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE,YAAY,EAAE,CAAC;IACtB,OAAO,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;CACpC;AAUD,QAAA,MAAM,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC,aAAa,CAkSrC,CAAC;AAYF,eAAe,QAAQ,CAAC"}
@@ -0,0 +1,3 @@
1
+ export * from './Carousel';
2
+ export { default } from './Carousel';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/carousel/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAE3B,OAAO,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC"}
@@ -1,4 +1,4 @@
1
- import { ReactNode } from 'react';
1
+ import { type ReactNode } from 'react';
2
2
  export interface CardProps {
3
3
  /** Content to display inside Card. */
4
4
  children: ReactNode;
@@ -36,6 +36,6 @@ export interface CardProps {
36
36
  * <p>Hello World!</p>
37
37
  * </Card>
38
38
  */
39
- declare const Card: React.FC<CardProps>;
39
+ declare const Card: import("react").ForwardRefExoticComponent<CardProps & import("react").RefAttributes<HTMLDivElement>>;
40
40
  export default Card;
41
41
  //# sourceMappingURL=Card.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Card.d.ts","sourceRoot":"","sources":["../../../../src/common/card/Card.tsx"],"names":[],"mappings":"AACA,OAAO,EAAc,SAAS,EAAU,MAAM,OAAO,CAAC;AAKtD,MAAM,WAAW,SAAS;IACxB,sCAAsC;IACtC,QAAQ,EAAE,SAAS,CAAC;IAEpB,wDAAwD;IACxD,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB,kDAAkD;IAClD,EAAE,CAAC,EAAE,MAAM,CAAC;IAEZ,mDAAmD;IACnD,UAAU,CAAC,EAAE,OAAO,CAAC;IAErB,qDAAqD;IACrD,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB,iDAAiD;IACjD,SAAS,CAAC,EAAE,MAAM,IAAI,CAAC;IAEvB,uDAAuD;IACvD,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,QAAA,MAAM,IAAI,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CA0C7B,CAAC;AAEF,eAAe,IAAI,CAAC"}
1
+ {"version":3,"file":"Card.d.ts","sourceRoot":"","sources":["../../../../src/common/card/Card.tsx"],"names":[],"mappings":"AACA,OAAO,EAAc,KAAK,SAAS,EAAsB,MAAM,OAAO,CAAC;AAKvE,MAAM,WAAW,SAAS;IACxB,sCAAsC;IACtC,QAAQ,EAAE,SAAS,CAAC;IAEpB,wDAAwD;IACxD,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB,kDAAkD;IAClD,EAAE,CAAC,EAAE,MAAM,CAAC;IAEZ,mDAAmD;IACnD,UAAU,CAAC,EAAE,OAAO,CAAC;IAErB,qDAAqD;IACrD,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB,iDAAiD;IACjD,SAAS,CAAC,EAAE,MAAM,IAAI,CAAC;IAEvB,uDAAuD;IACvD,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,QAAA,MAAM,IAAI,sGAgDT,CAAC;AAIF,eAAe,IAAI,CAAC"}
@@ -1,15 +1,16 @@
1
1
  /// <reference types="react" />
2
2
  import { SelectInputProps } from '..';
3
- import { DateMode, MonthFormat, SizeSmall, SizeMedium, SizeLarge } from '../common';
3
+ import { DateMode, MonthFormat, SizeLarge, SizeMedium, SizeSmall } from '../common';
4
4
  export interface DateInputProps {
5
+ /** @deprecated Use `Field` wrapper or the `aria-labelledby` attribute instead. */
5
6
  'aria-label'?: string;
6
7
  'aria-labelledby'?: string;
7
8
  disabled?: boolean;
8
9
  size?: SizeSmall | SizeMedium | SizeLarge;
9
10
  value?: Date | string;
10
11
  onChange: (value: string | null) => void;
11
- onFocus?: React.FocusEventHandler<HTMLInputElement>;
12
- onBlur?: React.FocusEventHandler<HTMLInputElement>;
12
+ onFocus?: React.FocusEventHandler<HTMLDivElement>;
13
+ onBlur?: React.FocusEventHandler<HTMLDivElement>;
13
14
  dayLabel?: string;
14
15
  dayAutoComplete?: string;
15
16
  monthLabel?: string;
@@ -25,6 +26,6 @@ export interface DateInputProps {
25
26
  id?: string;
26
27
  selectProps?: Partial<SelectInputProps<number | null>>;
27
28
  }
28
- declare const DateInput: ({ "aria-labelledby": ariaLabelledBy, "aria-label": ariaLabel, disabled, size, value, dayLabel, dayAutoComplete, monthLabel, yearLabel, yearAutoComplete, monthFormat, mode, onChange, onFocus, onBlur, placeholders, id, selectProps, }: DateInputProps) => import("react").JSX.Element;
29
+ declare const DateInput: ({ "aria-labelledby": ariaLabelledByProp, "aria-label": ariaLabel, disabled, size, value, dayLabel, dayAutoComplete, monthLabel, yearLabel, yearAutoComplete, monthFormat, mode, onChange, onFocus, onBlur, placeholders, id: idProp, selectProps, }: DateInputProps) => import("react").JSX.Element;
29
30
  export default DateInput;
30
31
  //# sourceMappingURL=DateInput.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"DateInput.d.ts","sourceRoot":"","sources":["../../../src/dateInput/DateInput.tsx"],"names":[],"mappings":";AAIA,OAAO,EAAsB,gBAAgB,EAA4B,MAAM,IAAI,CAAC;AACpF,OAAO,EAAQ,QAAQ,EAAE,WAAW,EAAE,SAAS,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AAM1F,MAAM,WAAW,cAAc;IAC7B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,IAAI,CAAC,EAAE,SAAS,GAAG,UAAU,GAAG,SAAS,CAAC;IAC1C,KAAK,CAAC,EAAE,IAAI,GAAG,MAAM,CAAC;IACtB,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,KAAK,IAAI,CAAC;IACzC,OAAO,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,gBAAgB,CAAC,CAAC;IACpD,MAAM,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,gBAAgB,CAAC,CAAC;IACnD,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,WAAW,CAAC,EAAE,GAAG,WAAW,EAAE,CAAC;IAC/B,IAAI,CAAC,EAAE,GAAG,QAAQ,EAAE,CAAC;IACrB,YAAY,CAAC,EAAE;QACb,GAAG,CAAC,EAAE,MAAM,CAAC;QACb,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,IAAI,CAAC,EAAE,MAAM,CAAC;KACf,CAAC;IACF,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,WAAW,CAAC,EAAE,OAAO,CAAC,gBAAgB,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC,CAAC;CACxD;AAED,QAAA,MAAM,SAAS,4OAmBZ,cAAc,gCAwShB,CAAC;AA8BF,eAAe,SAAS,CAAC"}
1
+ {"version":3,"file":"DateInput.d.ts","sourceRoot":"","sources":["../../../src/dateInput/DateInput.tsx"],"names":[],"mappings":";AAIA,OAAO,EAAgD,gBAAgB,EAAE,MAAM,IAAI,CAAC;AACpF,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAQ,SAAS,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AAM1F,MAAM,WAAW,cAAc;IAC7B,kFAAkF;IAClF,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,IAAI,CAAC,EAAE,SAAS,GAAG,UAAU,GAAG,SAAS,CAAC;IAC1C,KAAK,CAAC,EAAE,IAAI,GAAG,MAAM,CAAC;IACtB,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,KAAK,IAAI,CAAC;IACzC,OAAO,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,cAAc,CAAC,CAAC;IAClD,MAAM,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,cAAc,CAAC,CAAC;IACjD,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,WAAW,CAAC,EAAE,GAAG,WAAW,EAAE,CAAC;IAC/B,IAAI,CAAC,EAAE,GAAG,QAAQ,EAAE,CAAC;IACrB,YAAY,CAAC,EAAE;QACb,GAAG,CAAC,EAAE,MAAM,CAAC;QACb,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,IAAI,CAAC,EAAE,MAAM,CAAC;KACf,CAAC;IACF,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,WAAW,CAAC,EAAE,OAAO,CAAC,gBAAgB,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC,CAAC;CACxD;AAED,QAAA,MAAM,SAAS,wPAmBZ,cAAc,gCA6ShB,CAAC;AA8BF,eAAe,SAAS,CAAC"}
@@ -1,5 +1,6 @@
1
1
  import { PureComponent, KeyboardEvent } from 'react';
2
2
  import { Size, MonthFormat, SizeSmall, SizeMedium, SizeLarge } from '../common';
3
+ import { WithInputAttributesProps } from '../inputs/contexts';
3
4
  export interface DateLookupProps {
4
5
  id?: string;
5
6
  value: Date | null;
@@ -16,6 +17,7 @@ export interface DateLookupProps {
16
17
  onFocus?: () => void;
17
18
  onBlur?: () => void;
18
19
  }
20
+ type DateLookupPropsWithInputAttributes = DateLookupProps & Partial<WithInputAttributesProps>;
19
21
  interface DateLookupState {
20
22
  selectedDate: Date | null;
21
23
  originalDate: Date | null;
@@ -27,8 +29,8 @@ interface DateLookupState {
27
29
  mode: 'day' | 'month' | 'year';
28
30
  isMobile: boolean;
29
31
  }
30
- declare class DateLookup extends PureComponent<DateLookupProps, DateLookupState> {
31
- props: DateLookupProps & Required<Pick<DateLookupProps, keyof typeof DateLookup.defaultProps>>;
32
+ declare class DateLookup extends PureComponent<DateLookupPropsWithInputAttributes, DateLookupState> {
33
+ props: DateLookupPropsWithInputAttributes & Required<Pick<DateLookupPropsWithInputAttributes, keyof typeof DateLookup.defaultProps>>;
32
34
  static defaultProps: {
33
35
  value: null;
34
36
  min: null;
@@ -50,7 +52,7 @@ declare class DateLookup extends PureComponent<DateLookupProps, DateLookupState>
50
52
  viewMonth: number;
51
53
  viewYear: number;
52
54
  } | null;
53
- componentDidUpdate(previousProps: DateLookupProps): void;
55
+ componentDidUpdate(previousProps: DateLookupPropsWithInputAttributes): void;
54
56
  componentWillUnmount(): void;
55
57
  open: () => void;
56
58
  discard: () => void;
@@ -71,5 +73,10 @@ declare class DateLookup extends PureComponent<DateLookupProps, DateLookupState>
71
73
  handleClear: () => void;
72
74
  render(): import("react").JSX.Element;
73
75
  }
74
- export default DateLookup;
76
+ export declare const DateLookupWithoutInputAttributes: typeof DateLookup;
77
+ declare const _default: {
78
+ (props: Omit<DateLookupPropsWithInputAttributes, "inputAttributes">): import("react").JSX.Element;
79
+ displayName: string;
80
+ };
81
+ export default _default;
75
82
  //# sourceMappingURL=DateLookup.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"DateLookup.d.ts","sourceRoot":"","sources":["../../../src/dateLookup/DateLookup.tsx"],"names":[],"mappings":"AACA,OAAO,EAAa,aAAa,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAEhE,OAAO,EACL,IAAI,EACJ,WAAW,EAGX,SAAS,EACT,UAAU,EACV,SAAS,EACV,MAAM,WAAW,CAAC;AAUnB,MAAM,WAAW,eAAe;IAC9B,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,KAAK,EAAE,IAAI,GAAG,IAAI,CAAC;IACnB,GAAG,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IAClB,GAAG,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IAClB,IAAI,CAAC,EAAE,SAAS,GAAG,UAAU,GAAG,SAAS,CAAC;IAC1C,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,WAAW,CAAC,EAAE,GAAG,WAAW,EAAE,CAAC;IAC/B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,QAAQ,EAAE,CAAC,IAAI,EAAE,IAAI,GAAG,IAAI,KAAK,IAAI,CAAC;IACtC,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,MAAM,CAAC,EAAE,MAAM,IAAI,CAAC;CACrB;AAED,UAAU,eAAe;IACvB,YAAY,EAAE,IAAI,GAAG,IAAI,CAAC;IAC1B,YAAY,EAAE,IAAI,GAAG,IAAI,CAAC;IAC1B,GAAG,EAAE,IAAI,GAAG,IAAI,CAAC;IACjB,GAAG,EAAE,IAAI,GAAG,IAAI,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,OAAO,CAAC;IACd,IAAI,EAAE,KAAK,GAAG,OAAO,GAAG,MAAM,CAAC;IAC/B,QAAQ,EAAE,OAAO,CAAC;CACnB;AAED,cAAM,UAAW,SAAQ,aAAa,CAAC,eAAe,EAAE,eAAe,CAAC;IAC9D,KAAK,EAAE,eAAe,GAC5B,QAAQ,CAAC,IAAI,CAAC,eAAe,EAAE,MAAM,OAAO,UAAU,CAAC,YAAY,CAAC,CAAC,CAAC;IAExE,MAAM,CAAC,YAAY;;;;;;;;;;MAUkB;IAErC,OAAO,4CAA+B;IACtC,QAAQ,4CAA+B;gBAE3B,KAAK,EAAE,UAAU,CAAC,OAAO,CAAC;IAetC,MAAM,CAAC,wBAAwB,CAAC,KAAK,EAAE,UAAU,CAAC,OAAO,CAAC,EAAE,KAAK,EAAE,eAAe;;;;;;;IAwBlF,kBAAkB,CAAC,aAAa,EAAE,eAAe;IAQjD,oBAAoB;IAKpB,IAAI,aAOF;IAEF,OAAO,aAML;IAEF,KAAK,aAMH;IAEF,aAAa,UAAW,cAAc,cAAc,CAAC,UA6CnD;IAEF,UAAU,cAAe,MAAM,eAAe,MAAM,cAAc,MAAM,UAqBtE;IAEF,OAAO,qBAAsB,MAAM,oBAAoB,MAAM,UAO3D;IAEF,UAAU,SAAU,KAAK,GAAG,OAAO,GAAG,MAAM,UAI1C;IAEF,YAAY,aAAgC;IAE5C,cAAc,aAAkC;IAEhD,aAAa,aAAiC;IAE9C,wBAAwB,iBAAkB,IAAI,UAM5C;IAEF,oBAAoB;;;eAElB;IAEF,WAAW,oCA2CT;IAEF,WAAW,aAGT;IAEF,MAAM;CA2CP;AAED,eAAe,UAAU,CAAC"}
1
+ {"version":3,"file":"DateLookup.d.ts","sourceRoot":"","sources":["../../../src/dateLookup/DateLookup.tsx"],"names":[],"mappings":"AACA,OAAO,EAAa,aAAa,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAEhE,OAAO,EACL,IAAI,EACJ,WAAW,EAGX,SAAS,EACT,UAAU,EACV,SAAS,EACV,MAAM,WAAW,CAAC;AAGnB,OAAO,EAAE,wBAAwB,EAAuB,MAAM,oBAAoB,CAAC;AAOnF,MAAM,WAAW,eAAe;IAC9B,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,KAAK,EAAE,IAAI,GAAG,IAAI,CAAC;IACnB,GAAG,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IAClB,GAAG,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IAClB,IAAI,CAAC,EAAE,SAAS,GAAG,UAAU,GAAG,SAAS,CAAC;IAC1C,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,WAAW,CAAC,EAAE,GAAG,WAAW,EAAE,CAAC;IAC/B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,QAAQ,EAAE,CAAC,IAAI,EAAE,IAAI,GAAG,IAAI,KAAK,IAAI,CAAC;IACtC,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,MAAM,CAAC,EAAE,MAAM,IAAI,CAAC;CACrB;AAED,KAAK,kCAAkC,GAAG,eAAe,GAAG,OAAO,CAAC,wBAAwB,CAAC,CAAC;AAE9F,UAAU,eAAe;IACvB,YAAY,EAAE,IAAI,GAAG,IAAI,CAAC;IAC1B,YAAY,EAAE,IAAI,GAAG,IAAI,CAAC;IAC1B,GAAG,EAAE,IAAI,GAAG,IAAI,CAAC;IACjB,GAAG,EAAE,IAAI,GAAG,IAAI,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,OAAO,CAAC;IACd,IAAI,EAAE,KAAK,GAAG,OAAO,GAAG,MAAM,CAAC;IAC/B,QAAQ,EAAE,OAAO,CAAC;CACnB;AAED,cAAM,UAAW,SAAQ,aAAa,CAAC,kCAAkC,EAAE,eAAe,CAAC;IACjF,KAAK,EAAE,kCAAkC,GAC/C,QAAQ,CAAC,IAAI,CAAC,kCAAkC,EAAE,MAAM,OAAO,UAAU,CAAC,YAAY,CAAC,CAAC,CAAC;IAE3F,MAAM,CAAC,YAAY;;;;;;;;;;MAUqC;IAExD,OAAO,4CAA+B;IACtC,QAAQ,4CAA+B;gBAE3B,KAAK,EAAE,UAAU,CAAC,OAAO,CAAC;IAetC,MAAM,CAAC,wBAAwB,CAAC,KAAK,EAAE,UAAU,CAAC,OAAO,CAAC,EAAE,KAAK,EAAE,eAAe;;;;;;;IAwBlF,kBAAkB,CAAC,aAAa,EAAE,kCAAkC;IAQpE,oBAAoB;IAKpB,IAAI,aAOF;IAEF,OAAO,aAML;IAEF,KAAK,aAMH;IAEF,aAAa,UAAW,cAAc,cAAc,CAAC,UA6CnD;IAEF,UAAU,cAAe,MAAM,eAAe,MAAM,cAAc,MAAM,UAqBtE;IAEF,OAAO,qBAAsB,MAAM,oBAAoB,MAAM,UAO3D;IAEF,UAAU,SAAU,KAAK,GAAG,OAAO,GAAG,MAAM,UAI1C;IAEF,YAAY,aAAgC;IAE5C,cAAc,aAAkC;IAEhD,aAAa,aAAiC;IAE9C,wBAAwB,iBAAkB,IAAI,UAM5C;IAEF,oBAAoB;;;eAElB;IAEF,WAAW,oCA2CT;IAEF,WAAW,aAGT;IAEF,MAAM;CAiDP;AAED,eAAO,MAAM,gCAAgC,mBAAa,CAAC;;;;;AAE3D,wBAKE"}
@@ -0,0 +1,12 @@
1
+ /// <reference types="react" />
2
+ export type FieldProps = {
3
+ /** `null` disables auto-generating the `id` attribute, falling back to nesting-based label association over setting `htmlFor` explicitly. */
4
+ id?: string | null;
5
+ label: React.ReactNode;
6
+ hint?: React.ReactNode;
7
+ error?: React.ReactNode;
8
+ className?: string;
9
+ children?: React.ReactNode;
10
+ };
11
+ export declare const Field: ({ id, label, hint, error, className, children }: FieldProps) => import("react").JSX.Element;
12
+ //# sourceMappingURL=Field.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Field.d.ts","sourceRoot":"","sources":["../../../src/field/Field.tsx"],"names":[],"mappings":";AAaA,MAAM,MAAM,UAAU,GAAG;IACvB,6IAA6I;IAC7I,EAAE,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACnB,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,KAAK,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACxB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC5B,CAAC;AAEF,eAAO,MAAM,KAAK,oDAAqD,UAAU,gCA8ChF,CAAC"}
@@ -6,6 +6,7 @@ export type { ActionOptionProps } from './actionOption';
6
6
  export type { AlertAction, AlertProps, AlertType } from './alert';
7
7
  export type { AvatarProps } from './avatar';
8
8
  export type { BadgeProps } from './badge';
9
+ export type { CarouselProps } from './carousel';
9
10
  export type { CircularButtonProps } from './circularButton';
10
11
  export type { BodyTypes, DisplayTypes, LayoutDirection, LinkTypes, TitleTypes, TypographyTypes, } from './common';
11
12
  export type { BottomSheetProps } from './common/bottomSheet';
@@ -14,6 +15,7 @@ export type { DateLookupProps } from './dateLookup';
14
15
  export type { DecisionProps } from './decision/Decision';
15
16
  export type { DimmerProps } from './dimmer';
16
17
  export type { EmphasisProps } from './emphasis';
18
+ export type { FieldProps } from './field/Field';
17
19
  export type { InfoProps } from './info';
18
20
  export type { InputWithDisplayFormatProps } from './inputWithDisplayFormat';
19
21
  export type { InputProps } from './inputs/Input';
@@ -22,6 +24,7 @@ export type { SearchInputProps } from './inputs/SearchInput';
22
24
  export type { SelectInputGroupItem, SelectInputItem, SelectInputOptionContentProps, SelectInputOptionItem, SelectInputProps, SelectInputSeparatorItem, SelectInputTriggerButtonProps, } from './inputs/SelectInput';
23
25
  export type { TextAreaProps } from './inputs/TextArea';
24
26
  export type { InstructionsListProps } from './instructionsList';
27
+ export type { LabelProps } from './label/Label';
25
28
  export type { LoaderProps } from './loader';
26
29
  export type { MarkdownProps } from './markdown';
27
30
  export type { ModalProps } from './modal';
@@ -61,6 +64,7 @@ export { default as AvatarWrapper } from './avatarWrapper';
61
64
  export { default as Badge } from './badge';
62
65
  export { default as Body } from './body';
63
66
  export { default as Button } from './button';
67
+ export { default as Carousel } from './carousel';
64
68
  export { default as Card } from './card';
65
69
  export { default as Checkbox } from './checkbox';
66
70
  export { default as CheckboxButton } from './checkboxButton';
@@ -82,6 +86,7 @@ export { default as Drawer } from './drawer';
82
86
  export { default as DropFade } from './dropFade';
83
87
  export { default as Emphasis } from './emphasis';
84
88
  export { default as FlowNavigation } from './flowNavigation/FlowNavigation';
89
+ export { Field } from './field/Field';
85
90
  export { default as Header } from './header';
86
91
  export { default as Image } from './image';
87
92
  export { default as Info } from './info';
@@ -93,6 +98,7 @@ export { SearchInput } from './inputs/SearchInput';
93
98
  export { SelectInput, SelectInputOptionContent, SelectInputTriggerButton, } from './inputs/SelectInput';
94
99
  export { TextArea } from './inputs/TextArea';
95
100
  export { default as InstructionsList } from './instructionsList';
101
+ export { Label } from './label/Label';
96
102
  export { default as Link } from './link';
97
103
  export { default as ListItem } from './listItem';
98
104
  export { default as Loader } from './loader';