@carbon/ibm-products 2.0.0-rc.0 → 2.0.0-rc.10

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