@audira/carbon-react-native 1.0.2 → 1.0.4

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 (419) hide show
  1. package/lib/commonjs/carbon-style-sheet/color.js +174 -6
  2. package/lib/commonjs/carbon-style-sheet/color.js.map +1 -1
  3. package/lib/commonjs/carbon-style-sheet/create.js +58 -21
  4. package/lib/commonjs/carbon-style-sheet/create.js.map +1 -1
  5. package/lib/commonjs/carbon-style-sheet/g/font.js +1 -1
  6. package/lib/commonjs/carbon-style-sheet/g/spacing.js +1 -1
  7. package/lib/commonjs/carbon-style-sheet/g/typography.js +1 -1
  8. package/lib/commonjs/carbon-style-sheet/g-object/font.js +1 -1
  9. package/lib/commonjs/carbon-style-sheet/g-object/spacing.js +1 -1
  10. package/lib/commonjs/carbon-style-sheet/g-object/typography.js +1 -1
  11. package/lib/commonjs/carbon-style-sheet/index.js +4 -13
  12. package/lib/commonjs/carbon-style-sheet/index.js.map +1 -1
  13. package/lib/commonjs/components/index.js +91 -7
  14. package/lib/commonjs/components/index.js.map +1 -1
  15. package/lib/commonjs/components/layer/Layer.js +1 -2
  16. package/lib/commonjs/components/layer/Layer.js.map +1 -1
  17. package/lib/commonjs/components/table/Table.js +40 -0
  18. package/lib/commonjs/components/table/Table.js.map +1 -0
  19. package/lib/commonjs/components/table/TableProps.js +6 -0
  20. package/lib/commonjs/components/table/TableProps.js.map +1 -0
  21. package/lib/commonjs/components/table/TableRef.js +6 -0
  22. package/lib/commonjs/components/table/TableRef.js.map +1 -0
  23. package/lib/commonjs/components/table/_TableContext.js +11 -0
  24. package/lib/commonjs/components/table/_TableContext.js.map +1 -0
  25. package/lib/commonjs/components/table/index.js +17 -0
  26. package/lib/commonjs/components/table/index.js.map +1 -0
  27. package/lib/commonjs/components/table-cell/TableCell.js +52 -0
  28. package/lib/commonjs/components/table-cell/TableCell.js.map +1 -0
  29. package/lib/commonjs/components/table-cell/TableCellProps.js +6 -0
  30. package/lib/commonjs/components/table-cell/TableCellProps.js.map +1 -0
  31. package/lib/commonjs/components/table-cell/TableCellRef.js +6 -0
  32. package/lib/commonjs/components/table-cell/TableCellRef.js.map +1 -0
  33. package/lib/commonjs/components/table-cell/index.js +17 -0
  34. package/lib/commonjs/components/table-cell/index.js.map +1 -0
  35. package/lib/commonjs/components/table-cell-header/TableCellHeader.js +154 -0
  36. package/lib/commonjs/components/table-cell-header/TableCellHeader.js.map +1 -0
  37. package/lib/commonjs/components/table-cell-header/TableCellHeaderProps.js +6 -0
  38. package/lib/commonjs/components/table-cell-header/TableCellHeaderProps.js.map +1 -0
  39. package/lib/commonjs/components/table-cell-header/TableCellHeaderRef.js +6 -0
  40. package/lib/commonjs/components/table-cell-header/TableCellHeaderRef.js.map +1 -0
  41. package/lib/commonjs/components/table-cell-header/TableCellHeaderSort.js +2 -0
  42. package/lib/commonjs/components/table-cell-header/TableCellHeaderSort.js.map +1 -0
  43. package/lib/commonjs/components/table-cell-header/_sort-icon/SortIcon.js +67 -0
  44. package/lib/commonjs/components/table-cell-header/_sort-icon/SortIcon.js.map +1 -0
  45. package/lib/commonjs/components/table-cell-header/_sort-icon/SortIconProps.js +6 -0
  46. package/lib/commonjs/components/table-cell-header/_sort-icon/SortIconProps.js.map +1 -0
  47. package/lib/commonjs/components/table-cell-header/_sort-icon/SortIconRef.js +2 -0
  48. package/lib/commonjs/components/table-cell-header/_sort-icon/SortIconRef.js.map +1 -0
  49. package/lib/commonjs/components/table-cell-header/_sort-icon/index.js +17 -0
  50. package/lib/commonjs/components/table-cell-header/_sort-icon/index.js.map +1 -0
  51. package/lib/commonjs/components/table-cell-header/index.js +17 -0
  52. package/lib/commonjs/components/table-cell-header/index.js.map +1 -0
  53. package/lib/commonjs/components/table-cell-icon/TableCellIcon.js +29 -0
  54. package/lib/commonjs/components/table-cell-icon/TableCellIcon.js.map +1 -0
  55. package/lib/commonjs/components/table-cell-icon/TableCellIconProps.js +6 -0
  56. package/lib/commonjs/components/table-cell-icon/TableCellIconProps.js.map +1 -0
  57. package/lib/commonjs/components/table-cell-icon/TableCellIconRef.js +6 -0
  58. package/lib/commonjs/components/table-cell-icon/TableCellIconRef.js.map +1 -0
  59. package/lib/commonjs/components/table-cell-icon/index.js +17 -0
  60. package/lib/commonjs/components/table-cell-icon/index.js.map +1 -0
  61. package/lib/commonjs/components/table-cell-text/TableCellText.js +60 -0
  62. package/lib/commonjs/components/table-cell-text/TableCellText.js.map +1 -0
  63. package/lib/commonjs/components/table-cell-text/TableCellTextProps.js +6 -0
  64. package/lib/commonjs/components/table-cell-text/TableCellTextProps.js.map +1 -0
  65. package/lib/commonjs/components/table-cell-text/TableCellTextRef.js +6 -0
  66. package/lib/commonjs/components/table-cell-text/TableCellTextRef.js.map +1 -0
  67. package/lib/commonjs/components/table-cell-text/index.js +17 -0
  68. package/lib/commonjs/components/table-cell-text/index.js.map +1 -0
  69. package/lib/commonjs/components/table-row/TableRow.js +168 -0
  70. package/lib/commonjs/components/table-row/TableRow.js.map +1 -0
  71. package/lib/commonjs/components/table-row/TableRowInteractiveState.js +2 -0
  72. package/lib/commonjs/components/table-row/TableRowInteractiveState.js.map +1 -0
  73. package/lib/commonjs/components/table-row/TableRowProps.js +6 -0
  74. package/lib/commonjs/components/table-row/TableRowProps.js.map +1 -0
  75. package/lib/commonjs/components/table-row/TableRowRef.js +6 -0
  76. package/lib/commonjs/components/table-row/TableRowRef.js.map +1 -0
  77. package/lib/commonjs/components/table-row/TableRowSize.js +2 -0
  78. package/lib/commonjs/components/table-row/TableRowSize.js.map +1 -0
  79. package/lib/commonjs/components/table-row/_TableRowContext.js +12 -0
  80. package/lib/commonjs/components/table-row/_TableRowContext.js.map +1 -0
  81. package/lib/commonjs/components/table-row/_style-sheet-height.js +25 -0
  82. package/lib/commonjs/components/table-row/_style-sheet-height.js.map +1 -0
  83. package/lib/commonjs/components/table-row/index.js +17 -0
  84. package/lib/commonjs/components/table-row/index.js.map +1 -0
  85. package/lib/commonjs/components/table-row-header/TableRowHeader.js +54 -0
  86. package/lib/commonjs/components/table-row-header/TableRowHeader.js.map +1 -0
  87. package/lib/commonjs/components/table-row-header/TableRowHeaderProps.js +6 -0
  88. package/lib/commonjs/components/table-row-header/TableRowHeaderProps.js.map +1 -0
  89. package/lib/commonjs/components/table-row-header/TableRowHeaderRef.js +6 -0
  90. package/lib/commonjs/components/table-row-header/TableRowHeaderRef.js.map +1 -0
  91. package/lib/commonjs/components/table-row-header/_TableRowHeaderContext.js +14 -0
  92. package/lib/commonjs/components/table-row-header/_TableRowHeaderContext.js.map +1 -0
  93. package/lib/commonjs/components/table-row-header/index.js +17 -0
  94. package/lib/commonjs/components/table-row-header/index.js.map +1 -0
  95. package/lib/module/carbon-style-sheet/color.js +172 -5
  96. package/lib/module/carbon-style-sheet/color.js.map +1 -1
  97. package/lib/module/carbon-style-sheet/create.js +58 -21
  98. package/lib/module/carbon-style-sheet/create.js.map +1 -1
  99. package/lib/module/carbon-style-sheet/g/font.js +1 -1
  100. package/lib/module/carbon-style-sheet/g/spacing.js +1 -1
  101. package/lib/module/carbon-style-sheet/g/typography.js +1 -1
  102. package/lib/module/carbon-style-sheet/g-object/font.js +1 -1
  103. package/lib/module/carbon-style-sheet/g-object/spacing.js +1 -1
  104. package/lib/module/carbon-style-sheet/g-object/typography.js +1 -1
  105. package/lib/module/carbon-style-sheet/index.js +2 -2
  106. package/lib/module/carbon-style-sheet/index.js.map +1 -1
  107. package/lib/module/components/index.js +7 -0
  108. package/lib/module/components/index.js.map +1 -1
  109. package/lib/module/components/layer/Layer.js +1 -2
  110. package/lib/module/components/layer/Layer.js.map +1 -1
  111. package/lib/module/components/table/Table.js +35 -0
  112. package/lib/module/components/table/Table.js.map +1 -0
  113. package/lib/module/components/table/TableProps.js +4 -0
  114. package/lib/module/components/table/TableProps.js.map +1 -0
  115. package/lib/module/components/table/TableRef.js +4 -0
  116. package/lib/module/components/table/TableRef.js.map +1 -0
  117. package/lib/module/components/table/_TableContext.js +7 -0
  118. package/lib/module/components/table/_TableContext.js.map +1 -0
  119. package/lib/module/components/table/index.js +4 -0
  120. package/lib/module/components/table/index.js.map +1 -0
  121. package/lib/module/components/table-cell/TableCell.js +47 -0
  122. package/lib/module/components/table-cell/TableCell.js.map +1 -0
  123. package/lib/module/components/table-cell/TableCellProps.js +4 -0
  124. package/lib/module/components/table-cell/TableCellProps.js.map +1 -0
  125. package/lib/module/components/table-cell/TableCellRef.js +4 -0
  126. package/lib/module/components/table-cell/TableCellRef.js.map +1 -0
  127. package/lib/module/components/table-cell/index.js +4 -0
  128. package/lib/module/components/table-cell/index.js.map +1 -0
  129. package/lib/module/components/table-cell-header/TableCellHeader.js +150 -0
  130. package/lib/module/components/table-cell-header/TableCellHeader.js.map +1 -0
  131. package/lib/module/components/table-cell-header/TableCellHeaderProps.js +4 -0
  132. package/lib/module/components/table-cell-header/TableCellHeaderProps.js.map +1 -0
  133. package/lib/module/components/table-cell-header/TableCellHeaderRef.js +4 -0
  134. package/lib/module/components/table-cell-header/TableCellHeaderRef.js.map +1 -0
  135. package/lib/module/components/table-cell-header/TableCellHeaderSort.js +2 -0
  136. package/lib/module/components/table-cell-header/TableCellHeaderSort.js.map +1 -0
  137. package/lib/module/components/table-cell-header/_sort-icon/SortIcon.js +62 -0
  138. package/lib/module/components/table-cell-header/_sort-icon/SortIcon.js.map +1 -0
  139. package/lib/module/components/table-cell-header/_sort-icon/SortIconProps.js +4 -0
  140. package/lib/module/components/table-cell-header/_sort-icon/SortIconProps.js.map +1 -0
  141. package/lib/module/components/table-cell-header/_sort-icon/SortIconRef.js +2 -0
  142. package/lib/module/components/table-cell-header/_sort-icon/SortIconRef.js.map +1 -0
  143. package/lib/module/components/table-cell-header/_sort-icon/index.js +4 -0
  144. package/lib/module/components/table-cell-header/_sort-icon/index.js.map +1 -0
  145. package/lib/module/components/table-cell-header/index.js +4 -0
  146. package/lib/module/components/table-cell-header/index.js.map +1 -0
  147. package/lib/module/components/table-cell-icon/TableCellIcon.js +25 -0
  148. package/lib/module/components/table-cell-icon/TableCellIcon.js.map +1 -0
  149. package/lib/module/components/table-cell-icon/TableCellIconProps.js +4 -0
  150. package/lib/module/components/table-cell-icon/TableCellIconProps.js.map +1 -0
  151. package/lib/module/components/table-cell-icon/TableCellIconRef.js +4 -0
  152. package/lib/module/components/table-cell-icon/TableCellIconRef.js.map +1 -0
  153. package/lib/module/components/table-cell-icon/index.js +4 -0
  154. package/lib/module/components/table-cell-icon/index.js.map +1 -0
  155. package/lib/module/components/table-cell-text/TableCellText.js +55 -0
  156. package/lib/module/components/table-cell-text/TableCellText.js.map +1 -0
  157. package/lib/module/components/table-cell-text/TableCellTextProps.js +4 -0
  158. package/lib/module/components/table-cell-text/TableCellTextProps.js.map +1 -0
  159. package/lib/module/components/table-cell-text/TableCellTextRef.js +4 -0
  160. package/lib/module/components/table-cell-text/TableCellTextRef.js.map +1 -0
  161. package/lib/module/components/table-cell-text/index.js +4 -0
  162. package/lib/module/components/table-cell-text/index.js.map +1 -0
  163. package/lib/module/components/table-row/TableRow.js +163 -0
  164. package/lib/module/components/table-row/TableRow.js.map +1 -0
  165. package/lib/module/components/table-row/TableRowInteractiveState.js +2 -0
  166. package/lib/module/components/table-row/TableRowInteractiveState.js.map +1 -0
  167. package/lib/module/components/table-row/TableRowProps.js +4 -0
  168. package/lib/module/components/table-row/TableRowProps.js.map +1 -0
  169. package/lib/module/components/table-row/TableRowRef.js +4 -0
  170. package/lib/module/components/table-row/TableRowRef.js.map +1 -0
  171. package/lib/module/components/table-row/TableRowSize.js +2 -0
  172. package/lib/module/components/table-row/TableRowSize.js.map +1 -0
  173. package/lib/module/components/table-row/_TableRowContext.js +8 -0
  174. package/lib/module/components/table-row/_TableRowContext.js.map +1 -0
  175. package/lib/module/components/table-row/_style-sheet-height.js +21 -0
  176. package/lib/module/components/table-row/_style-sheet-height.js.map +1 -0
  177. package/lib/module/components/table-row/index.js +4 -0
  178. package/lib/module/components/table-row/index.js.map +1 -0
  179. package/lib/module/components/table-row-header/TableRowHeader.js +49 -0
  180. package/lib/module/components/table-row-header/TableRowHeader.js.map +1 -0
  181. package/lib/module/components/table-row-header/TableRowHeaderProps.js +4 -0
  182. package/lib/module/components/table-row-header/TableRowHeaderProps.js.map +1 -0
  183. package/lib/module/components/table-row-header/TableRowHeaderRef.js +4 -0
  184. package/lib/module/components/table-row-header/TableRowHeaderRef.js.map +1 -0
  185. package/lib/module/components/table-row-header/_TableRowHeaderContext.js +10 -0
  186. package/lib/module/components/table-row-header/_TableRowHeaderContext.js.map +1 -0
  187. package/lib/module/components/table-row-header/index.js +4 -0
  188. package/lib/module/components/table-row-header/index.js.map +1 -0
  189. package/lib/typescript/commonjs/carbon-style-sheet/color.d.ts +169 -2
  190. package/lib/typescript/commonjs/carbon-style-sheet/color.d.ts.map +1 -1
  191. package/lib/typescript/commonjs/carbon-style-sheet/create.d.ts +3 -3
  192. package/lib/typescript/commonjs/carbon-style-sheet/create.d.ts.map +1 -1
  193. package/lib/typescript/commonjs/carbon-style-sheet/index.d.ts +2 -2
  194. package/lib/typescript/commonjs/carbon-style-sheet/index.d.ts.map +1 -1
  195. package/lib/typescript/commonjs/components/index.d.ts +7 -0
  196. package/lib/typescript/commonjs/components/index.d.ts.map +1 -1
  197. package/lib/typescript/commonjs/components/layer/Layer.d.ts.map +1 -1
  198. package/lib/typescript/commonjs/components/layer/LayerProps.d.ts +5 -2
  199. package/lib/typescript/commonjs/components/layer/LayerProps.d.ts.map +1 -1
  200. package/lib/typescript/commonjs/components/table/Table.d.ts +4 -0
  201. package/lib/typescript/commonjs/components/table/Table.d.ts.map +1 -0
  202. package/lib/typescript/commonjs/components/table/TableProps.d.ts +10 -0
  203. package/lib/typescript/commonjs/components/table/TableProps.d.ts.map +1 -0
  204. package/lib/typescript/commonjs/components/table/TableRef.d.ts +4 -0
  205. package/lib/typescript/commonjs/components/table/TableRef.d.ts.map +1 -0
  206. package/lib/typescript/commonjs/components/table/_TableContext.d.ts +6 -0
  207. package/lib/typescript/commonjs/components/table/_TableContext.d.ts.map +1 -0
  208. package/lib/typescript/commonjs/components/table/index.d.ts +4 -0
  209. package/lib/typescript/commonjs/components/table/index.d.ts.map +1 -0
  210. package/lib/typescript/commonjs/components/table-cell/TableCell.d.ts +17 -0
  211. package/lib/typescript/commonjs/components/table-cell/TableCell.d.ts.map +1 -0
  212. package/lib/typescript/commonjs/components/table-cell/TableCellProps.d.ts +28 -0
  213. package/lib/typescript/commonjs/components/table-cell/TableCellProps.d.ts.map +1 -0
  214. package/lib/typescript/commonjs/components/table-cell/TableCellRef.d.ts +4 -0
  215. package/lib/typescript/commonjs/components/table-cell/TableCellRef.d.ts.map +1 -0
  216. package/lib/typescript/commonjs/components/table-cell/index.d.ts +4 -0
  217. package/lib/typescript/commonjs/components/table-cell/index.d.ts.map +1 -0
  218. package/lib/typescript/commonjs/components/table-cell-header/TableCellHeader.d.ts +22 -0
  219. package/lib/typescript/commonjs/components/table-cell-header/TableCellHeader.d.ts.map +1 -0
  220. package/lib/typescript/commonjs/components/table-cell-header/TableCellHeaderProps.d.ts +19 -0
  221. package/lib/typescript/commonjs/components/table-cell-header/TableCellHeaderProps.d.ts.map +1 -0
  222. package/lib/typescript/commonjs/components/table-cell-header/TableCellHeaderRef.d.ts +4 -0
  223. package/lib/typescript/commonjs/components/table-cell-header/TableCellHeaderRef.d.ts.map +1 -0
  224. package/lib/typescript/commonjs/components/table-cell-header/TableCellHeaderSort.d.ts +2 -0
  225. package/lib/typescript/commonjs/components/table-cell-header/TableCellHeaderSort.d.ts.map +1 -0
  226. package/lib/typescript/commonjs/components/table-cell-header/_sort-icon/SortIcon.d.ts +4 -0
  227. package/lib/typescript/commonjs/components/table-cell-header/_sort-icon/SortIcon.d.ts.map +1 -0
  228. package/lib/typescript/commonjs/components/table-cell-header/_sort-icon/SortIconProps.d.ts +6 -0
  229. package/lib/typescript/commonjs/components/table-cell-header/_sort-icon/SortIconProps.d.ts.map +1 -0
  230. package/lib/typescript/commonjs/components/table-cell-header/_sort-icon/SortIconRef.d.ts +4 -0
  231. package/lib/typescript/commonjs/components/table-cell-header/_sort-icon/SortIconRef.d.ts.map +1 -0
  232. package/lib/typescript/commonjs/components/table-cell-header/_sort-icon/index.d.ts +4 -0
  233. package/lib/typescript/commonjs/components/table-cell-header/_sort-icon/index.d.ts.map +1 -0
  234. package/lib/typescript/commonjs/components/table-cell-header/index.d.ts +5 -0
  235. package/lib/typescript/commonjs/components/table-cell-header/index.d.ts.map +1 -0
  236. package/lib/typescript/commonjs/components/table-cell-icon/TableCellIcon.d.ts +4 -0
  237. package/lib/typescript/commonjs/components/table-cell-icon/TableCellIcon.d.ts.map +1 -0
  238. package/lib/typescript/commonjs/components/table-cell-icon/TableCellIconProps.d.ts +5 -0
  239. package/lib/typescript/commonjs/components/table-cell-icon/TableCellIconProps.d.ts.map +1 -0
  240. package/lib/typescript/commonjs/components/table-cell-icon/TableCellIconRef.d.ts +4 -0
  241. package/lib/typescript/commonjs/components/table-cell-icon/TableCellIconRef.d.ts.map +1 -0
  242. package/lib/typescript/commonjs/components/table-cell-icon/index.d.ts +4 -0
  243. package/lib/typescript/commonjs/components/table-cell-icon/index.d.ts.map +1 -0
  244. package/lib/typescript/commonjs/components/table-cell-text/TableCellText.d.ts +7 -0
  245. package/lib/typescript/commonjs/components/table-cell-text/TableCellText.d.ts.map +1 -0
  246. package/lib/typescript/commonjs/components/table-cell-text/TableCellTextProps.d.ts +4 -0
  247. package/lib/typescript/commonjs/components/table-cell-text/TableCellTextProps.d.ts.map +1 -0
  248. package/lib/typescript/commonjs/components/table-cell-text/TableCellTextRef.d.ts +4 -0
  249. package/lib/typescript/commonjs/components/table-cell-text/TableCellTextRef.d.ts.map +1 -0
  250. package/lib/typescript/commonjs/components/table-cell-text/index.d.ts +4 -0
  251. package/lib/typescript/commonjs/components/table-cell-text/index.d.ts.map +1 -0
  252. package/lib/typescript/commonjs/components/table-row/TableRow.d.ts +4 -0
  253. package/lib/typescript/commonjs/components/table-row/TableRow.d.ts.map +1 -0
  254. package/lib/typescript/commonjs/components/table-row/TableRowInteractiveState.d.ts +2 -0
  255. package/lib/typescript/commonjs/components/table-row/TableRowInteractiveState.d.ts.map +1 -0
  256. package/lib/typescript/commonjs/components/table-row/TableRowProps.d.ts +36 -0
  257. package/lib/typescript/commonjs/components/table-row/TableRowProps.d.ts.map +1 -0
  258. package/lib/typescript/commonjs/components/table-row/TableRowRef.d.ts +4 -0
  259. package/lib/typescript/commonjs/components/table-row/TableRowRef.d.ts.map +1 -0
  260. package/lib/typescript/commonjs/components/table-row/TableRowSize.d.ts +5 -0
  261. package/lib/typescript/commonjs/components/table-row/TableRowSize.d.ts.map +1 -0
  262. package/lib/typescript/commonjs/components/table-row/_TableRowContext.d.ts +7 -0
  263. package/lib/typescript/commonjs/components/table-row/_TableRowContext.d.ts.map +1 -0
  264. package/lib/typescript/commonjs/components/table-row/_style-sheet-height.d.ts +18 -0
  265. package/lib/typescript/commonjs/components/table-row/_style-sheet-height.d.ts.map +1 -0
  266. package/lib/typescript/commonjs/components/table-row/index.d.ts +6 -0
  267. package/lib/typescript/commonjs/components/table-row/index.d.ts.map +1 -0
  268. package/lib/typescript/commonjs/components/table-row-header/TableRowHeader.d.ts +4 -0
  269. package/lib/typescript/commonjs/components/table-row-header/TableRowHeader.d.ts.map +1 -0
  270. package/lib/typescript/commonjs/components/table-row-header/TableRowHeaderProps.d.ts +5 -0
  271. package/lib/typescript/commonjs/components/table-row-header/TableRowHeaderProps.d.ts.map +1 -0
  272. package/lib/typescript/commonjs/components/table-row-header/TableRowHeaderRef.d.ts +4 -0
  273. package/lib/typescript/commonjs/components/table-row-header/TableRowHeaderRef.d.ts.map +1 -0
  274. package/lib/typescript/commonjs/components/table-row-header/_TableRowHeaderContext.d.ts +7 -0
  275. package/lib/typescript/commonjs/components/table-row-header/_TableRowHeaderContext.d.ts.map +1 -0
  276. package/lib/typescript/commonjs/components/table-row-header/index.d.ts +4 -0
  277. package/lib/typescript/commonjs/components/table-row-header/index.d.ts.map +1 -0
  278. package/lib/typescript/module/carbon-style-sheet/color.d.ts +169 -2
  279. package/lib/typescript/module/carbon-style-sheet/color.d.ts.map +1 -1
  280. package/lib/typescript/module/carbon-style-sheet/create.d.ts +3 -3
  281. package/lib/typescript/module/carbon-style-sheet/create.d.ts.map +1 -1
  282. package/lib/typescript/module/carbon-style-sheet/index.d.ts +2 -2
  283. package/lib/typescript/module/carbon-style-sheet/index.d.ts.map +1 -1
  284. package/lib/typescript/module/components/index.d.ts +7 -0
  285. package/lib/typescript/module/components/index.d.ts.map +1 -1
  286. package/lib/typescript/module/components/layer/Layer.d.ts.map +1 -1
  287. package/lib/typescript/module/components/layer/LayerProps.d.ts +5 -2
  288. package/lib/typescript/module/components/layer/LayerProps.d.ts.map +1 -1
  289. package/lib/typescript/module/components/table/Table.d.ts +4 -0
  290. package/lib/typescript/module/components/table/Table.d.ts.map +1 -0
  291. package/lib/typescript/module/components/table/TableProps.d.ts +10 -0
  292. package/lib/typescript/module/components/table/TableProps.d.ts.map +1 -0
  293. package/lib/typescript/module/components/table/TableRef.d.ts +4 -0
  294. package/lib/typescript/module/components/table/TableRef.d.ts.map +1 -0
  295. package/lib/typescript/module/components/table/_TableContext.d.ts +6 -0
  296. package/lib/typescript/module/components/table/_TableContext.d.ts.map +1 -0
  297. package/lib/typescript/module/components/table/index.d.ts +4 -0
  298. package/lib/typescript/module/components/table/index.d.ts.map +1 -0
  299. package/lib/typescript/module/components/table-cell/TableCell.d.ts +17 -0
  300. package/lib/typescript/module/components/table-cell/TableCell.d.ts.map +1 -0
  301. package/lib/typescript/module/components/table-cell/TableCellProps.d.ts +28 -0
  302. package/lib/typescript/module/components/table-cell/TableCellProps.d.ts.map +1 -0
  303. package/lib/typescript/module/components/table-cell/TableCellRef.d.ts +4 -0
  304. package/lib/typescript/module/components/table-cell/TableCellRef.d.ts.map +1 -0
  305. package/lib/typescript/module/components/table-cell/index.d.ts +4 -0
  306. package/lib/typescript/module/components/table-cell/index.d.ts.map +1 -0
  307. package/lib/typescript/module/components/table-cell-header/TableCellHeader.d.ts +22 -0
  308. package/lib/typescript/module/components/table-cell-header/TableCellHeader.d.ts.map +1 -0
  309. package/lib/typescript/module/components/table-cell-header/TableCellHeaderProps.d.ts +19 -0
  310. package/lib/typescript/module/components/table-cell-header/TableCellHeaderProps.d.ts.map +1 -0
  311. package/lib/typescript/module/components/table-cell-header/TableCellHeaderRef.d.ts +4 -0
  312. package/lib/typescript/module/components/table-cell-header/TableCellHeaderRef.d.ts.map +1 -0
  313. package/lib/typescript/module/components/table-cell-header/TableCellHeaderSort.d.ts +2 -0
  314. package/lib/typescript/module/components/table-cell-header/TableCellHeaderSort.d.ts.map +1 -0
  315. package/lib/typescript/module/components/table-cell-header/_sort-icon/SortIcon.d.ts +4 -0
  316. package/lib/typescript/module/components/table-cell-header/_sort-icon/SortIcon.d.ts.map +1 -0
  317. package/lib/typescript/module/components/table-cell-header/_sort-icon/SortIconProps.d.ts +6 -0
  318. package/lib/typescript/module/components/table-cell-header/_sort-icon/SortIconProps.d.ts.map +1 -0
  319. package/lib/typescript/module/components/table-cell-header/_sort-icon/SortIconRef.d.ts +4 -0
  320. package/lib/typescript/module/components/table-cell-header/_sort-icon/SortIconRef.d.ts.map +1 -0
  321. package/lib/typescript/module/components/table-cell-header/_sort-icon/index.d.ts +4 -0
  322. package/lib/typescript/module/components/table-cell-header/_sort-icon/index.d.ts.map +1 -0
  323. package/lib/typescript/module/components/table-cell-header/index.d.ts +5 -0
  324. package/lib/typescript/module/components/table-cell-header/index.d.ts.map +1 -0
  325. package/lib/typescript/module/components/table-cell-icon/TableCellIcon.d.ts +4 -0
  326. package/lib/typescript/module/components/table-cell-icon/TableCellIcon.d.ts.map +1 -0
  327. package/lib/typescript/module/components/table-cell-icon/TableCellIconProps.d.ts +5 -0
  328. package/lib/typescript/module/components/table-cell-icon/TableCellIconProps.d.ts.map +1 -0
  329. package/lib/typescript/module/components/table-cell-icon/TableCellIconRef.d.ts +4 -0
  330. package/lib/typescript/module/components/table-cell-icon/TableCellIconRef.d.ts.map +1 -0
  331. package/lib/typescript/module/components/table-cell-icon/index.d.ts +4 -0
  332. package/lib/typescript/module/components/table-cell-icon/index.d.ts.map +1 -0
  333. package/lib/typescript/module/components/table-cell-text/TableCellText.d.ts +7 -0
  334. package/lib/typescript/module/components/table-cell-text/TableCellText.d.ts.map +1 -0
  335. package/lib/typescript/module/components/table-cell-text/TableCellTextProps.d.ts +4 -0
  336. package/lib/typescript/module/components/table-cell-text/TableCellTextProps.d.ts.map +1 -0
  337. package/lib/typescript/module/components/table-cell-text/TableCellTextRef.d.ts +4 -0
  338. package/lib/typescript/module/components/table-cell-text/TableCellTextRef.d.ts.map +1 -0
  339. package/lib/typescript/module/components/table-cell-text/index.d.ts +4 -0
  340. package/lib/typescript/module/components/table-cell-text/index.d.ts.map +1 -0
  341. package/lib/typescript/module/components/table-row/TableRow.d.ts +4 -0
  342. package/lib/typescript/module/components/table-row/TableRow.d.ts.map +1 -0
  343. package/lib/typescript/module/components/table-row/TableRowInteractiveState.d.ts +2 -0
  344. package/lib/typescript/module/components/table-row/TableRowInteractiveState.d.ts.map +1 -0
  345. package/lib/typescript/module/components/table-row/TableRowProps.d.ts +36 -0
  346. package/lib/typescript/module/components/table-row/TableRowProps.d.ts.map +1 -0
  347. package/lib/typescript/module/components/table-row/TableRowRef.d.ts +4 -0
  348. package/lib/typescript/module/components/table-row/TableRowRef.d.ts.map +1 -0
  349. package/lib/typescript/module/components/table-row/TableRowSize.d.ts +5 -0
  350. package/lib/typescript/module/components/table-row/TableRowSize.d.ts.map +1 -0
  351. package/lib/typescript/module/components/table-row/_TableRowContext.d.ts +7 -0
  352. package/lib/typescript/module/components/table-row/_TableRowContext.d.ts.map +1 -0
  353. package/lib/typescript/module/components/table-row/_style-sheet-height.d.ts +18 -0
  354. package/lib/typescript/module/components/table-row/_style-sheet-height.d.ts.map +1 -0
  355. package/lib/typescript/module/components/table-row/index.d.ts +6 -0
  356. package/lib/typescript/module/components/table-row/index.d.ts.map +1 -0
  357. package/lib/typescript/module/components/table-row-header/TableRowHeader.d.ts +4 -0
  358. package/lib/typescript/module/components/table-row-header/TableRowHeader.d.ts.map +1 -0
  359. package/lib/typescript/module/components/table-row-header/TableRowHeaderProps.d.ts +5 -0
  360. package/lib/typescript/module/components/table-row-header/TableRowHeaderProps.d.ts.map +1 -0
  361. package/lib/typescript/module/components/table-row-header/TableRowHeaderRef.d.ts +4 -0
  362. package/lib/typescript/module/components/table-row-header/TableRowHeaderRef.d.ts.map +1 -0
  363. package/lib/typescript/module/components/table-row-header/_TableRowHeaderContext.d.ts +7 -0
  364. package/lib/typescript/module/components/table-row-header/_TableRowHeaderContext.d.ts.map +1 -0
  365. package/lib/typescript/module/components/table-row-header/index.d.ts +4 -0
  366. package/lib/typescript/module/components/table-row-header/index.d.ts.map +1 -0
  367. package/lib/typescript/tsconfig.tsbuildinfo +1 -1
  368. package/package.json +1 -1
  369. package/src/carbon-style-sheet/color.ts +171 -12
  370. package/src/carbon-style-sheet/create.ts +93 -53
  371. package/src/carbon-style-sheet/g/font.ts +1 -1
  372. package/src/carbon-style-sheet/g/spacing.ts +1 -1
  373. package/src/carbon-style-sheet/g/typography.ts +1 -1
  374. package/src/carbon-style-sheet/g-object/font.ts +1 -1
  375. package/src/carbon-style-sheet/g-object/spacing.ts +1 -1
  376. package/src/carbon-style-sheet/g-object/typography.ts +1 -1
  377. package/src/carbon-style-sheet/index.ts +3 -1
  378. package/src/components/index.ts +7 -0
  379. package/src/components/layer/Layer.tsx +3 -4
  380. package/src/components/layer/LayerProps.ts +5 -2
  381. package/src/components/table/Table.tsx +69 -0
  382. package/src/components/table/TableProps.ts +15 -0
  383. package/src/components/table/TableRef.ts +6 -0
  384. package/src/components/table/_TableContext.ts +15 -0
  385. package/src/components/table/index.ts +3 -0
  386. package/src/components/table-cell/TableCell.tsx +93 -0
  387. package/src/components/table-cell/TableCellProps.ts +33 -0
  388. package/src/components/table-cell/TableCellRef.ts +6 -0
  389. package/src/components/table-cell/index.ts +3 -0
  390. package/src/components/table-cell-header/TableCellHeader.tsx +274 -0
  391. package/src/components/table-cell-header/TableCellHeaderProps.ts +34 -0
  392. package/src/components/table-cell-header/TableCellHeaderRef.ts +6 -0
  393. package/src/components/table-cell-header/TableCellHeaderSort.ts +4 -0
  394. package/src/components/table-cell-header/_sort-icon/SortIcon.tsx +136 -0
  395. package/src/components/table-cell-header/_sort-icon/SortIconProps.ts +11 -0
  396. package/src/components/table-cell-header/_sort-icon/SortIconRef.ts +3 -0
  397. package/src/components/table-cell-header/_sort-icon/index.ts +3 -0
  398. package/src/components/table-cell-header/index.ts +4 -0
  399. package/src/components/table-cell-icon/TableCellIcon.tsx +54 -0
  400. package/src/components/table-cell-icon/TableCellIconProps.ts +16 -0
  401. package/src/components/table-cell-icon/TableCellIconRef.ts +4 -0
  402. package/src/components/table-cell-icon/index.ts +3 -0
  403. package/src/components/table-cell-text/TableCellText.tsx +111 -0
  404. package/src/components/table-cell-text/TableCellTextProps.ts +9 -0
  405. package/src/components/table-cell-text/TableCellTextRef.ts +6 -0
  406. package/src/components/table-cell-text/index.ts +3 -0
  407. package/src/components/table-row/TableRow.tsx +271 -0
  408. package/src/components/table-row/TableRowInteractiveState.ts +4 -0
  409. package/src/components/table-row/TableRowProps.ts +45 -0
  410. package/src/components/table-row/TableRowRef.ts +6 -0
  411. package/src/components/table-row/TableRowSize.ts +9 -0
  412. package/src/components/table-row/_TableRowContext.ts +17 -0
  413. package/src/components/table-row/_style-sheet-height.ts +27 -0
  414. package/src/components/table-row/index.ts +5 -0
  415. package/src/components/table-row-header/TableRowHeader.tsx +115 -0
  416. package/src/components/table-row-header/TableRowHeaderProps.ts +13 -0
  417. package/src/components/table-row-header/TableRowHeaderRef.ts +6 -0
  418. package/src/components/table-row-header/_TableRowHeaderContext.ts +19 -0
  419. package/src/components/table-row-header/index.ts +3 -0
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","require","_reactNative","CarbonStyleSheet","_interopRequireWildcard","_LayerContext","_TableCellText","_TableRowHeaderContext","_index2","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","TableCellHeader","exports","forwardRef","defaultSort","sort","sortProp","width","children","text","textProps","accessibilityLabel","onChangeSort","disabled","onHoverIn","onHoverInProp","onHoverOut","onHoverOutProp","onPress","onPressProp","style","props","ref","layerContext","useContext","LayerContext","tableRowHeaderContext","TableRowHeaderContext","sortIconRef","useRef","allowOnChangeSortSelfEffect","sortSelf","setSortSelf","useState","hovered","setHovered","useCallback","event","current","s","nextSort","useEffect","setOpacity","use","jsxs","Pressable","g","flex_auto","px_05","undefined","styleSheetBG","size","pt_05","items_center","justify_center","flex_row","justify_between","jsx","TableCellText","SortIcon","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,6 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ //# 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,6 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ //# 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,67 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.SortIcon = void 0;
7
+ var _react = require("react");
8
+ var _reactNative = require("react-native");
9
+ var _carbonReactNativeElements = require("@audira/carbon-react-native-elements");
10
+ var _arrowUp = _interopRequireDefault(require("@carbon/icons/svg/32/arrow--up.svg"));
11
+ var _arrowsVertical = _interopRequireDefault(require("@carbon/icons/svg/32/arrows--vertical.svg"));
12
+ var _TableCellIcon = require("../../table-cell-icon/TableCellIcon.js");
13
+ var _jsxRuntime = require("react/jsx-runtime");
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
+ const SortIcon = exports.SortIcon = /*#__PURE__*/(0, _react.forwardRef)(function SortIcon({
16
+ type,
17
+ style,
18
+ ...props
19
+ }, ref) {
20
+ const rotationValue = (0, _react.useRef)(new _reactNative.Animated.Value(0)),
21
+ opacityValue = (0, _react.useRef)(new _reactNative.Animated.Value(0));
22
+ (0, _react.useEffect)(() => {
23
+ if (type == "none") {
24
+ _reactNative.Animated.timing(rotationValue.current, {
25
+ toValue: 0,
26
+ duration: 0,
27
+ useNativeDriver: false
28
+ }).start();
29
+ } else if (type == "asc" || type == "desc") {
30
+ _reactNative.Animated.timing(rotationValue.current, {
31
+ toValue: type == "asc" ? 0 : 1,
32
+ duration: _carbonReactNativeElements.Motion.Duration.moderate_02,
33
+ easing: _reactNative.Easing.bezier(_carbonReactNativeElements.Motion.Easing.standard.productive.x1, _carbonReactNativeElements.Motion.Easing.standard.productive.y1, _carbonReactNativeElements.Motion.Easing.standard.productive.x2, _carbonReactNativeElements.Motion.Easing.standard.productive.y2),
34
+ useNativeDriver: false
35
+ }).start();
36
+ }
37
+ }, [type]);
38
+ (0, _react.useImperativeHandle)(ref, () => {
39
+ return {
40
+ setOpacity(value) {
41
+ _reactNative.Animated.timing(opacityValue.current, {
42
+ toValue: value,
43
+ duration: _carbonReactNativeElements.Motion.Duration.fast_01,
44
+ easing: _reactNative.Easing.bezier(_carbonReactNativeElements.Motion.Easing.entrance.productive.x1, _carbonReactNativeElements.Motion.Easing.entrance.productive.y1, _carbonReactNativeElements.Motion.Easing.entrance.productive.x2, _carbonReactNativeElements.Motion.Easing.entrance.productive.y2),
45
+ useNativeDriver: true
46
+ }).start();
47
+ }
48
+ };
49
+ }, []);
50
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(AnimatedTableCellIcon, {
51
+ ...props,
52
+ Icon: type == "none" ? _arrowsVertical.default : _arrowUp.default,
53
+ style: [{
54
+ /* eslint-disable react-hooks/refs */
55
+ opacity: opacityValue.current,
56
+ transform: [{
57
+ rotateZ: rotationValue.current.interpolate({
58
+ inputRange: [0, 1],
59
+ outputRange: ["0deg", "180deg"]
60
+ })
61
+ }]
62
+ /* eslint-enable react-hooks/refs */
63
+ }, style]
64
+ });
65
+ });
66
+ const AnimatedTableCellIcon = _reactNative.Animated.createAnimatedComponent(_TableCellIcon.TableCellIcon);
67
+ //# sourceMappingURL=SortIcon.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","require","_reactNative","_carbonReactNativeElements","_arrowUp","_interopRequireDefault","_arrowsVertical","_TableCellIcon","_jsxRuntime","e","__esModule","default","SortIcon","exports","forwardRef","type","style","props","ref","rotationValue","useRef","Animated","Value","opacityValue","useEffect","timing","current","toValue","duration","useNativeDriver","start","Motion","Duration","moderate_02","easing","Easing","bezier","standard","productive","x1","y1","x2","y2","useImperativeHandle","setOpacity","value","fast_01","entrance","jsx","AnimatedTableCellIcon","Icon","IconArrowsVertical","IconArrowUp","opacity","transform","rotateZ","interpolate","inputRange","outputRange","createAnimatedComponent","TableCellIcon"],"sourceRoot":"../../../../../src","sources":["components/table-cell-header/_sort-icon/SortIcon.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ //# 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,17 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ var _SortIcon = require("./SortIcon.js");
7
+ Object.keys(_SortIcon).forEach(function (key) {
8
+ if (key === "default" || key === "__esModule") return;
9
+ if (key in exports && exports[key] === _SortIcon[key]) return;
10
+ Object.defineProperty(exports, key, {
11
+ enumerable: true,
12
+ get: function () {
13
+ return _SortIcon[key];
14
+ }
15
+ });
16
+ });
17
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_SortIcon","require","Object","keys","forEach","key","exports","defineProperty","enumerable","get"],"sourceRoot":"../../../../../src","sources":["components/table-cell-header/_sort-icon/index.ts"],"mappings":";;;;;AAAA,IAAAA,SAAA,GAAAC,OAAA;AAAAC,MAAA,CAAAC,IAAA,CAAAH,SAAA,EAAAI,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAA,GAAA,IAAAC,OAAA,IAAAA,OAAA,CAAAD,GAAA,MAAAL,SAAA,CAAAK,GAAA;EAAAH,MAAA,CAAAK,cAAA,CAAAD,OAAA,EAAAD,GAAA;IAAAG,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAT,SAAA,CAAAK,GAAA;IAAA;EAAA;AAAA","ignoreList":[]}
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ var _TableCellHeader = require("./TableCellHeader.js");
7
+ Object.keys(_TableCellHeader).forEach(function (key) {
8
+ if (key === "default" || key === "__esModule") return;
9
+ if (key in exports && exports[key] === _TableCellHeader[key]) return;
10
+ Object.defineProperty(exports, key, {
11
+ enumerable: true,
12
+ get: function () {
13
+ return _TableCellHeader[key];
14
+ }
15
+ });
16
+ });
17
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_TableCellHeader","require","Object","keys","forEach","key","exports","defineProperty","enumerable","get"],"sourceRoot":"../../../../src","sources":["components/table-cell-header/index.ts"],"mappings":";;;;;AAAA,IAAAA,gBAAA,GAAAC,OAAA;AAAAC,MAAA,CAAAC,IAAA,CAAAH,gBAAA,EAAAI,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAA,GAAA,IAAAC,OAAA,IAAAA,OAAA,CAAAD,GAAA,MAAAL,gBAAA,CAAAK,GAAA;EAAAH,MAAA,CAAAK,cAAA,CAAAD,OAAA,EAAAD,GAAA;IAAAG,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAT,gBAAA,CAAAK,GAAA;IAAA;EAAA;AAAA","ignoreList":[]}
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.TableCellIcon = void 0;
7
+ var _react = require("react");
8
+ var _carbonReactNativeElements = require("@audira/carbon-react-native-elements");
9
+ var _index = require("../../contexts/index.js");
10
+ var _jsxRuntime = require("react/jsx-runtime");
11
+ const TableCellIcon = exports.TableCellIcon = /*#__PURE__*/(0, _react.forwardRef)(function TableCellIcon({
12
+ Icon,
13
+ fill,
14
+ ...props
15
+ }, ref) {
16
+ const themeContext = (0, _react.useContext)(_index.ThemeContext);
17
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(Icon, {
18
+ ref: ref,
19
+ ...props,
20
+ width: 16,
21
+ height: 16,
22
+ fill: fill || mapFillColor[themeContext.colorScheme]
23
+ });
24
+ });
25
+ const mapFillColor = {
26
+ gray_10: _carbonReactNativeElements.Color.Token.gray_10.icon_primary,
27
+ gray_100: _carbonReactNativeElements.Color.Token.gray_100.icon_primary
28
+ };
29
+ //# sourceMappingURL=TableCellIcon.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","require","_carbonReactNativeElements","_index","_jsxRuntime","TableCellIcon","exports","forwardRef","Icon","fill","props","ref","themeContext","useContext","ThemeContext","jsx","width","height","mapFillColor","colorScheme","gray_10","Color","Token","icon_primary","gray_100"],"sourceRoot":"../../../../src","sources":["components/table-cell-icon/TableCellIcon.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,OAAA;AAKA,IAAAC,0BAAA,GAAAD,OAAA;AAIA,IAAAE,MAAA,GAAAF,OAAA;AAEuB,IAAAG,WAAA,GAAAH,OAAA;AAUhB,MAAMI,aAAa,GAAAC,OAAA,CAAAD,aAAA,gBAAG,IAAAE,iBAAU,EACtC,SAASF,aAAaA,CACrB;EACCG,IAAI;EACJC,IAAI;EACJ,GAAGC;AACJ,CAAC,EACDC,GAAG,EACF;EAED,MACCC,YAAY,GACX,IAAAC,iBAAU,EAACC,mBAAY,CAAC;EAE1B,oBACC,IAAAV,WAAA,CAAAW,GAAA,EAACP,IAAI;IACJG,GAAG,EAAGA,GAAK;IAAA,GACND,KAAK;IACVM,KAAK,EAAG,EAAI;IACZC,MAAM,EAAG,EAAI;IACbR,IAAI,EAAGA,IAAI,IAAIS,YAAY,CAACN,YAAY,CAACO,WAAW;EAAG,CACvD,CAAC;AAGJ,CACD,CAAC;AAED,MACCD,YAAY,GACX;EACCE,OAAO,EAAEC,gCAAK,CAACC,KAAK,CAACF,OAAO,CAACG,YAAY;EACzCC,QAAQ,EAAEH,gCAAK,CAACC,KAAK,CAACE,QAAQ,CAACD;AAChC,CAAgE","ignoreList":[]}
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ //# sourceMappingURL=TableCellIconProps.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/table-cell-icon/TableCellIconProps.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ //# sourceMappingURL=TableCellIconRef.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/table-cell-icon/TableCellIconRef.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ var _TableCellIcon = require("./TableCellIcon.js");
7
+ Object.keys(_TableCellIcon).forEach(function (key) {
8
+ if (key === "default" || key === "__esModule") return;
9
+ if (key in exports && exports[key] === _TableCellIcon[key]) return;
10
+ Object.defineProperty(exports, key, {
11
+ enumerable: true,
12
+ get: function () {
13
+ return _TableCellIcon[key];
14
+ }
15
+ });
16
+ });
17
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_TableCellIcon","require","Object","keys","forEach","key","exports","defineProperty","enumerable","get"],"sourceRoot":"../../../../src","sources":["components/table-cell-icon/index.ts"],"mappings":";;;;;AAAA,IAAAA,cAAA,GAAAC,OAAA;AAAAC,MAAA,CAAAC,IAAA,CAAAH,cAAA,EAAAI,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAA,GAAA,IAAAC,OAAA,IAAAA,OAAA,CAAAD,GAAA,MAAAL,cAAA,CAAAK,GAAA;EAAAH,MAAA,CAAAK,cAAA,CAAAD,OAAA,EAAAD,GAAA;IAAAG,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAT,cAAA,CAAAK,GAAA;IAAA;EAAA;AAAA","ignoreList":[]}
@@ -0,0 +1,60 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.TableCellText = void 0;
7
+ var _react = require("react");
8
+ var CarbonStyleSheet = _interopRequireWildcard(require("../../carbon-style-sheet/index.js"));
9
+ var _TableRowContext = require("../table-row/_TableRowContext.js");
10
+ var _TableRowHeaderContext = require("../table-row-header/_TableRowHeaderContext.js");
11
+ var _index2 = require("../text/index.js");
12
+ var _jsxRuntime = require("react/jsx-runtime");
13
+ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
14
+ /**
15
+ * `TableCellText` is a `Text` component as wrapper to get correct text color style based by row's interactive state, including hovering the row
16
+ */
17
+ const TableCellText = exports.TableCellText = /*#__PURE__*/(0, _react.forwardRef)(function TableCellText({
18
+ children,
19
+ style,
20
+ ...props
21
+ }, ref) {
22
+ CarbonStyleSheet.use();
23
+ const tableRowContext = (0, _react.useContext)(_TableRowContext.TableRowContext),
24
+ tableRowHeaderContext = (0, _react.useContext)(_TableRowHeaderContext.TableRowHeaderContext);
25
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_index2.Text, {
26
+ ref: ref,
27
+ ...props,
28
+ type: tableRowHeaderContext.inRowHeader ? "heading_compact_01" : "body_compact_01",
29
+ style: [getStyleSheetInteractiveState({
30
+ rowInteractiveState: tableRowContext.interactiveState,
31
+ rowHovered: tableRowContext.hovered,
32
+ inRowHeader: tableRowHeaderContext.inRowHeader
33
+ }), style],
34
+ children: children
35
+ });
36
+ });
37
+ const styleSheetInteractiveState = CarbonStyleSheet.create({
38
+ normal: {
39
+ color: CarbonStyleSheet.color.text_secondary
40
+ },
41
+ disabled: {
42
+ color: CarbonStyleSheet.color.text_disabled
43
+ },
44
+ selected: {
45
+ color: CarbonStyleSheet.color.text_primary
46
+ },
47
+ normal_header: {
48
+ color: CarbonStyleSheet.color.text_primary
49
+ }
50
+ });
51
+ function getStyleSheetInteractiveState(data) {
52
+ if (!data.inRowHeader) {
53
+ if (data.rowHovered) {
54
+ return styleSheetInteractiveState.selected; // same style as the `selected`
55
+ }
56
+ return styleSheetInteractiveState[data.rowInteractiveState];
57
+ }
58
+ return styleSheetInteractiveState.normal_header;
59
+ }
60
+ //# sourceMappingURL=TableCellText.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","require","CarbonStyleSheet","_interopRequireWildcard","_TableRowContext","_TableRowHeaderContext","_index2","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","TableCellText","exports","forwardRef","children","style","props","ref","use","tableRowContext","useContext","TableRowContext","tableRowHeaderContext","TableRowHeaderContext","jsx","Text","type","inRowHeader","getStyleSheetInteractiveState","rowInteractiveState","interactiveState","rowHovered","hovered","styleSheetInteractiveState","create","normal","color","text_secondary","disabled","text_disabled","selected","text_primary","normal_header","data"],"sourceRoot":"../../../../src","sources":["components/table-cell-text/TableCellText.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ //# sourceMappingURL=TableCellTextProps.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/table-cell-text/TableCellTextProps.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ //# sourceMappingURL=TableCellTextRef.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/table-cell-text/TableCellTextRef.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ var _TableCellText = require("./TableCellText.js");
7
+ Object.keys(_TableCellText).forEach(function (key) {
8
+ if (key === "default" || key === "__esModule") return;
9
+ if (key in exports && exports[key] === _TableCellText[key]) return;
10
+ Object.defineProperty(exports, key, {
11
+ enumerable: true,
12
+ get: function () {
13
+ return _TableCellText[key];
14
+ }
15
+ });
16
+ });
17
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_TableCellText","require","Object","keys","forEach","key","exports","defineProperty","enumerable","get"],"sourceRoot":"../../../../src","sources":["components/table-cell-text/index.ts"],"mappings":";;;;;AAAA,IAAAA,cAAA,GAAAC,OAAA;AAAAC,MAAA,CAAAC,IAAA,CAAAH,cAAA,EAAAI,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAA,GAAA,IAAAC,OAAA,IAAAA,OAAA,CAAAD,GAAA,MAAAL,cAAA,CAAAK,GAAA;EAAAH,MAAA,CAAAK,cAAA,CAAAD,OAAA,EAAAD,GAAA;IAAAG,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAT,cAAA,CAAAK,GAAA;IAAA;EAAA;AAAA","ignoreList":[]}
@@ -0,0 +1,168 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.TableRow = void 0;
7
+ var _react = require("react");
8
+ var _reactNative = require("react-native");
9
+ var _carbonReactNativeElements = require("@audira/carbon-react-native-elements");
10
+ var CarbonStyleSheet = _interopRequireWildcard(require("../../carbon-style-sheet/index.js"));
11
+ var _index2 = require("../layer/index.js");
12
+ var _TableContext = require("../table/_TableContext.js");
13
+ var _TableRowContext = require("./_TableRowContext.js");
14
+ var _styleSheetHeight = require("./_style-sheet-height.js");
15
+ var _jsxRuntime = require("react/jsx-runtime");
16
+ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
17
+ const TableRow = exports.TableRow = /*#__PURE__*/(0, _react.forwardRef)(function TableRow({
18
+ interactiveState = "normal",
19
+ size: sizeProp,
20
+ zebra,
21
+ onHoverIn: onHoverInProp,
22
+ onHoverOut: onHoverOutProp,
23
+ role = "row",
24
+ style,
25
+ children,
26
+ ...props
27
+ }, ref) {
28
+ CarbonStyleSheet.use();
29
+ const layerContext = (0, _react.useContext)(_index2.LayerContext),
30
+ tableContext = (0, _react.useContext)(_TableContext.TableContext),
31
+ size = (0, _react.useMemo)(() => {
32
+ return sizeProp ?? tableContext.rowSize;
33
+ }, [sizeProp, tableContext.rowSize]),
34
+ [hovered, setHovered] = (0, _react.useState)(false);
35
+ const onHoverIn = (0, _react.useCallback)(event => {
36
+ setHovered(true);
37
+ onHoverInProp?.(event);
38
+ }, [onHoverInProp]),
39
+ onHoverOut = (0, _react.useCallback)(event => {
40
+ setHovered(false);
41
+ onHoverOutProp?.(event);
42
+ }, [onHoverOutProp]);
43
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_TableRowContext.TableRowContext.Provider, {
44
+ value: {
45
+ interactiveState,
46
+ hovered
47
+ },
48
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
49
+ ref: ref,
50
+ ...props,
51
+ role: role,
52
+ onHoverIn: onHoverIn,
53
+ onHoverOut: onHoverOut,
54
+ style: [styleSheet.tableRow, CarbonStyleSheet.g.flex_auto, CarbonStyleSheet.g.flex_row, _styleSheetHeight.StyleSheetHeight[size], getInteractiveStateStyle(interactiveState, {
55
+ layer: layerContext,
56
+ hovered,
57
+ zebra
58
+ }), size === "extra_large" ? CarbonStyleSheet.g.pt_05 : CarbonStyleSheet.g.items_center, style],
59
+ children: children
60
+ })
61
+ });
62
+ });
63
+ const styleSheet = _reactNative.StyleSheet.create({
64
+ tableRow: {
65
+ borderBottomWidth: 1,
66
+ borderStyle: "solid",
67
+ ..._reactNative.Platform.select({
68
+ web: {
69
+ transitionProperty: "background-color, border-bottom-color",
70
+ transitionDuration: `${_carbonReactNativeElements.Motion.Duration.fast_01}ms`,
71
+ transitionTimingFunction: `cubic-bezier(${_carbonReactNativeElements.Motion.Easing.entrance.productive.x1},${_carbonReactNativeElements.Motion.Easing.entrance.productive.y1},${_carbonReactNativeElements.Motion.Easing.entrance.productive.x2},${_carbonReactNativeElements.Motion.Easing.entrance.productive.y2})`
72
+ }
73
+ })
74
+ }
75
+ }),
76
+ styleSheetInteractiveStatePerLayer = {
77
+ "1": CarbonStyleSheet.create({
78
+ normal: {
79
+ backgroundColor: CarbonStyleSheet.color.layer_01,
80
+ borderBottomColor: CarbonStyleSheet.color.border_subtle_01
81
+ },
82
+ hovered: {
83
+ backgroundColor: CarbonStyleSheet.color.layer_hover_01,
84
+ borderBottomColor: CarbonStyleSheet.color.border_subtle_01
85
+ },
86
+ disabled: {
87
+ backgroundColor: CarbonStyleSheet.color.layer_01,
88
+ borderBottomColor: CarbonStyleSheet.color.border_subtle_01
89
+ },
90
+ selected: {
91
+ backgroundColor: CarbonStyleSheet.color.layer_selected_01,
92
+ borderBottomColor: CarbonStyleSheet.color.border_subtle_selected_01
93
+ },
94
+ selected_hover: {
95
+ backgroundColor: CarbonStyleSheet.color.layer_selected_hover_01,
96
+ borderBottomColor: CarbonStyleSheet.color.border_subtle_selected_01
97
+ },
98
+ zebra: {
99
+ backgroundColor: CarbonStyleSheet.color.layer_accent_01,
100
+ borderBottomColor: CarbonStyleSheet.color.layer_accent_01
101
+ }
102
+ }),
103
+ "2": CarbonStyleSheet.create({
104
+ normal: {
105
+ backgroundColor: CarbonStyleSheet.color.layer_02,
106
+ borderBottomColor: CarbonStyleSheet.color.border_subtle_02
107
+ },
108
+ hovered: {
109
+ backgroundColor: CarbonStyleSheet.color.layer_hover_02,
110
+ borderBottomColor: CarbonStyleSheet.color.border_subtle_02
111
+ },
112
+ disabled: {
113
+ backgroundColor: CarbonStyleSheet.color.layer_02,
114
+ borderBottomColor: CarbonStyleSheet.color.border_subtle_02
115
+ },
116
+ selected: {
117
+ backgroundColor: CarbonStyleSheet.color.layer_selected_02,
118
+ borderBottomColor: CarbonStyleSheet.color.border_subtle_selected_02
119
+ },
120
+ selected_hover: {
121
+ backgroundColor: CarbonStyleSheet.color.layer_selected_hover_02,
122
+ borderBottomColor: CarbonStyleSheet.color.border_subtle_selected_02
123
+ },
124
+ zebra: {
125
+ backgroundColor: CarbonStyleSheet.color.layer_accent_02,
126
+ borderBottomColor: CarbonStyleSheet.color.layer_accent_02
127
+ }
128
+ }),
129
+ "3": CarbonStyleSheet.create({
130
+ normal: {
131
+ backgroundColor: CarbonStyleSheet.color.layer_03,
132
+ borderBottomColor: CarbonStyleSheet.color.border_subtle_03
133
+ },
134
+ hovered: {
135
+ backgroundColor: CarbonStyleSheet.color.layer_hover_03,
136
+ borderBottomColor: CarbonStyleSheet.color.border_subtle_03
137
+ },
138
+ disabled: {
139
+ backgroundColor: CarbonStyleSheet.color.layer_03,
140
+ borderBottomColor: CarbonStyleSheet.color.border_subtle_03
141
+ },
142
+ selected: {
143
+ backgroundColor: CarbonStyleSheet.color.layer_selected_03,
144
+ borderBottomColor: CarbonStyleSheet.color.border_subtle_selected_03
145
+ },
146
+ selected_hover: {
147
+ backgroundColor: CarbonStyleSheet.color.layer_selected_hover_03,
148
+ borderBottomColor: CarbonStyleSheet.color.border_subtle_selected_03
149
+ },
150
+ zebra: {
151
+ backgroundColor: CarbonStyleSheet.color.layer_accent_03,
152
+ borderBottomColor: CarbonStyleSheet.color.layer_accent_03
153
+ }
154
+ })
155
+ };
156
+ function getInteractiveStateStyle(interactiveState, data) {
157
+ if (!data.hovered) {
158
+ if (data.zebra && interactiveState == "normal") {
159
+ return styleSheetInteractiveStatePerLayer[data.layer].zebra;
160
+ }
161
+ return styleSheetInteractiveStatePerLayer[data.layer][interactiveState];
162
+ }
163
+ if (interactiveState == "selected") {
164
+ return styleSheetInteractiveStatePerLayer[data.layer].selected_hover;
165
+ }
166
+ return styleSheetInteractiveStatePerLayer[data.layer].hovered;
167
+ }
168
+ //# sourceMappingURL=TableRow.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","require","_reactNative","_carbonReactNativeElements","CarbonStyleSheet","_interopRequireWildcard","_index2","_TableContext","_TableRowContext","_styleSheetHeight","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","TableRow","exports","forwardRef","interactiveState","size","sizeProp","zebra","onHoverIn","onHoverInProp","onHoverOut","onHoverOutProp","role","style","children","props","ref","use","layerContext","useContext","LayerContext","tableContext","TableContext","useMemo","rowSize","hovered","setHovered","useState","useCallback","event","jsx","TableRowContext","Provider","value","Pressable","styleSheet","tableRow","g","flex_auto","flex_row","StyleSheetHeight","getInteractiveStateStyle","layer","pt_05","items_center","StyleSheet","create","borderBottomWidth","borderStyle","Platform","select","web","transitionProperty","transitionDuration","Motion","Duration","fast_01","transitionTimingFunction","Easing","entrance","productive","x1","y1","x2","y2","styleSheetInteractiveStatePerLayer","normal","backgroundColor","color","layer_01","borderBottomColor","border_subtle_01","layer_hover_01","disabled","selected","layer_selected_01","border_subtle_selected_01","selected_hover","layer_selected_hover_01","layer_accent_01","layer_02","border_subtle_02","layer_hover_02","layer_selected_02","border_subtle_selected_02","layer_selected_hover_02","layer_accent_02","layer_03","border_subtle_03","layer_hover_03","layer_selected_03","border_subtle_selected_03","layer_selected_hover_03","layer_accent_03","data"],"sourceRoot":"../../../../src","sources":["components/table-row/TableRow.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=TableRowInteractiveState.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/table-row/TableRowInteractiveState.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ //# sourceMappingURL=TableRowProps.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/table-row/TableRowProps.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ //# sourceMappingURL=TableRowRef.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/table-row/TableRowRef.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=TableRowSize.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/table-row/TableRowSize.ts"],"mappings":"","ignoreList":[]}