@leav/ui 0.3.6-08b68d2 → 0.3.6-09fc47b

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (198) hide show
  1. package/dist/_gqlTypes/index.d.ts +87 -4
  2. package/dist/_gqlTypes/index.js +74 -3
  3. package/dist/_gqlTypes/index.js.map +1 -1
  4. package/dist/_queries/records/recordFormAttributeFragment.js +1 -0
  5. package/dist/_queries/records/recordFormAttributeFragment.js.map +1 -1
  6. package/dist/_utils/index.js +1 -1
  7. package/dist/_utils/index.js.map +1 -1
  8. package/dist/components/CreateDirectory/CreateDirectory.js +0 -2
  9. package/dist/components/CreateDirectory/CreateDirectory.js.map +1 -1
  10. package/dist/components/EditApplication/EditApplicationInfo/EditApplicationInfoForm/EditApplicationInfoForm.js.map +1 -1
  11. package/dist/components/EditTreeModal/EditTree/EditTreeInfo/EditTreeInfoForm/EditTreeInfoForm.d.ts +1 -1
  12. package/dist/components/EditTreeModal/EditTree/EditTreeInfo/EditTreeInfoForm/EditTreeInfoForm.js.map +1 -1
  13. package/dist/components/Explorer/DataView.d.ts +6 -3
  14. package/dist/components/Explorer/DataView.js +21 -11
  15. package/dist/components/Explorer/DataView.js.map +1 -1
  16. package/dist/components/Explorer/Explorer.d.ts +17 -2
  17. package/dist/components/Explorer/Explorer.js +63 -30
  18. package/dist/components/Explorer/Explorer.js.map +1 -1
  19. package/dist/components/Explorer/ExplorerToolbar.d.ts +2 -1
  20. package/dist/components/Explorer/ExplorerToolbar.js +19 -11
  21. package/dist/components/Explorer/ExplorerToolbar.js.map +1 -1
  22. package/dist/components/Explorer/TableCell.js +4 -4
  23. package/dist/components/Explorer/TableCell.js.map +1 -1
  24. package/dist/components/Explorer/_queries/useExplorerData.d.ts +1 -0
  25. package/dist/components/Explorer/_queries/useExplorerData.js +9 -1
  26. package/dist/components/Explorer/_queries/useExplorerData.js.map +1 -1
  27. package/dist/components/Explorer/_types.d.ts +22 -7
  28. package/dist/components/Explorer/_types.js.map +1 -1
  29. package/dist/components/Explorer/{useEditAction.d.ts → actions-item/useEditItemAction.d.ts} +4 -4
  30. package/dist/components/Explorer/{useEditAction.js → actions-item/useEditItemAction.js} +8 -8
  31. package/dist/components/Explorer/actions-item/useEditItemAction.js.map +1 -0
  32. package/dist/components/Explorer/{useRemoveAction.d.ts → actions-item/useRemoveItemAction.d.ts} +4 -4
  33. package/dist/components/Explorer/{useRemoveAction.js → actions-item/useRemoveItemAction.js} +9 -9
  34. package/dist/components/Explorer/actions-item/useRemoveItemAction.js.map +1 -0
  35. package/dist/components/Explorer/{useDeactivateMassAction.d.ts → actions-mass/useDeactivateMassAction.d.ts} +4 -4
  36. package/dist/components/Explorer/{useDeactivateMassAction.js → actions-mass/useDeactivateMassAction.js} +4 -4
  37. package/dist/components/Explorer/actions-mass/useDeactivateMassAction.js.map +1 -0
  38. package/dist/components/Explorer/actions-mass/useDeleteLinkValues.d.ts +18 -0
  39. package/dist/components/Explorer/actions-mass/useDeleteLinkValues.js +84 -0
  40. package/dist/components/Explorer/actions-mass/useDeleteLinkValues.js.map +1 -0
  41. package/dist/components/Explorer/{useMassActions.d.ts → actions-mass/useMassActions.d.ts} +3 -3
  42. package/dist/components/Explorer/{useMassActions.js → actions-mass/useMassActions.js} +7 -7
  43. package/dist/components/Explorer/actions-mass/useMassActions.js.map +1 -0
  44. package/dist/components/Explorer/{useCreateAction.d.ts → actions-primary/useCreatePrimaryAction.d.ts} +8 -6
  45. package/dist/components/Explorer/{useCreateAction.js → actions-primary/useCreatePrimaryAction.js} +13 -11
  46. package/dist/components/Explorer/actions-primary/useCreatePrimaryAction.js.map +1 -0
  47. package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.d.ts +17 -0
  48. package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.js +38 -0
  49. package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.js.map +1 -0
  50. package/dist/components/Explorer/actions-primary/usePrimaryActions.d.ts +17 -0
  51. package/dist/components/Explorer/actions-primary/usePrimaryActions.js +27 -0
  52. package/dist/components/Explorer/actions-primary/usePrimaryActions.js.map +1 -0
  53. package/dist/components/Explorer/link-item/LinkModal.d.ts +7 -0
  54. package/dist/components/Explorer/link-item/LinkModal.js +81 -0
  55. package/dist/components/Explorer/link-item/LinkModal.js.map +1 -0
  56. package/dist/components/Explorer/link-item/useLinkMassAction.d.ts +24 -0
  57. package/dist/components/Explorer/link-item/useLinkMassAction.js +57 -0
  58. package/dist/components/Explorer/link-item/useLinkMassAction.js.map +1 -0
  59. package/dist/components/Explorer/list-saved-views/SavedViews.d.ts +2 -0
  60. package/dist/components/Explorer/list-saved-views/SavedViews.js +74 -0
  61. package/dist/components/Explorer/list-saved-views/SavedViews.js.map +1 -0
  62. package/dist/components/Explorer/manage-view-settings/_shared/CommonFilterItem.js +8 -1
  63. package/dist/components/Explorer/manage-view-settings/_shared/CommonFilterItem.js.map +1 -1
  64. package/dist/components/Explorer/manage-view-settings/_shared/useTransformFilters.d.ts +17 -0
  65. package/dist/components/Explorer/manage-view-settings/_shared/useTransformFilters.js +93 -0
  66. package/dist/components/Explorer/manage-view-settings/_shared/useTransformFilters.js.map +1 -0
  67. package/dist/components/Explorer/manage-view-settings/configure-display/attributes/SelectVisibleAttributes.js +1 -2
  68. package/dist/components/Explorer/manage-view-settings/configure-display/attributes/SelectVisibleAttributes.js.map +1 -1
  69. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/BooleanAttributeDropdown.js +2 -2
  70. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/BooleanAttributeDropdown.js.map +1 -1
  71. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ColorAttributeDropDown.js +2 -2
  72. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ColorAttributeDropDown.js.map +1 -1
  73. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateAttributeDropDown.js +2 -2
  74. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateAttributeDropDown.js.map +1 -1
  75. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateRangeAttributeDropDown.js +2 -2
  76. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateRangeAttributeDropDown.js.map +1 -1
  77. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/EncryptedAttributeDropDown.js +2 -2
  78. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/EncryptedAttributeDropDown.js.map +1 -1
  79. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ExtendedAttributeDropDown.js +2 -2
  80. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ExtendedAttributeDropDown.js.map +1 -1
  81. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.js +6 -1
  82. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.js.map +1 -1
  83. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropdownContent.d.ts +2 -1
  84. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropdownContent.js +4 -3
  85. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropdownContent.js.map +1 -1
  86. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/LinkAttributeDropdown.js +4 -4
  87. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/LinkAttributeDropdown.js.map +1 -1
  88. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/NumericAttributeDropDown.js +2 -2
  89. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/NumericAttributeDropDown.js.map +1 -1
  90. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TextAttributeDropDown.js +2 -2
  91. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TextAttributeDropDown.js.map +1 -1
  92. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/_types.d.ts +3 -0
  93. package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContext.d.ts +3 -3
  94. package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContext.js +2 -2
  95. package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContext.js.map +1 -1
  96. package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContextProvider.d.ts +1 -0
  97. package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContextProvider.js +2 -2
  98. package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContextProvider.js.map +1 -1
  99. package/dist/components/Explorer/manage-view-settings/open-view-settings/SidePanel.js +3 -3
  100. package/dist/components/Explorer/manage-view-settings/open-view-settings/SidePanel.js.map +1 -1
  101. package/dist/components/Explorer/manage-view-settings/open-view-settings/useOpenViewSettings.d.ts +9 -2
  102. package/dist/components/Explorer/manage-view-settings/open-view-settings/useOpenViewSettings.js +34 -7
  103. package/dist/components/Explorer/manage-view-settings/open-view-settings/useOpenViewSettings.js.map +1 -1
  104. package/dist/components/Explorer/manage-view-settings/router-menu/SettingsPanel.js +9 -50
  105. package/dist/components/Explorer/manage-view-settings/router-menu/SettingsPanel.js.map +1 -1
  106. package/dist/components/Explorer/manage-view-settings/save-view/SaveViewModal.d.ts +8 -0
  107. package/dist/components/Explorer/manage-view-settings/save-view/SaveViewModal.js +44 -0
  108. package/dist/components/Explorer/manage-view-settings/save-view/SaveViewModal.js.map +1 -0
  109. package/dist/components/Explorer/manage-view-settings/save-view/ViewActionsButtons.d.ts +1 -0
  110. package/dist/components/Explorer/manage-view-settings/save-view/ViewActionsButtons.js +22 -0
  111. package/dist/components/Explorer/manage-view-settings/save-view/ViewActionsButtons.js.map +1 -0
  112. package/dist/components/Explorer/manage-view-settings/save-view/prepareViewForRequest.d.ts +3 -0
  113. package/dist/components/Explorer/manage-view-settings/save-view/prepareViewForRequest.js +24 -0
  114. package/dist/components/Explorer/manage-view-settings/save-view/prepareViewForRequest.js.map +1 -0
  115. package/dist/components/Explorer/manage-view-settings/save-view/useCreateNewView.d.ts +3 -0
  116. package/dist/components/Explorer/manage-view-settings/save-view/useCreateNewView.js +52 -0
  117. package/dist/components/Explorer/manage-view-settings/save-view/useCreateNewView.js.map +1 -0
  118. package/dist/components/Explorer/manage-view-settings/save-view/useResetView.d.ts +3 -0
  119. package/dist/components/Explorer/manage-view-settings/save-view/useResetView.js +20 -0
  120. package/dist/components/Explorer/manage-view-settings/save-view/useResetView.js.map +1 -0
  121. package/dist/components/Explorer/manage-view-settings/save-view/useShareView.d.ts +3 -0
  122. package/dist/components/Explorer/manage-view-settings/save-view/useShareView.js +64 -0
  123. package/dist/components/Explorer/manage-view-settings/save-view/useShareView.js.map +1 -0
  124. package/dist/components/Explorer/manage-view-settings/save-view/useUpdateView.d.ts +3 -0
  125. package/dist/components/Explorer/manage-view-settings/save-view/useUpdateView.js +62 -0
  126. package/dist/components/Explorer/manage-view-settings/save-view/useUpdateView.js.map +1 -0
  127. package/dist/components/Explorer/manage-view-settings/sort-items/SortItems.js +7 -9
  128. package/dist/components/Explorer/manage-view-settings/sort-items/SortItems.js.map +1 -1
  129. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.js +10 -0
  130. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.js.map +1 -1
  131. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.d.ts +20 -4
  132. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.js +63 -14
  133. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.js.map +1 -1
  134. package/dist/components/Explorer/useColumnWidth.d.ts +2 -0
  135. package/dist/components/Explorer/useColumnWidth.js +3 -2
  136. package/dist/components/Explorer/useColumnWidth.js.map +1 -1
  137. package/dist/components/Explorer/useLoadView.d.ts +3 -0
  138. package/dist/components/Explorer/useLoadView.js +81 -0
  139. package/dist/components/Explorer/useLoadView.js.map +1 -0
  140. package/dist/components/Explorer/useSearchInput.js +2 -1
  141. package/dist/components/Explorer/useSearchInput.js.map +1 -1
  142. package/dist/components/Explorer/useViewSettingsReducer.js +33 -112
  143. package/dist/components/Explorer/useViewSettingsReducer.js.map +1 -1
  144. package/dist/components/ImportModal/ImportModalSelectFileStep/ImportModalSelectFileStep.js +1 -2
  145. package/dist/components/ImportModal/ImportModalSelectFileStep/ImportModalSelectFileStep.js.map +1 -1
  146. package/dist/components/LibraryItemsList/DisplayOptions/DisplayOptions.js.map +1 -1
  147. package/dist/components/LibraryItemsList/LibraryItemsListTable/Cell/StandardCell/StandardCell.js +2 -2
  148. package/dist/components/LibraryItemsList/LibraryItemsListTable/Cell/StandardCell/StandardCell.js.map +1 -1
  149. package/dist/components/LibraryItemsList/MenuView/MenuView.js +1 -1
  150. package/dist/components/LibraryItemsList/MenuView/MenuView.js.map +1 -1
  151. package/dist/components/RecordEdition/EditRecord/EditRecord.js +26 -22
  152. package/dist/components/RecordEdition/EditRecord/EditRecord.js.map +1 -1
  153. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.d.ts +2 -1
  154. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js +2 -2
  155. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js.map +1 -1
  156. package/dist/components/RecordEdition/EditRecordContent/_types.d.ts +7 -1
  157. package/dist/components/RecordEdition/EditRecordContent/_types.js.map +1 -1
  158. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateRecordMutation.d.ts +5 -0
  159. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateRecordMutation.js +28 -0
  160. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateRecordMutation.js.map +1 -0
  161. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js +7 -2
  162. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js.map +1 -1
  163. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSBooleanWrapper.js.map +1 -1
  164. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSColorPickerWrapper.js +4 -6
  165. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSColorPickerWrapper.js.map +1 -1
  166. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputWrapper.js +1 -1
  167. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputWrapper.js.map +1 -1
  168. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRangePickerWrapper.js +1 -2
  169. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRangePickerWrapper.js.map +1 -1
  170. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRichTextWrapper.js +1 -1
  171. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRichTextWrapper.js.map +1 -1
  172. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/useGetPresentationValues.js +2 -1
  173. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/useGetPresentationValues.js.map +1 -1
  174. package/dist/components/RecordEdition/EditRecordSidebar/AttributeSummary/useAttributeInformations.js +1 -1
  175. package/dist/components/RecordEdition/EditRecordSidebar/AttributeSummary/useAttributeInformations.js.map +1 -1
  176. package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.js +8 -1
  177. package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.js.map +1 -1
  178. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordSummary.d.ts +1 -1
  179. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordSummary.js +7 -9
  180. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordSummary.js.map +1 -1
  181. package/dist/components/RecordEdition/EditRecordSidebar/ValuesSummary/ValuesSummary.js +29 -14
  182. package/dist/components/RecordEdition/EditRecordSidebar/ValuesSummary/ValuesSummary.js.map +1 -1
  183. package/dist/hooks/useExecuteSaveViewMutation/useExecuteSaveViewMutation.js +2 -1
  184. package/dist/hooks/useExecuteSaveViewMutation/useExecuteSaveViewMutation.js.map +1 -1
  185. package/dist/hooks/useGetRecordValuesQuery/useGetRecordValuesQuery.d.ts +1 -1
  186. package/dist/hooks/useGetRecordValuesQuery/useGetRecordValuesQuery.js +2 -2
  187. package/dist/hooks/useGetRecordValuesQuery/useGetRecordValuesQuery.js.map +1 -1
  188. package/dist/locales/en/shared.json +23 -4
  189. package/dist/locales/fr/shared.json +25 -6
  190. package/package.json +5 -5
  191. package/dist/components/Explorer/useCreateAction.js.map +0 -1
  192. package/dist/components/Explorer/useDeactivateMassAction.js.map +0 -1
  193. package/dist/components/Explorer/useEditAction.js.map +0 -1
  194. package/dist/components/Explorer/useMassActions.js.map +0 -1
  195. package/dist/components/Explorer/usePrimaryActions.d.ts +0 -12
  196. package/dist/components/Explorer/usePrimaryActions.js +0 -28
  197. package/dist/components/Explorer/usePrimaryActions.js.map +0 -1
  198. package/dist/components/Explorer/useRemoveAction.js.map +0 -1
@@ -1,12 +0,0 @@
1
- import { IPrimaryAction } from './_types';
2
- /**
3
- * Hook used to get the primary actions for `<DataView />` component.
4
- *
5
- * Based on default actions and custom actions, it returns a primary with first action as "main" action and the others
6
- * in the dropdown accessible via a split button.
7
- *
8
- * @param {Object[]} actions - list of actions to be display as one button: the primary action button
9
- */
10
- export declare const usePrimaryActionsButton: (actions: IPrimaryAction[]) => {
11
- primaryButton: JSX.Element;
12
- };
@@ -1,28 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
2
- // Copyright LEAV Solutions 2017 until 2023/11/05, Copyright Aristid from 2023/11/06
3
- // This file is released under LGPL V3
4
- // License text available at https://www.gnu.org/licenses/lgpl-3.0.txt
5
- import { FaEllipsisV } from 'react-icons/fa';
6
- import { KitButton, KitDropDown, KitSpace } from 'aristid-ds';
7
- /**
8
- * Hook used to get the primary actions for `<DataView />` component.
9
- *
10
- * Based on default actions and custom actions, it returns a primary with first action as "main" action and the others
11
- * in the dropdown accessible via a split button.
12
- *
13
- * @param {Object[]} actions - list of actions to be display as one button: the primary action button
14
- */
15
- export const usePrimaryActionsButton = (actions) => {
16
- const [firstAction, ...dropdownActions] = actions;
17
- return {
18
- primaryButton: actions.length === 0 ? null : (_jsxs(_Fragment, { children: [_jsx(KitButton, { type: "primary", icon: firstAction.icon, disabled: firstAction.disabled, onClick: firstAction.callback, children: firstAction.label }), dropdownActions.length > 0 && (_jsx(KitDropDown, { trigger: ['click'], menu: {
19
- items: dropdownActions.map((action, index) => ({
20
- key: index,
21
- label: (_jsxs(KitSpace, { size: 8, children: [action.icon, " ", action.label] })),
22
- disabled: action.disabled,
23
- onClick: action.callback
24
- }))
25
- }, children: _jsx(KitButton, { "data-testid": "actions-dropdown", type: "secondary", icon: _jsx(FaEllipsisV, {}) }) }))] }))
26
- };
27
- };
28
- //# sourceMappingURL=usePrimaryActions.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"usePrimaryActions.js","sourceRoot":"","sources":["../../../src/components/Explorer/usePrimaryActions.tsx"],"names":[],"mappings":";AAAA,oFAAoF;AACpF,sCAAsC;AACtC,sEAAsE;AACtE,OAAO,EAAC,WAAW,EAAC,MAAM,gBAAgB,CAAC;AAE3C,OAAO,EAAC,SAAS,EAAE,WAAW,EAAE,QAAQ,EAAC,MAAM,YAAY,CAAC;AAE5D;;;;;;;GAOG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,OAAyB,EAAE,EAAE;IACjE,MAAM,CAAC,WAAW,EAAE,GAAG,eAAe,CAAC,GAAG,OAAO,CAAC;IAElD,OAAO;QACH,aAAa,EACT,OAAO,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAC1B,8BACI,KAAC,SAAS,IACN,IAAI,EAAC,SAAS,EACd,IAAI,EAAE,WAAW,CAAC,IAAI,EACtB,QAAQ,EAAE,WAAW,CAAC,QAAQ,EAC9B,OAAO,EAAE,WAAW,CAAC,QAAQ,YAE5B,WAAW,CAAC,KAAK,GACV,EACX,eAAe,CAAC,MAAM,GAAG,CAAC,IAAI,CAC3B,KAAC,WAAW,IACR,OAAO,EAAE,CAAC,OAAO,CAAC,EAClB,IAAI,EAAE;wBACF,KAAK,EAAE,eAAe,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,KAAK,EAAE,EAAE,CAAC,CAAC;4BAC3C,GAAG,EAAE,KAAK;4BACV,KAAK,EAAE,CACH,MAAC,QAAQ,IAAC,IAAI,EAAE,CAAC,aACZ,MAAM,CAAC,IAAI,OAAG,MAAM,CAAC,KAAK,IACpB,CACd;4BACD,QAAQ,EAAE,MAAM,CAAC,QAAQ;4BACzB,OAAO,EAAE,MAAM,CAAC,QAAQ;yBAC3B,CAAC,CAAC;qBACN,YAED,KAAC,SAAS,mBAAa,kBAAkB,EAAC,IAAI,EAAC,WAAW,EAAC,IAAI,EAAE,KAAC,WAAW,KAAG,GAAI,GAC1E,CACjB,IACF,CACN;KACR,CAAC;AACN,CAAC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"useRemoveAction.js","sourceRoot":"","sources":["../../../src/components/Explorer/useRemoveAction.tsx"],"names":[],"mappings":"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"}