@carbon/ibm-products 2.0.0-rc.1 → 2.0.0-rc.11

Sign up to get free protection for your applications and to get access to all the features.
Files changed (357) hide show
  1. package/README.md +2 -2
  2. package/css/index-full-carbon.css +1294 -331
  3. package/css/index-full-carbon.css.map +1 -1
  4. package/css/index-full-carbon.min.css +6 -8
  5. package/css/index-full-carbon.min.css.map +1 -1
  6. package/css/index-without-carbon-released-only.css +789 -171
  7. package/css/index-without-carbon-released-only.css.map +1 -1
  8. package/css/index-without-carbon-released-only.min.css +4 -8
  9. package/css/index-without-carbon-released-only.min.css.map +1 -1
  10. package/css/index-without-carbon.css +1171 -416
  11. package/css/index-without-carbon.css.map +1 -1
  12. package/css/index-without-carbon.min.css +6 -8
  13. package/css/index-without-carbon.min.css.map +1 -1
  14. package/css/index.css +1068 -262
  15. package/css/index.css.map +1 -1
  16. package/css/index.min.css +6 -8
  17. package/css/index.min.css.map +1 -1
  18. package/es/components/APIKeyModal/APIKeyModal.js +1 -1
  19. package/es/components/ActionBar/ActionBarOverflowItems.js +1 -0
  20. package/es/components/ActionSet/ActionSet.js +7 -3
  21. package/es/components/AddSelect/AddSelect.js +6 -6
  22. package/es/components/AddSelect/AddSelectBody.js +72 -31
  23. package/es/components/AddSelect/AddSelectBreadcrumbs.js +12 -4
  24. package/es/components/AddSelect/AddSelectColumn.js +8 -8
  25. package/es/components/AddSelect/AddSelectFilter.js +10 -7
  26. package/es/components/AddSelect/AddSelectList.js +64 -29
  27. package/es/components/AddSelect/AddSelectMetaPanel.js +7 -1
  28. package/es/components/AddSelect/AddSelectSidebar.js +5 -2
  29. package/es/components/AddSelect/AddSelectSort.js +2 -2
  30. package/es/components/AddSelect/add-select-utils.js +9 -2
  31. package/es/components/AddSelect/hooks/useItemSort.js +6 -0
  32. package/es/components/AddSelect/hooks/useParentSelect.js +6 -0
  33. package/es/components/AddSelect/hooks/usePath.js +15 -1
  34. package/es/components/AddSelect/index.js +1 -1
  35. package/es/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +4 -6
  36. package/es/components/Card/Card.js +16 -6
  37. package/es/components/Card/CardFooter.js +3 -1
  38. package/es/components/Card/CardHeader.js +20 -1
  39. package/es/components/ComboButton/ComboButton.js +1 -1
  40. package/es/components/CreateFullPage/CreateFullPage.js +4 -1
  41. package/es/components/CreateTearsheet/CreateTearsheet.js +8 -1
  42. package/es/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +2 -2
  43. package/es/components/DataSpreadsheet/DataSpreadsheet.js +65 -15
  44. package/es/components/DataSpreadsheet/DataSpreadsheetBody.js +2 -1
  45. package/es/components/DataSpreadsheet/DataSpreadsheetHeader.js +7 -0
  46. package/es/components/DataSpreadsheet/hooks/useMultipleKeyTracking.js +6 -5
  47. package/es/components/DataSpreadsheet/utils/handleCellDeletion.js +42 -0
  48. package/es/components/DataSpreadsheet/utils/handleMultipleKeys.js +1 -1
  49. package/es/components/Datagrid/Datagrid/Datagrid.js +13 -37
  50. package/es/components/Datagrid/Datagrid/DatagridContent.js +159 -0
  51. package/es/components/Datagrid/Datagrid/DatagridEmptyBody.js +17 -4
  52. package/es/components/Datagrid/Datagrid/DatagridExpandedRow.js +9 -1
  53. package/es/components/Datagrid/Datagrid/DatagridRow.js +44 -5
  54. package/es/components/Datagrid/Datagrid/DatagridSelectAll.js +10 -3
  55. package/es/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +13 -4
  56. package/es/components/Datagrid/Datagrid/DatagridToolbar.js +29 -8
  57. package/es/components/Datagrid/Datagrid/DatagridVirtualBody.js +31 -9
  58. package/es/components/Datagrid/Datagrid/DraggableElement.js +6 -2
  59. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.js +5 -45
  60. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/ButtonWrapper.js +4 -1
  61. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +36 -10
  62. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsModal.js +62 -26
  63. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/ModalWrapper.js +3 -2
  64. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +424 -0
  65. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +83 -0
  66. package/es/components/Datagrid/Datagrid/addons/Filtering/constants.js +20 -0
  67. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useInitialStateFromFilters.js +22 -0
  68. package/es/components/Datagrid/Datagrid/addons/Filtering/index.js +7 -0
  69. package/es/components/Datagrid/Datagrid/addons/Filtering/utils.js +38 -0
  70. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +60 -0
  71. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/index.js +1 -0
  72. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +537 -0
  73. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/index.js +1 -0
  74. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.js +112 -0
  75. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.js +27 -0
  76. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/index.js +1 -0
  77. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.js +39 -0
  78. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.js +19 -0
  79. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +263 -0
  80. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.js +87 -0
  81. package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +17 -14
  82. package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +13 -36
  83. package/es/components/Datagrid/{Datagrid.stories-helpers → Datagrid.stories}/CustomizeColumnStory.js +0 -0
  84. package/es/components/Datagrid/{Datagrid.stories-helpers → Datagrid.stories}/LeftPanelStory.js +0 -0
  85. package/es/components/Datagrid/{Datagrid.stories-helpers → Datagrid.stories}/RowSizeDropdownStory.js +0 -0
  86. package/es/components/Datagrid/{Datagrid.stories-helpers → Datagrid.stories}/SelectAllWithToggleStory.js +0 -0
  87. package/es/components/Datagrid/{Datagrid.stories-helpers → Datagrid.stories}/StickyActionsColumnStory.js +0 -0
  88. package/es/components/Datagrid/{Datagrid.stories-helpers → Datagrid.stories}/common.js +0 -0
  89. package/es/components/Datagrid/{Datagrid.stories-helpers → Datagrid.stories}/index.js +0 -0
  90. package/es/components/Datagrid/index.js +4 -1
  91. package/es/components/Datagrid/useActionsColumn.js +28 -12
  92. package/es/components/Datagrid/useColumnOrder.js +8 -0
  93. package/es/components/Datagrid/useCustomizeColumns.js +5 -0
  94. package/es/components/Datagrid/useDefaultStringRenderer.js +4 -1
  95. package/es/components/Datagrid/useDisableSelectRows.js +6 -2
  96. package/es/components/Datagrid/useExpandedRow.js +0 -1
  97. package/es/components/Datagrid/useFiltering.js +90 -0
  98. package/es/components/Datagrid/useInfiniteScroll.js +5 -2
  99. package/es/components/Datagrid/useInlineEdit.js +71 -0
  100. package/es/components/Datagrid/useNestedRowExpander.js +47 -0
  101. package/es/components/Datagrid/useNestedRows.js +16 -4
  102. package/es/components/Datagrid/useParentDimensions.js +3 -1
  103. package/es/components/Datagrid/useRowExpander.js +12 -4
  104. package/es/components/Datagrid/useRowSize.js +17 -6
  105. package/es/components/Datagrid/useSelectAllToggle.js +17 -4
  106. package/es/components/Datagrid/useSelectRows.js +12 -2
  107. package/es/components/Datagrid/useSortableColumns.js +1 -1
  108. package/es/components/Datagrid/useStickyColumn.js +11 -0
  109. package/es/components/Datagrid/utils/DatagridActions.js +223 -0
  110. package/es/components/Datagrid/utils/DatagridPagination.js +33 -0
  111. package/es/components/Datagrid/utils/Wrapper.js +21 -0
  112. package/es/components/Datagrid/utils/getArgTypes.js +94 -0
  113. package/es/components/Datagrid/utils/getInlineEditColumns.js +158 -0
  114. package/es/components/Datagrid/utils/makeData.js +55 -2
  115. package/es/components/EditUpdateCards/EditUpdateCards.js +144 -0
  116. package/es/components/EditUpdateCards/index.js +7 -0
  117. package/es/components/ExportModal/ExportModal.js +1 -1
  118. package/es/components/FilterSummary/FilterSummary.js +54 -0
  119. package/es/components/FilterSummary/index.js +7 -0
  120. package/es/components/ImportModal/ImportModal.js +3 -3
  121. package/es/components/InlineEdit/InlineEdit.js +28 -426
  122. package/es/components/InlineEditV1/InlineEditV1.js +447 -0
  123. package/es/components/InlineEditV1/index.js +7 -0
  124. package/es/components/InlineEditV2/InlineEditV2.js +289 -0
  125. package/es/components/InlineEditV2/index.js +7 -0
  126. package/es/components/ModifiedTabs/ModifiedTabLabelNew.js +1 -1
  127. package/es/components/ModifiedTabs/ModifiedTabLabelWithClose.js +1 -1
  128. package/es/components/MultiAddSelect/MultiAddSelect.js +14 -7
  129. package/es/components/MultiAddSelect/index.js +6 -0
  130. package/es/components/NotificationsPanel/NotificationsPanel.js +1 -1
  131. package/es/components/OptionsTile/OptionsTile.js +29 -13
  132. package/es/components/PageHeader/PageHeader.js +4 -4
  133. package/es/components/PageHeader/PageHeaderTitle.js +1 -1
  134. package/es/components/ProductiveCard/ProductiveCard.js +5 -0
  135. package/es/components/RemoveModal/RemoveModal.js +20 -3
  136. package/es/components/Saving/Saving.js +1 -1
  137. package/es/components/SidePanel/SidePanel.js +45 -52
  138. package/es/components/SidePanel/motion/variants.js +45 -0
  139. package/es/components/SingleAddSelect/SingleAddSelect.js +6 -0
  140. package/es/components/SingleAddSelect/index.js +6 -0
  141. package/es/components/StatusIcon/StatusIcon.js +1 -1
  142. package/es/components/UserProfileImage/UserProfileImage.js +1 -1
  143. package/es/components/WebTerminal/WebTerminal.js +2 -2
  144. package/es/components/WebTerminal/WebTerminalContentWrapper.js +1 -1
  145. package/es/components/WebTerminal/hooks/index.js +6 -0
  146. package/es/components/WebTerminal/index.js +6 -0
  147. package/es/components/WebTerminal/preview-components/Navigation.js +7 -1
  148. package/es/components/WebTerminal/preview-components/documentationLinks.js +6 -0
  149. package/es/components/WebTerminal/preview-components/index.js +7 -0
  150. package/es/components/index.js +3 -2
  151. package/es/global/js/hooks/index.js +2 -1
  152. package/es/global/js/hooks/useClickOutside.js +1 -1
  153. package/es/global/js/hooks/useControllableState.js +83 -0
  154. package/es/global/js/hooks/useResetCreateComponent.js +6 -2
  155. package/es/global/js/package-settings.js +7 -4
  156. package/es/global/js/utils/getBezierValues.js +20 -0
  157. package/es/global/js/utils/getNumberOfHiddenSteps.js +19 -0
  158. package/es/global/js/utils/motionConstants.js +45 -0
  159. package/es/global/js/utils/rangeWithCallback.js +13 -0
  160. package/es/global/js/utils/story-helper.js +5 -1
  161. package/es/global/js/utils/uuidv4.spec.js +4 -0
  162. package/lib/components/APIKeyModal/APIKeyModal.js +4 -4
  163. package/lib/components/ActionBar/ActionBarOverflowItems.js +1 -0
  164. package/lib/components/ActionSet/ActionSet.js +7 -3
  165. package/lib/components/AddSelect/AddSelect.js +5 -6
  166. package/lib/components/AddSelect/AddSelectBody.js +67 -30
  167. package/lib/components/AddSelect/AddSelectBreadcrumbs.js +15 -4
  168. package/lib/components/AddSelect/AddSelectColumn.js +7 -7
  169. package/lib/components/AddSelect/AddSelectFilter.js +9 -6
  170. package/lib/components/AddSelect/AddSelectList.js +65 -30
  171. package/lib/components/AddSelect/AddSelectMetaPanel.js +8 -2
  172. package/lib/components/AddSelect/AddSelectSidebar.js +4 -1
  173. package/lib/components/AddSelect/AddSelectSort.js +5 -5
  174. package/lib/components/AddSelect/add-select-utils.js +9 -2
  175. package/lib/components/AddSelect/hooks/useItemSort.js +6 -0
  176. package/lib/components/AddSelect/hooks/useParentSelect.js +6 -0
  177. package/lib/components/AddSelect/hooks/usePath.js +9 -1
  178. package/lib/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +6 -6
  179. package/lib/components/Card/Card.js +16 -6
  180. package/lib/components/Card/CardFooter.js +3 -1
  181. package/lib/components/Card/CardHeader.js +21 -1
  182. package/lib/components/ComboButton/ComboButton.js +3 -3
  183. package/lib/components/CreateFullPage/CreateFullPage.js +4 -1
  184. package/lib/components/CreateTearsheet/CreateTearsheet.js +9 -1
  185. package/lib/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +2 -2
  186. package/lib/components/DataSpreadsheet/DataSpreadsheet.js +65 -14
  187. package/lib/components/DataSpreadsheet/DataSpreadsheetBody.js +2 -1
  188. package/lib/components/DataSpreadsheet/DataSpreadsheetHeader.js +7 -0
  189. package/lib/components/DataSpreadsheet/hooks/useMultipleKeyTracking.js +6 -5
  190. package/lib/components/DataSpreadsheet/utils/handleCellDeletion.js +53 -0
  191. package/lib/components/DataSpreadsheet/utils/handleMultipleKeys.js +1 -1
  192. package/lib/components/Datagrid/Datagrid/Datagrid.js +16 -44
  193. package/lib/components/Datagrid/Datagrid/DatagridContent.js +193 -0
  194. package/lib/components/Datagrid/Datagrid/DatagridEmptyBody.js +17 -4
  195. package/lib/components/Datagrid/Datagrid/DatagridExpandedRow.js +9 -1
  196. package/lib/components/Datagrid/Datagrid/DatagridRow.js +45 -5
  197. package/lib/components/Datagrid/Datagrid/DatagridSelectAll.js +12 -3
  198. package/lib/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +16 -5
  199. package/lib/components/Datagrid/Datagrid/DatagridToolbar.js +32 -8
  200. package/lib/components/Datagrid/Datagrid/DatagridVirtualBody.js +33 -9
  201. package/lib/components/Datagrid/Datagrid/DraggableElement.js +7 -3
  202. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.js +12 -47
  203. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/ButtonWrapper.js +5 -2
  204. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +48 -25
  205. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsModal.js +60 -25
  206. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/ModalWrapper.js +3 -2
  207. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +443 -0
  208. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +104 -0
  209. package/lib/components/Datagrid/Datagrid/addons/Filtering/constants.js +35 -0
  210. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useInitialStateFromFilters.js +33 -0
  211. package/lib/components/Datagrid/Datagrid/addons/Filtering/index.js +15 -0
  212. package/lib/components/Datagrid/Datagrid/addons/Filtering/utils.js +47 -0
  213. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +76 -0
  214. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/index.js +13 -0
  215. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +562 -0
  216. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/index.js +13 -0
  217. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.js +129 -0
  218. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.js +36 -0
  219. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/index.js +19 -0
  220. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.js +45 -0
  221. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.js +28 -0
  222. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +272 -0
  223. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.js +100 -0
  224. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +17 -13
  225. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +13 -35
  226. package/lib/components/Datagrid/{Datagrid.stories-helpers → Datagrid.stories}/CustomizeColumnStory.js +0 -0
  227. package/lib/components/Datagrid/{Datagrid.stories-helpers → Datagrid.stories}/LeftPanelStory.js +0 -0
  228. package/lib/components/Datagrid/{Datagrid.stories-helpers → Datagrid.stories}/RowSizeDropdownStory.js +0 -0
  229. package/lib/components/Datagrid/{Datagrid.stories-helpers → Datagrid.stories}/SelectAllWithToggleStory.js +0 -0
  230. package/lib/components/Datagrid/{Datagrid.stories-helpers → Datagrid.stories}/StickyActionsColumnStory.js +0 -0
  231. package/lib/components/Datagrid/{Datagrid.stories-helpers → Datagrid.stories}/common.js +0 -0
  232. package/lib/components/Datagrid/{Datagrid.stories-helpers → Datagrid.stories}/index.js +0 -0
  233. package/lib/components/Datagrid/index.js +25 -1
  234. package/lib/components/Datagrid/useActionsColumn.js +28 -13
  235. package/lib/components/Datagrid/useColumnOrder.js +17 -0
  236. package/lib/components/Datagrid/useCustomizeColumns.js +5 -0
  237. package/lib/components/Datagrid/useDefaultStringRenderer.js +5 -1
  238. package/lib/components/Datagrid/useDisableSelectRows.js +6 -2
  239. package/lib/components/Datagrid/useExpandedRow.js +0 -1
  240. package/lib/components/Datagrid/useFiltering.js +94 -0
  241. package/lib/components/Datagrid/useInfiniteScroll.js +5 -2
  242. package/lib/components/Datagrid/useInlineEdit.js +85 -0
  243. package/lib/components/Datagrid/useNestedRowExpander.js +63 -0
  244. package/lib/components/Datagrid/useNestedRows.js +17 -4
  245. package/lib/components/Datagrid/useParentDimensions.js +3 -1
  246. package/lib/components/Datagrid/useRowExpander.js +17 -5
  247. package/lib/components/Datagrid/useRowSize.js +18 -13
  248. package/lib/components/Datagrid/useSelectAllToggle.js +18 -4
  249. package/lib/components/Datagrid/useSelectRows.js +12 -2
  250. package/lib/components/Datagrid/useSortableColumns.js +5 -5
  251. package/lib/components/Datagrid/useStickyColumn.js +11 -0
  252. package/lib/components/Datagrid/utils/DatagridActions.js +248 -0
  253. package/lib/components/Datagrid/utils/DatagridPagination.js +46 -0
  254. package/lib/components/Datagrid/utils/Wrapper.js +33 -0
  255. package/lib/components/Datagrid/utils/getArgTypes.js +102 -0
  256. package/lib/components/Datagrid/utils/getInlineEditColumns.js +173 -0
  257. package/lib/components/Datagrid/utils/makeData.js +57 -3
  258. package/lib/components/EditUpdateCards/EditUpdateCards.js +152 -0
  259. package/lib/components/EditUpdateCards/index.js +13 -0
  260. package/lib/components/ExportModal/ExportModal.js +3 -3
  261. package/lib/components/FilterSummary/FilterSummary.js +72 -0
  262. package/lib/components/FilterSummary/index.js +15 -0
  263. package/lib/components/ImportModal/ImportModal.js +4 -4
  264. package/lib/components/InlineEdit/InlineEdit.js +27 -426
  265. package/lib/components/InlineEditV1/InlineEditV1.js +464 -0
  266. package/lib/components/InlineEditV1/index.js +13 -0
  267. package/lib/components/InlineEditV2/InlineEditV2.js +309 -0
  268. package/lib/components/InlineEditV2/index.js +13 -0
  269. package/lib/components/ModifiedTabs/ModifiedTabLabelNew.js +2 -2
  270. package/lib/components/ModifiedTabs/ModifiedTabLabelWithClose.js +3 -3
  271. package/lib/components/MultiAddSelect/MultiAddSelect.js +14 -7
  272. package/lib/components/NotificationsPanel/NotificationsPanel.js +8 -8
  273. package/lib/components/OptionsTile/OptionsTile.js +34 -17
  274. package/lib/components/PageHeader/PageHeader.js +5 -5
  275. package/lib/components/PageHeader/PageHeaderTitle.js +1 -1
  276. package/lib/components/ProductiveCard/ProductiveCard.js +5 -0
  277. package/lib/components/RemoveModal/RemoveModal.js +20 -3
  278. package/lib/components/Saving/Saving.js +5 -5
  279. package/lib/components/SidePanel/SidePanel.js +48 -53
  280. package/lib/components/SidePanel/motion/variants.js +55 -0
  281. package/lib/components/SingleAddSelect/SingleAddSelect.js +6 -0
  282. package/lib/components/StatusIcon/StatusIcon.js +45 -45
  283. package/lib/components/UserProfileImage/UserProfileImage.js +7 -7
  284. package/lib/components/WebTerminal/WebTerminal.js +3 -3
  285. package/lib/components/WebTerminal/hooks/index.js +6 -0
  286. package/lib/components/WebTerminal/preview-components/Navigation.js +10 -4
  287. package/lib/components/WebTerminal/preview-components/documentationLinks.js +6 -0
  288. package/lib/components/index.js +21 -1
  289. package/lib/global/js/hooks/index.js +9 -1
  290. package/lib/global/js/hooks/useClickOutside.js +1 -1
  291. package/lib/global/js/hooks/useControllableState.js +94 -0
  292. package/lib/global/js/hooks/useResetCreateComponent.js +7 -2
  293. package/lib/global/js/package-settings.js +7 -4
  294. package/lib/global/js/utils/getBezierValues.js +29 -0
  295. package/lib/global/js/utils/getNumberOfHiddenSteps.js +28 -0
  296. package/lib/global/js/utils/motionConstants.js +55 -0
  297. package/lib/global/js/utils/rangeWithCallback.js +22 -0
  298. package/lib/global/js/utils/story-helper.js +5 -1
  299. package/lib/global/js/utils/uuidv4.spec.js +4 -0
  300. package/package.json +18 -16
  301. package/scss/components/ActionSet/_action-set.scss +9 -4
  302. package/scss/components/AddSelect/_add-select.scss +132 -34
  303. package/scss/components/AddSelect/_index.scss +1 -1
  304. package/scss/components/AddSelect/_storybook-styles.scss +1 -1
  305. package/scss/components/Card/_card.scss +1 -0
  306. package/scss/components/Cascade/_cascade.scss +1 -1
  307. package/scss/components/CreateTearsheet/_create-tearsheet.scss +2 -0
  308. package/scss/components/Datagrid/_datagrid.scss +7 -1
  309. package/scss/components/Datagrid/_storybook-styles.scss +29 -5
  310. package/scss/components/Datagrid/styles/_datagrid.scss +105 -18
  311. package/scss/components/Datagrid/styles/_draggableElement.scss +26 -9
  312. package/scss/components/Datagrid/styles/_index.scss +2 -0
  313. package/scss/components/Datagrid/styles/_useActionsColumn.scss +14 -0
  314. package/scss/components/Datagrid/styles/_useExpandedRow.scss +57 -11
  315. package/scss/components/Datagrid/styles/_useInlineEdit.scss +419 -0
  316. package/scss/components/Datagrid/styles/_useNestedRows.scss +33 -1
  317. package/scss/components/Datagrid/styles/_useStickyColumn.scss +31 -2
  318. package/scss/components/Datagrid/styles/addons/_CustomizeColumnsModal.scss +47 -6
  319. package/scss/components/Datagrid/styles/addons/_FilterFlyout.scss +87 -0
  320. package/scss/components/Datagrid/styles/addons/_RowSizeDropdown.scss +9 -1
  321. package/scss/components/EditUpdateCards/_carbon-imports.scss +9 -0
  322. package/scss/components/EditUpdateCards/_edit-update-cards.scss +85 -0
  323. package/scss/components/EditUpdateCards/_index-with-carbon.scss +9 -0
  324. package/scss/components/EditUpdateCards/_index.scss +8 -0
  325. package/scss/components/EditUpdateCards/_storybook-styles.scss +55 -0
  326. package/scss/components/FilterSummary/_filter-summary.scss +20 -0
  327. package/scss/components/FilterSummary/_index.scss +10 -0
  328. package/scss/components/FilterSummary/_storybook-styles.scss +14 -0
  329. package/scss/components/{InlineEdit → InlineEditV1}/_carbon-imports.scss +0 -0
  330. package/scss/components/{InlineEdit → InlineEditV1}/_index-with-carbon.scss +1 -1
  331. package/scss/components/{InlineEdit → InlineEditV1}/_index.scss +1 -1
  332. package/scss/components/{InlineEdit/_inline-edit.scss → InlineEditV1/_inline-edit-v1.scss} +4 -2
  333. package/scss/components/{InlineEdit → InlineEditV1}/_storybook-styles.scss +0 -0
  334. package/scss/components/InlineEditV2/_carbon-imports.scss +9 -0
  335. package/scss/components/InlineEditV2/_index-with-carbon.scss +9 -0
  336. package/scss/components/InlineEditV2/_index.scss +10 -0
  337. package/scss/components/InlineEditV2/_inline-edit-v2.scss +83 -0
  338. package/scss/components/InlineEditV2/_storybook-styles.scss +9 -0
  339. package/scss/components/MultiAddSelect/_multi-add-select.scss +7 -0
  340. package/scss/components/MultiAddSelect/_storybook-styles.scss +1 -1
  341. package/scss/components/NotificationsPanel/_notifications-panel.scss +3 -6
  342. package/scss/components/RemoveModal/_remove-modal.scss +0 -4
  343. package/scss/components/SidePanel/_side-panel.scss +3 -82
  344. package/scss/components/SidePanel/_storybook-styles.scss +6 -1
  345. package/scss/components/SingleAddSelect/_carbon-imports.scss +1 -1
  346. package/scss/components/SingleAddSelect/_index-with-carbon.scss +1 -1
  347. package/scss/components/SingleAddSelect/_index.scss +7 -0
  348. package/scss/components/SingleAddSelect/_single-add-select.scss +7 -0
  349. package/scss/components/SingleAddSelect/_storybook-styles.scss +1 -1
  350. package/scss/components/Tearsheet/_tearsheet.scss +2 -2
  351. package/scss/components/WebTerminal/_carbon-imports.scss +6 -0
  352. package/scss/components/WebTerminal/_index.scss +7 -0
  353. package/scss/components/WebTerminal/_storybook-styles.scss +7 -0
  354. package/scss/components/_index-released-only-with-carbon.scss +1 -1
  355. package/scss/components/_index-released-only.scss +2 -1
  356. package/scss/components/_index-with-carbon.scss +3 -1
  357. package/scss/components/_index.scss +4 -1
@@ -1,9 +1,10 @@
1
- import _extends from "@babel/runtime/helpers/extends";
2
1
  import _defineProperty from "@babel/runtime/helpers/defineProperty";
3
- import _typeof from "@babel/runtime/helpers/typeof";
4
- import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
5
2
  import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
6
- var _excluded = ["buttonTooltipAlignment", "buttonTooltipPosition", "cancelDescription", "className", "disabled", "editAlwaysVisible", "editDescription", "id", "invalid", "invalidText", "labelText", "light", "onCancel", "onSave", "onChange", "placeholder", "saveDescription", "size", "value"];
3
+ var _excluded = ["v1"];
4
+
5
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
6
+
7
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
7
8
 
8
9
  /**
9
10
  * Copyright IBM Corp. 2022, 2022
@@ -11,435 +12,36 @@ var _excluded = ["buttonTooltipAlignment", "buttonTooltipPosition", "cancelDescr
11
12
  * This source code is licensed under the Apache-2.0 license found in the
12
13
  * LICENSE file in the root directory of this source tree.
13
14
  */
14
- // Import portions of React that are needed.
15
- import React, { useRef, useState } from 'react'; // Other standard imports.
16
-
15
+ import React, { forwardRef } from 'react';
17
16
  import PropTypes from 'prop-types';
18
- import cx from 'classnames';
19
- import { getDevtoolsProps } from '../../global/js/utils/devtools';
20
- import { pkg } from '../../settings'; // Carbon and package components we use.
21
-
22
- /* TODO: @use(s) of carbon components and other package components. */
23
-
24
- import { Button, IconButton, usePrefix } from '@carbon/react';
25
- import { Close, Edit, EditOff, Checkmark, WarningFilled } from '@carbon/icons-react'; // The block part of our conventional BEM class names (blockClass__E--M).
26
-
27
- var blockClass = "".concat(pkg.prefix, "--inline-edit");
28
- var componentName = 'InlineEdit'; // NOTE: the component SCSS is not imported here: it is rolled up separately.
29
-
30
- var defaults = {
31
- buttonTooltipAlignment: 'center',
32
- buttonTooltipPosition: 'top',
33
- light: true,
34
- // defaults to true to reflect design
35
- size: 'md'
36
- };
37
- var buttons = ['cancel', 'edit', 'save'];
17
+ import { pkg } from '../../settings';
18
+ import { InlineEditV1 } from '../InlineEditV1';
19
+ import { InlineEditV2 } from '../InlineEditV2';
38
20
  /**
39
- * TODO: A description of the component.
21
+ * this is a wrapper component that will allow us to support v1 and v2 versions of InlineEdit
22
+ * in the V11 branch, v2 is the set by default.
23
+ * if the user passes in the v1 feature flag the v1 version of the component will be rendered
24
+ * since this is a temporary solution the named export should just remain InlineEdit unlike how
25
+ * Card works as a base layer for Productive and Expressive cards.
40
26
  */
41
27
 
42
- export var InlineEdit = /*#__PURE__*/React.forwardRef(function (_ref, refIn) {
43
- var _cx, _refInput$current, _refInput$current$inn, _cx3;
44
-
45
- var buttonTooltipAlignment = _ref.buttonTooltipAlignment,
46
- buttonTooltipPosition = _ref.buttonTooltipPosition,
47
- cancelDescription = _ref.cancelDescription,
48
- className = _ref.className,
49
- disabled = _ref.disabled,
50
- editAlwaysVisible = _ref.editAlwaysVisible,
51
- editDescription = _ref.editDescription,
52
- id = _ref.id,
53
- invalid = _ref.invalid,
54
- invalidText = _ref.invalidText,
55
- labelText = _ref.labelText,
56
- _ref$light = _ref.light,
57
- light = _ref$light === void 0 ? defaults.light : _ref$light,
58
- onCancel = _ref.onCancel,
59
- onSave = _ref.onSave,
60
- onChange = _ref.onChange,
61
- placeholder = _ref.placeholder,
62
- saveDescription = _ref.saveDescription,
63
- _ref$size = _ref.size,
64
- size = _ref$size === void 0 ? defaults.size : _ref$size,
65
- value = _ref.value,
28
+ var componentName = 'InlineEdit';
29
+ export var InlineEdit = /*#__PURE__*/forwardRef(function (_ref, ref) {
30
+ var v1 = _ref.v1,
66
31
  rest = _objectWithoutProperties(_ref, _excluded);
67
32
 
68
- var carbonPrefix = usePrefix();
69
- var refInput = useRef(null);
70
- var localRef = useRef(null);
71
- var ref = refIn || localRef;
72
-
73
- var _useState = useState(false),
74
- _useState2 = _slicedToArray(_useState, 2),
75
- editing = _useState2[0],
76
- setEditing = _useState2[1];
77
-
78
- var _useState3 = useState(value),
79
- _useState4 = _slicedToArray(_useState3, 2),
80
- internalValue = _useState4[0],
81
- setInternalValue = _useState4[1];
82
-
83
- var showValidation = invalid; // || warn;
84
-
85
- var validationText = invalidText; // || warnText;
86
-
87
- var validationIcon = showValidation ? /*#__PURE__*/React.createElement(WarningFilled, {
88
- size: 16
89
- }) : null; // sanitize the tooltip values
90
-
91
- var alignIsObject = _typeof(buttonTooltipAlignment) === 'object';
92
- var directionIsObject = _typeof(buttonTooltipPosition) === 'object';
93
- var tipPositions = buttons.reduce(function (acc, button) {
94
- var _ref2, _ref3;
95
-
96
- var tooltipAlignment = (_ref2 = alignIsObject ? buttonTooltipAlignment[button] : buttonTooltipAlignment) !== null && _ref2 !== void 0 ? _ref2 : defaults.buttonTooltipAlignment;
97
- var tooltipPosition = (_ref3 = directionIsObject ? buttonTooltipPosition[button] : buttonTooltipPosition) !== null && _ref3 !== void 0 ? _ref3 : defaults.buttonTooltipPosition;
98
- acc[button] = {
99
- tooltipAlignment: tooltipAlignment,
100
- tooltipPosition: tooltipPosition
101
- };
102
- return acc;
103
- }, {});
104
-
105
- var doSetEditing = function doSetEditing(value) {
106
- if (value === false) {
107
- // move scroll to start
108
- refInput.current.scrollLeft = 0;
109
- }
110
-
111
- setEditing(!disabled && value);
112
- };
113
-
114
- var handleEdit = function handleEdit(ev) {
115
- /* istanbul ignore else */
116
- if (!disabled) {
117
- var rightOfInput = ev.currentTarget.classList.contains("".concat(blockClass, "__edit")) || ev.target.classList.contains("".concat(blockClass, "__after-input-elements"));
118
- var leftOfInput = ev.currentTarget = ev.target.classList.contains("".concat(blockClass)); // clicking on the content editable element should not set either of these to true
119
-
120
- if (rightOfInput || leftOfInput) {
121
- doSetEditing(true);
122
- setTimeout(function () {
123
- refInput.current.focus(); // select all the content
124
-
125
- document.getSelection().selectAllChildren(refInput.current);
126
-
127
- if (rightOfInput) {
128
- document.getSelection().collapseToEnd();
129
- refInput.current.scrollLeft = 9999; // never going to get there but ensures at end.
130
- } else {
131
- document.getSelection().collapseToStart();
132
- refInput.current.scrollLeft = 0; // scroll to start
133
- }
134
- }, 0);
135
- }
136
- }
137
- };
138
-
139
- var handleFocus = function handleFocus(ev) {
140
- ev.preventDefault();
141
-
142
- if (!editing && ev.target.classList.contains("".concat(blockClass, "__input"))) {
143
- doSetEditing(true);
144
- }
145
- };
146
-
147
- var handleSave = function handleSave() {
148
- doSetEditing(false);
149
- document.getSelection().removeAllRanges();
150
-
151
- if (onSave) {
152
- onSave(refInput.current.innerText);
153
- }
154
- };
155
-
156
- var handleInput = function handleInput() {
157
- setInternalValue(refInput.current.innerText);
158
-
159
- if (onChange) {
160
- onChange(refInput.current.innerText);
161
- }
162
- }; // pasting into contentEditable not supported by userEvent
163
-
164
-
165
- var handlePaste =
166
- /* istanbul ignore next */
167
- function handlePaste(ev) {
168
- ev.preventDefault(); // Get clipboard as plain text
169
-
170
- var text = (ev.clipboardData || window.clipboardData).getData('text/plain'); // remove \n
171
-
172
- var sanitizedText = text.replaceAll(/\n/g, '') // remove carriage returns
173
- .replaceAll(/\t/g, ' '); // replace tab with two spaces
33
+ var props = _objectSpread(_objectSpread({}, rest), {}, {
34
+ ref: ref
35
+ });
174
36
 
175
- if (document.queryCommandSupported('insertText')) {
176
- document.execCommand('insertText', false, sanitizedText);
177
- } else {
178
- // Insert text at the current position of caret
179
- var range = document.getSelection().getRangeAt(0);
180
- range.deleteContents();
181
- var textNode = document.createTextNode(sanitizedText);
182
- range.insertNode(textNode); // move selection end of textNode
183
-
184
- range.selectNodeContents(textNode);
185
- range.collapse(false); // remove existing range
186
-
187
- var selection = document.getSelection();
188
- selection.removeAllRanges(); // set the new range
189
-
190
- selection.addRange(range);
191
- }
192
- };
193
-
194
- var handleCancel = function handleCancel() {
195
- refInput.current.innerText = value;
196
- handleInput(value);
197
- doSetEditing(false);
198
- document.getSelection().removeAllRanges();
199
-
200
- if (onCancel) {
201
- onCancel(value);
202
- }
203
- };
204
-
205
- var handleBlur = function handleBlur(ev) {
206
- if (!ref.current.contains(ev.relatedTarget)) {
207
- handleSave();
208
- }
209
- };
210
-
211
- var handleKeyDown = function handleKeyDown(ev) {
212
- switch (ev.key) {
213
- case 'Enter':
214
- ev.preventDefault();
215
- refInput.current.blur(); // will cause save
216
-
217
- break;
218
-
219
- case 'Escape':
220
- handleCancel();
221
- break;
222
- }
223
- };
224
- /*
225
- The HTML is structured as follows:
226
- <container>
227
- <!-- margin left of input to match Carbon -->
228
- <content-editable>
229
- <-- margin right of input space for after-input-elements -->
230
- <after-input-elements>
231
- </container>
232
- NOTE:
233
- - An input is not used as this would not permit a heading tag e.g. <h2>.
234
- - Some padding is added to the left 16px standard for a Carbon text input
235
- - The after-input-elements are position absolute with a margin to on the input to reserve space. Using inline-flex
236
- - does not measure space properly for the input otherwise.
237
- - The content editable is not expected to change size when buttons are added, to ensure the text does not move space
238
- is reserved up front for buttons and invalid icon. Mostly this is only noticed if the width of the component is not 100%.
239
- which can be shown by setting inlineEditFullWidth to false in storybook.
240
- In making content-editable behave like an input of type text we have to account for.
241
- - Enforcing a single line
242
- - Pasting of non-text e.g. html or text with carriage returns
243
- - The padding and border not hiding typed in text.
244
- - Placing the cursor at the start or end depending on area clicked (before for left-padding)
245
- */
246
-
247
-
248
- var toolbarAnimation = true;
249
- return (
250
- /*#__PURE__*/
251
- // eslint-disable-next-line
252
- React.createElement("div", {
253
- className: cx(blockClass, // Apply the block class to the main HTML element
254
- className, // Apply any supplied class names to the main HTML element.
255
- "".concat(blockClass, "--").concat(size), (_cx = {}, _defineProperty(_cx, "".concat(blockClass, "--disabled"), disabled), _defineProperty(_cx, "".concat(blockClass, "--editing"), editing), _defineProperty(_cx, "".concat(blockClass, "--invalid"), invalid), _defineProperty(_cx, "".concat(blockClass, "--light"), light), _defineProperty(_cx, "".concat(blockClass, "--overflows"), refInput.current && refInput.current.scrollWidth > refInput.current.offsetWidth), _cx)),
256
- onClick: handleEdit // disabled eslint for click handler
257
- ,
258
- onBlur: handleBlur,
259
- ref: ref
260
- }, /*#__PURE__*/React.createElement("div", _extends({}, rest, getDevtoolsProps(componentName), {
261
- id: id,
262
- size: size,
263
- className: cx("".concat(blockClass, "__input"), _defineProperty({}, "".concat(blockClass, "__input--empty"), ((_refInput$current = refInput.current) === null || _refInput$current === void 0 ? void 0 : (_refInput$current$inn = _refInput$current.innerText) === null || _refInput$current$inn === void 0 ? void 0 : _refInput$current$inn.length) === 0)),
264
- contentEditable: true,
265
- "aria-label": labelText,
266
- role: "textbox",
267
- tabIndex: disabled ? -1 : 0,
268
- onFocus: handleFocus,
269
- onInput: handleInput,
270
- onKeyDown: handleKeyDown,
271
- onPaste: handlePaste,
272
- suppressContentEditableWarning: true,
273
- ref: refInput,
274
- "data-placeholder": placeholder !== null && placeholder !== void 0 ? placeholder : labelText
275
- }), value), /*#__PURE__*/React.createElement("div", {
276
- className: cx("".concat(blockClass, "__after-input-elements")) // tabindex -1 fixes blur target test when clicking on after-input-elements background
277
- ,
278
- tabIndex: "-1"
279
- }, /*#__PURE__*/React.createElement("div", {
280
- className: "".concat(blockClass, "__ellipsis"),
281
- "aria-hidden": !editing
282
- }, "\u2026"), /*#__PURE__*/React.createElement("div", {
283
- className: cx("".concat(blockClass, "__toolbar"), (_cx3 = {}, _defineProperty(_cx3, "".concat(blockClass, "__toolbar--animation"), toolbarAnimation), _defineProperty(_cx3, "".concat(blockClass, "__toolbar--saveable"), refInput.current && value !== internalValue), _cx3))
284
- }, showValidation && /*#__PURE__*/React.createElement("div", {
285
- className: "".concat(blockClass, "__validation-icon")
286
- }, validationIcon), editing ? /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Button, _extends({
287
- className: "".concat(blockClass, "__cancel"),
288
- kind: "ghost",
289
- hasIconOnly: true,
290
- iconDescription: cancelDescription,
291
- onClick: handleCancel,
292
- renderIcon: function renderIcon(props) {
293
- return /*#__PURE__*/React.createElement(Close, _extends({
294
- size: 16
295
- }, props));
296
- }
297
- }, tipPositions.cancel)), /*#__PURE__*/React.createElement(Button, _extends({
298
- className: "".concat(blockClass, "__save"),
299
- kind: "ghost",
300
- hasIconOnly: true,
301
- iconDescription: saveDescription,
302
- onClick: handleSave,
303
- renderIcon: function renderIcon(props) {
304
- return /*#__PURE__*/React.createElement(Checkmark, _extends({
305
- size: 16
306
- }, props));
307
- },
308
- disabled: value === internalValue
309
- }, tipPositions.save))) : /*#__PURE__*/React.createElement(IconButton, _extends({
310
- className: cx("".concat(blockClass, "__edit"), _defineProperty({}, "".concat(blockClass, "__edit--always-visible"), editAlwaysVisible)),
311
- kind: "ghost",
312
- label: editDescription,
313
- onClick: handleEdit,
314
- disabled: disabled
315
- }, tipPositions.edit), disabled ? /*#__PURE__*/React.createElement(EditOff, {
316
- size: 16
317
- }) : /*#__PURE__*/React.createElement(Edit, {
318
- size: 16
319
- })))), /*#__PURE__*/React.createElement("div", {
320
- className: cx("".concat(blockClass, "__disabled-cover"))
321
- }), showValidation && validationText && validationText.length > 0 && /*#__PURE__*/React.createElement("div", {
322
- className: "".concat(blockClass, "__validation-text ").concat(carbonPrefix, "--form-requirement")
323
- }, validationText))
324
- );
325
- }); // Return a placeholder if not released and not enabled by feature flag
326
-
327
- InlineEdit = pkg.checkComponentEnabled(InlineEdit, componentName); // The display name of the component, used by React. Note that displayName
328
- // is used in preference to relying on function.name.
329
-
330
- InlineEdit.displayName = componentName; // The types and DocGen commentary for the component props,
331
- // in alphabetical order (for consistency).
332
- // See https://www.npmjs.com/package/prop-types#usage.
37
+ if (v1 === true) {
38
+ return /*#__PURE__*/React.createElement(InlineEditV1, props);
39
+ }
333
40
 
41
+ return /*#__PURE__*/React.createElement(InlineEditV2, props);
42
+ });
43
+ InlineEdit = pkg.checkComponentEnabled(InlineEdit, componentName);
44
+ InlineEdit.displayName = componentName;
334
45
  InlineEdit.propTypes = {
335
- /**
336
- * buttonTooltipAlignment from the standard tooltip. Default center.
337
- *
338
- * Can be passed either as one of tooltip options or as an object specifying cancel, edit and save separately
339
- */
340
- buttonTooltipAlignment: PropTypes.oneOfType([PropTypes.oneOf(['start', 'center', 'end']), PropTypes.shape({
341
- cancel: PropTypes.oneOf(['start', 'center', 'end']),
342
- edit: PropTypes.oneOf(['start', 'center', 'end']),
343
- save: PropTypes.oneOf(['start', 'center', 'end'])
344
- })]),
345
-
346
- /**
347
- * buttonTooltipPosition from the standard tooltip
348
- *
349
- * Can be passed either as one of tooltip options or as an object specifying cancel, edit and save separately
350
- */
351
- buttonTooltipPosition: PropTypes.oneOfType([PropTypes.oneOf(['top', 'right', 'bottom', 'left']), PropTypes.shape({
352
- cancel: PropTypes.oneOf(['top', 'right', 'bottom', 'left']),
353
- edit: PropTypes.oneOf(['top', 'right', 'bottom', 'left']),
354
- save: PropTypes.oneOf(['top', 'right', 'bottom', 'left'])
355
- })]),
356
-
357
- /**
358
- * label for cancel button
359
- */
360
- cancelDescription: PropTypes.string.isRequired,
361
-
362
- /**
363
- * Provide an optional class to be applied to the containing node.
364
- */
365
- className: PropTypes.string,
366
-
367
- /**
368
- * disable edit
369
- */
370
- disabled: PropTypes.bool,
371
-
372
- /**
373
- * By default the edit icon is shown on hover only.
374
- */
375
- editAlwaysVisible: PropTypes.bool,
376
-
377
- /**
378
- * Label for the edit button
379
- */
380
- editDescription: PropTypes.string.isRequired,
381
-
382
- /**
383
- * ID for inline edit
384
- */
385
- id: PropTypes.string,
386
-
387
- /**
388
- * set invalid state for input
389
- */
390
- invalid: PropTypes.bool,
391
-
392
- /**
393
- * text shown when invalid is true
394
- */
395
- invalidText: PropTypes.string,
396
-
397
- /**
398
- * label for text input
399
- */
400
- labelText: PropTypes.string,
401
-
402
- /**
403
- * change background to light version (mimic React TextInput)
404
- */
405
- light: PropTypes.bool,
406
-
407
- /**
408
- * method called on cancel event
409
- */
410
- onCancel: PropTypes.func,
411
-
412
- /**
413
- * method called on input event (it's a React thing onChange behaves like on input).
414
- *
415
- * NOTE: caller to handle invalid states and associated text
416
- */
417
- onChange: PropTypes.func,
418
-
419
- /**
420
- * method called on change event
421
- *
422
- * NOTE: caller to handle invalid states and associated text
423
- */
424
- onSave: PropTypes.func,
425
-
426
- /**
427
- * placeholder for text input
428
- */
429
- placeholder: PropTypes.string,
430
-
431
- /**
432
- * label for save button
433
- */
434
- saveDescription: PropTypes.string.isRequired,
435
-
436
- /**
437
- * vertical size of control
438
- */
439
- size: PropTypes.oneOf(['sm', 'md', 'lg']),
440
-
441
- /**
442
- * initial/unedited value
443
- */
444
- value: PropTypes.string
46
+ v1: PropTypes.bool
445
47
  };