@leav/ui 0.3.6-ac90f23 → 0.3.6-b0bf87d

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 (262) hide show
  1. package/dist/__mocks__/common/attribute.js +1 -0
  2. package/dist/__mocks__/common/attribute.js.map +1 -1
  3. package/dist/__mocks__/common/form.d.ts +1 -0
  4. package/dist/__mocks__/common/form.js +15 -0
  5. package/dist/__mocks__/common/form.js.map +1 -1
  6. package/dist/__mocks__/common/value.js +1 -0
  7. package/dist/__mocks__/common/value.js.map +1 -1
  8. package/dist/__mocks__/common/view.js +7 -5
  9. package/dist/__mocks__/common/view.js.map +1 -1
  10. package/dist/__mocks__/mockQuery/mockGetLibraryDetailExtendedQuery.js +1 -1
  11. package/dist/__mocks__/mockQuery/mockGetLibraryDetailExtendedQuery.js.map +1 -1
  12. package/dist/__mocks__/mockQuery/mockGetViewListQuery.js +2 -1
  13. package/dist/__mocks__/mockQuery/mockGetViewListQuery.js.map +1 -1
  14. package/dist/_gqlTypes/index.d.ts +364 -82
  15. package/dist/_gqlTypes/index.js +203 -59
  16. package/dist/_gqlTypes/index.js.map +1 -1
  17. package/dist/_queries/libraries/getLibraryDetailExtendQuery.d.ts +3 -4
  18. package/dist/_queries/libraries/getLibraryDetailExtendQuery.js +2 -3
  19. package/dist/_queries/libraries/getLibraryDetailExtendQuery.js.map +1 -1
  20. package/dist/_queries/records/getRecordColumnsValues.d.ts +1 -1
  21. package/dist/_queries/records/getRecordsFromLibraryQuery.js +1 -0
  22. package/dist/_queries/records/getRecordsFromLibraryQuery.js.map +1 -1
  23. package/dist/_queries/records/recordFormAttributeFragment.js +1 -0
  24. package/dist/_queries/records/recordFormAttributeFragment.js.map +1 -1
  25. package/dist/_queries/views/saveViewMutation.js +1 -1
  26. package/dist/_queries/views/viewDetailsFragment.js +14 -11
  27. package/dist/_queries/views/viewDetailsFragment.js.map +1 -1
  28. package/dist/_utils/index.js +5 -2
  29. package/dist/_utils/index.js.map +1 -1
  30. package/dist/_utils/interleaveElement.d.ts +1 -0
  31. package/dist/_utils/interleaveElement.js +5 -0
  32. package/dist/_utils/interleaveElement.js.map +1 -0
  33. package/dist/antdTheme/index.d.ts +0 -3
  34. package/dist/antdTheme/index.js +3 -42
  35. package/dist/antdTheme/index.js.map +1 -1
  36. package/dist/components/Explorer/DataView.d.ts +6 -1
  37. package/dist/components/Explorer/DataView.js +67 -18
  38. package/dist/components/Explorer/DataView.js.map +1 -1
  39. package/dist/components/Explorer/Explorer.d.ts +8 -6
  40. package/dist/components/Explorer/Explorer.js +69 -32
  41. package/dist/components/Explorer/Explorer.js.map +1 -1
  42. package/dist/components/Explorer/ExplorerTitle.d.ts +2 -0
  43. package/dist/components/Explorer/ExplorerTitle.js +28 -11
  44. package/dist/components/Explorer/ExplorerTitle.js.map +1 -1
  45. package/dist/components/Explorer/ExplorerToolbar.d.ts +5 -0
  46. package/dist/components/Explorer/ExplorerToolbar.js +45 -0
  47. package/dist/components/Explorer/ExplorerToolbar.js.map +1 -0
  48. package/dist/components/Explorer/TableCell.js +15 -6
  49. package/dist/components/Explorer/TableCell.js.map +1 -1
  50. package/dist/components/Explorer/_constants.d.ts +5 -0
  51. package/dist/components/Explorer/_constants.js +18 -0
  52. package/dist/components/Explorer/_constants.js.map +1 -0
  53. package/dist/components/Explorer/_queries/prepareFiltersForRequest.d.ts +4 -0
  54. package/dist/components/Explorer/_queries/prepareFiltersForRequest.js +81 -0
  55. package/dist/components/Explorer/_queries/prepareFiltersForRequest.js.map +1 -0
  56. package/dist/components/Explorer/_queries/useExplorerData.d.ts +14 -6
  57. package/dist/components/Explorer/_queries/useExplorerData.js +69 -20
  58. package/dist/components/Explorer/_queries/useExplorerData.js.map +1 -1
  59. package/dist/components/Explorer/_types.d.ts +41 -2
  60. package/dist/components/Explorer/conditionsHelper.d.ts +2 -0
  61. package/dist/components/Explorer/conditionsHelper.js +16 -0
  62. package/dist/components/Explorer/conditionsHelper.js.map +1 -0
  63. package/dist/components/Explorer/manage-view-settings/_shared/CommonFilterItem.d.ts +1 -0
  64. package/dist/components/Explorer/manage-view-settings/_shared/CommonFilterItem.js +1 -1
  65. package/dist/components/Explorer/manage-view-settings/_shared/CommonFilterItem.js.map +1 -1
  66. package/dist/components/Explorer/manage-view-settings/_shared/useAttributeDetailsData.d.ts +3 -1
  67. package/dist/components/Explorer/manage-view-settings/_shared/useAttributeDetailsData.js +9 -3
  68. package/dist/components/Explorer/manage-view-settings/_shared/useAttributeDetailsData.js.map +1 -1
  69. package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.js +11 -4
  70. package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.js.map +1 -1
  71. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/BooleanAttributeDropdown.d.ts +3 -0
  72. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/BooleanAttributeDropdown.js +22 -0
  73. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/BooleanAttributeDropdown.js.map +1 -0
  74. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ColorAttributeDropDown.d.ts +3 -0
  75. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ColorAttributeDropDown.js +11 -0
  76. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ColorAttributeDropDown.js.map +1 -0
  77. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateAttributeDropDown.d.ts +3 -0
  78. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateAttributeDropDown.js +66 -0
  79. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateAttributeDropDown.js.map +1 -0
  80. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateRangeAttributeDropDown.d.ts +3 -0
  81. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateRangeAttributeDropDown.js +11 -0
  82. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateRangeAttributeDropDown.js.map +1 -0
  83. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/EncryptedAttributeDropDown.d.ts +3 -0
  84. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/EncryptedAttributeDropDown.js +11 -0
  85. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/EncryptedAttributeDropDown.js.map +1 -0
  86. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ExtendedAttributeDropDown.d.ts +3 -0
  87. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ExtendedAttributeDropDown.js +11 -0
  88. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ExtendedAttributeDropDown.js.map +1 -0
  89. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.d.ts +1 -1
  90. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.js +60 -6
  91. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.js.map +1 -1
  92. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterValueList.js.map +1 -1
  93. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/NumericAttributeDropDown.d.ts +2 -2
  94. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/NumericAttributeDropDown.js +7 -32
  95. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/NumericAttributeDropDown.js.map +1 -1
  96. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TextAttributeDropDown.d.ts +2 -2
  97. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TextAttributeDropDown.js +7 -32
  98. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TextAttributeDropDown.js.map +1 -1
  99. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/useConditionOptionsByType.d.ts +6 -9
  100. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/useConditionOptionsByType.js +25 -7
  101. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/useConditionOptionsByType.js.map +1 -1
  102. package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContext.d.ts +1 -0
  103. package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContext.js.map +1 -1
  104. package/dist/components/Explorer/manage-view-settings/open-view-settings/useOpenViewSettings.d.ts +2 -0
  105. package/dist/components/Explorer/manage-view-settings/open-view-settings/useOpenViewSettings.js +24 -6
  106. package/dist/components/Explorer/manage-view-settings/open-view-settings/useOpenViewSettings.js.map +1 -1
  107. package/dist/components/Explorer/manage-view-settings/router-menu/SettingsPanel.d.ts +2 -1
  108. package/dist/components/Explorer/manage-view-settings/router-menu/SettingsPanel.js +45 -28
  109. package/dist/components/Explorer/manage-view-settings/router-menu/SettingsPanel.js.map +1 -1
  110. package/dist/components/Explorer/manage-view-settings/sort-items/SortItems.js +25 -21
  111. package/dist/components/Explorer/manage-view-settings/sort-items/SortItems.js.map +1 -1
  112. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.js +13 -1
  113. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.js.map +1 -1
  114. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.d.ts +34 -8
  115. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.js +51 -29
  116. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.js.map +1 -1
  117. package/dist/components/Explorer/useColumnWidth.d.ts +6 -0
  118. package/dist/components/Explorer/useColumnWidth.js +48 -0
  119. package/dist/components/Explorer/useColumnWidth.js.map +1 -0
  120. package/dist/components/Explorer/useCreateAction.d.ts +4 -2
  121. package/dist/components/Explorer/useCreateAction.js +35 -2
  122. package/dist/components/Explorer/useCreateAction.js.map +1 -1
  123. package/dist/components/Explorer/useDeactivateMassAction.d.ts +27 -0
  124. package/dist/components/Explorer/useDeactivateMassAction.js +71 -0
  125. package/dist/components/Explorer/useDeactivateMassAction.js.map +1 -0
  126. package/dist/components/Explorer/useEditAction.js +3 -3
  127. package/dist/components/Explorer/useEditAction.js.map +1 -1
  128. package/dist/components/Explorer/useMassActions.d.ts +27 -0
  129. package/dist/components/Explorer/useMassActions.js +109 -0
  130. package/dist/components/Explorer/useMassActions.js.map +1 -0
  131. package/dist/components/Explorer/usePrimaryActions.js +14 -7
  132. package/dist/components/Explorer/usePrimaryActions.js.map +1 -1
  133. package/dist/components/Explorer/useRemoveAction.d.ts +23 -0
  134. package/dist/components/Explorer/useRemoveAction.js +109 -0
  135. package/dist/components/Explorer/useRemoveAction.js.map +1 -0
  136. package/dist/components/Explorer/useSearchInput.d.ts +10 -4
  137. package/dist/components/Explorer/useSearchInput.js +9 -1
  138. package/dist/components/Explorer/useSearchInput.js.map +1 -1
  139. package/dist/components/Explorer/useViewSettingsReducer.d.ts +8 -0
  140. package/dist/components/Explorer/useViewSettingsReducer.js +126 -0
  141. package/dist/components/Explorer/useViewSettingsReducer.js.map +1 -0
  142. package/dist/components/LibraryItemsList/LibraryItemsListContent/LibraryItemsListContent.js +7 -11
  143. package/dist/components/LibraryItemsList/LibraryItemsListContent/LibraryItemsListContent.js.map +1 -1
  144. package/dist/components/LibraryItemsList/LibraryItemsListTable/Cell/StandardCell/StandardCell.js +7 -2
  145. package/dist/components/LibraryItemsList/LibraryItemsListTable/Cell/StandardCell/StandardCell.js.map +1 -1
  146. package/dist/components/LibraryItemsList/LibraryItemsListTable/Header/Header.js +7 -5
  147. package/dist/components/LibraryItemsList/LibraryItemsListTable/Header/Header.js.map +1 -1
  148. package/dist/components/LibraryItemsList/MenuView/MenuView.js +4 -9
  149. package/dist/components/LibraryItemsList/MenuView/MenuView.js.map +1 -1
  150. package/dist/components/LibraryItemsList/ViewPanel/EditView/EditView.js +2 -3
  151. package/dist/components/LibraryItemsList/ViewPanel/EditView/EditView.js.map +1 -1
  152. package/dist/components/LibraryItemsList/ViewPanel/View/View.js +3 -3
  153. package/dist/components/LibraryItemsList/ViewPanel/View/View.js.map +1 -1
  154. package/dist/components/LibraryItemsList/helpers/getFieldsFromView.js +4 -9
  155. package/dist/components/LibraryItemsList/helpers/getFieldsFromView.js.map +1 -1
  156. package/dist/components/LibraryItemsList/hooks/useLibraryView/useLibraryView.js +7 -5
  157. package/dist/components/LibraryItemsList/hooks/useLibraryView/useLibraryView.js.map +1 -1
  158. package/dist/components/LibraryItemsList/hooks/useSearchReducer/_types.d.ts +1 -1
  159. package/dist/components/LibraryItemsList/hooks/useSearchReducer/searchReducer.d.ts +1 -1
  160. package/dist/components/LibraryItemsList/hooks/useSearchReducer/searchReducer.js +25 -33
  161. package/dist/components/LibraryItemsList/hooks/useSearchReducer/searchReducer.js.map +1 -1
  162. package/dist/components/RecordEdition/EditRecord/EditRecord.d.ts +1 -0
  163. package/dist/components/RecordEdition/EditRecord/EditRecord.js +61 -73
  164. package/dist/components/RecordEdition/EditRecord/EditRecord.js.map +1 -1
  165. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js +4 -4
  166. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js.map +1 -1
  167. package/dist/components/RecordEdition/EditRecordContent/_types.d.ts +1 -1
  168. package/dist/components/RecordEdition/EditRecordContent/helpers/extractFormElements/extractFormElements.d.ts +3 -1
  169. package/dist/components/RecordEdition/EditRecordContent/helpers/extractFormElements/extractFormElements.js +8 -2
  170. package/dist/components/RecordEdition/EditRecordContent/helpers/extractFormElements/extractFormElements.js.map +1 -1
  171. package/dist/components/RecordEdition/EditRecordContent/hooks/useExecuteSaveValueBatchMutation.js.map +1 -1
  172. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.js +2 -2
  173. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.js.map +1 -1
  174. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/ComputeIndicator.js +2 -4
  175. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/ComputeIndicator.js.map +1 -1
  176. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js +81 -25
  177. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js.map +1 -1
  178. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSBooleanWrapper.js +2 -1
  179. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSBooleanWrapper.js.map +1 -1
  180. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSColorPickerWrapper.js +47 -4
  181. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSColorPickerWrapper.js.map +1 -1
  182. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSDatePickerWrapper.js +9 -3
  183. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSDatePickerWrapper.js.map +1 -1
  184. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputEncryptedWrapper.js +16 -8
  185. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputEncryptedWrapper.js.map +1 -1
  186. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputNumberWrapper.js +6 -2
  187. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputNumberWrapper.js.map +1 -1
  188. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputWrapper.js +7 -14
  189. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputWrapper.js.map +1 -1
  190. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRangePickerWrapper.js +9 -3
  191. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRangePickerWrapper.js.map +1 -1
  192. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRichTextWrapper.js +6 -6
  193. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRichTextWrapper.js.map +1 -1
  194. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValue.d.ts +2 -2
  195. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValue.js +4 -15
  196. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValue.js.map +1 -1
  197. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/DSListSelect.js +5 -2
  198. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/DSListSelect.js.map +1 -1
  199. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/_types.d.ts +1 -1
  200. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/calculatedInheritedFlags.js +3 -2
  201. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/calculatedInheritedFlags.js.map +1 -1
  202. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/useGetPresentationValues.js +0 -5
  203. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/useGetPresentationValues.js.map +1 -1
  204. package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.js +10 -4
  205. package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.js.map +1 -1
  206. package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.d.ts +2 -0
  207. package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.js +2 -2
  208. package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.js.map +1 -1
  209. package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.d.ts +4 -1
  210. package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.js +36 -3
  211. package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.js.map +1 -1
  212. package/dist/components/RecordEdition/EditRecordSidebar/PropertiesList/PropertiesList.d.ts +4 -7
  213. package/dist/components/RecordEdition/EditRecordSidebar/PropertiesList/PropertiesList.js +6 -8
  214. package/dist/components/RecordEdition/EditRecordSidebar/PropertiesList/PropertiesList.js.map +1 -1
  215. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordInformations/RecordInformations.d.ts +9 -0
  216. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordInformations/RecordInformations.js +42 -0
  217. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordInformations/RecordInformations.js.map +1 -0
  218. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordInformations/useRecordInformations.d.ts +6 -0
  219. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordInformations/useRecordInformations.js +35 -0
  220. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordInformations/useRecordInformations.js.map +1 -0
  221. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordSummary.d.ts +2 -281
  222. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordSummary.js +25 -56
  223. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordSummary.js.map +1 -1
  224. package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/ValueDetails.js +1 -13
  225. package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/ValueDetails.js.map +1 -1
  226. package/dist/components/RecordEdition/{EditRecordContent → EditRecordSkeleton}/EditRecordSkeleton.d.ts +1 -1
  227. package/dist/components/RecordEdition/{EditRecordContent → EditRecordSkeleton}/EditRecordSkeleton.js +2 -2
  228. package/dist/components/RecordEdition/EditRecordSkeleton/EditRecordSkeleton.js.map +1 -0
  229. package/dist/components/RecordEdition/EditRecordSkeleton/index.d.ts +2 -0
  230. package/dist/components/RecordEdition/EditRecordSkeleton/index.js +6 -0
  231. package/dist/components/RecordEdition/EditRecordSkeleton/index.js.map +1 -0
  232. package/dist/components/RecordEdition/index.d.ts +1 -0
  233. package/dist/components/RecordEdition/index.js +1 -0
  234. package/dist/components/RecordEdition/index.js.map +1 -1
  235. package/dist/constants.d.ts +3 -0
  236. package/dist/constants.js +3 -0
  237. package/dist/constants.js.map +1 -1
  238. package/dist/hooks/useExecuteSaveViewMutation/index.d.ts +1 -0
  239. package/dist/hooks/useExecuteSaveViewMutation/index.js +5 -0
  240. package/dist/hooks/useExecuteSaveViewMutation/index.js.map +1 -0
  241. package/dist/hooks/useExecuteSaveViewMutation/useExecuteSaveViewMutation.d.ts +6 -0
  242. package/dist/hooks/{useExecuteAddViewMutation/useExecuteAddViewMutation.js → useExecuteSaveViewMutation/useExecuteSaveViewMutation.js} +6 -6
  243. package/dist/hooks/useExecuteSaveViewMutation/useExecuteSaveViewMutation.js.map +1 -0
  244. package/dist/locales/en/shared.json +36 -9
  245. package/dist/locales/fr/shared.json +38 -11
  246. package/dist/types/views.d.ts +4 -4
  247. package/package.json +2 -2
  248. package/dist/components/Explorer/display-view-filters/ExplorerFilterBar.d.ts +0 -2
  249. package/dist/components/Explorer/display-view-filters/ExplorerFilterBar.js +0 -37
  250. package/dist/components/Explorer/display-view-filters/ExplorerFilterBar.js.map +0 -1
  251. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/SimpleFilterDropDown.d.ts +0 -3
  252. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/SimpleFilterDropDown.js +0 -72
  253. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/SimpleFilterDropDown.js.map +0 -1
  254. package/dist/components/Explorer/useDeactivateAction.d.ts +0 -12
  255. package/dist/components/Explorer/useDeactivateAction.js +0 -52
  256. package/dist/components/Explorer/useDeactivateAction.js.map +0 -1
  257. package/dist/components/RecordEdition/EditRecordContent/EditRecordSkeleton.js.map +0 -1
  258. package/dist/components/RecordEdition/EditRecordContent/shared/ValueDetailsBtn/useValueDetailsButton.d.ts +0 -8
  259. package/dist/components/RecordEdition/EditRecordContent/shared/ValueDetailsBtn/useValueDetailsButton.js +0 -23
  260. package/dist/components/RecordEdition/EditRecordContent/shared/ValueDetailsBtn/useValueDetailsButton.js.map +0 -1
  261. package/dist/hooks/useExecuteAddViewMutation/useExecuteAddViewMutation.d.ts +0 -6
  262. package/dist/hooks/useExecuteAddViewMutation/useExecuteAddViewMutation.js.map +0 -1
@@ -158,14 +158,15 @@ export declare enum AttributeType {
158
158
  tree = "tree"
159
159
  }
160
160
  export type AttributesFiltersInput = {
161
- format?: InputMaybe<Array<InputMaybe<AttributeFormat>>>;
161
+ format?: InputMaybe<Array<AttributeFormat>>;
162
162
  id?: InputMaybe<Scalars['ID']>;
163
+ ids?: InputMaybe<Array<Scalars['ID']>>;
163
164
  label?: InputMaybe<Scalars['String']>;
164
- libraries?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
165
- librariesExcluded?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
165
+ libraries?: InputMaybe<Array<Scalars['String']>>;
166
+ librariesExcluded?: InputMaybe<Array<Scalars['String']>>;
166
167
  multiple_values?: InputMaybe<Scalars['Boolean']>;
167
168
  system?: InputMaybe<Scalars['Boolean']>;
168
- type?: InputMaybe<Array<InputMaybe<AttributeType>>>;
169
+ type?: InputMaybe<Array<AttributeType>>;
169
170
  versionable?: InputMaybe<Scalars['Boolean']>;
170
171
  };
171
172
  export declare enum AttributesSortableFields {
@@ -251,16 +252,6 @@ export declare enum FormsSortableFields {
251
252
  library = "library",
252
253
  system = "system"
253
254
  }
254
- export declare enum GenerationStatus {
255
- DONE = "DONE",
256
- GENERATION_FAILED = "GENERATION_FAILED",
257
- GENERATION_IN_PROGRESS = "GENERATION_IN_PROGRESS",
258
- GENERATION_IN_PROGRESS_WITH_FAILURE = "GENERATION_IN_PROGRESS_WITH_FAILURE",
259
- PREPARATION_FAILED = "PREPARATION_FAILED",
260
- PREPARATION_IN_PROGRESS = "PREPARATION_IN_PROGRESS",
261
- TRANSMISSION_FAILED = "TRANSMISSION_FAILED",
262
- TRANSMISSION_IN_PROGRESS = "TRANSMISSION_IN_PROGRESS"
263
- }
264
255
  export type GlobalSettingsFileInput = {
265
256
  library: Scalars['String'];
266
257
  recordId: Scalars['String'];
@@ -735,10 +726,11 @@ export declare enum VersionProfilesSortableFields {
735
726
  id = "id"
736
727
  }
737
728
  export type ViewDisplayInput = {
738
- size: ViewSizes;
729
+ size?: InputMaybe<ViewSizes>;
739
730
  type: ViewTypes;
740
731
  };
741
732
  export type ViewInput = {
733
+ attributes?: InputMaybe<Array<Scalars['String']>>;
742
734
  color?: InputMaybe<Scalars['String']>;
743
735
  description?: InputMaybe<Scalars['SystemTranslationOptional']>;
744
736
  display: ViewDisplayInput;
@@ -746,15 +738,10 @@ export type ViewInput = {
746
738
  id?: InputMaybe<Scalars['String']>;
747
739
  label?: InputMaybe<Scalars['SystemTranslation']>;
748
740
  library: Scalars['String'];
749
- settings?: InputMaybe<Array<ViewSettingsInput>>;
750
741
  shared: Scalars['Boolean'];
751
- sort?: InputMaybe<RecordSortInput>;
742
+ sort?: InputMaybe<Array<RecordSortInput>>;
752
743
  valuesVersions?: InputMaybe<Array<ViewValuesVersionInput>>;
753
744
  };
754
- export type ViewSettingsInput = {
755
- name: Scalars['String'];
756
- value?: InputMaybe<Scalars['Any']>;
757
- };
758
745
  export declare enum ViewSizes {
759
746
  BIG = "BIG",
760
747
  MEDIUM = "MEDIUM",
@@ -1496,6 +1483,7 @@ export type RecordFormElementFragment = {
1496
1483
  format?: AttributeFormat | null;
1497
1484
  system: boolean;
1498
1485
  readonly: boolean;
1486
+ required: boolean;
1499
1487
  multiple_values: boolean;
1500
1488
  compute: boolean;
1501
1489
  linked_library?: {
@@ -1578,6 +1566,7 @@ export type RecordFormElementFragment = {
1578
1566
  format?: AttributeFormat | null;
1579
1567
  system: boolean;
1580
1568
  readonly: boolean;
1569
+ required: boolean;
1581
1570
  multiple_values: boolean;
1582
1571
  compute: boolean;
1583
1572
  values_list?: {
@@ -1647,6 +1636,7 @@ export type RecordFormElementFragment = {
1647
1636
  format?: AttributeFormat | null;
1648
1637
  system: boolean;
1649
1638
  readonly: boolean;
1639
+ required: boolean;
1650
1640
  multiple_values: boolean;
1651
1641
  compute: boolean;
1652
1642
  linked_tree?: {
@@ -2151,6 +2141,7 @@ export type RecordFormAttributeLinkAttributeFragment = {
2151
2141
  format?: AttributeFormat | null;
2152
2142
  system: boolean;
2153
2143
  readonly: boolean;
2144
+ required: boolean;
2154
2145
  multiple_values: boolean;
2155
2146
  compute: boolean;
2156
2147
  linked_library?: {
@@ -2234,6 +2225,7 @@ export type RecordFormAttributeStandardAttributeFragment = {
2234
2225
  format?: AttributeFormat | null;
2235
2226
  system: boolean;
2236
2227
  readonly: boolean;
2228
+ required: boolean;
2237
2229
  multiple_values: boolean;
2238
2230
  compute: boolean;
2239
2231
  values_list?: {
@@ -2304,6 +2296,7 @@ export type RecordFormAttributeTreeAttributeFragment = {
2304
2296
  format?: AttributeFormat | null;
2305
2297
  system: boolean;
2306
2298
  readonly: boolean;
2299
+ required: boolean;
2307
2300
  multiple_values: boolean;
2308
2301
  compute: boolean;
2309
2302
  linked_tree?: {
@@ -2487,7 +2480,7 @@ export type ViewDetailsFragment = {
2487
2480
  description?: any | null;
2488
2481
  color?: string | null;
2489
2482
  display: {
2490
- size: ViewSizes;
2483
+ size?: ViewSizes | null;
2491
2484
  type: ViewTypes;
2492
2485
  };
2493
2486
  created_by: {
@@ -2510,10 +2503,10 @@ export type ViewDetailsFragment = {
2510
2503
  label?: any | null;
2511
2504
  } | null;
2512
2505
  }> | null;
2513
- sort?: {
2506
+ sort?: Array<{
2514
2507
  field: string;
2515
2508
  order: SortOrder;
2516
- } | null;
2509
+ }> | null;
2517
2510
  valuesVersions?: Array<{
2518
2511
  treeId: string;
2519
2512
  treeNode: {
@@ -2534,11 +2527,26 @@ export type ViewDetailsFragment = {
2534
2527
  };
2535
2528
  };
2536
2529
  }> | null;
2537
- settings?: Array<{
2538
- name: string;
2539
- value?: any | null;
2530
+ attributes?: Array<{
2531
+ id: string;
2540
2532
  }> | null;
2541
2533
  };
2534
+ export type ViewDetailsFilterFragment = {
2535
+ field?: string | null;
2536
+ value?: string | null;
2537
+ condition?: RecordFilterCondition | null;
2538
+ operator?: RecordFilterOperator | null;
2539
+ tree?: {
2540
+ id: string;
2541
+ label?: any | null;
2542
+ } | null;
2543
+ };
2544
+ export type LinkAttributeDetailsFragment = {
2545
+ label?: any | null;
2546
+ linked_library?: {
2547
+ id: string;
2548
+ } | null;
2549
+ };
2542
2550
  export type AttributePropertiesFragment = {
2543
2551
  id: string;
2544
2552
  label?: any | null;
@@ -2582,8 +2590,76 @@ export type PropertyValueTreeValueFragment = {
2582
2590
  };
2583
2591
  export type PropertyValueValueFragment = {
2584
2592
  valuePayload?: any | null;
2593
+ valueRawPayload?: any | null;
2585
2594
  };
2586
2595
  export type PropertyValueFragment = PropertyValueLinkValueFragment | PropertyValueTreeValueFragment | PropertyValueValueFragment;
2596
+ export type LinkPropertyLinkValueFragment = {
2597
+ id_value?: string | null;
2598
+ payload?: {
2599
+ id: string;
2600
+ properties: Array<{
2601
+ attributeId: string;
2602
+ attributeProperties: {
2603
+ id: string;
2604
+ label?: any | null;
2605
+ type: AttributeType;
2606
+ format?: AttributeFormat | null;
2607
+ multiple_values: boolean;
2608
+ };
2609
+ values: Array<{
2610
+ linkPayload?: {
2611
+ id: string;
2612
+ whoAmI: {
2613
+ id: string;
2614
+ label?: string | null;
2615
+ subLabel?: string | null;
2616
+ color?: string | null;
2617
+ preview?: IPreviewScalar | null;
2618
+ library: {
2619
+ id: string;
2620
+ label?: any | null;
2621
+ };
2622
+ };
2623
+ } | null;
2624
+ } | {
2625
+ treePayload?: {
2626
+ record: {
2627
+ id: string;
2628
+ whoAmI: {
2629
+ id: string;
2630
+ label?: string | null;
2631
+ subLabel?: string | null;
2632
+ color?: string | null;
2633
+ preview?: IPreviewScalar | null;
2634
+ library: {
2635
+ id: string;
2636
+ label?: any | null;
2637
+ };
2638
+ };
2639
+ };
2640
+ } | null;
2641
+ } | {
2642
+ valuePayload?: any | null;
2643
+ valueRawPayload?: any | null;
2644
+ }>;
2645
+ }>;
2646
+ whoAmI: {
2647
+ id: string;
2648
+ label?: string | null;
2649
+ subLabel?: string | null;
2650
+ color?: string | null;
2651
+ preview?: IPreviewScalar | null;
2652
+ library: {
2653
+ id: string;
2654
+ label?: any | null;
2655
+ };
2656
+ };
2657
+ } | null;
2658
+ };
2659
+ export type LinkPropertyTreeValueValueFragment = {
2660
+ id_value?: string | null;
2661
+ };
2662
+ export type LinkPropertyFragment = LinkPropertyLinkValueFragment | LinkPropertyTreeValueValueFragment;
2587
2663
  export type CheckApplicationExistenceQueryVariables = Exact<{
2588
2664
  id?: InputMaybe<Scalars['ID']>;
2589
2665
  endpoint?: InputMaybe<Scalars['String']>;
@@ -3978,6 +4054,7 @@ export type RecordFormQuery = {
3978
4054
  format?: AttributeFormat | null;
3979
4055
  system: boolean;
3980
4056
  readonly: boolean;
4057
+ required: boolean;
3981
4058
  multiple_values: boolean;
3982
4059
  compute: boolean;
3983
4060
  linked_library?: {
@@ -4060,6 +4137,7 @@ export type RecordFormQuery = {
4060
4137
  format?: AttributeFormat | null;
4061
4138
  system: boolean;
4062
4139
  readonly: boolean;
4140
+ required: boolean;
4063
4141
  multiple_values: boolean;
4064
4142
  compute: boolean;
4065
4143
  values_list?: {
@@ -4129,6 +4207,7 @@ export type RecordFormQuery = {
4129
4207
  format?: AttributeFormat | null;
4130
4208
  system: boolean;
4131
4209
  readonly: boolean;
4210
+ required: boolean;
4132
4211
  multiple_values: boolean;
4133
4212
  compute: boolean;
4134
4213
  linked_tree?: {
@@ -5771,7 +5850,7 @@ export type GetViewQuery = {
5771
5850
  description?: any | null;
5772
5851
  color?: string | null;
5773
5852
  display: {
5774
- size: ViewSizes;
5853
+ size?: ViewSizes | null;
5775
5854
  type: ViewTypes;
5776
5855
  };
5777
5856
  created_by: {
@@ -5794,10 +5873,10 @@ export type GetViewQuery = {
5794
5873
  label?: any | null;
5795
5874
  } | null;
5796
5875
  }> | null;
5797
- sort?: {
5876
+ sort?: Array<{
5798
5877
  field: string;
5799
5878
  order: SortOrder;
5800
- } | null;
5879
+ }> | null;
5801
5880
  valuesVersions?: Array<{
5802
5881
  treeId: string;
5803
5882
  treeNode: {
@@ -5818,9 +5897,8 @@ export type GetViewQuery = {
5818
5897
  };
5819
5898
  };
5820
5899
  }> | null;
5821
- settings?: Array<{
5822
- name: string;
5823
- value?: any | null;
5900
+ attributes?: Array<{
5901
+ id: string;
5824
5902
  }> | null;
5825
5903
  };
5826
5904
  };
@@ -5837,7 +5915,7 @@ export type GetViewsListQuery = {
5837
5915
  description?: any | null;
5838
5916
  color?: string | null;
5839
5917
  display: {
5840
- size: ViewSizes;
5918
+ size?: ViewSizes | null;
5841
5919
  type: ViewTypes;
5842
5920
  };
5843
5921
  created_by: {
@@ -5860,10 +5938,10 @@ export type GetViewsListQuery = {
5860
5938
  label?: any | null;
5861
5939
  } | null;
5862
5940
  }> | null;
5863
- sort?: {
5941
+ sort?: Array<{
5864
5942
  field: string;
5865
5943
  order: SortOrder;
5866
- } | null;
5944
+ }> | null;
5867
5945
  valuesVersions?: Array<{
5868
5946
  treeId: string;
5869
5947
  treeNode: {
@@ -5884,17 +5962,16 @@ export type GetViewsListQuery = {
5884
5962
  };
5885
5963
  };
5886
5964
  }> | null;
5887
- settings?: Array<{
5888
- name: string;
5889
- value?: any | null;
5965
+ attributes?: Array<{
5966
+ id: string;
5890
5967
  }> | null;
5891
5968
  }>;
5892
5969
  };
5893
5970
  };
5894
- export type AddViewMutationVariables = Exact<{
5971
+ export type SaveViewMutationVariables = Exact<{
5895
5972
  view: ViewInput;
5896
5973
  }>;
5897
- export type AddViewMutation = {
5974
+ export type SaveViewMutation = {
5898
5975
  saveView: {
5899
5976
  id: string;
5900
5977
  shared: boolean;
@@ -5902,7 +5979,7 @@ export type AddViewMutation = {
5902
5979
  description?: any | null;
5903
5980
  color?: string | null;
5904
5981
  display: {
5905
- size: ViewSizes;
5982
+ size?: ViewSizes | null;
5906
5983
  type: ViewTypes;
5907
5984
  };
5908
5985
  created_by: {
@@ -5925,10 +6002,10 @@ export type AddViewMutation = {
5925
6002
  label?: any | null;
5926
6003
  } | null;
5927
6004
  }> | null;
5928
- sort?: {
6005
+ sort?: Array<{
5929
6006
  field: string;
5930
6007
  order: SortOrder;
5931
- } | null;
6008
+ }> | null;
5932
6009
  valuesVersions?: Array<{
5933
6010
  treeId: string;
5934
6011
  treeNode: {
@@ -5949,13 +6026,43 @@ export type AddViewMutation = {
5949
6026
  };
5950
6027
  };
5951
6028
  }> | null;
5952
- settings?: Array<{
5953
- name: string;
5954
- value?: any | null;
6029
+ attributes?: Array<{
6030
+ id: string;
5955
6031
  }> | null;
5956
6032
  };
5957
6033
  };
5958
- export type ExplorerQueryVariables = Exact<{
6034
+ export type ExplorerAttributesQueryVariables = Exact<{
6035
+ ids?: InputMaybe<Array<Scalars['ID']> | Scalars['ID']>;
6036
+ }>;
6037
+ export type ExplorerAttributesQuery = {
6038
+ attributes?: {
6039
+ list: Array<{
6040
+ id: string;
6041
+ type: AttributeType;
6042
+ format?: AttributeFormat | null;
6043
+ label?: any | null;
6044
+ }>;
6045
+ } | null;
6046
+ };
6047
+ export type ExplorerLinkAttributeQueryVariables = Exact<{
6048
+ id: Scalars['ID'];
6049
+ }>;
6050
+ export type ExplorerLinkAttributeQuery = {
6051
+ attributes?: {
6052
+ list: Array<{
6053
+ label?: any | null;
6054
+ id: string;
6055
+ multiple_values: boolean;
6056
+ linked_library?: {
6057
+ id: string;
6058
+ } | null;
6059
+ } | {
6060
+ id: string;
6061
+ multiple_values: boolean;
6062
+ }>;
6063
+ } | null;
6064
+ };
6065
+ export type ExplorerLibraryDataQueryVariables = Exact<{
5959
6066
  libraryId: Scalars['ID'];
5960
6067
  attributeIds: Array<Scalars['ID']> | Scalars['ID'];
5961
6068
  pagination?: InputMaybe<RecordsPagination>;
@@ -5963,7 +6070,7 @@ export type ExplorerQueryVariables = Exact<{
5963
6070
  multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
5964
6071
  searchQuery?: InputMaybe<Scalars['String']>;
5965
6072
  }>;
5966
- export type ExplorerQuery = {
6073
+ export type ExplorerLibraryDataQuery = {
5967
6074
  records: {
5968
6075
  totalCount?: number | null;
5969
6076
  list: Array<{
@@ -6022,15 +6129,100 @@ export type ExplorerQuery = {
6022
6129
  } | null;
6023
6130
  } | {
6024
6131
  valuePayload?: any | null;
6132
+ valueRawPayload?: any | null;
6025
6133
  }>;
6026
6134
  }>;
6027
6135
  }>;
6028
6136
  };
6029
6137
  };
6030
- export type ExplorerLibraryDataQueryVariables = Exact<{
6138
+ export type ExplorerLinkDataQueryVariables = Exact<{
6139
+ attributeIds: Array<Scalars['ID']> | Scalars['ID'];
6140
+ parentLibraryId: Scalars['ID'];
6141
+ parentRecordId?: InputMaybe<Scalars['String']>;
6142
+ linkAttributeId: Scalars['ID'];
6143
+ }>;
6144
+ export type ExplorerLinkDataQuery = {
6145
+ records: {
6146
+ list: Array<{
6147
+ id: string;
6148
+ whoAmI: {
6149
+ id: string;
6150
+ library: {
6151
+ id: string;
6152
+ };
6153
+ };
6154
+ property: Array<{
6155
+ id_value?: string | null;
6156
+ payload?: {
6157
+ id: string;
6158
+ whoAmI: {
6159
+ id: string;
6160
+ label?: string | null;
6161
+ subLabel?: string | null;
6162
+ color?: string | null;
6163
+ preview?: IPreviewScalar | null;
6164
+ library: {
6165
+ id: string;
6166
+ label?: any | null;
6167
+ };
6168
+ };
6169
+ properties: Array<{
6170
+ attributeId: string;
6171
+ attributeProperties: {
6172
+ id: string;
6173
+ label?: any | null;
6174
+ type: AttributeType;
6175
+ format?: AttributeFormat | null;
6176
+ multiple_values: boolean;
6177
+ };
6178
+ values: Array<{
6179
+ linkPayload?: {
6180
+ id: string;
6181
+ whoAmI: {
6182
+ id: string;
6183
+ label?: string | null;
6184
+ subLabel?: string | null;
6185
+ color?: string | null;
6186
+ preview?: IPreviewScalar | null;
6187
+ library: {
6188
+ id: string;
6189
+ label?: any | null;
6190
+ };
6191
+ };
6192
+ } | null;
6193
+ } | {
6194
+ treePayload?: {
6195
+ record: {
6196
+ id: string;
6197
+ whoAmI: {
6198
+ id: string;
6199
+ label?: string | null;
6200
+ subLabel?: string | null;
6201
+ color?: string | null;
6202
+ preview?: IPreviewScalar | null;
6203
+ library: {
6204
+ id: string;
6205
+ label?: any | null;
6206
+ };
6207
+ };
6208
+ };
6209
+ } | null;
6210
+ } | {
6211
+ valuePayload?: any | null;
6212
+ valueRawPayload?: any | null;
6213
+ }>;
6214
+ }>;
6215
+ } | null;
6216
+ } | {
6217
+ id_value?: string | null;
6218
+ }>;
6219
+ }>;
6220
+ };
6221
+ };
6222
+ export type ExplorerLibraryDetailsQueryVariables = Exact<{
6031
6223
  libraryId: Scalars['ID'];
6032
6224
  }>;
6033
- export type ExplorerLibraryDataQuery = {
6225
+ export type ExplorerLibraryDetailsQuery = {
6034
6226
  libraries?: {
6035
6227
  list: Array<{
6036
6228
  id: string;
@@ -6066,9 +6258,12 @@ export declare const RecordFormElementFragmentDoc: Apollo.DocumentNode;
6066
6258
  export declare const TreeLightFragmentDoc: Apollo.DocumentNode;
6067
6259
  export declare const TreeDetailsFragmentDoc: Apollo.DocumentNode;
6068
6260
  export declare const TreeNodeChildFragmentDoc: Apollo.DocumentNode;
6261
+ export declare const ViewDetailsFilterFragmentDoc: Apollo.DocumentNode;
6069
6262
  export declare const ViewDetailsFragmentDoc: Apollo.DocumentNode;
6070
- export declare const PropertyValueFragmentDoc: Apollo.DocumentNode;
6263
+ export declare const LinkAttributeDetailsFragmentDoc: Apollo.DocumentNode;
6071
6264
  export declare const AttributePropertiesFragmentDoc: Apollo.DocumentNode;
6265
+ export declare const PropertyValueFragmentDoc: Apollo.DocumentNode;
6266
+ export declare const LinkPropertyFragmentDoc: Apollo.DocumentNode;
6072
6267
  export declare const CheckApplicationExistenceDocument: Apollo.DocumentNode;
6073
6268
  /**
6074
6269
  * __useCheckApplicationExistenceQuery__
@@ -7454,43 +7649,95 @@ export declare function useGetViewsListLazyQuery(baseOptions?: Apollo.LazyQueryH
7454
7649
  export type GetViewsListQueryHookResult = ReturnType<typeof useGetViewsListQuery>;
7455
7650
  export type GetViewsListLazyQueryHookResult = ReturnType<typeof useGetViewsListLazyQuery>;
7456
7651
  export type GetViewsListQueryResult = Apollo.QueryResult<GetViewsListQuery, GetViewsListQueryVariables>;
7457
- export declare const AddViewDocument: Apollo.DocumentNode;
7458
- export type AddViewMutationFn = Apollo.MutationFunction<AddViewMutation, AddViewMutationVariables>;
7652
+ export declare const SaveViewDocument: Apollo.DocumentNode;
7653
+ export type SaveViewMutationFn = Apollo.MutationFunction<SaveViewMutation, SaveViewMutationVariables>;
7459
7654
  /**
7460
- * __useAddViewMutation__
7655
+ * __useSaveViewMutation__
7461
7656
  *
7462
- * To run a mutation, you first call `useAddViewMutation` within a React component and pass it any options that fit your needs.
7463
- * When your component renders, `useAddViewMutation` returns a tuple that includes:
7657
+ * To run a mutation, you first call `useSaveViewMutation` within a React component and pass it any options that fit your needs.
7658
+ * When your component renders, `useSaveViewMutation` returns a tuple that includes:
7464
7659
  * - A mutate function that you can call at any time to execute the mutation
7465
7660
  * - An object with fields that represent the current status of the mutation's execution
7466
7661
  *
7467
7662
  * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
7468
7663
  *
7469
7664
  * @example
7470
- * const [addViewMutation, { data, loading, error }] = useAddViewMutation({
7665
+ * const [saveViewMutation, { data, loading, error }] = useSaveViewMutation({
7471
7666
  * variables: {
7472
7667
  * view: // value for 'view'
7473
7668
  * },
7474
7669
  * });
7475
7670
  */
7476
- export declare function useAddViewMutation(baseOptions?: Apollo.MutationHookOptions<AddViewMutation, AddViewMutationVariables>): Apollo.MutationTuple<AddViewMutation, Exact<{
7671
+ export declare function useSaveViewMutation(baseOptions?: Apollo.MutationHookOptions<SaveViewMutation, SaveViewMutationVariables>): Apollo.MutationTuple<SaveViewMutation, Exact<{
7477
7672
  view: ViewInput;
7478
7673
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
7479
- export type AddViewMutationHookResult = ReturnType<typeof useAddViewMutation>;
7480
- export type AddViewMutationResult = Apollo.MutationResult<AddViewMutation>;
7481
- export type AddViewMutationOptions = Apollo.BaseMutationOptions<AddViewMutation, AddViewMutationVariables>;
7482
- export declare const ExplorerDocument: Apollo.DocumentNode;
7674
+ export type SaveViewMutationHookResult = ReturnType<typeof useSaveViewMutation>;
7675
+ export type SaveViewMutationResult = Apollo.MutationResult<SaveViewMutation>;
7676
+ export type SaveViewMutationOptions = Apollo.BaseMutationOptions<SaveViewMutation, SaveViewMutationVariables>;
7677
+ export declare const ExplorerAttributesDocument: Apollo.DocumentNode;
7483
7678
  /**
7484
- * __useExplorerQuery__
7679
+ * __useExplorerAttributesQuery__
7485
7680
  *
7486
- * To run a query within a React component, call `useExplorerQuery` and pass it any options that fit your needs.
7487
- * When your component renders, `useExplorerQuery` returns an object from Apollo Client that contains loading, error, and data properties
7681
+ * To run a query within a React component, call `useExplorerAttributesQuery` and pass it any options that fit your needs.
7682
+ * When your component renders, `useExplorerAttributesQuery` returns an object from Apollo Client that contains loading, error, and data properties
7488
7683
  * you can use to render your UI.
7489
7684
  *
7490
7685
  * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
7491
7686
  *
7492
7687
  * @example
7493
- * const { data, loading, error } = useExplorerQuery({
7688
+ * const { data, loading, error } = useExplorerAttributesQuery({
7689
+ * variables: {
7690
+ * ids: // value for 'ids'
7691
+ * },
7692
+ * });
7693
+ */
7694
+ export declare function useExplorerAttributesQuery(baseOptions?: Apollo.QueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.QueryResult<ExplorerAttributesQuery, Exact<{
7695
+ ids?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7696
+ }>>;
7697
+ export declare function useExplorerAttributesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerAttributesQuery, Exact<{
7698
+ ids?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7699
+ }>>;
7700
+ export type ExplorerAttributesQueryHookResult = ReturnType<typeof useExplorerAttributesQuery>;
7701
+ export type ExplorerAttributesLazyQueryHookResult = ReturnType<typeof useExplorerAttributesLazyQuery>;
7702
+ export type ExplorerAttributesQueryResult = Apollo.QueryResult<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>;
7703
+ export declare const ExplorerLinkAttributeDocument: Apollo.DocumentNode;
7704
+ /**
7705
+ * __useExplorerLinkAttributeQuery__
7706
+ *
7707
+ * To run a query within a React component, call `useExplorerLinkAttributeQuery` and pass it any options that fit your needs.
7708
+ * When your component renders, `useExplorerLinkAttributeQuery` returns an object from Apollo Client that contains loading, error, and data properties
7709
+ * you can use to render your UI.
7710
+ *
7711
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
7712
+ *
7713
+ * @example
7714
+ * const { data, loading, error } = useExplorerLinkAttributeQuery({
7715
+ * variables: {
7716
+ * id: // value for 'id'
7717
+ * },
7718
+ * });
7719
+ */
7720
+ export declare function useExplorerLinkAttributeQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>): Apollo.QueryResult<ExplorerLinkAttributeQuery, Exact<{
7721
+ id: Scalars["ID"];
7722
+ }>>;
7723
+ export declare function useExplorerLinkAttributeLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLinkAttributeQuery, Exact<{
7724
+ id: Scalars["ID"];
7725
+ }>>;
7726
+ export type ExplorerLinkAttributeQueryHookResult = ReturnType<typeof useExplorerLinkAttributeQuery>;
7727
+ export type ExplorerLinkAttributeLazyQueryHookResult = ReturnType<typeof useExplorerLinkAttributeLazyQuery>;
7728
+ export type ExplorerLinkAttributeQueryResult = Apollo.QueryResult<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>;
7729
+ export declare const ExplorerLibraryDataDocument: Apollo.DocumentNode;
7730
+ /**
7731
+ * __useExplorerLibraryDataQuery__
7732
+ *
7733
+ * To run a query within a React component, call `useExplorerLibraryDataQuery` and pass it any options that fit your needs.
7734
+ * When your component renders, `useExplorerLibraryDataQuery` returns an object from Apollo Client that contains loading, error, and data properties
7735
+ * you can use to render your UI.
7736
+ *
7737
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
7738
+ *
7739
+ * @example
7740
+ * const { data, loading, error } = useExplorerLibraryDataQuery({
7494
7741
  * variables: {
7495
7742
  * libraryId: // value for 'libraryId'
7496
7743
  * attributeIds: // value for 'attributeIds'
@@ -7501,7 +7748,7 @@ export declare const ExplorerDocument: Apollo.DocumentNode;
7501
7748
  * },
7502
7749
  * });
7503
7750
  */
7504
- export declare function useExplorerQuery(baseOptions: Apollo.QueryHookOptions<ExplorerQuery, ExplorerQueryVariables>): Apollo.QueryResult<ExplorerQuery, Exact<{
7751
+ export declare function useExplorerLibraryDataQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>): Apollo.QueryResult<ExplorerLibraryDataQuery, Exact<{
7505
7752
  libraryId: Scalars["ID"];
7506
7753
  attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
7507
7754
  pagination?: InputMaybe<RecordsPagination>;
@@ -7509,7 +7756,7 @@ export declare function useExplorerQuery(baseOptions: Apollo.QueryHookOptions<Ex
7509
7756
  multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
7510
7757
  searchQuery?: InputMaybe<Scalars["String"]>;
7511
7758
  }>>;
7512
- export declare function useExplorerLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerQuery, ExplorerQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerQuery, Exact<{
7759
+ export declare function useExplorerLibraryDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLibraryDataQuery, Exact<{
7513
7760
  libraryId: Scalars["ID"];
7514
7761
  attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
7515
7762
  pagination?: InputMaybe<RecordsPagination>;
@@ -7517,35 +7764,70 @@ export declare function useExplorerLazyQuery(baseOptions?: Apollo.LazyQueryHookO
7517
7764
  multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
7518
7765
  searchQuery?: InputMaybe<Scalars["String"]>;
7519
7766
  }>>;
7520
- export type ExplorerQueryHookResult = ReturnType<typeof useExplorerQuery>;
7521
- export type ExplorerLazyQueryHookResult = ReturnType<typeof useExplorerLazyQuery>;
7522
- export type ExplorerQueryResult = Apollo.QueryResult<ExplorerQuery, ExplorerQueryVariables>;
7523
- export declare const ExplorerLibraryDataDocument: Apollo.DocumentNode;
7767
+ export type ExplorerLibraryDataQueryHookResult = ReturnType<typeof useExplorerLibraryDataQuery>;
7768
+ export type ExplorerLibraryDataLazyQueryHookResult = ReturnType<typeof useExplorerLibraryDataLazyQuery>;
7769
+ export type ExplorerLibraryDataQueryResult = Apollo.QueryResult<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>;
7770
+ export declare const ExplorerLinkDataDocument: Apollo.DocumentNode;
7524
7771
  /**
7525
- * __useExplorerLibraryDataQuery__
7772
+ * __useExplorerLinkDataQuery__
7526
7773
  *
7527
- * To run a query within a React component, call `useExplorerLibraryDataQuery` and pass it any options that fit your needs.
7528
- * When your component renders, `useExplorerLibraryDataQuery` returns an object from Apollo Client that contains loading, error, and data properties
7774
+ * To run a query within a React component, call `useExplorerLinkDataQuery` and pass it any options that fit your needs.
7775
+ * When your component renders, `useExplorerLinkDataQuery` returns an object from Apollo Client that contains loading, error, and data properties
7529
7776
  * you can use to render your UI.
7530
7777
  *
7531
7778
  * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
7532
7779
  *
7533
7780
  * @example
7534
- * const { data, loading, error } = useExplorerLibraryDataQuery({
7781
+ * const { data, loading, error } = useExplorerLinkDataQuery({
7782
+ * variables: {
7783
+ * attributeIds: // value for 'attributeIds'
7784
+ * parentLibraryId: // value for 'parentLibraryId'
7785
+ * parentRecordId: // value for 'parentRecordId'
7786
+ * linkAttributeId: // value for 'linkAttributeId'
7787
+ * },
7788
+ * });
7789
+ */
7790
+ export declare function useExplorerLinkDataQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>): Apollo.QueryResult<ExplorerLinkDataQuery, Exact<{
7791
+ attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
7792
+ parentLibraryId: Scalars["ID"];
7793
+ parentRecordId?: InputMaybe<Scalars["String"]>;
7794
+ linkAttributeId: Scalars["ID"];
7795
+ }>>;
7796
+ export declare function useExplorerLinkDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLinkDataQuery, Exact<{
7797
+ attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
7798
+ parentLibraryId: Scalars["ID"];
7799
+ parentRecordId?: InputMaybe<Scalars["String"]>;
7800
+ linkAttributeId: Scalars["ID"];
7801
+ }>>;
7802
+ export type ExplorerLinkDataQueryHookResult = ReturnType<typeof useExplorerLinkDataQuery>;
7803
+ export type ExplorerLinkDataLazyQueryHookResult = ReturnType<typeof useExplorerLinkDataLazyQuery>;
7804
+ export type ExplorerLinkDataQueryResult = Apollo.QueryResult<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>;
7805
+ export declare const ExplorerLibraryDetailsDocument: Apollo.DocumentNode;
7806
+ /**
7807
+ * __useExplorerLibraryDetailsQuery__
7808
+ *
7809
+ * To run a query within a React component, call `useExplorerLibraryDetailsQuery` and pass it any options that fit your needs.
7810
+ * When your component renders, `useExplorerLibraryDetailsQuery` returns an object from Apollo Client that contains loading, error, and data properties
7811
+ * you can use to render your UI.
7812
+ *
7813
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
7814
+ *
7815
+ * @example
7816
+ * const { data, loading, error } = useExplorerLibraryDetailsQuery({
7535
7817
  * variables: {
7536
7818
  * libraryId: // value for 'libraryId'
7537
7819
  * },
7538
7820
  * });
7539
7821
  */
7540
- export declare function useExplorerLibraryDataQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>): Apollo.QueryResult<ExplorerLibraryDataQuery, Exact<{
7822
+ export declare function useExplorerLibraryDetailsQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>): Apollo.QueryResult<ExplorerLibraryDetailsQuery, Exact<{
7541
7823
  libraryId: Scalars["ID"];
7542
7824
  }>>;
7543
- export declare function useExplorerLibraryDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLibraryDataQuery, Exact<{
7825
+ export declare function useExplorerLibraryDetailsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLibraryDetailsQuery, Exact<{
7544
7826
  libraryId: Scalars["ID"];
7545
7827
  }>>;
7546
- export type ExplorerLibraryDataQueryHookResult = ReturnType<typeof useExplorerLibraryDataQuery>;
7547
- export type ExplorerLibraryDataLazyQueryHookResult = ReturnType<typeof useExplorerLibraryDataLazyQuery>;
7548
- export type ExplorerLibraryDataQueryResult = Apollo.QueryResult<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>;
7828
+ export type ExplorerLibraryDetailsQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsQuery>;
7829
+ export type ExplorerLibraryDetailsLazyQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsLazyQuery>;
7830
+ export type ExplorerLibraryDetailsQueryResult = Apollo.QueryResult<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>;
7549
7831
  export declare const TreeDataQueryDocument: Apollo.DocumentNode;
7550
7832
  /**
7551
7833
  * __useTreeDataQueryQuery__