@telus-uds/components-base 4.0.0-alpha.1 → 4.0.0-beta.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 (129) hide show
  1. package/CHANGELOG.md +43 -1
  2. package/lib/cjs/Autocomplete/Autocomplete.js +13 -1
  3. package/lib/cjs/Autocomplete/constants.js +1 -1
  4. package/lib/cjs/Footnote/FootnoteLink.js +18 -17
  5. package/lib/cjs/Listbox/ListboxOverlay.js +7 -1
  6. package/lib/cjs/MultiSelectFilter/ModalOverlay.js +7 -1
  7. package/lib/cjs/MultiSelectFilter/MultiSelectFilter.js +2 -28
  8. package/lib/cjs/Progress/Progress.js +30 -5
  9. package/lib/cjs/Scroll/Scroll.js +472 -0
  10. package/lib/cjs/Scroll/ScrollContext.js +55 -0
  11. package/lib/cjs/Scroll/ScrollItem.js +106 -0
  12. package/lib/cjs/Scroll/ScrollProgress.js +100 -0
  13. package/lib/cjs/Scroll/dictionary.js +18 -0
  14. package/lib/cjs/TextInput/TextInputBase.js +2 -1
  15. package/lib/cjs/index.js +14 -0
  16. package/lib/cjs/utils/animation/useAnimatedValue.js +46 -0
  17. package/lib/cjs/utils/children.js +2 -1
  18. package/lib/cjs/utils/useOverlaidPosition.js +83 -42
  19. package/lib/esm/Autocomplete/Autocomplete.js +13 -1
  20. package/lib/esm/Autocomplete/constants.js +1 -1
  21. package/lib/esm/Footnote/FootnoteLink.js +18 -17
  22. package/lib/esm/Listbox/ListboxOverlay.js +7 -1
  23. package/lib/esm/MultiSelectFilter/ModalOverlay.js +8 -2
  24. package/lib/esm/MultiSelectFilter/MultiSelectFilter.js +2 -28
  25. package/lib/esm/Progress/Progress.js +30 -5
  26. package/lib/esm/Scroll/Scroll.js +465 -0
  27. package/lib/esm/Scroll/ScrollContext.js +46 -0
  28. package/lib/esm/Scroll/ScrollItem.js +100 -0
  29. package/lib/esm/Scroll/ScrollProgress.js +93 -0
  30. package/lib/esm/Scroll/dictionary.js +12 -0
  31. package/lib/esm/TextInput/TextInputBase.js +2 -1
  32. package/lib/esm/index.js +2 -0
  33. package/lib/esm/utils/animation/useAnimatedValue.js +38 -0
  34. package/lib/esm/utils/children.js +2 -1
  35. package/lib/esm/utils/useOverlaidPosition.js +83 -42
  36. package/lib/package.json +2 -2
  37. package/package.json +2 -2
  38. package/src/Autocomplete/Autocomplete.jsx +11 -2
  39. package/src/Autocomplete/constants.js +1 -1
  40. package/src/Footnote/FootnoteLink.jsx +17 -12
  41. package/src/Listbox/ListboxOverlay.jsx +6 -2
  42. package/src/MultiSelectFilter/ModalOverlay.jsx +9 -3
  43. package/src/MultiSelectFilter/MultiSelectFilter.jsx +1 -31
  44. package/src/Progress/Progress.jsx +22 -3
  45. package/src/Scroll/Scroll.jsx +483 -0
  46. package/src/Scroll/ScrollContext.jsx +39 -0
  47. package/src/Scroll/ScrollItem.jsx +87 -0
  48. package/src/Scroll/ScrollProgress.jsx +74 -0
  49. package/src/Scroll/dictionary.js +12 -0
  50. package/src/TextInput/TextInputBase.jsx +2 -1
  51. package/src/index.js +2 -0
  52. package/src/utils/animation/useAnimatedValue.js +35 -0
  53. package/src/utils/children.jsx +4 -1
  54. package/src/utils/useOverlaidPosition.js +84 -34
  55. package/types/A11yInfoProvider.d.ts +9 -0
  56. package/types/A11yText.d.ts +13 -0
  57. package/types/ActionCard.d.ts +19 -0
  58. package/types/ActivityIndicator.d.ts +13 -0
  59. package/types/Autocomplete.d.ts +27 -0
  60. package/types/Badge.d.ts +15 -4
  61. package/types/BaseProvider.d.ts +26 -0
  62. package/types/Box.d.ts +13 -3
  63. package/types/Button.d.ts +35 -0
  64. package/types/Card.d.ts +19 -0
  65. package/types/CardGroup.d.ts +23 -0
  66. package/types/Carousel.d.ts +25 -0
  67. package/types/Checkbox.d.ts +15 -2
  68. package/types/CheckboxCard.d.ts +20 -0
  69. package/types/CheckboxCardGroup.d.ts +10 -4
  70. package/types/ChevronLink.d.ts +9 -2
  71. package/types/ColourToggle.d.ts +16 -0
  72. package/types/Common.d.ts +7 -3
  73. package/types/Divider.d.ts +13 -1
  74. package/types/DownloadApp.d.ts +19 -0
  75. package/types/ExpandCollapse.d.ts +16 -9
  76. package/types/ExpandCollapseMini.d.ts +16 -0
  77. package/types/Feedback.d.ts +16 -0
  78. package/types/Fieldset.d.ts +17 -0
  79. package/types/FileUpload.d.ts +6 -0
  80. package/types/FlexGrid.d.ts +57 -0
  81. package/types/Footnote.d.ts +18 -0
  82. package/types/HorizontalScroll.d.ts +15 -0
  83. package/types/HorizontalScrollButton.d.ts +17 -1
  84. package/types/Icon.d.ts +13 -2
  85. package/types/IconButton.d.ts +19 -0
  86. package/types/InputLabel.d.ts +12 -0
  87. package/types/InputSupports.d.ts +19 -0
  88. package/types/Link.d.ts +20 -4
  89. package/types/List.d.ts +11 -4
  90. package/types/Listbox.d.ts +13 -3
  91. package/types/Modal.d.ts +25 -0
  92. package/types/MultiSelectFilter.d.ts +24 -0
  93. package/types/Notification.d.ts +19 -0
  94. package/types/OrderedList.d.ts +17 -0
  95. package/types/Pagination.d.ts +25 -0
  96. package/types/Portal.d.ts +5 -1
  97. package/types/PriceLockup.d.ts +28 -0
  98. package/types/ProductCard.d.ts +20 -0
  99. package/types/ProductCardGroup.d.ts +21 -0
  100. package/types/Progress.d.ts +22 -0
  101. package/types/QuickLinks.d.ts +27 -0
  102. package/types/QuickLinksFeature.d.ts +27 -0
  103. package/types/Radio.d.ts +22 -0
  104. package/types/RadioCard.d.ts +21 -0
  105. package/types/Responsive.d.ts +14 -0
  106. package/types/Scroll.d.ts +66 -0
  107. package/types/Search.d.ts +15 -2
  108. package/types/Select.d.ts +12 -4
  109. package/types/SideNav.d.ts +38 -0
  110. package/types/Skeleton.d.ts +17 -0
  111. package/types/SkipLink.d.ts +14 -0
  112. package/types/Spacer.d.ts +8 -1
  113. package/types/StackView.d.ts +8 -2
  114. package/types/Status.d.ts +2 -3
  115. package/types/StepTracker.d.ts +16 -0
  116. package/types/TabBar.d.ts +25 -0
  117. package/types/Tabs.d.ts +12 -3
  118. package/types/Tags.d.ts +24 -0
  119. package/types/TextButton.d.ts +11 -4
  120. package/types/TextInput.d.ts +38 -0
  121. package/types/ThemeProvider.d.ts +29 -0
  122. package/types/Timeline.d.ts +16 -0
  123. package/types/ToggleSwitch.d.ts +11 -2
  124. package/types/ToolTip.d.ts +7 -3
  125. package/types/TooltipButton.d.ts +20 -0
  126. package/types/Typography.d.ts +8 -2
  127. package/types/Validator.d.ts +16 -0
  128. package/types/ViewportProvider.d.ts +12 -0
  129. package/types/index.d.ts +205 -49
@@ -0,0 +1,24 @@
1
+ import type { ComponentType } from 'react'
2
+
3
+ export interface TagItem {
4
+ id?: string
5
+ label: string
6
+ accessibilityLabel?: string
7
+ defaultChecked?: boolean
8
+ checked?: boolean
9
+ [key: string]: any
10
+ }
11
+
12
+ export interface TagsProps {
13
+ items: TagItem[]
14
+ maxValues?: number
15
+ tokens?: Record<string, string | number | boolean | object>
16
+ variant?: Record<string, string | number | boolean | undefined>
17
+ onChange?: (selectedIds: string[]) => void
18
+ testID?: string
19
+ dataSet?: Record<string, any>
20
+ }
21
+
22
+ declare const Tags: ComponentType<TagsProps>
23
+
24
+ export { Tags }
@@ -1,11 +1,18 @@
1
- import React from 'react'
1
+ import type { ComponentType, ReactNode } from 'react'
2
2
  import { LinkTokens, LinkAndTextButtonVariants } from './Link'
3
3
 
4
4
  export interface TextButtonProps {
5
- onPress: () => void
6
- accessibilityLabel: string
7
- children: string | React.ReactNode
5
+ onPress?: () => void
6
+ accessibilityLabel?: string
7
+ children: string | ReactNode
8
8
  variant?: LinkAndTextButtonVariants
9
9
  tokens?: LinkTokens
10
10
  testID?: string
11
+ href?: string
12
+ onPressIn?: () => void
13
+ onPressOut?: () => void
11
14
  }
15
+
16
+ declare const TextButton: ComponentType<TextButtonProps>
17
+
18
+ export { TextButton }
@@ -0,0 +1,38 @@
1
+ import type { ComponentType } from 'react'
2
+
3
+ export interface TextInputProps {
4
+ value?: string
5
+ type?: string
6
+ initialValue?: string
7
+ inactive?: boolean
8
+ readOnly?: boolean
9
+ onChange?: (value: string, event?: any) => void
10
+ label?: string
11
+ hint?: string
12
+ hintPosition?: 'inline' | 'below'
13
+ feedback?: string
14
+ validation?: 'error' | 'success'
15
+ tooltip?: string | Record<string, any>
16
+ copy?: 'en' | 'fr'
17
+ placeholder?: string
18
+ id?: string
19
+ name?: string
20
+ maxLength?: number
21
+ multiline?: boolean
22
+ numberOfLines?: number
23
+ autoComplete?: string
24
+ autoFocus?: boolean
25
+ keyboardType?: string
26
+ returnKeyType?: string
27
+ secureTextEntry?: boolean
28
+ tokens?: Record<string, string | number | boolean | object>
29
+ variant?: Record<string, string | number | boolean | undefined>
30
+ testID?: string
31
+ dataSet?: Record<string, any>
32
+ accessibilityLabel?: string
33
+ nativeID?: string
34
+ }
35
+
36
+ declare const TextInput: ComponentType<TextInputProps>
37
+
38
+ export { TextInput }
@@ -0,0 +1,29 @@
1
+ import type { ComponentType, ReactNode } from 'react'
2
+
3
+ export interface ThemeMetadata {
4
+ themeTokensVersion: string
5
+ name: string
6
+ }
7
+
8
+ export interface ThemeOptions {
9
+ forceAbsoluteFontSizing?: boolean
10
+ contentMaxWidth?: number
11
+ forceZIndex?: boolean
12
+ enableHelmetSSR?: boolean
13
+ enableMediaQueryStyleSheet?: boolean
14
+ }
15
+
16
+ export interface Theme {
17
+ metadata: ThemeMetadata
18
+ [key: string]: any
19
+ }
20
+
21
+ export interface ThemeProviderProps {
22
+ children: ReactNode
23
+ defaultTheme: Theme
24
+ options?: ThemeOptions
25
+ }
26
+
27
+ declare const ThemeProvider: ComponentType<ThemeProviderProps>
28
+
29
+ export { ThemeProvider }
@@ -0,0 +1,16 @@
1
+ import type { ComponentType, ReactNode } from 'react'
2
+
3
+ export interface TimelineProps {
4
+ children: ReactNode[]
5
+ accessibilityLabel: string
6
+ tokens?: Record<string, string | number | boolean | object>
7
+ variant?: Record<string, string | number | boolean | undefined>
8
+ tag?: string
9
+ childrenTag?: string
10
+ testID?: string
11
+ dataSet?: Record<string, any>
12
+ }
13
+
14
+ declare const Timeline: ComponentType<TimelineProps>
15
+
16
+ export { Timeline }
@@ -1,6 +1,7 @@
1
+ import type { ComponentType } from 'react'
1
2
  import { CopyType } from './Common'
2
3
 
3
- type ToggleSwitchTokens = {
4
+ export type ToggleSwitchTokens = {
4
5
  borderColor?: string
5
6
  borderWidth?: number
6
7
  borderRadius?: number
@@ -17,7 +18,7 @@ type ToggleSwitchTokens = {
17
18
  shadow?: string
18
19
  alignSelf?: string
19
20
  space?: number
20
- icon?: React.ReactNode
21
+ icon?: any
21
22
  trackHeight?: number
22
23
  outerBorderGapButton?: number
23
24
  width?: number
@@ -52,4 +53,12 @@ export interface ToggleSwitchProps {
52
53
  testID?: string
53
54
  tokens?: ToggleSwitchTokens
54
55
  togglePosition?: 'start' | 'end'
56
+ pointerEvents?: 'all' | 'none' | 'box-only' | 'box-none'
57
+ onLayout?: (event: any) => void
58
+ nativeID?: string
59
+ dataSet?: Record<string, any>
55
60
  }
61
+
62
+ declare const ToggleSwitch: ComponentType<ToggleSwitchProps>
63
+
64
+ export { ToggleSwitch }
@@ -1,7 +1,7 @@
1
- import { ReactNode } from 'react'
1
+ import type { ComponentType, ReactNode } from 'react'
2
2
  import { CopyType, Position } from './Common'
3
3
 
4
- type TooltipTokens = {
4
+ export type TooltipTokens = {
5
5
  backgroundColor?: string
6
6
  paddingTop?: number
7
7
  paddingBottom?: number
@@ -19,7 +19,7 @@ type TooltipTokens = {
19
19
  arrowOffset?: number
20
20
  }
21
21
 
22
- type TooltipVariants = {
22
+ export type TooltipVariants = {
23
23
  inverse?: boolean
24
24
  }
25
25
 
@@ -38,3 +38,7 @@ export interface TooltipProps {
38
38
  accessible?: boolean
39
39
  testID?: string
40
40
  }
41
+
42
+ declare const Tooltip: ComponentType<TooltipProps>
43
+
44
+ export { Tooltip }
@@ -0,0 +1,20 @@
1
+ import type { ComponentType } from 'react'
2
+
3
+ export interface TooltipButtonPressableState {
4
+ pressed: boolean
5
+ hover: boolean
6
+ focus: boolean
7
+ }
8
+
9
+ export interface TooltipButtonProps {
10
+ pressableState?: TooltipButtonPressableState
11
+ tokens?: Record<string, string | number | boolean | object>
12
+ variant?: Record<string, string | number | boolean | undefined>
13
+ testID?: string
14
+ dataSet?: Record<string, any>
15
+ accessibilityLabel?: string
16
+ }
17
+
18
+ declare const TooltipButton: ComponentType<TooltipButtonProps>
19
+
20
+ export { TooltipButton }
@@ -1,4 +1,5 @@
1
- import { LetterSpacing, TextTransform } from './Common'
1
+ import type { ComponentType, ReactNode } from 'react'
2
+ import { LetterSpacing, TextTransform, tagType, headingType, alignType } from './Common'
2
3
 
3
4
  export interface TypographyProps {
4
5
  tag?: tagType | string
@@ -10,7 +11,8 @@ export interface TypographyProps {
10
11
  heading?: headingType | string
11
12
  accessible?: boolean
12
13
  accessibilityLabel?: string
13
- children?: React.ReactNode
14
+ children?: ReactNode
15
+ dataSet?: Record<string, any>
14
16
  }
15
17
 
16
18
  export type TypographyVariants = {
@@ -38,3 +40,7 @@ export type TypographyTokens = {
38
40
  fontScaleCap?: number
39
41
  letterSpacing?: LetterSpacing
40
42
  }
43
+
44
+ declare const Typography: ComponentType<TypographyProps>
45
+
46
+ export { Typography }
@@ -0,0 +1,16 @@
1
+ import type { ComponentType } from 'react'
2
+
3
+ export interface ValidatorProps {
4
+ value?: string
5
+ inactive?: boolean
6
+ mask?: string
7
+ onChange?: (value: string) => void
8
+ tokens?: Record<string, string | number | boolean | object>
9
+ variant?: Record<string, string | number | boolean | undefined>
10
+ testID?: string
11
+ dataSet?: Record<string, any>
12
+ }
13
+
14
+ declare const Validator: ComponentType<ValidatorProps>
15
+
16
+ export { Validator }
@@ -0,0 +1,12 @@
1
+ import type { ComponentType, ReactNode } from 'react'
2
+
3
+ export type ViewportKey = 'xs' | 'sm' | 'md' | 'lg' | 'xl'
4
+
5
+ export interface ViewportProviderProps {
6
+ children: ReactNode
7
+ defaultViewport?: ViewportKey
8
+ }
9
+
10
+ declare const ViewportProvider: ComponentType<ViewportProviderProps>
11
+
12
+ export { ViewportProvider }
package/types/index.d.ts CHANGED
@@ -1,27 +1,66 @@
1
- export { default as Badge } from './Badge'
1
+ export { A11yInfoProvider } from './A11yInfoProvider'
2
+ export type { A11yInfoProviderProps } from './A11yInfoProvider'
3
+
4
+ export { A11yText } from './A11yText'
5
+ export type { A11yTextProps } from './A11yText'
6
+
7
+ export { ActionCard } from './ActionCard'
8
+ export type { ActionCardProps } from './ActionCard'
9
+
10
+ export { ActivityIndicator } from './ActivityIndicator'
11
+ export type { ActivityIndicatorProps } from './ActivityIndicator'
12
+
13
+ export { Autocomplete } from './Autocomplete'
14
+ export type { AutocompleteProps, AutocompleteItem } from './Autocomplete'
15
+
16
+ export { Badge } from './Badge'
2
17
  export type { BadgeProps, BadgeVariants, BadgeTokens } from './Badge'
3
18
 
4
- export { default as Box } from './Box'
19
+ export { BaseProvider } from './BaseProvider'
20
+ export type { BaseProviderProps } from './BaseProvider'
21
+
22
+ export { Box } from './Box'
5
23
  export type { BoxVariants, BoxTokens, BoxProps } from './Box'
6
24
 
7
- export { default as ChevronLink } from './ChevronLink'
8
- export { ChevronLinkTokens, ChevronLinkProps, HrefProps } from './ChevronLink'
25
+ export { Button } from './Button'
26
+ export type { ButtonProps, ButtonPressableState } from './Button'
27
+
28
+ export { Card } from './Card'
29
+ export type { CardProps } from './Card'
9
30
 
10
- export { default as Checkbox } from './Checkbox'
11
- export { CheckboxProps, CheckboxTokens } from './Checkbox'
31
+ export { CardGroup } from './CardGroup'
32
+ export type { CardGroupProps, CardGroupItem } from './CardGroup'
12
33
 
13
- export { default as CheckboxCardGroup } from './CheckboxCardGroup'
14
- export {
34
+ export { Carousel } from './Carousel'
35
+ export type { CarouselProps, CarouselItemProps } from './Carousel'
36
+
37
+ export { CheckboxCard } from './CheckboxCard'
38
+ export type { CheckboxCardProps } from './CheckboxCard'
39
+
40
+ export { CheckboxCardGroup } from './CheckboxCardGroup'
41
+ export type {
15
42
  CheckboxCardGroupProps,
16
43
  CheckboxCardGroupTokens,
17
- checkboxCardTokens
44
+ CheckboxCardTokens
18
45
  } from './CheckboxCardGroup'
19
46
 
20
- export { default as Divider } from './Divider'
21
- export { DividerVariants, DividerProps, DividerTokens } from './Divider'
47
+ export { Checkbox } from './Checkbox'
48
+ export type { CheckboxProps, CheckboxTokens } from './Checkbox'
49
+
50
+ export { ChevronLink } from './ChevronLink'
51
+ export type { ChevronLinkTokens, ChevronLinkProps, HrefProps } from './ChevronLink'
52
+
53
+ export { ColourToggle } from './ColourToggle'
54
+ export type { ColourToggleProps } from './ColourToggle'
55
+
56
+ export { Divider } from './Divider'
57
+ export type { DividerVariants, DividerProps, DividerTokens } from './Divider'
58
+
59
+ export { DownloadApp } from './DownloadApp'
60
+ export type { DownloadAppProps } from './DownloadApp'
22
61
 
23
- export { default as ExpandCollapse } from './ExpandCollapse'
24
- export {
62
+ export { ExpandCollapse } from './ExpandCollapse'
63
+ export type {
25
64
  ExpandCollapseVariants,
26
65
  ExpandCollapseTokens,
27
66
  ExpandCollapseControlTokens,
@@ -30,29 +69,116 @@ export {
30
69
  ExpandCollapsePanelProps
31
70
  } from './ExpandCollapse'
32
71
 
33
- export { default as FileUpload } from './FileUpload'
34
- export { FileUploadTokens, FileUploadProps } from './FileUpload'
72
+ export { ExpandCollapseMini } from './ExpandCollapseMini'
73
+ export type { ExpandCollapseMiniProps } from './ExpandCollapseMini'
74
+
75
+ export { Feedback } from './Feedback'
76
+ export type { FeedbackProps } from './Feedback'
77
+
78
+ export { Fieldset } from './Fieldset'
79
+ export type { FieldsetProps } from './Fieldset'
80
+
81
+ export { FileUpload } from './FileUpload'
82
+ export type { FileUploadTokens, FileUploadProps } from './FileUpload'
83
+
84
+ export { FlexGrid } from './FlexGrid'
85
+ export type { FlexGridProps, FlexGridRowProps, FlexGridColProps } from './FlexGrid'
86
+
87
+ export { Footnote } from './Footnote'
88
+ export type { FootnoteProps } from './Footnote'
89
+
90
+ export { HorizontalScroll } from './HorizontalScroll'
91
+ export type { HorizontalScrollProps } from './HorizontalScroll'
92
+
93
+ export { HorizontalScrollButton } from './HorizontalScrollButton'
94
+ export type {
95
+ HorizontalScrollButtonTokens,
96
+ HorizontalScrollButtonProps
97
+ } from './HorizontalScrollButton'
98
+
99
+ export { Icon } from './Icon'
100
+ export type { IconProps, IconTokens, IconVariant, IconPositionLeftRight } from './Icon'
101
+
102
+ export { IconButton } from './IconButton'
103
+ export type { IconButtonProps } from './IconButton'
104
+
105
+ export { InputLabel } from './InputLabel'
106
+ export type { InputLabelProps } from './InputLabel'
107
+
108
+ export { InputSupports } from './InputSupports'
109
+ export type { InputSupportsProps } from './InputSupports'
110
+
111
+ export { Link } from './Link'
112
+ export type { LinkProps, LinkSize, LinkAndTextButtonVariants, LinkTokens, HrefAttrs } from './Link'
35
113
 
36
- export { default as HorizontalScrollButton } from './HorizontalScrollButton'
37
- export { HorizontalScrollButtonTokens } from './HorizontalScrollButton'
114
+ export { List } from './List'
115
+ export type { ListVariants, ListTokens, ListProps, ListItemProps, ListItemTokens } from './List'
38
116
 
39
- export { default as Icon } from './Icon'
40
- export { IconProps, IconTokens, IconVariant, IconPositionLeftRight } from './Icon'
117
+ export { Listbox } from './Listbox'
118
+ export type { ListboxProps, ListboxTokens, ListboxItems } from './Listbox'
41
119
 
42
- export { default as Link } from './Link'
43
- export { LinkProps, LinkSize, LinkAndTextButtonVariants, LinkTokens } from './Link'
120
+ export { Modal } from './Modal'
121
+ export type { ModalProps } from './Modal'
44
122
 
45
- export { default as List } from './List'
46
- export { ListVariants, ListTokens, ListProps, ListItemProps, ListItemTokens } from './List'
123
+ export { MultiSelectFilter } from './MultiSelectFilter'
124
+ export type { MultiSelectFilterProps, MultiSelectFilterItem } from './MultiSelectFilter'
47
125
 
48
- export { default as Search } from './Search'
49
- export { SearchTokens, SearchProps } from './Search'
126
+ export { Notification } from './Notification'
127
+ export type { NotificationProps } from './Notification'
50
128
 
51
- export { default as Select } from './Select'
52
- export { SelectTokens, SelectProps, SelectItemProps, SelectGroupProps } from './Select'
129
+ export { OrderedList } from './OrderedList'
130
+ export type { OrderedListProps, OrderedListItemProps } from './OrderedList'
53
131
 
54
- export { default as Shortcuts, ShortcutsItem } from './Shortcuts'
55
- export {
132
+ export { Pagination } from './Pagination'
133
+ export type { PaginationProps, PaginationPageButtonProps } from './Pagination'
134
+
135
+ export { Portal } from './Portal'
136
+ export type { PortalProps } from './Portal'
137
+
138
+ export { PriceLockup } from './PriceLockup'
139
+ export type { PriceLockupProps } from './PriceLockup'
140
+
141
+ export { ProductCard } from './ProductCard'
142
+ export type { ProductCardProps, ProductCardImage } from './ProductCard'
143
+
144
+ export { ProductCardGroup } from './ProductCardGroup'
145
+ export type { ProductCardGroupProps, ProductCardGroupCardItem } from './ProductCardGroup'
146
+
147
+ export { Progress } from './Progress'
148
+ export type { ProgressProps, ProgressBarProps } from './Progress'
149
+
150
+ export { QuickLinks } from './QuickLinks'
151
+ export type { QuickLinksProps, QuickLinksItemProps } from './QuickLinks'
152
+
153
+ export { QuickLinksFeature } from './QuickLinksFeature'
154
+ export type { QuickLinksFeatureProps, QuickLinksFeatureItemProps } from './QuickLinksFeature'
155
+
156
+ export { Radio } from './Radio'
157
+ export type { RadioProps } from './Radio'
158
+
159
+ export { RadioCard } from './RadioCard'
160
+ export type { RadioCardProps } from './RadioCard'
161
+
162
+ export { Responsive } from './Responsive'
163
+ export type { ResponsiveProps, ViewportKey } from './Responsive'
164
+
165
+ export { Scroll, ScrollItem } from './Scroll'
166
+ export type {
167
+ ScrollProps,
168
+ ScrollTokens,
169
+ ScrollVariant,
170
+ ScrollItemProps,
171
+ ScrollDictionary
172
+ } from './Scroll'
173
+
174
+ export { Search } from './Search'
175
+ export type { SearchTokens, SearchProps } from './Search'
176
+
177
+ export { Select } from './Select'
178
+ export type { SelectTokens, SelectProps, SelectItemProps, SelectGroupProps } from './Select'
179
+
180
+ export { Shortcuts, ShortcutsItem } from './Shortcuts'
181
+ export type {
56
182
  ShortcutsProps,
57
183
  ShortcutsTokens,
58
184
  ShortcutsVariant,
@@ -63,34 +189,64 @@ export {
63
189
  PressableState
64
190
  } from './Shortcuts'
65
191
 
66
- export { default as Spacer } from './Spacer'
67
- export { SpacerProps } from './Spacer'
192
+ export { SideNav } from './SideNav'
193
+ export type { SideNavProps, SideNavItemsGroupProps, SideNavItemProps } from './SideNav'
194
+
195
+ export { Skeleton } from './Skeleton'
196
+ export type { SkeletonProps } from './Skeleton'
197
+
198
+ export { SkipLink } from './SkipLink'
199
+ export type { SkipLinkProps } from './SkipLink'
200
+
201
+ export { Spacer } from './Spacer'
202
+ export type { SpacerProps } from './Spacer'
203
+
204
+ export { StackView } from './StackView'
205
+ export type { StackViewTokens, StackViewProps } from './StackView'
206
+
207
+ export { Status } from './Status'
208
+ export type { StatusProps, StatusTokensProps } from './Status'
209
+
210
+ export { StepTracker } from './StepTracker'
211
+ export type { StepTrackerProps } from './StepTracker'
212
+
213
+ export { TabBar } from './TabBar'
214
+ export type { TabBarProps, TabBarItem } from './TabBar'
215
+
216
+ export { Tabs } from './Tabs'
217
+ export type { TabsProps, TabsTokens, TabSelectorProps, TabsVariant, TabsItem } from './Tabs'
218
+
219
+ export { Tags } from './Tags'
220
+ export type { TagsProps, TagItem } from './Tags'
221
+
222
+ export { TextButton } from './TextButton'
223
+ export type { TextButtonProps } from './TextButton'
68
224
 
69
- export { default as StackView } from './StackView'
70
- export { StackViewTokens, StackViewProps } from './StackView'
225
+ export { TextInput } from './TextInput'
226
+ export type { TextInputProps } from './TextInput'
71
227
 
72
- export { default as Tabs } from './Tabs'
73
- export { TabsProps, TabsTokens, TabSelectorProps, TabsVariant, TabsItem } from './Tabs'
228
+ export { ThemeProvider } from './ThemeProvider'
229
+ export type { ThemeProviderProps, Theme, ThemeMetadata, ThemeOptions } from './ThemeProvider'
74
230
 
75
- export { default as TextButton } from './TextButton'
76
- export { TextButtonProps } from './TextButton'
231
+ export { Timeline } from './Timeline'
232
+ export type { TimelineProps } from './Timeline'
77
233
 
78
- export { default as ToggleSwitch } from './ToggleSwitch'
79
- export { ToggleSwitchTokens, ToggleSwitchProps } from './ToggleSwitch'
234
+ export { ToggleSwitch } from './ToggleSwitch'
235
+ export type { ToggleSwitchTokens, ToggleSwitchProps } from './ToggleSwitch'
80
236
 
81
- export { default as Tooltip } from './ToolTip'
82
- export { TooltipTokens, TooltipVariants, TooltipProps } from './ToolTip'
237
+ export { Tooltip } from './Tooltip'
238
+ export type { TooltipTokens, TooltipVariants, TooltipProps } from './Tooltip'
83
239
 
84
- export { default as Typography } from './Typography'
85
- export { TypographyProps, TypographyVariants, TypographyTokens } from './Typography'
240
+ export { TooltipButton } from './TooltipButton'
241
+ export type { TooltipButtonProps, TooltipButtonPressableState } from './TooltipButton'
86
242
 
87
- export { default as Portal } from './Portal'
88
- export { PortalProps } from './Portal'
243
+ export { Typography } from './Typography'
244
+ export type { TypographyProps, TypographyVariants, TypographyTokens } from './Typography'
89
245
 
90
- export { default as Listbox } from './Listbox'
91
- export { ListboxProps, ListboxTokens } from './Listbox'
246
+ export { Validator } from './Validator'
247
+ export type { ValidatorProps } from './Validator'
92
248
 
93
- export { default as Status } from './Status'
94
- export { StatusProps, StatusTokensProps } from './Status'
249
+ export { ViewportProvider } from './ViewportProvider'
250
+ export type { ViewportProviderProps } from './ViewportProvider'
95
251
 
96
252
  export * from './Common'