@audira/carbon-react-native 1.0.3 → 1.0.5

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 (908) hide show
  1. package/lib/commonjs/_internal/contexts/global-config/GlobalConfigContext.js +2 -1
  2. package/lib/commonjs/_internal/contexts/global-config/GlobalConfigContext.js.map +1 -1
  3. package/lib/commonjs/_internal/providers/global-config/GlobalConfigProvider.js +7 -4
  4. package/lib/commonjs/_internal/providers/global-config/GlobalConfigProvider.js.map +1 -1
  5. package/lib/commonjs/carbon-react-native/CarbonReactNative.js +8 -6
  6. package/lib/commonjs/carbon-react-native/CarbonReactNative.js.map +1 -1
  7. package/lib/commonjs/carbon-style-sheet/color.js +1 -1
  8. package/lib/commonjs/carbon-style-sheet/g/font.js +1 -1
  9. package/lib/commonjs/carbon-style-sheet/g/spacing.js +1 -1
  10. package/lib/commonjs/carbon-style-sheet/g/typography.js +1 -1
  11. package/lib/commonjs/carbon-style-sheet/g-object/font.js +1 -1
  12. package/lib/commonjs/carbon-style-sheet/g-object/spacing.js +1 -1
  13. package/lib/commonjs/carbon-style-sheet/g-object/typography.js +1 -1
  14. package/lib/commonjs/components/box/Box.js +6 -0
  15. package/lib/commonjs/components/box/Box.js.map +1 -1
  16. package/lib/commonjs/components/button/base/Base.js +5 -14
  17. package/lib/commonjs/components/button/base/Base.js.map +1 -1
  18. package/lib/commonjs/components/button/ghost/Ghost.js +0 -15
  19. package/lib/commonjs/components/button/ghost/Ghost.js.map +1 -1
  20. package/lib/commonjs/components/index.js +193 -35
  21. package/lib/commonjs/components/index.js.map +1 -1
  22. package/lib/commonjs/components/layer/Layer.js +1 -2
  23. package/lib/commonjs/components/layer/Layer.js.map +1 -1
  24. package/lib/commonjs/components/scroll-view/ScrollView.js +35 -0
  25. package/lib/commonjs/components/scroll-view/ScrollView.js.map +1 -0
  26. package/lib/commonjs/components/scroll-view/ScrollViewProps.js +6 -0
  27. package/lib/commonjs/components/scroll-view/ScrollViewProps.js.map +1 -0
  28. package/lib/commonjs/components/scroll-view/index.js +17 -0
  29. package/lib/commonjs/components/scroll-view/index.js.map +1 -0
  30. package/lib/commonjs/components/table/Table.js +45 -0
  31. package/lib/commonjs/components/table/Table.js.map +1 -0
  32. package/lib/commonjs/components/table/TableProps.js +6 -0
  33. package/lib/commonjs/components/table/TableProps.js.map +1 -0
  34. package/lib/commonjs/components/table/TableRef.js +6 -0
  35. package/lib/commonjs/components/table/TableRef.js.map +1 -0
  36. package/lib/commonjs/components/table/_TableContext.js +11 -0
  37. package/lib/commonjs/components/table/_TableContext.js.map +1 -0
  38. package/lib/commonjs/components/table/index.js +17 -0
  39. package/lib/commonjs/components/table/index.js.map +1 -0
  40. package/lib/commonjs/components/table-batch-action-bar/TableBatchActionBar.js +81 -0
  41. package/lib/commonjs/components/table-batch-action-bar/TableBatchActionBar.js.map +1 -0
  42. package/lib/commonjs/components/table-batch-action-bar/TableBatchActionBarProps.js +6 -0
  43. package/lib/commonjs/components/table-batch-action-bar/TableBatchActionBarProps.js.map +1 -0
  44. package/lib/commonjs/components/table-batch-action-bar/TableBatchActionBarRef.js +6 -0
  45. package/lib/commonjs/components/table-batch-action-bar/TableBatchActionBarRef.js.map +1 -0
  46. package/lib/commonjs/components/table-batch-action-bar/TableBatchActionBarSize.js +2 -0
  47. package/lib/commonjs/components/table-batch-action-bar/TableBatchActionBarSize.js.map +1 -0
  48. package/lib/commonjs/components/table-batch-action-bar/_TableBatchActionBarContext.js +11 -0
  49. package/lib/commonjs/components/table-batch-action-bar/_TableBatchActionBarContext.js.map +1 -0
  50. package/lib/commonjs/components/table-batch-action-bar/index.js +17 -0
  51. package/lib/commonjs/components/table-batch-action-bar/index.js.map +1 -0
  52. package/lib/commonjs/components/table-batch-action-bar-button/TableBatchActionBarButton.js +38 -0
  53. package/lib/commonjs/components/table-batch-action-bar-button/TableBatchActionBarButton.js.map +1 -0
  54. package/lib/commonjs/components/table-batch-action-bar-button/TableBatchActionBarButtonProps.js +6 -0
  55. package/lib/commonjs/components/table-batch-action-bar-button/TableBatchActionBarButtonProps.js.map +1 -0
  56. package/lib/commonjs/components/table-batch-action-bar-button/TableBatchActionBarButtonRef.js +6 -0
  57. package/lib/commonjs/components/table-batch-action-bar-button/TableBatchActionBarButtonRef.js.map +1 -0
  58. package/lib/commonjs/components/table-batch-action-bar-button/index.js +17 -0
  59. package/lib/commonjs/components/table-batch-action-bar-button/index.js.map +1 -0
  60. package/lib/commonjs/components/table-cell/TableCell.js +52 -0
  61. package/lib/commonjs/components/table-cell/TableCell.js.map +1 -0
  62. package/lib/commonjs/components/table-cell/TableCellProps.js +6 -0
  63. package/lib/commonjs/components/table-cell/TableCellProps.js.map +1 -0
  64. package/lib/commonjs/components/table-cell/TableCellRef.js +6 -0
  65. package/lib/commonjs/components/table-cell/TableCellRef.js.map +1 -0
  66. package/lib/commonjs/components/table-cell/index.js +17 -0
  67. package/lib/commonjs/components/table-cell/index.js.map +1 -0
  68. package/lib/commonjs/components/table-cell-header/TableCellHeader.js +154 -0
  69. package/lib/commonjs/components/table-cell-header/TableCellHeader.js.map +1 -0
  70. package/lib/commonjs/components/table-cell-header/TableCellHeaderProps.js +6 -0
  71. package/lib/commonjs/components/table-cell-header/TableCellHeaderProps.js.map +1 -0
  72. package/lib/commonjs/components/table-cell-header/TableCellHeaderRef.js +6 -0
  73. package/lib/commonjs/components/table-cell-header/TableCellHeaderRef.js.map +1 -0
  74. package/lib/commonjs/components/table-cell-header/TableCellHeaderSort.js +2 -0
  75. package/lib/commonjs/components/table-cell-header/TableCellHeaderSort.js.map +1 -0
  76. package/lib/commonjs/components/table-cell-header/_sort-icon/SortIcon.js +67 -0
  77. package/lib/commonjs/components/table-cell-header/_sort-icon/SortIcon.js.map +1 -0
  78. package/lib/commonjs/components/table-cell-header/_sort-icon/SortIconProps.js +6 -0
  79. package/lib/commonjs/components/table-cell-header/_sort-icon/SortIconProps.js.map +1 -0
  80. package/lib/commonjs/components/table-cell-header/_sort-icon/SortIconRef.js +2 -0
  81. package/lib/commonjs/components/table-cell-header/_sort-icon/SortIconRef.js.map +1 -0
  82. package/lib/commonjs/components/table-cell-header/_sort-icon/index.js +17 -0
  83. package/lib/commonjs/components/table-cell-header/_sort-icon/index.js.map +1 -0
  84. package/lib/commonjs/components/table-cell-header/index.js +17 -0
  85. package/lib/commonjs/components/table-cell-header/index.js.map +1 -0
  86. package/lib/commonjs/components/table-cell-icon/TableCellIcon.js +29 -0
  87. package/lib/commonjs/components/table-cell-icon/TableCellIcon.js.map +1 -0
  88. package/lib/commonjs/components/table-cell-icon/TableCellIconProps.js +6 -0
  89. package/lib/commonjs/components/table-cell-icon/TableCellIconProps.js.map +1 -0
  90. package/lib/commonjs/components/table-cell-icon/TableCellIconRef.js +6 -0
  91. package/lib/commonjs/components/table-cell-icon/TableCellIconRef.js.map +1 -0
  92. package/lib/commonjs/components/table-cell-icon/index.js +17 -0
  93. package/lib/commonjs/components/table-cell-icon/index.js.map +1 -0
  94. package/lib/commonjs/components/table-cell-text/TableCellText.js +60 -0
  95. package/lib/commonjs/components/table-cell-text/TableCellText.js.map +1 -0
  96. package/lib/commonjs/components/table-cell-text/TableCellTextProps.js +6 -0
  97. package/lib/commonjs/components/table-cell-text/TableCellTextProps.js.map +1 -0
  98. package/lib/commonjs/components/table-cell-text/TableCellTextRef.js +6 -0
  99. package/lib/commonjs/components/table-cell-text/TableCellTextRef.js.map +1 -0
  100. package/lib/commonjs/components/table-cell-text/index.js +17 -0
  101. package/lib/commonjs/components/table-cell-text/index.js.map +1 -0
  102. package/lib/commonjs/components/table-header/TableHeader.js +53 -0
  103. package/lib/commonjs/components/table-header/TableHeader.js.map +1 -0
  104. package/lib/commonjs/components/table-header/TableHeaderProps.js +6 -0
  105. package/lib/commonjs/components/table-header/TableHeaderProps.js.map +1 -0
  106. package/lib/commonjs/components/table-header/TableHeaderRef.js +6 -0
  107. package/lib/commonjs/components/table-header/TableHeaderRef.js.map +1 -0
  108. package/lib/commonjs/components/table-header/index.js +17 -0
  109. package/lib/commonjs/components/table-header/index.js.map +1 -0
  110. package/lib/commonjs/components/table-row/TableRow.js +168 -0
  111. package/lib/commonjs/components/table-row/TableRow.js.map +1 -0
  112. package/lib/commonjs/components/table-row/TableRowInteractiveState.js +2 -0
  113. package/lib/commonjs/components/table-row/TableRowInteractiveState.js.map +1 -0
  114. package/lib/commonjs/components/table-row/TableRowProps.js +6 -0
  115. package/lib/commonjs/components/table-row/TableRowProps.js.map +1 -0
  116. package/lib/commonjs/components/table-row/TableRowRef.js +6 -0
  117. package/lib/commonjs/components/table-row/TableRowRef.js.map +1 -0
  118. package/lib/commonjs/components/table-row/TableRowSize.js +2 -0
  119. package/lib/commonjs/components/table-row/TableRowSize.js.map +1 -0
  120. package/lib/commonjs/components/table-row/_TableRowContext.js +12 -0
  121. package/lib/commonjs/components/table-row/_TableRowContext.js.map +1 -0
  122. package/lib/commonjs/components/table-row/_style-sheet-height.js +25 -0
  123. package/lib/commonjs/components/table-row/_style-sheet-height.js.map +1 -0
  124. package/lib/commonjs/components/table-row/index.js +17 -0
  125. package/lib/commonjs/components/table-row/index.js.map +1 -0
  126. package/lib/commonjs/components/table-row-header/TableRowHeader.js +54 -0
  127. package/lib/commonjs/components/table-row-header/TableRowHeader.js.map +1 -0
  128. package/lib/commonjs/components/table-row-header/TableRowHeaderProps.js +6 -0
  129. package/lib/commonjs/components/table-row-header/TableRowHeaderProps.js.map +1 -0
  130. package/lib/commonjs/components/table-row-header/TableRowHeaderRef.js +6 -0
  131. package/lib/commonjs/components/table-row-header/TableRowHeaderRef.js.map +1 -0
  132. package/lib/commonjs/components/table-row-header/_TableRowHeaderContext.js +14 -0
  133. package/lib/commonjs/components/table-row-header/_TableRowHeaderContext.js.map +1 -0
  134. package/lib/commonjs/components/table-row-header/index.js +17 -0
  135. package/lib/commonjs/components/table-row-header/index.js.map +1 -0
  136. package/lib/commonjs/components/table-toolbar/TableToolbar.js +84 -0
  137. package/lib/commonjs/components/table-toolbar/TableToolbar.js.map +1 -0
  138. package/lib/commonjs/components/table-toolbar/TableToolbarProps.js +6 -0
  139. package/lib/commonjs/components/table-toolbar/TableToolbarProps.js.map +1 -0
  140. package/lib/commonjs/components/table-toolbar/TableToolbarRef.js +6 -0
  141. package/lib/commonjs/components/table-toolbar/TableToolbarRef.js.map +1 -0
  142. package/lib/commonjs/components/table-toolbar/TableToolbarSize.js +2 -0
  143. package/lib/commonjs/components/table-toolbar/TableToolbarSize.js.map +1 -0
  144. package/lib/commonjs/components/table-toolbar/_TableToolbarContext.js +11 -0
  145. package/lib/commonjs/components/table-toolbar/_TableToolbarContext.js.map +1 -0
  146. package/lib/commonjs/components/table-toolbar/index.js +17 -0
  147. package/lib/commonjs/components/table-toolbar/index.js.map +1 -0
  148. package/lib/commonjs/components/table-toolbar-button/_useSize.js +17 -0
  149. package/lib/commonjs/components/table-toolbar-button/_useSize.js.map +1 -0
  150. package/lib/commonjs/components/table-toolbar-button/ghost/Ghost.js +22 -0
  151. package/lib/commonjs/components/table-toolbar-button/ghost/Ghost.js.map +1 -0
  152. package/lib/commonjs/components/table-toolbar-button/ghost/GhostProps.js +6 -0
  153. package/lib/commonjs/components/table-toolbar-button/ghost/GhostProps.js.map +1 -0
  154. package/lib/commonjs/components/table-toolbar-button/ghost/GhostRef.js +6 -0
  155. package/lib/commonjs/components/table-toolbar-button/ghost/GhostRef.js.map +1 -0
  156. package/lib/commonjs/components/table-toolbar-button/ghost/index.js +17 -0
  157. package/lib/commonjs/components/table-toolbar-button/ghost/index.js.map +1 -0
  158. package/lib/commonjs/components/table-toolbar-button/ghost-icon/GhostIcon.js +22 -0
  159. package/lib/commonjs/components/table-toolbar-button/ghost-icon/GhostIcon.js.map +1 -0
  160. package/lib/commonjs/components/table-toolbar-button/ghost-icon/GhostIconProps.js +6 -0
  161. package/lib/commonjs/components/table-toolbar-button/ghost-icon/GhostIconProps.js.map +1 -0
  162. package/lib/commonjs/components/table-toolbar-button/ghost-icon/GhostIconRef.js +6 -0
  163. package/lib/commonjs/components/table-toolbar-button/ghost-icon/GhostIconRef.js.map +1 -0
  164. package/lib/commonjs/components/table-toolbar-button/ghost-icon/index.js +17 -0
  165. package/lib/commonjs/components/table-toolbar-button/ghost-icon/index.js.map +1 -0
  166. package/lib/commonjs/components/table-toolbar-button/index.js +39 -0
  167. package/lib/commonjs/components/table-toolbar-button/index.js.map +1 -0
  168. package/lib/commonjs/components/table-toolbar-button/primary/Primary.js +22 -0
  169. package/lib/commonjs/components/table-toolbar-button/primary/Primary.js.map +1 -0
  170. package/lib/commonjs/components/table-toolbar-button/primary/PrimaryProps.js +6 -0
  171. package/lib/commonjs/components/table-toolbar-button/primary/PrimaryProps.js.map +1 -0
  172. package/lib/commonjs/components/table-toolbar-button/primary/PrimaryRef.js +6 -0
  173. package/lib/commonjs/components/table-toolbar-button/primary/PrimaryRef.js.map +1 -0
  174. package/lib/commonjs/components/table-toolbar-button/primary/index.js +17 -0
  175. package/lib/commonjs/components/table-toolbar-button/primary/index.js.map +1 -0
  176. package/lib/commonjs/components/table-toolbar-switcher/TableToolbarSwitcher.js +60 -0
  177. package/lib/commonjs/components/table-toolbar-switcher/TableToolbarSwitcher.js.map +1 -0
  178. package/lib/commonjs/components/table-toolbar-switcher/TableToolbarSwitcherProps.js +6 -0
  179. package/lib/commonjs/components/table-toolbar-switcher/TableToolbarSwitcherProps.js.map +1 -0
  180. package/lib/commonjs/components/table-toolbar-switcher/TableToolbarSwitcherRef.js +6 -0
  181. package/lib/commonjs/components/table-toolbar-switcher/TableToolbarSwitcherRef.js.map +1 -0
  182. package/lib/commonjs/components/table-toolbar-switcher/TableToolbarSwitcherRefBase.js +2 -0
  183. package/lib/commonjs/components/table-toolbar-switcher/TableToolbarSwitcherRefBase.js.map +1 -0
  184. package/lib/commonjs/components/table-toolbar-switcher/_AnimatedContentProps.js +2 -0
  185. package/lib/commonjs/components/table-toolbar-switcher/_AnimatedContentProps.js.map +1 -0
  186. package/lib/commonjs/components/table-toolbar-switcher/_animated-next-content/AnimatedNextContent.js +23 -0
  187. package/lib/commonjs/components/table-toolbar-switcher/_animated-next-content/AnimatedNextContent.js.map +1 -0
  188. package/lib/commonjs/components/table-toolbar-switcher/_animated-next-content/AnimatedNextContentProps.js +6 -0
  189. package/lib/commonjs/components/table-toolbar-switcher/_animated-next-content/AnimatedNextContentProps.js.map +1 -0
  190. package/lib/commonjs/components/table-toolbar-switcher/_animated-next-content/index.js +17 -0
  191. package/lib/commonjs/components/table-toolbar-switcher/_animated-next-content/index.js.map +1 -0
  192. package/lib/commonjs/components/table-toolbar-switcher/_animated-toolbar/AnimatedToolbar.js +29 -0
  193. package/lib/commonjs/components/table-toolbar-switcher/_animated-toolbar/AnimatedToolbar.js.map +1 -0
  194. package/lib/commonjs/components/table-toolbar-switcher/_animated-toolbar/AnimatedToolbarProps.js +6 -0
  195. package/lib/commonjs/components/table-toolbar-switcher/_animated-toolbar/AnimatedToolbarProps.js.map +1 -0
  196. package/lib/commonjs/components/table-toolbar-switcher/_animated-toolbar/AnimatedToolbarRef.js +6 -0
  197. package/lib/commonjs/components/table-toolbar-switcher/_animated-toolbar/AnimatedToolbarRef.js.map +1 -0
  198. package/lib/commonjs/components/table-toolbar-switcher/_animated-toolbar/index.js +17 -0
  199. package/lib/commonjs/components/table-toolbar-switcher/_animated-toolbar/index.js.map +1 -0
  200. package/lib/commonjs/components/table-toolbar-switcher/_useAnimatedContent.js +86 -0
  201. package/lib/commonjs/components/table-toolbar-switcher/_useAnimatedContent.js.map +1 -0
  202. package/lib/commonjs/components/table-toolbar-switcher/index.js +17 -0
  203. package/lib/commonjs/components/table-toolbar-switcher/index.js.map +1 -0
  204. package/lib/module/_internal/contexts/global-config/GlobalConfigContext.js +2 -1
  205. package/lib/module/_internal/contexts/global-config/GlobalConfigContext.js.map +1 -1
  206. package/lib/module/_internal/providers/global-config/GlobalConfigProvider.js +7 -4
  207. package/lib/module/_internal/providers/global-config/GlobalConfigProvider.js.map +1 -1
  208. package/lib/module/carbon-react-native/CarbonReactNative.js +8 -6
  209. package/lib/module/carbon-react-native/CarbonReactNative.js.map +1 -1
  210. package/lib/module/carbon-style-sheet/color.js +1 -1
  211. package/lib/module/carbon-style-sheet/g/font.js +1 -1
  212. package/lib/module/carbon-style-sheet/g/spacing.js +1 -1
  213. package/lib/module/carbon-style-sheet/g/typography.js +1 -1
  214. package/lib/module/carbon-style-sheet/g-object/font.js +1 -1
  215. package/lib/module/carbon-style-sheet/g-object/spacing.js +1 -1
  216. package/lib/module/carbon-style-sheet/g-object/typography.js +1 -1
  217. package/lib/module/components/box/Box.js +6 -0
  218. package/lib/module/components/box/Box.js.map +1 -1
  219. package/lib/module/components/button/base/Base.js +5 -14
  220. package/lib/module/components/button/base/Base.js.map +1 -1
  221. package/lib/module/components/button/ghost/Ghost.js +1 -16
  222. package/lib/module/components/button/ghost/Ghost.js.map +1 -1
  223. package/lib/module/components/index.js +15 -1
  224. package/lib/module/components/index.js.map +1 -1
  225. package/lib/module/components/layer/Layer.js +1 -2
  226. package/lib/module/components/layer/Layer.js.map +1 -1
  227. package/lib/module/components/scroll-view/ScrollView.js +30 -0
  228. package/lib/module/components/scroll-view/ScrollView.js.map +1 -0
  229. package/lib/module/components/scroll-view/ScrollViewProps.js +4 -0
  230. package/lib/module/components/scroll-view/ScrollViewProps.js.map +1 -0
  231. package/lib/module/components/scroll-view/index.js +4 -0
  232. package/lib/module/components/scroll-view/index.js.map +1 -0
  233. package/lib/module/components/table/Table.js +40 -0
  234. package/lib/module/components/table/Table.js.map +1 -0
  235. package/lib/module/components/table/TableProps.js +4 -0
  236. package/lib/module/components/table/TableProps.js.map +1 -0
  237. package/lib/module/components/table/TableRef.js +4 -0
  238. package/lib/module/components/table/TableRef.js.map +1 -0
  239. package/lib/module/components/table/_TableContext.js +7 -0
  240. package/lib/module/components/table/_TableContext.js.map +1 -0
  241. package/lib/module/components/table/index.js +4 -0
  242. package/lib/module/components/table/index.js.map +1 -0
  243. package/lib/module/components/table-batch-action-bar/TableBatchActionBar.js +76 -0
  244. package/lib/module/components/table-batch-action-bar/TableBatchActionBar.js.map +1 -0
  245. package/lib/module/components/table-batch-action-bar/TableBatchActionBarProps.js +4 -0
  246. package/lib/module/components/table-batch-action-bar/TableBatchActionBarProps.js.map +1 -0
  247. package/lib/module/components/table-batch-action-bar/TableBatchActionBarRef.js +4 -0
  248. package/lib/module/components/table-batch-action-bar/TableBatchActionBarRef.js.map +1 -0
  249. package/lib/module/components/table-batch-action-bar/TableBatchActionBarSize.js +2 -0
  250. package/lib/module/components/table-batch-action-bar/TableBatchActionBarSize.js.map +1 -0
  251. package/lib/module/components/table-batch-action-bar/_TableBatchActionBarContext.js +7 -0
  252. package/lib/module/components/table-batch-action-bar/_TableBatchActionBarContext.js.map +1 -0
  253. package/lib/module/components/table-batch-action-bar/index.js +4 -0
  254. package/lib/module/components/table-batch-action-bar/index.js.map +1 -0
  255. package/lib/module/components/table-batch-action-bar-button/TableBatchActionBarButton.js +33 -0
  256. package/lib/module/components/table-batch-action-bar-button/TableBatchActionBarButton.js.map +1 -0
  257. package/lib/module/components/table-batch-action-bar-button/TableBatchActionBarButtonProps.js +4 -0
  258. package/lib/module/components/table-batch-action-bar-button/TableBatchActionBarButtonProps.js.map +1 -0
  259. package/lib/module/components/table-batch-action-bar-button/TableBatchActionBarButtonRef.js +4 -0
  260. package/lib/module/components/table-batch-action-bar-button/TableBatchActionBarButtonRef.js.map +1 -0
  261. package/lib/module/components/table-batch-action-bar-button/index.js +4 -0
  262. package/lib/module/components/table-batch-action-bar-button/index.js.map +1 -0
  263. package/lib/module/components/table-cell/TableCell.js +47 -0
  264. package/lib/module/components/table-cell/TableCell.js.map +1 -0
  265. package/lib/module/components/table-cell/TableCellProps.js +4 -0
  266. package/lib/module/components/table-cell/TableCellProps.js.map +1 -0
  267. package/lib/module/components/table-cell/TableCellRef.js +4 -0
  268. package/lib/module/components/table-cell/TableCellRef.js.map +1 -0
  269. package/lib/module/components/table-cell/index.js +4 -0
  270. package/lib/module/components/table-cell/index.js.map +1 -0
  271. package/lib/module/components/table-cell-header/TableCellHeader.js +150 -0
  272. package/lib/module/components/table-cell-header/TableCellHeader.js.map +1 -0
  273. package/lib/module/components/table-cell-header/TableCellHeaderProps.js +4 -0
  274. package/lib/module/components/table-cell-header/TableCellHeaderProps.js.map +1 -0
  275. package/lib/module/components/table-cell-header/TableCellHeaderRef.js +4 -0
  276. package/lib/module/components/table-cell-header/TableCellHeaderRef.js.map +1 -0
  277. package/lib/module/components/table-cell-header/TableCellHeaderSort.js +2 -0
  278. package/lib/module/components/table-cell-header/TableCellHeaderSort.js.map +1 -0
  279. package/lib/module/components/table-cell-header/_sort-icon/SortIcon.js +62 -0
  280. package/lib/module/components/table-cell-header/_sort-icon/SortIcon.js.map +1 -0
  281. package/lib/module/components/table-cell-header/_sort-icon/SortIconProps.js +4 -0
  282. package/lib/module/components/table-cell-header/_sort-icon/SortIconProps.js.map +1 -0
  283. package/lib/module/components/table-cell-header/_sort-icon/SortIconRef.js +2 -0
  284. package/lib/module/components/table-cell-header/_sort-icon/SortIconRef.js.map +1 -0
  285. package/lib/module/components/table-cell-header/_sort-icon/index.js +4 -0
  286. package/lib/module/components/table-cell-header/_sort-icon/index.js.map +1 -0
  287. package/lib/module/components/table-cell-header/index.js +4 -0
  288. package/lib/module/components/table-cell-header/index.js.map +1 -0
  289. package/lib/module/components/table-cell-icon/TableCellIcon.js +25 -0
  290. package/lib/module/components/table-cell-icon/TableCellIcon.js.map +1 -0
  291. package/lib/module/components/table-cell-icon/TableCellIconProps.js +4 -0
  292. package/lib/module/components/table-cell-icon/TableCellIconProps.js.map +1 -0
  293. package/lib/module/components/table-cell-icon/TableCellIconRef.js +4 -0
  294. package/lib/module/components/table-cell-icon/TableCellIconRef.js.map +1 -0
  295. package/lib/module/components/table-cell-icon/index.js +4 -0
  296. package/lib/module/components/table-cell-icon/index.js.map +1 -0
  297. package/lib/module/components/table-cell-text/TableCellText.js +55 -0
  298. package/lib/module/components/table-cell-text/TableCellText.js.map +1 -0
  299. package/lib/module/components/table-cell-text/TableCellTextProps.js +4 -0
  300. package/lib/module/components/table-cell-text/TableCellTextProps.js.map +1 -0
  301. package/lib/module/components/table-cell-text/TableCellTextRef.js +4 -0
  302. package/lib/module/components/table-cell-text/TableCellTextRef.js.map +1 -0
  303. package/lib/module/components/table-cell-text/index.js +4 -0
  304. package/lib/module/components/table-cell-text/index.js.map +1 -0
  305. package/lib/module/components/table-header/TableHeader.js +48 -0
  306. package/lib/module/components/table-header/TableHeader.js.map +1 -0
  307. package/lib/module/components/table-header/TableHeaderProps.js +4 -0
  308. package/lib/module/components/table-header/TableHeaderProps.js.map +1 -0
  309. package/lib/module/components/table-header/TableHeaderRef.js +4 -0
  310. package/lib/module/components/table-header/TableHeaderRef.js.map +1 -0
  311. package/lib/module/components/table-header/index.js +4 -0
  312. package/lib/module/components/table-header/index.js.map +1 -0
  313. package/lib/module/components/table-row/TableRow.js +163 -0
  314. package/lib/module/components/table-row/TableRow.js.map +1 -0
  315. package/lib/module/components/table-row/TableRowInteractiveState.js +2 -0
  316. package/lib/module/components/table-row/TableRowInteractiveState.js.map +1 -0
  317. package/lib/module/components/table-row/TableRowProps.js +4 -0
  318. package/lib/module/components/table-row/TableRowProps.js.map +1 -0
  319. package/lib/module/components/table-row/TableRowRef.js +4 -0
  320. package/lib/module/components/table-row/TableRowRef.js.map +1 -0
  321. package/lib/module/components/table-row/TableRowSize.js +2 -0
  322. package/lib/module/components/table-row/TableRowSize.js.map +1 -0
  323. package/lib/module/components/table-row/_TableRowContext.js +8 -0
  324. package/lib/module/components/table-row/_TableRowContext.js.map +1 -0
  325. package/lib/module/components/table-row/_style-sheet-height.js +21 -0
  326. package/lib/module/components/table-row/_style-sheet-height.js.map +1 -0
  327. package/lib/module/components/table-row/index.js +4 -0
  328. package/lib/module/components/table-row/index.js.map +1 -0
  329. package/lib/module/components/table-row-header/TableRowHeader.js +49 -0
  330. package/lib/module/components/table-row-header/TableRowHeader.js.map +1 -0
  331. package/lib/module/components/table-row-header/TableRowHeaderProps.js +4 -0
  332. package/lib/module/components/table-row-header/TableRowHeaderProps.js.map +1 -0
  333. package/lib/module/components/table-row-header/TableRowHeaderRef.js +4 -0
  334. package/lib/module/components/table-row-header/TableRowHeaderRef.js.map +1 -0
  335. package/lib/module/components/table-row-header/_TableRowHeaderContext.js +10 -0
  336. package/lib/module/components/table-row-header/_TableRowHeaderContext.js.map +1 -0
  337. package/lib/module/components/table-row-header/index.js +4 -0
  338. package/lib/module/components/table-row-header/index.js.map +1 -0
  339. package/lib/module/components/table-toolbar/TableToolbar.js +79 -0
  340. package/lib/module/components/table-toolbar/TableToolbar.js.map +1 -0
  341. package/lib/module/components/table-toolbar/TableToolbarProps.js +4 -0
  342. package/lib/module/components/table-toolbar/TableToolbarProps.js.map +1 -0
  343. package/lib/module/components/table-toolbar/TableToolbarRef.js +4 -0
  344. package/lib/module/components/table-toolbar/TableToolbarRef.js.map +1 -0
  345. package/lib/module/components/table-toolbar/TableToolbarSize.js +2 -0
  346. package/lib/module/components/table-toolbar/TableToolbarSize.js.map +1 -0
  347. package/lib/module/components/table-toolbar/_TableToolbarContext.js +7 -0
  348. package/lib/module/components/table-toolbar/_TableToolbarContext.js.map +1 -0
  349. package/lib/module/components/table-toolbar/index.js +4 -0
  350. package/lib/module/components/table-toolbar/index.js.map +1 -0
  351. package/lib/module/components/table-toolbar-button/_useSize.js +13 -0
  352. package/lib/module/components/table-toolbar-button/_useSize.js.map +1 -0
  353. package/lib/module/components/table-toolbar-button/ghost/Ghost.js +18 -0
  354. package/lib/module/components/table-toolbar-button/ghost/Ghost.js.map +1 -0
  355. package/lib/module/components/table-toolbar-button/ghost/GhostProps.js +4 -0
  356. package/lib/module/components/table-toolbar-button/ghost/GhostProps.js.map +1 -0
  357. package/lib/module/components/table-toolbar-button/ghost/GhostRef.js +4 -0
  358. package/lib/module/components/table-toolbar-button/ghost/GhostRef.js.map +1 -0
  359. package/lib/module/components/table-toolbar-button/ghost/index.js +4 -0
  360. package/lib/module/components/table-toolbar-button/ghost/index.js.map +1 -0
  361. package/lib/module/components/table-toolbar-button/ghost-icon/GhostIcon.js +18 -0
  362. package/lib/module/components/table-toolbar-button/ghost-icon/GhostIcon.js.map +1 -0
  363. package/lib/module/components/table-toolbar-button/ghost-icon/GhostIconProps.js +4 -0
  364. package/lib/module/components/table-toolbar-button/ghost-icon/GhostIconProps.js.map +1 -0
  365. package/lib/module/components/table-toolbar-button/ghost-icon/GhostIconRef.js +4 -0
  366. package/lib/module/components/table-toolbar-button/ghost-icon/GhostIconRef.js.map +1 -0
  367. package/lib/module/components/table-toolbar-button/ghost-icon/index.js +4 -0
  368. package/lib/module/components/table-toolbar-button/ghost-icon/index.js.map +1 -0
  369. package/lib/module/components/table-toolbar-button/index.js +6 -0
  370. package/lib/module/components/table-toolbar-button/index.js.map +1 -0
  371. package/lib/module/components/table-toolbar-button/primary/Primary.js +18 -0
  372. package/lib/module/components/table-toolbar-button/primary/Primary.js.map +1 -0
  373. package/lib/module/components/table-toolbar-button/primary/PrimaryProps.js +4 -0
  374. package/lib/module/components/table-toolbar-button/primary/PrimaryProps.js.map +1 -0
  375. package/lib/module/components/table-toolbar-button/primary/PrimaryRef.js +4 -0
  376. package/lib/module/components/table-toolbar-button/primary/PrimaryRef.js.map +1 -0
  377. package/lib/module/components/table-toolbar-button/primary/index.js +4 -0
  378. package/lib/module/components/table-toolbar-button/primary/index.js.map +1 -0
  379. package/lib/module/components/table-toolbar-switcher/TableToolbarSwitcher.js +56 -0
  380. package/lib/module/components/table-toolbar-switcher/TableToolbarSwitcher.js.map +1 -0
  381. package/lib/module/components/table-toolbar-switcher/TableToolbarSwitcherProps.js +4 -0
  382. package/lib/module/components/table-toolbar-switcher/TableToolbarSwitcherProps.js.map +1 -0
  383. package/lib/module/components/table-toolbar-switcher/TableToolbarSwitcherRef.js +4 -0
  384. package/lib/module/components/table-toolbar-switcher/TableToolbarSwitcherRef.js.map +1 -0
  385. package/lib/module/components/table-toolbar-switcher/TableToolbarSwitcherRefBase.js +2 -0
  386. package/lib/module/components/table-toolbar-switcher/TableToolbarSwitcherRefBase.js.map +1 -0
  387. package/lib/module/components/table-toolbar-switcher/_AnimatedContentProps.js +2 -0
  388. package/lib/module/components/table-toolbar-switcher/_AnimatedContentProps.js.map +1 -0
  389. package/lib/module/components/table-toolbar-switcher/_animated-next-content/AnimatedNextContent.js +19 -0
  390. package/lib/module/components/table-toolbar-switcher/_animated-next-content/AnimatedNextContent.js.map +1 -0
  391. package/lib/module/components/table-toolbar-switcher/_animated-next-content/AnimatedNextContentProps.js +4 -0
  392. package/lib/module/components/table-toolbar-switcher/_animated-next-content/AnimatedNextContentProps.js.map +1 -0
  393. package/lib/module/components/table-toolbar-switcher/_animated-next-content/index.js +4 -0
  394. package/lib/module/components/table-toolbar-switcher/_animated-next-content/index.js.map +1 -0
  395. package/lib/module/components/table-toolbar-switcher/_animated-toolbar/AnimatedToolbar.js +25 -0
  396. package/lib/module/components/table-toolbar-switcher/_animated-toolbar/AnimatedToolbar.js.map +1 -0
  397. package/lib/module/components/table-toolbar-switcher/_animated-toolbar/AnimatedToolbarProps.js +4 -0
  398. package/lib/module/components/table-toolbar-switcher/_animated-toolbar/AnimatedToolbarProps.js.map +1 -0
  399. package/lib/module/components/table-toolbar-switcher/_animated-toolbar/AnimatedToolbarRef.js +4 -0
  400. package/lib/module/components/table-toolbar-switcher/_animated-toolbar/AnimatedToolbarRef.js.map +1 -0
  401. package/lib/module/components/table-toolbar-switcher/_animated-toolbar/index.js +4 -0
  402. package/lib/module/components/table-toolbar-switcher/_animated-toolbar/index.js.map +1 -0
  403. package/lib/module/components/table-toolbar-switcher/_useAnimatedContent.js +81 -0
  404. package/lib/module/components/table-toolbar-switcher/_useAnimatedContent.js.map +1 -0
  405. package/lib/module/components/table-toolbar-switcher/index.js +4 -0
  406. package/lib/module/components/table-toolbar-switcher/index.js.map +1 -0
  407. package/lib/typescript/commonjs/_internal/contexts/global-config/GlobalConfigContext.d.ts.map +1 -1
  408. package/lib/typescript/commonjs/_internal/providers/global-config/GlobalConfigProvider.d.ts +1 -1
  409. package/lib/typescript/commonjs/_internal/providers/global-config/GlobalConfigProvider.d.ts.map +1 -1
  410. package/lib/typescript/commonjs/_internal/providers/global-config/GlobalConfigProviderProps.d.ts +1 -1
  411. package/lib/typescript/commonjs/_internal/providers/global-config/GlobalConfigProviderProps.d.ts.map +1 -1
  412. package/lib/typescript/commonjs/carbon-react-native/CarbonReactNative.d.ts.map +1 -1
  413. package/lib/typescript/commonjs/carbon-react-native/CarbonReactNativeProps.d.ts +1 -1
  414. package/lib/typescript/commonjs/carbon-react-native/CarbonReactNativeProps.d.ts.map +1 -1
  415. package/lib/typescript/commonjs/components/box/Box.d.ts +6 -0
  416. package/lib/typescript/commonjs/components/box/Box.d.ts.map +1 -1
  417. package/lib/typescript/commonjs/components/button/ghost/Ghost.d.ts.map +1 -1
  418. package/lib/typescript/commonjs/components/index.d.ts +15 -1
  419. package/lib/typescript/commonjs/components/index.d.ts.map +1 -1
  420. package/lib/typescript/commonjs/components/layer/Layer.d.ts.map +1 -1
  421. package/lib/typescript/commonjs/components/layer/LayerProps.d.ts +5 -2
  422. package/lib/typescript/commonjs/components/layer/LayerProps.d.ts.map +1 -1
  423. package/lib/typescript/commonjs/components/scroll-view/ScrollView.d.ts +9 -0
  424. package/lib/typescript/commonjs/components/scroll-view/ScrollView.d.ts.map +1 -0
  425. package/lib/typescript/commonjs/components/scroll-view/ScrollViewProps.d.ts +4 -0
  426. package/lib/typescript/commonjs/components/scroll-view/ScrollViewProps.d.ts.map +1 -0
  427. package/lib/typescript/commonjs/components/scroll-view/index.d.ts +3 -0
  428. package/lib/typescript/commonjs/components/scroll-view/index.d.ts.map +1 -0
  429. package/lib/typescript/commonjs/components/table/Table.d.ts +4 -0
  430. package/lib/typescript/commonjs/components/table/Table.d.ts.map +1 -0
  431. package/lib/typescript/commonjs/components/table/TableProps.d.ts +25 -0
  432. package/lib/typescript/commonjs/components/table/TableProps.d.ts.map +1 -0
  433. package/lib/typescript/commonjs/components/table/TableRef.d.ts +4 -0
  434. package/lib/typescript/commonjs/components/table/TableRef.d.ts.map +1 -0
  435. package/lib/typescript/commonjs/components/table/_TableContext.d.ts +6 -0
  436. package/lib/typescript/commonjs/components/table/_TableContext.d.ts.map +1 -0
  437. package/lib/typescript/commonjs/components/table/index.d.ts +4 -0
  438. package/lib/typescript/commonjs/components/table/index.d.ts.map +1 -0
  439. package/lib/typescript/commonjs/components/table-batch-action-bar/TableBatchActionBar.d.ts +4 -0
  440. package/lib/typescript/commonjs/components/table-batch-action-bar/TableBatchActionBar.d.ts.map +1 -0
  441. package/lib/typescript/commonjs/components/table-batch-action-bar/TableBatchActionBarProps.d.ts +30 -0
  442. package/lib/typescript/commonjs/components/table-batch-action-bar/TableBatchActionBarProps.d.ts.map +1 -0
  443. package/lib/typescript/commonjs/components/table-batch-action-bar/TableBatchActionBarRef.d.ts +4 -0
  444. package/lib/typescript/commonjs/components/table-batch-action-bar/TableBatchActionBarRef.d.ts.map +1 -0
  445. package/lib/typescript/commonjs/components/table-batch-action-bar/TableBatchActionBarSize.d.ts +2 -0
  446. package/lib/typescript/commonjs/components/table-batch-action-bar/TableBatchActionBarSize.d.ts.map +1 -0
  447. package/lib/typescript/commonjs/components/table-batch-action-bar/_TableBatchActionBarContext.d.ts +6 -0
  448. package/lib/typescript/commonjs/components/table-batch-action-bar/_TableBatchActionBarContext.d.ts.map +1 -0
  449. package/lib/typescript/commonjs/components/table-batch-action-bar/index.d.ts +5 -0
  450. package/lib/typescript/commonjs/components/table-batch-action-bar/index.d.ts.map +1 -0
  451. package/lib/typescript/commonjs/components/table-batch-action-bar-button/TableBatchActionBarButton.d.ts +4 -0
  452. package/lib/typescript/commonjs/components/table-batch-action-bar-button/TableBatchActionBarButton.d.ts.map +1 -0
  453. package/lib/typescript/commonjs/components/table-batch-action-bar-button/TableBatchActionBarButtonProps.d.ts +4 -0
  454. package/lib/typescript/commonjs/components/table-batch-action-bar-button/TableBatchActionBarButtonProps.d.ts.map +1 -0
  455. package/lib/typescript/commonjs/components/table-batch-action-bar-button/TableBatchActionBarButtonRef.d.ts +4 -0
  456. package/lib/typescript/commonjs/components/table-batch-action-bar-button/TableBatchActionBarButtonRef.d.ts.map +1 -0
  457. package/lib/typescript/commonjs/components/table-batch-action-bar-button/index.d.ts +4 -0
  458. package/lib/typescript/commonjs/components/table-batch-action-bar-button/index.d.ts.map +1 -0
  459. package/lib/typescript/commonjs/components/table-cell/TableCell.d.ts +17 -0
  460. package/lib/typescript/commonjs/components/table-cell/TableCell.d.ts.map +1 -0
  461. package/lib/typescript/commonjs/components/table-cell/TableCellProps.d.ts +28 -0
  462. package/lib/typescript/commonjs/components/table-cell/TableCellProps.d.ts.map +1 -0
  463. package/lib/typescript/commonjs/components/table-cell/TableCellRef.d.ts +4 -0
  464. package/lib/typescript/commonjs/components/table-cell/TableCellRef.d.ts.map +1 -0
  465. package/lib/typescript/commonjs/components/table-cell/index.d.ts +4 -0
  466. package/lib/typescript/commonjs/components/table-cell/index.d.ts.map +1 -0
  467. package/lib/typescript/commonjs/components/table-cell-header/TableCellHeader.d.ts +22 -0
  468. package/lib/typescript/commonjs/components/table-cell-header/TableCellHeader.d.ts.map +1 -0
  469. package/lib/typescript/commonjs/components/table-cell-header/TableCellHeaderProps.d.ts +19 -0
  470. package/lib/typescript/commonjs/components/table-cell-header/TableCellHeaderProps.d.ts.map +1 -0
  471. package/lib/typescript/commonjs/components/table-cell-header/TableCellHeaderRef.d.ts +4 -0
  472. package/lib/typescript/commonjs/components/table-cell-header/TableCellHeaderRef.d.ts.map +1 -0
  473. package/lib/typescript/commonjs/components/table-cell-header/TableCellHeaderSort.d.ts +2 -0
  474. package/lib/typescript/commonjs/components/table-cell-header/TableCellHeaderSort.d.ts.map +1 -0
  475. package/lib/typescript/commonjs/components/table-cell-header/_sort-icon/SortIcon.d.ts +4 -0
  476. package/lib/typescript/commonjs/components/table-cell-header/_sort-icon/SortIcon.d.ts.map +1 -0
  477. package/lib/typescript/commonjs/components/table-cell-header/_sort-icon/SortIconProps.d.ts +6 -0
  478. package/lib/typescript/commonjs/components/table-cell-header/_sort-icon/SortIconProps.d.ts.map +1 -0
  479. package/lib/typescript/commonjs/components/table-cell-header/_sort-icon/SortIconRef.d.ts +4 -0
  480. package/lib/typescript/commonjs/components/table-cell-header/_sort-icon/SortIconRef.d.ts.map +1 -0
  481. package/lib/typescript/commonjs/components/table-cell-header/_sort-icon/index.d.ts +4 -0
  482. package/lib/typescript/commonjs/components/table-cell-header/_sort-icon/index.d.ts.map +1 -0
  483. package/lib/typescript/commonjs/components/table-cell-header/index.d.ts +5 -0
  484. package/lib/typescript/commonjs/components/table-cell-header/index.d.ts.map +1 -0
  485. package/lib/typescript/commonjs/components/table-cell-icon/TableCellIcon.d.ts +4 -0
  486. package/lib/typescript/commonjs/components/table-cell-icon/TableCellIcon.d.ts.map +1 -0
  487. package/lib/typescript/commonjs/components/table-cell-icon/TableCellIconProps.d.ts +5 -0
  488. package/lib/typescript/commonjs/components/table-cell-icon/TableCellIconProps.d.ts.map +1 -0
  489. package/lib/typescript/commonjs/components/table-cell-icon/TableCellIconRef.d.ts +4 -0
  490. package/lib/typescript/commonjs/components/table-cell-icon/TableCellIconRef.d.ts.map +1 -0
  491. package/lib/typescript/commonjs/components/table-cell-icon/index.d.ts +4 -0
  492. package/lib/typescript/commonjs/components/table-cell-icon/index.d.ts.map +1 -0
  493. package/lib/typescript/commonjs/components/table-cell-text/TableCellText.d.ts +7 -0
  494. package/lib/typescript/commonjs/components/table-cell-text/TableCellText.d.ts.map +1 -0
  495. package/lib/typescript/commonjs/components/table-cell-text/TableCellTextProps.d.ts +4 -0
  496. package/lib/typescript/commonjs/components/table-cell-text/TableCellTextProps.d.ts.map +1 -0
  497. package/lib/typescript/commonjs/components/table-cell-text/TableCellTextRef.d.ts +4 -0
  498. package/lib/typescript/commonjs/components/table-cell-text/TableCellTextRef.d.ts.map +1 -0
  499. package/lib/typescript/commonjs/components/table-cell-text/index.d.ts +4 -0
  500. package/lib/typescript/commonjs/components/table-cell-text/index.d.ts.map +1 -0
  501. package/lib/typescript/commonjs/components/table-header/TableHeader.d.ts +4 -0
  502. package/lib/typescript/commonjs/components/table-header/TableHeader.d.ts.map +1 -0
  503. package/lib/typescript/commonjs/components/table-header/TableHeaderProps.d.ts +9 -0
  504. package/lib/typescript/commonjs/components/table-header/TableHeaderProps.d.ts.map +1 -0
  505. package/lib/typescript/commonjs/components/table-header/TableHeaderRef.d.ts +4 -0
  506. package/lib/typescript/commonjs/components/table-header/TableHeaderRef.d.ts.map +1 -0
  507. package/lib/typescript/commonjs/components/table-header/index.d.ts +4 -0
  508. package/lib/typescript/commonjs/components/table-header/index.d.ts.map +1 -0
  509. package/lib/typescript/commonjs/components/table-row/TableRow.d.ts +4 -0
  510. package/lib/typescript/commonjs/components/table-row/TableRow.d.ts.map +1 -0
  511. package/lib/typescript/commonjs/components/table-row/TableRowInteractiveState.d.ts +2 -0
  512. package/lib/typescript/commonjs/components/table-row/TableRowInteractiveState.d.ts.map +1 -0
  513. package/lib/typescript/commonjs/components/table-row/TableRowProps.d.ts +39 -0
  514. package/lib/typescript/commonjs/components/table-row/TableRowProps.d.ts.map +1 -0
  515. package/lib/typescript/commonjs/components/table-row/TableRowRef.d.ts +4 -0
  516. package/lib/typescript/commonjs/components/table-row/TableRowRef.d.ts.map +1 -0
  517. package/lib/typescript/commonjs/components/table-row/TableRowSize.d.ts +5 -0
  518. package/lib/typescript/commonjs/components/table-row/TableRowSize.d.ts.map +1 -0
  519. package/lib/typescript/commonjs/components/table-row/_TableRowContext.d.ts +7 -0
  520. package/lib/typescript/commonjs/components/table-row/_TableRowContext.d.ts.map +1 -0
  521. package/lib/typescript/commonjs/components/table-row/_style-sheet-height.d.ts +18 -0
  522. package/lib/typescript/commonjs/components/table-row/_style-sheet-height.d.ts.map +1 -0
  523. package/lib/typescript/commonjs/components/table-row/index.d.ts +6 -0
  524. package/lib/typescript/commonjs/components/table-row/index.d.ts.map +1 -0
  525. package/lib/typescript/commonjs/components/table-row-header/TableRowHeader.d.ts +4 -0
  526. package/lib/typescript/commonjs/components/table-row-header/TableRowHeader.d.ts.map +1 -0
  527. package/lib/typescript/commonjs/components/table-row-header/TableRowHeaderProps.d.ts +5 -0
  528. package/lib/typescript/commonjs/components/table-row-header/TableRowHeaderProps.d.ts.map +1 -0
  529. package/lib/typescript/commonjs/components/table-row-header/TableRowHeaderRef.d.ts +4 -0
  530. package/lib/typescript/commonjs/components/table-row-header/TableRowHeaderRef.d.ts.map +1 -0
  531. package/lib/typescript/commonjs/components/table-row-header/_TableRowHeaderContext.d.ts +7 -0
  532. package/lib/typescript/commonjs/components/table-row-header/_TableRowHeaderContext.d.ts.map +1 -0
  533. package/lib/typescript/commonjs/components/table-row-header/index.d.ts +4 -0
  534. package/lib/typescript/commonjs/components/table-row-header/index.d.ts.map +1 -0
  535. package/lib/typescript/commonjs/components/table-toolbar/TableToolbar.d.ts +4 -0
  536. package/lib/typescript/commonjs/components/table-toolbar/TableToolbar.d.ts.map +1 -0
  537. package/lib/typescript/commonjs/components/table-toolbar/TableToolbarProps.d.ts +22 -0
  538. package/lib/typescript/commonjs/components/table-toolbar/TableToolbarProps.d.ts.map +1 -0
  539. package/lib/typescript/commonjs/components/table-toolbar/TableToolbarRef.d.ts +4 -0
  540. package/lib/typescript/commonjs/components/table-toolbar/TableToolbarRef.d.ts.map +1 -0
  541. package/lib/typescript/commonjs/components/table-toolbar/TableToolbarSize.d.ts +2 -0
  542. package/lib/typescript/commonjs/components/table-toolbar/TableToolbarSize.d.ts.map +1 -0
  543. package/lib/typescript/commonjs/components/table-toolbar/_TableToolbarContext.d.ts +6 -0
  544. package/lib/typescript/commonjs/components/table-toolbar/_TableToolbarContext.d.ts.map +1 -0
  545. package/lib/typescript/commonjs/components/table-toolbar/index.d.ts +5 -0
  546. package/lib/typescript/commonjs/components/table-toolbar/index.d.ts.map +1 -0
  547. package/lib/typescript/commonjs/components/table-toolbar-button/_useSize.d.ts +3 -0
  548. package/lib/typescript/commonjs/components/table-toolbar-button/_useSize.d.ts.map +1 -0
  549. package/lib/typescript/commonjs/components/table-toolbar-button/ghost/Ghost.d.ts +4 -0
  550. package/lib/typescript/commonjs/components/table-toolbar-button/ghost/Ghost.d.ts.map +1 -0
  551. package/lib/typescript/commonjs/components/table-toolbar-button/ghost/GhostProps.d.ts +4 -0
  552. package/lib/typescript/commonjs/components/table-toolbar-button/ghost/GhostProps.d.ts.map +1 -0
  553. package/lib/typescript/commonjs/components/table-toolbar-button/ghost/GhostRef.d.ts +4 -0
  554. package/lib/typescript/commonjs/components/table-toolbar-button/ghost/GhostRef.d.ts.map +1 -0
  555. package/lib/typescript/commonjs/components/table-toolbar-button/ghost/index.d.ts +4 -0
  556. package/lib/typescript/commonjs/components/table-toolbar-button/ghost/index.d.ts.map +1 -0
  557. package/lib/typescript/commonjs/components/table-toolbar-button/ghost-icon/GhostIcon.d.ts +4 -0
  558. package/lib/typescript/commonjs/components/table-toolbar-button/ghost-icon/GhostIcon.d.ts.map +1 -0
  559. package/lib/typescript/commonjs/components/table-toolbar-button/ghost-icon/GhostIconProps.d.ts +4 -0
  560. package/lib/typescript/commonjs/components/table-toolbar-button/ghost-icon/GhostIconProps.d.ts.map +1 -0
  561. package/lib/typescript/commonjs/components/table-toolbar-button/ghost-icon/GhostIconRef.d.ts +4 -0
  562. package/lib/typescript/commonjs/components/table-toolbar-button/ghost-icon/GhostIconRef.d.ts.map +1 -0
  563. package/lib/typescript/commonjs/components/table-toolbar-button/ghost-icon/index.d.ts +4 -0
  564. package/lib/typescript/commonjs/components/table-toolbar-button/ghost-icon/index.d.ts.map +1 -0
  565. package/lib/typescript/commonjs/components/table-toolbar-button/index.d.ts +4 -0
  566. package/lib/typescript/commonjs/components/table-toolbar-button/index.d.ts.map +1 -0
  567. package/lib/typescript/commonjs/components/table-toolbar-button/primary/Primary.d.ts +4 -0
  568. package/lib/typescript/commonjs/components/table-toolbar-button/primary/Primary.d.ts.map +1 -0
  569. package/lib/typescript/commonjs/components/table-toolbar-button/primary/PrimaryProps.d.ts +4 -0
  570. package/lib/typescript/commonjs/components/table-toolbar-button/primary/PrimaryProps.d.ts.map +1 -0
  571. package/lib/typescript/commonjs/components/table-toolbar-button/primary/PrimaryRef.d.ts +4 -0
  572. package/lib/typescript/commonjs/components/table-toolbar-button/primary/PrimaryRef.d.ts.map +1 -0
  573. package/lib/typescript/commonjs/components/table-toolbar-button/primary/index.d.ts +4 -0
  574. package/lib/typescript/commonjs/components/table-toolbar-button/primary/index.d.ts.map +1 -0
  575. package/lib/typescript/commonjs/components/table-toolbar-switcher/TableToolbarSwitcher.d.ts +10 -0
  576. package/lib/typescript/commonjs/components/table-toolbar-switcher/TableToolbarSwitcher.d.ts.map +1 -0
  577. package/lib/typescript/commonjs/components/table-toolbar-switcher/TableToolbarSwitcherProps.d.ts +16 -0
  578. package/lib/typescript/commonjs/components/table-toolbar-switcher/TableToolbarSwitcherProps.d.ts.map +1 -0
  579. package/lib/typescript/commonjs/components/table-toolbar-switcher/TableToolbarSwitcherRef.d.ts +5 -0
  580. package/lib/typescript/commonjs/components/table-toolbar-switcher/TableToolbarSwitcherRef.d.ts.map +1 -0
  581. package/lib/typescript/commonjs/components/table-toolbar-switcher/TableToolbarSwitcherRefBase.d.ts +17 -0
  582. package/lib/typescript/commonjs/components/table-toolbar-switcher/TableToolbarSwitcherRefBase.d.ts.map +1 -0
  583. package/lib/typescript/commonjs/components/table-toolbar-switcher/_AnimatedContentProps.d.ts +4 -0
  584. package/lib/typescript/commonjs/components/table-toolbar-switcher/_AnimatedContentProps.d.ts.map +1 -0
  585. package/lib/typescript/commonjs/components/table-toolbar-switcher/_animated-next-content/AnimatedNextContent.d.ts +3 -0
  586. package/lib/typescript/commonjs/components/table-toolbar-switcher/_animated-next-content/AnimatedNextContent.d.ts.map +1 -0
  587. package/lib/typescript/commonjs/components/table-toolbar-switcher/_animated-next-content/AnimatedNextContentProps.d.ts +5 -0
  588. package/lib/typescript/commonjs/components/table-toolbar-switcher/_animated-next-content/AnimatedNextContentProps.d.ts.map +1 -0
  589. package/lib/typescript/commonjs/components/table-toolbar-switcher/_animated-next-content/index.d.ts +3 -0
  590. package/lib/typescript/commonjs/components/table-toolbar-switcher/_animated-next-content/index.d.ts.map +1 -0
  591. package/lib/typescript/commonjs/components/table-toolbar-switcher/_animated-toolbar/AnimatedToolbar.d.ts +4 -0
  592. package/lib/typescript/commonjs/components/table-toolbar-switcher/_animated-toolbar/AnimatedToolbar.d.ts.map +1 -0
  593. package/lib/typescript/commonjs/components/table-toolbar-switcher/_animated-toolbar/AnimatedToolbarProps.d.ts +5 -0
  594. package/lib/typescript/commonjs/components/table-toolbar-switcher/_animated-toolbar/AnimatedToolbarProps.d.ts.map +1 -0
  595. package/lib/typescript/commonjs/components/table-toolbar-switcher/_animated-toolbar/AnimatedToolbarRef.d.ts +4 -0
  596. package/lib/typescript/commonjs/components/table-toolbar-switcher/_animated-toolbar/AnimatedToolbarRef.d.ts.map +1 -0
  597. package/lib/typescript/commonjs/components/table-toolbar-switcher/_animated-toolbar/index.d.ts +4 -0
  598. package/lib/typescript/commonjs/components/table-toolbar-switcher/_animated-toolbar/index.d.ts.map +1 -0
  599. package/lib/typescript/commonjs/components/table-toolbar-switcher/_useAnimatedContent.d.ts +20 -0
  600. package/lib/typescript/commonjs/components/table-toolbar-switcher/_useAnimatedContent.d.ts.map +1 -0
  601. package/lib/typescript/commonjs/components/table-toolbar-switcher/index.d.ts +5 -0
  602. package/lib/typescript/commonjs/components/table-toolbar-switcher/index.d.ts.map +1 -0
  603. package/lib/typescript/module/_internal/contexts/global-config/GlobalConfigContext.d.ts.map +1 -1
  604. package/lib/typescript/module/_internal/providers/global-config/GlobalConfigProvider.d.ts +1 -1
  605. package/lib/typescript/module/_internal/providers/global-config/GlobalConfigProvider.d.ts.map +1 -1
  606. package/lib/typescript/module/_internal/providers/global-config/GlobalConfigProviderProps.d.ts +1 -1
  607. package/lib/typescript/module/_internal/providers/global-config/GlobalConfigProviderProps.d.ts.map +1 -1
  608. package/lib/typescript/module/carbon-react-native/CarbonReactNative.d.ts.map +1 -1
  609. package/lib/typescript/module/carbon-react-native/CarbonReactNativeProps.d.ts +1 -1
  610. package/lib/typescript/module/carbon-react-native/CarbonReactNativeProps.d.ts.map +1 -1
  611. package/lib/typescript/module/components/box/Box.d.ts +6 -0
  612. package/lib/typescript/module/components/box/Box.d.ts.map +1 -1
  613. package/lib/typescript/module/components/button/ghost/Ghost.d.ts.map +1 -1
  614. package/lib/typescript/module/components/index.d.ts +15 -1
  615. package/lib/typescript/module/components/index.d.ts.map +1 -1
  616. package/lib/typescript/module/components/layer/Layer.d.ts.map +1 -1
  617. package/lib/typescript/module/components/layer/LayerProps.d.ts +5 -2
  618. package/lib/typescript/module/components/layer/LayerProps.d.ts.map +1 -1
  619. package/lib/typescript/module/components/scroll-view/ScrollView.d.ts +9 -0
  620. package/lib/typescript/module/components/scroll-view/ScrollView.d.ts.map +1 -0
  621. package/lib/typescript/module/components/scroll-view/ScrollViewProps.d.ts +4 -0
  622. package/lib/typescript/module/components/scroll-view/ScrollViewProps.d.ts.map +1 -0
  623. package/lib/typescript/module/components/scroll-view/index.d.ts +3 -0
  624. package/lib/typescript/module/components/scroll-view/index.d.ts.map +1 -0
  625. package/lib/typescript/module/components/table/Table.d.ts +4 -0
  626. package/lib/typescript/module/components/table/Table.d.ts.map +1 -0
  627. package/lib/typescript/module/components/table/TableProps.d.ts +25 -0
  628. package/lib/typescript/module/components/table/TableProps.d.ts.map +1 -0
  629. package/lib/typescript/module/components/table/TableRef.d.ts +4 -0
  630. package/lib/typescript/module/components/table/TableRef.d.ts.map +1 -0
  631. package/lib/typescript/module/components/table/_TableContext.d.ts +6 -0
  632. package/lib/typescript/module/components/table/_TableContext.d.ts.map +1 -0
  633. package/lib/typescript/module/components/table/index.d.ts +4 -0
  634. package/lib/typescript/module/components/table/index.d.ts.map +1 -0
  635. package/lib/typescript/module/components/table-batch-action-bar/TableBatchActionBar.d.ts +4 -0
  636. package/lib/typescript/module/components/table-batch-action-bar/TableBatchActionBar.d.ts.map +1 -0
  637. package/lib/typescript/module/components/table-batch-action-bar/TableBatchActionBarProps.d.ts +30 -0
  638. package/lib/typescript/module/components/table-batch-action-bar/TableBatchActionBarProps.d.ts.map +1 -0
  639. package/lib/typescript/module/components/table-batch-action-bar/TableBatchActionBarRef.d.ts +4 -0
  640. package/lib/typescript/module/components/table-batch-action-bar/TableBatchActionBarRef.d.ts.map +1 -0
  641. package/lib/typescript/module/components/table-batch-action-bar/TableBatchActionBarSize.d.ts +2 -0
  642. package/lib/typescript/module/components/table-batch-action-bar/TableBatchActionBarSize.d.ts.map +1 -0
  643. package/lib/typescript/module/components/table-batch-action-bar/_TableBatchActionBarContext.d.ts +6 -0
  644. package/lib/typescript/module/components/table-batch-action-bar/_TableBatchActionBarContext.d.ts.map +1 -0
  645. package/lib/typescript/module/components/table-batch-action-bar/index.d.ts +5 -0
  646. package/lib/typescript/module/components/table-batch-action-bar/index.d.ts.map +1 -0
  647. package/lib/typescript/module/components/table-batch-action-bar-button/TableBatchActionBarButton.d.ts +4 -0
  648. package/lib/typescript/module/components/table-batch-action-bar-button/TableBatchActionBarButton.d.ts.map +1 -0
  649. package/lib/typescript/module/components/table-batch-action-bar-button/TableBatchActionBarButtonProps.d.ts +4 -0
  650. package/lib/typescript/module/components/table-batch-action-bar-button/TableBatchActionBarButtonProps.d.ts.map +1 -0
  651. package/lib/typescript/module/components/table-batch-action-bar-button/TableBatchActionBarButtonRef.d.ts +4 -0
  652. package/lib/typescript/module/components/table-batch-action-bar-button/TableBatchActionBarButtonRef.d.ts.map +1 -0
  653. package/lib/typescript/module/components/table-batch-action-bar-button/index.d.ts +4 -0
  654. package/lib/typescript/module/components/table-batch-action-bar-button/index.d.ts.map +1 -0
  655. package/lib/typescript/module/components/table-cell/TableCell.d.ts +17 -0
  656. package/lib/typescript/module/components/table-cell/TableCell.d.ts.map +1 -0
  657. package/lib/typescript/module/components/table-cell/TableCellProps.d.ts +28 -0
  658. package/lib/typescript/module/components/table-cell/TableCellProps.d.ts.map +1 -0
  659. package/lib/typescript/module/components/table-cell/TableCellRef.d.ts +4 -0
  660. package/lib/typescript/module/components/table-cell/TableCellRef.d.ts.map +1 -0
  661. package/lib/typescript/module/components/table-cell/index.d.ts +4 -0
  662. package/lib/typescript/module/components/table-cell/index.d.ts.map +1 -0
  663. package/lib/typescript/module/components/table-cell-header/TableCellHeader.d.ts +22 -0
  664. package/lib/typescript/module/components/table-cell-header/TableCellHeader.d.ts.map +1 -0
  665. package/lib/typescript/module/components/table-cell-header/TableCellHeaderProps.d.ts +19 -0
  666. package/lib/typescript/module/components/table-cell-header/TableCellHeaderProps.d.ts.map +1 -0
  667. package/lib/typescript/module/components/table-cell-header/TableCellHeaderRef.d.ts +4 -0
  668. package/lib/typescript/module/components/table-cell-header/TableCellHeaderRef.d.ts.map +1 -0
  669. package/lib/typescript/module/components/table-cell-header/TableCellHeaderSort.d.ts +2 -0
  670. package/lib/typescript/module/components/table-cell-header/TableCellHeaderSort.d.ts.map +1 -0
  671. package/lib/typescript/module/components/table-cell-header/_sort-icon/SortIcon.d.ts +4 -0
  672. package/lib/typescript/module/components/table-cell-header/_sort-icon/SortIcon.d.ts.map +1 -0
  673. package/lib/typescript/module/components/table-cell-header/_sort-icon/SortIconProps.d.ts +6 -0
  674. package/lib/typescript/module/components/table-cell-header/_sort-icon/SortIconProps.d.ts.map +1 -0
  675. package/lib/typescript/module/components/table-cell-header/_sort-icon/SortIconRef.d.ts +4 -0
  676. package/lib/typescript/module/components/table-cell-header/_sort-icon/SortIconRef.d.ts.map +1 -0
  677. package/lib/typescript/module/components/table-cell-header/_sort-icon/index.d.ts +4 -0
  678. package/lib/typescript/module/components/table-cell-header/_sort-icon/index.d.ts.map +1 -0
  679. package/lib/typescript/module/components/table-cell-header/index.d.ts +5 -0
  680. package/lib/typescript/module/components/table-cell-header/index.d.ts.map +1 -0
  681. package/lib/typescript/module/components/table-cell-icon/TableCellIcon.d.ts +4 -0
  682. package/lib/typescript/module/components/table-cell-icon/TableCellIcon.d.ts.map +1 -0
  683. package/lib/typescript/module/components/table-cell-icon/TableCellIconProps.d.ts +5 -0
  684. package/lib/typescript/module/components/table-cell-icon/TableCellIconProps.d.ts.map +1 -0
  685. package/lib/typescript/module/components/table-cell-icon/TableCellIconRef.d.ts +4 -0
  686. package/lib/typescript/module/components/table-cell-icon/TableCellIconRef.d.ts.map +1 -0
  687. package/lib/typescript/module/components/table-cell-icon/index.d.ts +4 -0
  688. package/lib/typescript/module/components/table-cell-icon/index.d.ts.map +1 -0
  689. package/lib/typescript/module/components/table-cell-text/TableCellText.d.ts +7 -0
  690. package/lib/typescript/module/components/table-cell-text/TableCellText.d.ts.map +1 -0
  691. package/lib/typescript/module/components/table-cell-text/TableCellTextProps.d.ts +4 -0
  692. package/lib/typescript/module/components/table-cell-text/TableCellTextProps.d.ts.map +1 -0
  693. package/lib/typescript/module/components/table-cell-text/TableCellTextRef.d.ts +4 -0
  694. package/lib/typescript/module/components/table-cell-text/TableCellTextRef.d.ts.map +1 -0
  695. package/lib/typescript/module/components/table-cell-text/index.d.ts +4 -0
  696. package/lib/typescript/module/components/table-cell-text/index.d.ts.map +1 -0
  697. package/lib/typescript/module/components/table-header/TableHeader.d.ts +4 -0
  698. package/lib/typescript/module/components/table-header/TableHeader.d.ts.map +1 -0
  699. package/lib/typescript/module/components/table-header/TableHeaderProps.d.ts +9 -0
  700. package/lib/typescript/module/components/table-header/TableHeaderProps.d.ts.map +1 -0
  701. package/lib/typescript/module/components/table-header/TableHeaderRef.d.ts +4 -0
  702. package/lib/typescript/module/components/table-header/TableHeaderRef.d.ts.map +1 -0
  703. package/lib/typescript/module/components/table-header/index.d.ts +4 -0
  704. package/lib/typescript/module/components/table-header/index.d.ts.map +1 -0
  705. package/lib/typescript/module/components/table-row/TableRow.d.ts +4 -0
  706. package/lib/typescript/module/components/table-row/TableRow.d.ts.map +1 -0
  707. package/lib/typescript/module/components/table-row/TableRowInteractiveState.d.ts +2 -0
  708. package/lib/typescript/module/components/table-row/TableRowInteractiveState.d.ts.map +1 -0
  709. package/lib/typescript/module/components/table-row/TableRowProps.d.ts +39 -0
  710. package/lib/typescript/module/components/table-row/TableRowProps.d.ts.map +1 -0
  711. package/lib/typescript/module/components/table-row/TableRowRef.d.ts +4 -0
  712. package/lib/typescript/module/components/table-row/TableRowRef.d.ts.map +1 -0
  713. package/lib/typescript/module/components/table-row/TableRowSize.d.ts +5 -0
  714. package/lib/typescript/module/components/table-row/TableRowSize.d.ts.map +1 -0
  715. package/lib/typescript/module/components/table-row/_TableRowContext.d.ts +7 -0
  716. package/lib/typescript/module/components/table-row/_TableRowContext.d.ts.map +1 -0
  717. package/lib/typescript/module/components/table-row/_style-sheet-height.d.ts +18 -0
  718. package/lib/typescript/module/components/table-row/_style-sheet-height.d.ts.map +1 -0
  719. package/lib/typescript/module/components/table-row/index.d.ts +6 -0
  720. package/lib/typescript/module/components/table-row/index.d.ts.map +1 -0
  721. package/lib/typescript/module/components/table-row-header/TableRowHeader.d.ts +4 -0
  722. package/lib/typescript/module/components/table-row-header/TableRowHeader.d.ts.map +1 -0
  723. package/lib/typescript/module/components/table-row-header/TableRowHeaderProps.d.ts +5 -0
  724. package/lib/typescript/module/components/table-row-header/TableRowHeaderProps.d.ts.map +1 -0
  725. package/lib/typescript/module/components/table-row-header/TableRowHeaderRef.d.ts +4 -0
  726. package/lib/typescript/module/components/table-row-header/TableRowHeaderRef.d.ts.map +1 -0
  727. package/lib/typescript/module/components/table-row-header/_TableRowHeaderContext.d.ts +7 -0
  728. package/lib/typescript/module/components/table-row-header/_TableRowHeaderContext.d.ts.map +1 -0
  729. package/lib/typescript/module/components/table-row-header/index.d.ts +4 -0
  730. package/lib/typescript/module/components/table-row-header/index.d.ts.map +1 -0
  731. package/lib/typescript/module/components/table-toolbar/TableToolbar.d.ts +4 -0
  732. package/lib/typescript/module/components/table-toolbar/TableToolbar.d.ts.map +1 -0
  733. package/lib/typescript/module/components/table-toolbar/TableToolbarProps.d.ts +22 -0
  734. package/lib/typescript/module/components/table-toolbar/TableToolbarProps.d.ts.map +1 -0
  735. package/lib/typescript/module/components/table-toolbar/TableToolbarRef.d.ts +4 -0
  736. package/lib/typescript/module/components/table-toolbar/TableToolbarRef.d.ts.map +1 -0
  737. package/lib/typescript/module/components/table-toolbar/TableToolbarSize.d.ts +2 -0
  738. package/lib/typescript/module/components/table-toolbar/TableToolbarSize.d.ts.map +1 -0
  739. package/lib/typescript/module/components/table-toolbar/_TableToolbarContext.d.ts +6 -0
  740. package/lib/typescript/module/components/table-toolbar/_TableToolbarContext.d.ts.map +1 -0
  741. package/lib/typescript/module/components/table-toolbar/index.d.ts +5 -0
  742. package/lib/typescript/module/components/table-toolbar/index.d.ts.map +1 -0
  743. package/lib/typescript/module/components/table-toolbar-button/_useSize.d.ts +3 -0
  744. package/lib/typescript/module/components/table-toolbar-button/_useSize.d.ts.map +1 -0
  745. package/lib/typescript/module/components/table-toolbar-button/ghost/Ghost.d.ts +4 -0
  746. package/lib/typescript/module/components/table-toolbar-button/ghost/Ghost.d.ts.map +1 -0
  747. package/lib/typescript/module/components/table-toolbar-button/ghost/GhostProps.d.ts +4 -0
  748. package/lib/typescript/module/components/table-toolbar-button/ghost/GhostProps.d.ts.map +1 -0
  749. package/lib/typescript/module/components/table-toolbar-button/ghost/GhostRef.d.ts +4 -0
  750. package/lib/typescript/module/components/table-toolbar-button/ghost/GhostRef.d.ts.map +1 -0
  751. package/lib/typescript/module/components/table-toolbar-button/ghost/index.d.ts +4 -0
  752. package/lib/typescript/module/components/table-toolbar-button/ghost/index.d.ts.map +1 -0
  753. package/lib/typescript/module/components/table-toolbar-button/ghost-icon/GhostIcon.d.ts +4 -0
  754. package/lib/typescript/module/components/table-toolbar-button/ghost-icon/GhostIcon.d.ts.map +1 -0
  755. package/lib/typescript/module/components/table-toolbar-button/ghost-icon/GhostIconProps.d.ts +4 -0
  756. package/lib/typescript/module/components/table-toolbar-button/ghost-icon/GhostIconProps.d.ts.map +1 -0
  757. package/lib/typescript/module/components/table-toolbar-button/ghost-icon/GhostIconRef.d.ts +4 -0
  758. package/lib/typescript/module/components/table-toolbar-button/ghost-icon/GhostIconRef.d.ts.map +1 -0
  759. package/lib/typescript/module/components/table-toolbar-button/ghost-icon/index.d.ts +4 -0
  760. package/lib/typescript/module/components/table-toolbar-button/ghost-icon/index.d.ts.map +1 -0
  761. package/lib/typescript/module/components/table-toolbar-button/index.d.ts +4 -0
  762. package/lib/typescript/module/components/table-toolbar-button/index.d.ts.map +1 -0
  763. package/lib/typescript/module/components/table-toolbar-button/primary/Primary.d.ts +4 -0
  764. package/lib/typescript/module/components/table-toolbar-button/primary/Primary.d.ts.map +1 -0
  765. package/lib/typescript/module/components/table-toolbar-button/primary/PrimaryProps.d.ts +4 -0
  766. package/lib/typescript/module/components/table-toolbar-button/primary/PrimaryProps.d.ts.map +1 -0
  767. package/lib/typescript/module/components/table-toolbar-button/primary/PrimaryRef.d.ts +4 -0
  768. package/lib/typescript/module/components/table-toolbar-button/primary/PrimaryRef.d.ts.map +1 -0
  769. package/lib/typescript/module/components/table-toolbar-button/primary/index.d.ts +4 -0
  770. package/lib/typescript/module/components/table-toolbar-button/primary/index.d.ts.map +1 -0
  771. package/lib/typescript/module/components/table-toolbar-switcher/TableToolbarSwitcher.d.ts +10 -0
  772. package/lib/typescript/module/components/table-toolbar-switcher/TableToolbarSwitcher.d.ts.map +1 -0
  773. package/lib/typescript/module/components/table-toolbar-switcher/TableToolbarSwitcherProps.d.ts +16 -0
  774. package/lib/typescript/module/components/table-toolbar-switcher/TableToolbarSwitcherProps.d.ts.map +1 -0
  775. package/lib/typescript/module/components/table-toolbar-switcher/TableToolbarSwitcherRef.d.ts +5 -0
  776. package/lib/typescript/module/components/table-toolbar-switcher/TableToolbarSwitcherRef.d.ts.map +1 -0
  777. package/lib/typescript/module/components/table-toolbar-switcher/TableToolbarSwitcherRefBase.d.ts +17 -0
  778. package/lib/typescript/module/components/table-toolbar-switcher/TableToolbarSwitcherRefBase.d.ts.map +1 -0
  779. package/lib/typescript/module/components/table-toolbar-switcher/_AnimatedContentProps.d.ts +4 -0
  780. package/lib/typescript/module/components/table-toolbar-switcher/_AnimatedContentProps.d.ts.map +1 -0
  781. package/lib/typescript/module/components/table-toolbar-switcher/_animated-next-content/AnimatedNextContent.d.ts +3 -0
  782. package/lib/typescript/module/components/table-toolbar-switcher/_animated-next-content/AnimatedNextContent.d.ts.map +1 -0
  783. package/lib/typescript/module/components/table-toolbar-switcher/_animated-next-content/AnimatedNextContentProps.d.ts +5 -0
  784. package/lib/typescript/module/components/table-toolbar-switcher/_animated-next-content/AnimatedNextContentProps.d.ts.map +1 -0
  785. package/lib/typescript/module/components/table-toolbar-switcher/_animated-next-content/index.d.ts +3 -0
  786. package/lib/typescript/module/components/table-toolbar-switcher/_animated-next-content/index.d.ts.map +1 -0
  787. package/lib/typescript/module/components/table-toolbar-switcher/_animated-toolbar/AnimatedToolbar.d.ts +4 -0
  788. package/lib/typescript/module/components/table-toolbar-switcher/_animated-toolbar/AnimatedToolbar.d.ts.map +1 -0
  789. package/lib/typescript/module/components/table-toolbar-switcher/_animated-toolbar/AnimatedToolbarProps.d.ts +5 -0
  790. package/lib/typescript/module/components/table-toolbar-switcher/_animated-toolbar/AnimatedToolbarProps.d.ts.map +1 -0
  791. package/lib/typescript/module/components/table-toolbar-switcher/_animated-toolbar/AnimatedToolbarRef.d.ts +4 -0
  792. package/lib/typescript/module/components/table-toolbar-switcher/_animated-toolbar/AnimatedToolbarRef.d.ts.map +1 -0
  793. package/lib/typescript/module/components/table-toolbar-switcher/_animated-toolbar/index.d.ts +4 -0
  794. package/lib/typescript/module/components/table-toolbar-switcher/_animated-toolbar/index.d.ts.map +1 -0
  795. package/lib/typescript/module/components/table-toolbar-switcher/_useAnimatedContent.d.ts +20 -0
  796. package/lib/typescript/module/components/table-toolbar-switcher/_useAnimatedContent.d.ts.map +1 -0
  797. package/lib/typescript/module/components/table-toolbar-switcher/index.d.ts +5 -0
  798. package/lib/typescript/module/components/table-toolbar-switcher/index.d.ts.map +1 -0
  799. package/lib/typescript/tsconfig.tsbuildinfo +1 -1
  800. package/package.json +1 -1
  801. package/src/_internal/contexts/global-config/GlobalConfigContext.ts +5 -1
  802. package/src/_internal/providers/global-config/GlobalConfigProvider.tsx +14 -4
  803. package/src/_internal/providers/global-config/GlobalConfigProviderProps.ts +1 -1
  804. package/src/carbon-react-native/CarbonReactNative.tsx +8 -8
  805. package/src/carbon-react-native/CarbonReactNativeProps.ts +1 -1
  806. package/src/carbon-style-sheet/color.ts +1 -1
  807. package/src/carbon-style-sheet/g/font.ts +1 -1
  808. package/src/carbon-style-sheet/g/spacing.ts +1 -1
  809. package/src/carbon-style-sheet/g/typography.ts +1 -1
  810. package/src/carbon-style-sheet/g-object/font.ts +1 -1
  811. package/src/carbon-style-sheet/g-object/spacing.ts +1 -1
  812. package/src/carbon-style-sheet/g-object/typography.ts +1 -1
  813. package/src/components/box/Box.tsx +6 -0
  814. package/src/components/button/base/Base.tsx +6 -17
  815. package/src/components/button/ghost/Ghost.tsx +3 -23
  816. package/src/components/index.ts +15 -0
  817. package/src/components/layer/Layer.tsx +3 -4
  818. package/src/components/layer/LayerProps.ts +5 -2
  819. package/src/components/scroll-view/ScrollView.tsx +62 -0
  820. package/src/components/scroll-view/ScrollViewProps.ts +6 -0
  821. package/src/components/scroll-view/index.ts +2 -0
  822. package/src/components/table/Table.tsx +80 -0
  823. package/src/components/table/TableProps.ts +39 -0
  824. package/src/components/table/TableRef.ts +6 -0
  825. package/src/components/table/_TableContext.ts +15 -0
  826. package/src/components/table/index.ts +3 -0
  827. package/src/components/table-batch-action-bar/TableBatchActionBar.tsx +156 -0
  828. package/src/components/table-batch-action-bar/TableBatchActionBarProps.ts +42 -0
  829. package/src/components/table-batch-action-bar/TableBatchActionBarRef.ts +6 -0
  830. package/src/components/table-batch-action-bar/TableBatchActionBarSize.ts +3 -0
  831. package/src/components/table-batch-action-bar/_TableBatchActionBarContext.ts +15 -0
  832. package/src/components/table-batch-action-bar/index.ts +4 -0
  833. package/src/components/table-batch-action-bar-button/TableBatchActionBarButton.tsx +74 -0
  834. package/src/components/table-batch-action-bar-button/TableBatchActionBarButtonProps.ts +6 -0
  835. package/src/components/table-batch-action-bar-button/TableBatchActionBarButtonRef.ts +6 -0
  836. package/src/components/table-batch-action-bar-button/index.ts +3 -0
  837. package/src/components/table-cell/TableCell.tsx +93 -0
  838. package/src/components/table-cell/TableCellProps.ts +33 -0
  839. package/src/components/table-cell/TableCellRef.ts +6 -0
  840. package/src/components/table-cell/index.ts +3 -0
  841. package/src/components/table-cell-header/TableCellHeader.tsx +274 -0
  842. package/src/components/table-cell-header/TableCellHeaderProps.ts +34 -0
  843. package/src/components/table-cell-header/TableCellHeaderRef.ts +6 -0
  844. package/src/components/table-cell-header/TableCellHeaderSort.ts +4 -0
  845. package/src/components/table-cell-header/_sort-icon/SortIcon.tsx +137 -0
  846. package/src/components/table-cell-header/_sort-icon/SortIconProps.ts +11 -0
  847. package/src/components/table-cell-header/_sort-icon/SortIconRef.ts +3 -0
  848. package/src/components/table-cell-header/_sort-icon/index.ts +3 -0
  849. package/src/components/table-cell-header/index.ts +4 -0
  850. package/src/components/table-cell-icon/TableCellIcon.tsx +54 -0
  851. package/src/components/table-cell-icon/TableCellIconProps.ts +16 -0
  852. package/src/components/table-cell-icon/TableCellIconRef.ts +4 -0
  853. package/src/components/table-cell-icon/index.ts +3 -0
  854. package/src/components/table-cell-text/TableCellText.tsx +111 -0
  855. package/src/components/table-cell-text/TableCellTextProps.ts +9 -0
  856. package/src/components/table-cell-text/TableCellTextRef.ts +6 -0
  857. package/src/components/table-cell-text/index.ts +3 -0
  858. package/src/components/table-header/TableHeader.tsx +110 -0
  859. package/src/components/table-header/TableHeaderProps.ts +22 -0
  860. package/src/components/table-header/TableHeaderRef.ts +6 -0
  861. package/src/components/table-header/index.ts +3 -0
  862. package/src/components/table-row/TableRow.tsx +271 -0
  863. package/src/components/table-row/TableRowInteractiveState.ts +4 -0
  864. package/src/components/table-row/TableRowProps.ts +48 -0
  865. package/src/components/table-row/TableRowRef.ts +6 -0
  866. package/src/components/table-row/TableRowSize.ts +9 -0
  867. package/src/components/table-row/_TableRowContext.ts +17 -0
  868. package/src/components/table-row/_style-sheet-height.ts +27 -0
  869. package/src/components/table-row/index.ts +5 -0
  870. package/src/components/table-row-header/TableRowHeader.tsx +115 -0
  871. package/src/components/table-row-header/TableRowHeaderProps.ts +13 -0
  872. package/src/components/table-row-header/TableRowHeaderRef.ts +6 -0
  873. package/src/components/table-row-header/_TableRowHeaderContext.ts +19 -0
  874. package/src/components/table-row-header/index.ts +3 -0
  875. package/src/components/table-toolbar/TableToolbar.tsx +165 -0
  876. package/src/components/table-toolbar/TableToolbarProps.ts +27 -0
  877. package/src/components/table-toolbar/TableToolbarRef.ts +6 -0
  878. package/src/components/table-toolbar/TableToolbarSize.ts +3 -0
  879. package/src/components/table-toolbar/_TableToolbarContext.ts +15 -0
  880. package/src/components/table-toolbar/index.ts +4 -0
  881. package/src/components/table-toolbar-button/_useSize.tsx +28 -0
  882. package/src/components/table-toolbar-button/ghost/Ghost.tsx +43 -0
  883. package/src/components/table-toolbar-button/ghost/GhostProps.ts +6 -0
  884. package/src/components/table-toolbar-button/ghost/GhostRef.ts +6 -0
  885. package/src/components/table-toolbar-button/ghost/index.ts +3 -0
  886. package/src/components/table-toolbar-button/ghost-icon/GhostIcon.tsx +43 -0
  887. package/src/components/table-toolbar-button/ghost-icon/GhostIconProps.ts +6 -0
  888. package/src/components/table-toolbar-button/ghost-icon/GhostIconRef.ts +6 -0
  889. package/src/components/table-toolbar-button/ghost-icon/index.ts +3 -0
  890. package/src/components/table-toolbar-button/index.ts +3 -0
  891. package/src/components/table-toolbar-button/primary/Primary.tsx +43 -0
  892. package/src/components/table-toolbar-button/primary/PrimaryProps.ts +6 -0
  893. package/src/components/table-toolbar-button/primary/PrimaryRef.ts +6 -0
  894. package/src/components/table-toolbar-button/primary/index.ts +3 -0
  895. package/src/components/table-toolbar-switcher/TableToolbarSwitcher.tsx +110 -0
  896. package/src/components/table-toolbar-switcher/TableToolbarSwitcherProps.ts +18 -0
  897. package/src/components/table-toolbar-switcher/TableToolbarSwitcherRef.ts +10 -0
  898. package/src/components/table-toolbar-switcher/TableToolbarSwitcherRefBase.ts +16 -0
  899. package/src/components/table-toolbar-switcher/_AnimatedContentProps.ts +3 -0
  900. package/src/components/table-toolbar-switcher/_animated-next-content/AnimatedNextContent.tsx +33 -0
  901. package/src/components/table-toolbar-switcher/_animated-next-content/AnimatedNextContentProps.ts +10 -0
  902. package/src/components/table-toolbar-switcher/_animated-next-content/index.ts +2 -0
  903. package/src/components/table-toolbar-switcher/_animated-toolbar/AnimatedToolbar.tsx +59 -0
  904. package/src/components/table-toolbar-switcher/_animated-toolbar/AnimatedToolbarProps.ts +10 -0
  905. package/src/components/table-toolbar-switcher/_animated-toolbar/AnimatedToolbarRef.ts +6 -0
  906. package/src/components/table-toolbar-switcher/_animated-toolbar/index.ts +3 -0
  907. package/src/components/table-toolbar-switcher/_useAnimatedContent.tsx +179 -0
  908. package/src/components/table-toolbar-switcher/index.ts +4 -0
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/table/TableProps.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+
3
+ export {};
4
+ //# sourceMappingURL=TableRef.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/table/TableRef.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+
3
+ import { createContext } from "react";
4
+ export const TableContext = /*#__PURE__*/createContext({
5
+ rowSize: "large"
6
+ });
7
+ //# sourceMappingURL=_TableContext.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["createContext","TableContext","rowSize"],"sourceRoot":"../../../../src","sources":["components/table/_TableContext.ts"],"mappings":";;AAAA,SACCA,aAAa,QACP,OAAO;AAUd,OAAO,MAAMC,YAAY,gBAAGD,aAAa,CAAe;EACvDE,OAAO,EAAE;AACV,CAAC,CAAC","ignoreList":[]}
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+
3
+ export * from "./Table.js";
4
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/table/index.ts"],"mappings":";;AAAA,cAAc,YAAS","ignoreList":[]}
@@ -0,0 +1,76 @@
1
+ "use strict";
2
+
3
+ import { forwardRef, useContext } from "react";
4
+ import { StyleSheet } from "react-native";
5
+ import * as CarbonStyleSheet from "../../carbon-style-sheet/index.js";
6
+ import { Box } from "../box/Box.js";
7
+ import { ScrollView } from "../scroll-view/ScrollView.js";
8
+ import { TableContext } from "../table/_TableContext.js";
9
+ import { Text } from "../text/Text.js";
10
+ import { TableBatchActionBarContext } from "./_TableBatchActionBarContext.js";
11
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
12
+ export const TableBatchActionBar = /*#__PURE__*/forwardRef(function TableBatchActionBar({
13
+ size: sizeProp,
14
+ horizontal = true,
15
+ text,
16
+ textProps,
17
+ buttons,
18
+ style,
19
+ contentContainerStyle,
20
+ ...props
21
+ }, ref) {
22
+ const tableContext = useContext(TableContext),
23
+ size = sizeProp ?? tableContext.rowSize,
24
+ batchActionBarSize = mapRowSizeToBatchActionBarSize[size];
25
+ return /*#__PURE__*/_jsx(TableBatchActionBarContext.Provider, {
26
+ value: {
27
+ size: batchActionBarSize
28
+ },
29
+ children: /*#__PURE__*/_jsxs(ScrollView, {
30
+ ref: ref,
31
+ ...props,
32
+ horizontal: horizontal,
33
+ style: [carbonStyleSheet.tableBatchActionBar,
34
+ // if users provide size prop manually
35
+ // they will still get the correct size style
36
+ // the `large` and `small` from `TableBatchActionBarSize`
37
+ // are also used by `TableRowSize`
38
+ styleSheetSize[batchActionBarSize], style],
39
+ contentContainerStyle: [CarbonStyleSheet.g.flex_auto, CarbonStyleSheet.g.flex_row, CarbonStyleSheet.g.justify_between, contentContainerStyle],
40
+ children: [/*#__PURE__*/_jsx(Text, {
41
+ ...textProps,
42
+ type: "body_compact_01",
43
+ style: [CarbonStyleSheet.g.flex_auto, CarbonStyleSheet.g.self_center, CarbonStyleSheet.g.px_05, carbonStyleSheet.text, textProps?.style],
44
+ children: text
45
+ }), !!buttons && /*#__PURE__*/_jsx(Box, {
46
+ style: [CarbonStyleSheet.g.flex_row, CarbonStyleSheet.g.self_stretch],
47
+ children: buttons
48
+ })]
49
+ })
50
+ });
51
+ });
52
+ const styleSheetSize = StyleSheet.create({
53
+ small: {
54
+ height: 32
55
+ },
56
+ large: {
57
+ height: 48
58
+ }
59
+ }),
60
+ mapRowSizeToBatchActionBarSize = {
61
+ extra_small: "small",
62
+ small: "small",
63
+ medium: "small",
64
+ large: "large",
65
+ extra_large: "large"
66
+ },
67
+ carbonStyleSheet = CarbonStyleSheet.create({
68
+ tableBatchActionBar: {
69
+ backgroundColor: CarbonStyleSheet.color.background_brand
70
+ },
71
+ text: {
72
+ textWrap: "nowrap",
73
+ color: CarbonStyleSheet.color.text_on_color
74
+ }
75
+ });
76
+ //# sourceMappingURL=TableBatchActionBar.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["forwardRef","useContext","StyleSheet","CarbonStyleSheet","Box","ScrollView","TableContext","Text","TableBatchActionBarContext","jsx","_jsx","jsxs","_jsxs","TableBatchActionBar","size","sizeProp","horizontal","text","textProps","buttons","style","contentContainerStyle","props","ref","tableContext","rowSize","batchActionBarSize","mapRowSizeToBatchActionBarSize","Provider","value","children","carbonStyleSheet","tableBatchActionBar","styleSheetSize","g","flex_auto","flex_row","justify_between","type","self_center","px_05","self_stretch","create","small","height","large","extra_small","medium","extra_large","backgroundColor","color","background_brand","textWrap","text_on_color"],"sourceRoot":"../../../../src","sources":["components/table-batch-action-bar/TableBatchActionBar.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+
3
+ export {};
4
+ //# sourceMappingURL=TableBatchActionBarProps.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/table-batch-action-bar/TableBatchActionBarProps.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+
3
+ export {};
4
+ //# sourceMappingURL=TableBatchActionBarRef.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/table-batch-action-bar/TableBatchActionBarRef.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=TableBatchActionBarSize.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/table-batch-action-bar/TableBatchActionBarSize.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+
3
+ import { createContext } from "react";
4
+ export const TableBatchActionBarContext = /*#__PURE__*/createContext({
5
+ size: "large"
6
+ });
7
+ //# sourceMappingURL=_TableBatchActionBarContext.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["createContext","TableBatchActionBarContext","size"],"sourceRoot":"../../../../src","sources":["components/table-batch-action-bar/_TableBatchActionBarContext.ts"],"mappings":";;AAAA,SACCA,aAAa,QACP,OAAO;AAUd,OAAO,MAAMC,0BAA0B,gBAAGD,aAAa,CAA6B;EACnFE,IAAI,EAAE;AACP,CAAC,CAAC","ignoreList":[]}
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+
3
+ export * from "./TableBatchActionBar.js";
4
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/table-batch-action-bar/index.ts"],"mappings":";;AAAA,cAAc,0BAAuB","ignoreList":[]}
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+
3
+ import { forwardRef, useContext } from "react";
4
+ import * as CarbonStyleSheet from "../../carbon-style-sheet/index.js";
5
+ import { Primary as ButtonPrimary } from "../button/primary/index.js";
6
+ import { TableBatchActionBarContext } from "../table-batch-action-bar/_TableBatchActionBarContext.js";
7
+ import { jsx as _jsx } from "react/jsx-runtime";
8
+ export const TableBatchActionBarButton = /*#__PURE__*/forwardRef(function TableBatchActionBarButton({
9
+ Icon,
10
+ iconProps,
11
+ style,
12
+ ...props
13
+ }, ref) {
14
+ const tableBatchActionBarContext = useContext(TableBatchActionBarContext);
15
+ return /*#__PURE__*/_jsx(ButtonPrimary, {
16
+ ref: ref,
17
+ ...props,
18
+ size: mapBatchActionBarSizeToButtonSize[tableBatchActionBarContext.size],
19
+ Icon: Icon,
20
+ iconProps: {
21
+ ...iconProps,
22
+ style: [CarbonStyleSheet.g.ms_03,
23
+ // override the gap between text and icon
24
+ iconProps?.style]
25
+ },
26
+ style: [Icon ? undefined : CarbonStyleSheet.g.pe_05, style]
27
+ });
28
+ });
29
+ const mapBatchActionBarSizeToButtonSize = {
30
+ small: "small",
31
+ large: "large_productive"
32
+ };
33
+ //# sourceMappingURL=TableBatchActionBarButton.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["forwardRef","useContext","CarbonStyleSheet","Primary","ButtonPrimary","TableBatchActionBarContext","jsx","_jsx","TableBatchActionBarButton","Icon","iconProps","style","props","ref","tableBatchActionBarContext","size","mapBatchActionBarSizeToButtonSize","g","ms_03","undefined","pe_05","small","large"],"sourceRoot":"../../../../src","sources":["components/table-batch-action-bar-button/TableBatchActionBarButton.tsx"],"mappings":";;AAAA,SACCA,UAAU,EACVC,UAAU,QACJ,OAAO;AAEd,OAAO,KAAKC,gBAAgB,MAAM,mCAA0B;AAE5D,SACCC,OAAO,IAAIC,aAAa,QAElB,4BAAmB;AAM1B,SACCC,0BAA0B,QACpB,0DAAuD;AAAA,SAAAC,GAAA,IAAAC,IAAA;AAU9D,OAAO,MAAMC,yBAAyB,gBAAGR,UAAU,CAClD,SAASQ,yBAAyBA,CACjC;EACCC,IAAI;EACJC,SAAS;EACTC,KAAK;EACL,GAAGC;AACJ,CAAC,EACDC,GAAG,EACF;EAED,MACCC,0BAA0B,GACzBb,UAAU,CAACI,0BAA0B,CAAC;EAExC,oBACCE,IAAA,CAACH,aAAa;IACbS,GAAG,EAAGA,GAAK;IAAA,GACND,KAAK;IACVG,IAAI,EAAGC,iCAAiC,CAACF,0BAA0B,CAACC,IAAI,CAAG;IAC3EN,IAAI,EAAGA,IAAM;IACbC,SAAS,EAAE;MACV,GAAGA,SAAS;MACZC,KAAK,EAAE,CACNT,gBAAgB,CAACe,CAAC,CAACC,KAAK;MAAE;MAC1BR,SAAS,EAAEC,KAAK;IAElB,CAAE;IACFA,KAAK,EAAG,CACPF,IAAI,GACDU,SAAS,GACTjB,gBAAgB,CAACe,CAAC,CAACG,KAAK,EAC3BT,KAAK;EACH,CACH,CAAC;AAGJ,CACD,CAAC;AAED,MACCK,iCAAiC,GAChC;EACCK,KAAK,EAAE,OAAO;EACdC,KAAK,EAAE;AACR,CAA6F","ignoreList":[]}
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+
3
+ export {};
4
+ //# sourceMappingURL=TableBatchActionBarButtonProps.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/table-batch-action-bar-button/TableBatchActionBarButtonProps.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+
3
+ export {};
4
+ //# sourceMappingURL=TableBatchActionBarButtonRef.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/table-batch-action-bar-button/TableBatchActionBarButtonRef.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+
3
+ export * from "./TableBatchActionBarButton.js";
4
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/table-batch-action-bar-button/index.ts"],"mappings":";;AAAA,cAAc,gCAA6B","ignoreList":[]}
@@ -0,0 +1,47 @@
1
+ "use strict";
2
+
3
+ import { forwardRef, useContext } from "react";
4
+ import { View } from "react-native";
5
+ import * as CarbonStyleSheet from "../../carbon-style-sheet/index.js";
6
+ import { TableCellText } from "../table-cell-text/TableCellText.js";
7
+ import { TableRowHeaderContext } from "../table-row-header/_TableRowHeaderContext.js";
8
+ import { jsx as _jsx } from "react/jsx-runtime";
9
+ /**
10
+ * `TableCell` is a pure React Native View to render
11
+ * container with a correct horizontal padding.
12
+ *
13
+ * To ensure consistent column alignment across rows,
14
+ * you need to provide fixed `width` of the cell.
15
+ * Sets an explicit width for the cell (in pixels) and
16
+ * acts as a column constraint. This helps simulate
17
+ * table-like behavior, since React Native relies on
18
+ * flexbox and does not provide native table layout.
19
+ * Without this, cells in the same column may render
20
+ * with inconsistent widths across different rows.
21
+ */
22
+ export const TableCell = /*#__PURE__*/forwardRef(function TableCell({
23
+ children,
24
+ text,
25
+ textProps,
26
+ width,
27
+ role = "cell",
28
+ accessibilityLabel,
29
+ style,
30
+ ...props
31
+ }, ref) {
32
+ const tableRowHeaderContext = useContext(TableRowHeaderContext);
33
+ return /*#__PURE__*/_jsx(View, {
34
+ ref: ref,
35
+ ...props,
36
+ role: role,
37
+ accessibilityLabel: accessibilityLabel || text,
38
+ style: [CarbonStyleSheet.g.flex_auto, CarbonStyleSheet.g.px_05, tableRowHeaderContext.inRowHeader ? tableRowHeaderContext.size == "extra_large" ? CarbonStyleSheet.g.pt_05 : CarbonStyleSheet.g.self_center : undefined, typeof width === "number" ? {
39
+ width
40
+ } : undefined, style],
41
+ children: typeof children === "undefined" && !!text ? /*#__PURE__*/_jsx(TableCellText, {
42
+ ...textProps,
43
+ children: text
44
+ }) : children
45
+ });
46
+ });
47
+ //# sourceMappingURL=TableCell.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["forwardRef","useContext","View","CarbonStyleSheet","TableCellText","TableRowHeaderContext","jsx","_jsx","TableCell","children","text","textProps","width","role","accessibilityLabel","style","props","ref","tableRowHeaderContext","g","flex_auto","px_05","inRowHeader","size","pt_05","self_center","undefined"],"sourceRoot":"../../../../src","sources":["components/table-cell/TableCell.tsx"],"mappings":";;AAAA,SACCA,UAAU,EACVC,UAAU,QACJ,OAAO;AAEd,SACCC,IAAI,QACE,cAAc;AAErB,OAAO,KAAKC,gBAAgB,MAAM,mCAA0B;AAE5D,SACCC,aAAa,QACP,qCAAkC;AAEzC,SACCC,qBAAqB,QACf,+CAA4C;AAAA,SAAAC,GAAA,IAAAC,IAAA;AAUnD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMC,SAAS,gBAAGR,UAAU,CAClC,SAASQ,SAASA,CACjB;EACCC,QAAQ;EACRC,IAAI;EACJC,SAAS;EACTC,KAAK;EACLC,IAAI,GAAG,MAAM;EACbC,kBAAkB;EAClBC,KAAK;EACL,GAAGC;AACJ,CAAC,EACDC,GAAG,EACF;EAED,MACCC,qBAAqB,GACpBjB,UAAU,CAACI,qBAAqB,CAAC;EAEnC,oBACCE,IAAA,CAACL,IAAI;IACJe,GAAG,EAAGA,GAAK;IAAA,GACND,KAAK;IACVH,IAAI,EAAGA,IAAM;IACbC,kBAAkB,EAAGA,kBAAkB,IAAIJ,IAAM;IACjDK,KAAK,EAAG,CACPZ,gBAAgB,CAACgB,CAAC,CAACC,SAAS,EAC5BjB,gBAAgB,CAACgB,CAAC,CAACE,KAAK,EAExBH,qBAAqB,CAACI,WAAW,GAC9BJ,qBAAqB,CAACK,IAAI,IAAI,aAAa,GAC1CpB,gBAAgB,CAACgB,CAAC,CAACK,KAAK,GACxBrB,gBAAgB,CAACgB,CAAC,CAACM,WAAW,GAC/BC,SAAS,EAEZ,OAAOd,KAAK,KAAK,QAAQ,GAAG;MAC3BA;IACD,CAAC,GAAGc,SAAS,EACbX,KAAK,CACH;IAAAN,QAAA,EAED,OAAOA,QAAQ,KAAK,WAAW,IAAI,CAAC,CAACC,IAAI,gBAC1CH,IAAA,CAACH,aAAa;MAAA,GACRO,SAAS;MAAAF,QAAA,EAEZC;IAAI,CACQ,CAAC,GACbD;EAAQ,CACP,CAAC;AAGT,CACD,CAAC","ignoreList":[]}
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+
3
+ export {};
4
+ //# sourceMappingURL=TableCellProps.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/table-cell/TableCellProps.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+
3
+ export {};
4
+ //# sourceMappingURL=TableCellRef.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/table-cell/TableCellRef.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+
3
+ export * from "./TableCell.js";
4
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/table-cell/index.ts"],"mappings":";;AAAA,cAAc,gBAAa","ignoreList":[]}
@@ -0,0 +1,150 @@
1
+ "use strict";
2
+
3
+ import { forwardRef, useCallback, useContext, useEffect, useRef, useState } from "react";
4
+ import { Pressable } from "react-native";
5
+ import * as CarbonStyleSheet from "../../carbon-style-sheet/index.js";
6
+ import { LayerContext } from "../layer/LayerContext.js";
7
+ import { TableCellText } from "../table-cell-text/TableCellText.js";
8
+ import { TableRowHeaderContext } from "../table-row-header/_TableRowHeaderContext.js";
9
+ import { SortIcon } from "./_sort-icon/index.js";
10
+
11
+ /**
12
+ * Similar as the `TableCell`. `TableCellHeader` is also a View to render
13
+ * container with a correct horizontal padding, with additional
14
+ * sorting icon option and its coloring.
15
+ *
16
+ * It's better to use the `TableCell` instead of `TableCellHeader`
17
+ * if a header cell is not using the sorting icon at all to save a bit of memory
18
+ * because `TableCellHeader` has bunch of Pressable logics and two icons loaded.
19
+ *
20
+ * To ensure consistent column alignment across rows,
21
+ * you need to provide fixed `width` of the cell.
22
+ * Sets an explicit width for the cell (in pixels) and
23
+ * acts as a column constraint. This helps simulate
24
+ * table-like behavior, since React Native relies on
25
+ * flexbox and does not provide native table layout.
26
+ * Without this, cells in the same column may render
27
+ * with inconsistent widths across different rows.
28
+ */
29
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
30
+ export const TableCellHeader = /*#__PURE__*/forwardRef(function TableCellHeader({
31
+ defaultSort,
32
+ sort: sortProp,
33
+ width,
34
+ children,
35
+ text,
36
+ textProps,
37
+ accessibilityLabel,
38
+ onChangeSort,
39
+ disabled,
40
+ onHoverIn: onHoverInProp,
41
+ onHoverOut: onHoverOutProp,
42
+ onPress: onPressProp,
43
+ style,
44
+ ...props
45
+ }, ref) {
46
+ const layerContext = useContext(LayerContext),
47
+ tableRowHeaderContext = useContext(TableRowHeaderContext),
48
+ sortIconRef = useRef(null),
49
+ allowOnChangeSortSelfEffect = useRef(false),
50
+ [sortSelf, setSortSelf] = useState(defaultSort),
51
+ sort = sortProp ?? sortSelf,
52
+ [hovered, setHovered] = useState(false);
53
+ const onHoverIn = useCallback(event => {
54
+ if (sortIconRef.current) {
55
+ setHovered(true);
56
+ }
57
+ onHoverInProp?.(event);
58
+ }, [onHoverInProp]),
59
+ onHoverOut = useCallback(event => {
60
+ if (sortIconRef.current) {
61
+ setHovered(false);
62
+ }
63
+ onHoverOutProp?.(event);
64
+ }, [onHoverOutProp]),
65
+ onPress = useCallback(event => {
66
+ onPressProp?.(event);
67
+ if (defaultSort) {
68
+ allowOnChangeSortSelfEffect.current = true;
69
+ setSortSelf(s => {
70
+ if (s == "none") {
71
+ return "asc";
72
+ } else if (s == "asc") {
73
+ return "desc";
74
+ } else {
75
+ return "none";
76
+ }
77
+ });
78
+ } else if (sortProp && onChangeSort) {
79
+ let nextSort = "none";
80
+ if (sortProp == "none") {
81
+ nextSort = "asc";
82
+ } else if (sortProp == "asc") {
83
+ nextSort = "desc";
84
+ } else {
85
+ nextSort = "none";
86
+ }
87
+ onChangeSort(nextSort);
88
+ }
89
+ }, [sortProp, defaultSort, onChangeSort, onPressProp]);
90
+ useEffect(() => {
91
+ if (sort) {
92
+ if (sort == "none") {
93
+ if (hovered) {
94
+ sortIconRef.current?.setOpacity(1);
95
+ } else {
96
+ sortIconRef.current?.setOpacity(0);
97
+ }
98
+ } else {
99
+ sortIconRef.current?.setOpacity(1);
100
+ }
101
+ }
102
+ }, [hovered, sort]);
103
+ useEffect(() => {
104
+ if (allowOnChangeSortSelfEffect.current && sort) {
105
+ allowOnChangeSortSelfEffect.current = false;
106
+ onChangeSort?.(sort);
107
+ }
108
+ }, [sort, onChangeSort]);
109
+ CarbonStyleSheet.use();
110
+ return /*#__PURE__*/_jsxs(Pressable, {
111
+ ref: ref,
112
+ ...props,
113
+ accessibilityLabel: accessibilityLabel || text,
114
+ disabled: disabled ?? !sort,
115
+ onHoverIn: onHoverIn,
116
+ onHoverOut: onHoverOut,
117
+ onPress: onPress,
118
+ style: [CarbonStyleSheet.g.flex_auto, CarbonStyleSheet.g.px_05, typeof width === "number" ? {
119
+ width
120
+ } : undefined, hovered || sort === "asc" || sort === "desc" ? styleSheetBG[`hovered_${layerContext}`] : styleSheetBG[`normal_${layerContext}`], tableRowHeaderContext.size == "extra_large" ? CarbonStyleSheet.g.pt_05 : sort ? CarbonStyleSheet.g.items_center : CarbonStyleSheet.g.justify_center, sort ? [CarbonStyleSheet.g.flex_row, CarbonStyleSheet.g.justify_between] : undefined, style],
121
+ children: [typeof children === "undefined" && !!text ? /*#__PURE__*/_jsx(TableCellText, {
122
+ ...textProps,
123
+ children: text
124
+ }) : children, !!sort && /*#__PURE__*/_jsx(SortIcon, {
125
+ type: sort,
126
+ ref: sortIconRef
127
+ })]
128
+ });
129
+ });
130
+ const styleSheetBG = CarbonStyleSheet.create({
131
+ normal_1: {
132
+ backgroundColor: CarbonStyleSheet.color.layer_accent_01
133
+ },
134
+ normal_2: {
135
+ backgroundColor: CarbonStyleSheet.color.layer_accent_02
136
+ },
137
+ normal_3: {
138
+ backgroundColor: CarbonStyleSheet.color.layer_accent_03
139
+ },
140
+ hovered_1: {
141
+ backgroundColor: CarbonStyleSheet.color.layer_accent_hover_01
142
+ },
143
+ hovered_2: {
144
+ backgroundColor: CarbonStyleSheet.color.layer_accent_hover_02
145
+ },
146
+ hovered_3: {
147
+ backgroundColor: CarbonStyleSheet.color.layer_accent_hover_03
148
+ }
149
+ });
150
+ //# sourceMappingURL=TableCellHeader.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["forwardRef","useCallback","useContext","useEffect","useRef","useState","Pressable","CarbonStyleSheet","LayerContext","TableCellText","TableRowHeaderContext","SortIcon","jsx","_jsx","jsxs","_jsxs","TableCellHeader","defaultSort","sort","sortProp","width","children","text","textProps","accessibilityLabel","onChangeSort","disabled","onHoverIn","onHoverInProp","onHoverOut","onHoverOutProp","onPress","onPressProp","style","props","ref","layerContext","tableRowHeaderContext","sortIconRef","allowOnChangeSortSelfEffect","sortSelf","setSortSelf","hovered","setHovered","event","current","s","nextSort","setOpacity","use","g","flex_auto","px_05","undefined","styleSheetBG","size","pt_05","items_center","justify_center","flex_row","justify_between","type","create","normal_1","backgroundColor","color","layer_accent_01","normal_2","layer_accent_02","normal_3","layer_accent_03","hovered_1","layer_accent_hover_01","hovered_2","layer_accent_hover_02","hovered_3","layer_accent_hover_03"],"sourceRoot":"../../../../src","sources":["components/table-cell-header/TableCellHeader.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+
3
+ export {};
4
+ //# sourceMappingURL=TableCellHeaderProps.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/table-cell-header/TableCellHeaderProps.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+
3
+ export {};
4
+ //# sourceMappingURL=TableCellHeaderRef.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/table-cell-header/TableCellHeaderRef.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=TableCellHeaderSort.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/table-cell-header/TableCellHeaderSort.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,62 @@
1
+ "use strict";
2
+
3
+ import { forwardRef, useEffect, useImperativeHandle, useRef } from "react";
4
+ import { Animated, Easing, Platform } from "react-native";
5
+ import { Motion } from "@audira/carbon-react-native-elements";
6
+ import IconArrowUp from "@carbon/icons/svg/32/arrow--up.svg";
7
+ import IconArrowsVertical from "@carbon/icons/svg/32/arrows--vertical.svg";
8
+ import { TableCellIcon } from "../../table-cell-icon/TableCellIcon.js";
9
+ import { jsx as _jsx } from "react/jsx-runtime";
10
+ export const SortIcon = /*#__PURE__*/forwardRef(function SortIcon({
11
+ type,
12
+ style,
13
+ ...props
14
+ }, ref) {
15
+ const rotationValue = useRef(new Animated.Value(0)),
16
+ opacityValue = useRef(new Animated.Value(0));
17
+ useEffect(() => {
18
+ if (type == "none") {
19
+ Animated.timing(rotationValue.current, {
20
+ toValue: 0,
21
+ duration: 0,
22
+ useNativeDriver: Platform.OS != "web"
23
+ }).start();
24
+ } else if (type == "asc" || type == "desc") {
25
+ Animated.timing(rotationValue.current, {
26
+ toValue: type == "asc" ? 0 : 1,
27
+ duration: Motion.Duration.moderate_02,
28
+ easing: Easing.bezier(Motion.Easing.standard.productive.x1, Motion.Easing.standard.productive.y1, Motion.Easing.standard.productive.x2, Motion.Easing.standard.productive.y2),
29
+ useNativeDriver: Platform.OS != "web"
30
+ }).start();
31
+ }
32
+ }, [type]);
33
+ useImperativeHandle(ref, () => {
34
+ return {
35
+ setOpacity(value) {
36
+ Animated.timing(opacityValue.current, {
37
+ toValue: value,
38
+ duration: Motion.Duration.fast_01,
39
+ easing: Easing.bezier(Motion.Easing.entrance.productive.x1, Motion.Easing.entrance.productive.y1, Motion.Easing.entrance.productive.x2, Motion.Easing.entrance.productive.y2),
40
+ useNativeDriver: Platform.OS != "web"
41
+ }).start();
42
+ }
43
+ };
44
+ }, []);
45
+ return /*#__PURE__*/_jsx(AnimatedTableCellIcon, {
46
+ ...props,
47
+ Icon: type == "none" ? IconArrowsVertical : IconArrowUp,
48
+ style: [{
49
+ /* eslint-disable react-hooks/refs */
50
+ opacity: opacityValue.current,
51
+ transform: [{
52
+ rotateZ: rotationValue.current.interpolate({
53
+ inputRange: [0, 1],
54
+ outputRange: ["0deg", "180deg"]
55
+ })
56
+ }]
57
+ /* eslint-enable react-hooks/refs */
58
+ }, style]
59
+ });
60
+ });
61
+ const AnimatedTableCellIcon = Animated.createAnimatedComponent(TableCellIcon);
62
+ //# sourceMappingURL=SortIcon.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["forwardRef","useEffect","useImperativeHandle","useRef","Animated","Easing","Platform","Motion","IconArrowUp","IconArrowsVertical","TableCellIcon","jsx","_jsx","SortIcon","type","style","props","ref","rotationValue","Value","opacityValue","timing","current","toValue","duration","useNativeDriver","OS","start","Duration","moderate_02","easing","bezier","standard","productive","x1","y1","x2","y2","setOpacity","value","fast_01","entrance","AnimatedTableCellIcon","Icon","opacity","transform","rotateZ","interpolate","inputRange","outputRange","createAnimatedComponent"],"sourceRoot":"../../../../../src","sources":["components/table-cell-header/_sort-icon/SortIcon.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+
3
+ export {};
4
+ //# sourceMappingURL=SortIconProps.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../../src","sources":["components/table-cell-header/_sort-icon/SortIconProps.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=SortIconRef.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../../src","sources":["components/table-cell-header/_sort-icon/SortIconRef.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+
3
+ export * from "./SortIcon.js";
4
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../../src","sources":["components/table-cell-header/_sort-icon/index.ts"],"mappings":";;AAAA,cAAc,eAAY","ignoreList":[]}
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+
3
+ export * from "./TableCellHeader.js";
4
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/table-cell-header/index.ts"],"mappings":";;AAAA,cAAc,sBAAmB","ignoreList":[]}