@leav/ui 0.4.0-68fec6f → 0.4.0-72d37f7
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.
- package/dist/__mocks__/common/form.js +5 -1
- package/dist/__mocks__/common/form.js.map +1 -1
- package/dist/__mocks__/common/value.d.ts +1 -2
- package/dist/__mocks__/common/value.js +0 -11
- package/dist/__mocks__/common/value.js.map +1 -1
- package/dist/_gqlTypes/index.d.ts +327 -0
- package/dist/_gqlTypes/index.js +174 -0
- package/dist/_gqlTypes/index.js.map +1 -1
- package/dist/_queries/attributes/attributeDetailsFragment.js +1 -0
- package/dist/_queries/attributes/attributeDetailsFragment.js.map +1 -1
- package/dist/_queries/records/activateRecordsMutation.d.ts +1 -0
- package/dist/_queries/records/activateRecordsMutation.js +15 -0
- package/dist/_queries/records/activateRecordsMutation.js.map +1 -0
- package/dist/_queries/records/getRecordFormQuery.js +4 -0
- package/dist/_queries/records/getRecordFormQuery.js.map +1 -1
- package/dist/components/CreateDirectory/CreateDirectory.js +4 -4
- package/dist/components/CreateDirectory/CreateDirectory.js.map +1 -1
- package/dist/components/EditLibraryModal/EditLibrary/EditLibraryAttributes/AttributesList/DeleteButton/DeleteButton.js +3 -2
- package/dist/components/EditLibraryModal/EditLibrary/EditLibraryAttributes/AttributesList/DeleteButton/DeleteButton.js.map +1 -1
- package/dist/components/EditTreeModal/EditTree/EditTreeInfo/EditTreeInfoForm/TreeLibrariesForm/TreeLibrariesForm.js +8 -1
- package/dist/components/EditTreeModal/EditTree/EditTreeInfo/EditTreeInfoForm/TreeLibrariesForm/TreeLibrariesForm.js.map +1 -1
- package/dist/components/ErrorBoundary/ErrorBoundaryContent/ErrorBoundaryContent.d.ts +2 -2
- package/dist/components/ErrorBoundary/ErrorBoundaryContent/ErrorBoundaryContent.js +4 -3
- package/dist/components/ErrorBoundary/ErrorBoundaryContent/ErrorBoundaryContent.js.map +1 -1
- package/dist/components/Explorer/DataView.d.ts +2 -1
- package/dist/components/Explorer/DataView.js +31 -11
- package/dist/components/Explorer/DataView.js.map +1 -1
- package/dist/components/Explorer/Explorer.d.ts +5 -4
- package/dist/components/Explorer/Explorer.js +25 -11
- package/dist/components/Explorer/Explorer.js.map +1 -1
- package/dist/components/Explorer/IdCard.js +1 -1
- package/dist/components/Explorer/IdCard.js.map +1 -1
- package/dist/components/Explorer/TableCell.js +22 -11
- package/dist/components/Explorer/TableCell.js.map +1 -1
- package/dist/components/Explorer/TableTagGroup.d.ts +0 -1
- package/dist/components/Explorer/TableTagGroup.js +3 -16
- package/dist/components/Explorer/TableTagGroup.js.map +1 -1
- package/dist/components/Explorer/_constants.d.ts +3 -0
- package/dist/components/Explorer/_constants.js +3 -0
- package/dist/components/Explorer/_constants.js.map +1 -1
- package/dist/components/Explorer/_queries/useExplorerData.d.ts +1 -0
- package/dist/components/Explorer/_queries/useExplorerData.js +20 -10
- package/dist/components/Explorer/_queries/useExplorerData.js.map +1 -1
- package/dist/components/Explorer/_types.d.ts +7 -3
- package/dist/components/Explorer/_types.js.map +1 -1
- package/dist/components/Explorer/actions-item/useEditItemAction.d.ts +2 -1
- package/dist/components/Explorer/actions-item/useEditItemAction.js +4 -2
- package/dist/components/Explorer/actions-item/useEditItemAction.js.map +1 -1
- package/dist/components/Explorer/actions-item/{useRemoveItemAction.d.ts → useEditStatusItemAction.d.ts} +4 -2
- package/dist/components/Explorer/actions-item/{useRemoveItemAction.js → useEditStatusItemAction.js} +81 -24
- package/dist/components/Explorer/actions-item/useEditStatusItemAction.js.map +1 -0
- package/dist/components/Explorer/actions-item/useReplaceItemAction.d.ts +21 -0
- package/dist/components/Explorer/actions-item/useReplaceItemAction.js +42 -0
- package/dist/components/Explorer/actions-item/useReplaceItemAction.js.map +1 -0
- package/dist/components/Explorer/actions-mass/useDeactivateMassAction.d.ts +2 -1
- package/dist/components/Explorer/actions-mass/useDeactivateMassAction.js +12 -3
- package/dist/components/Explorer/actions-mass/useDeactivateMassAction.js.map +1 -1
- package/dist/components/Explorer/actions-mass/useDeleteLinkValues.js +5 -5
- package/dist/components/Explorer/actions-mass/useDeleteLinkValues.js.map +1 -1
- package/dist/components/Explorer/actions-primary/useCreatePrimaryAction.d.ts +2 -1
- package/dist/components/Explorer/actions-primary/useCreatePrimaryAction.js +11 -3
- package/dist/components/Explorer/actions-primary/useCreatePrimaryAction.js.map +1 -1
- package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.d.ts +5 -2
- package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.js +20 -4
- package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.js.map +1 -1
- package/dist/components/Explorer/link-item/LinkModal.d.ts +2 -0
- package/dist/components/Explorer/link-item/LinkModal.js +14 -4
- package/dist/components/Explorer/link-item/LinkModal.js.map +1 -1
- package/dist/components/Explorer/link-item/{useLinkMassAction.d.ts → useAddLinkMassAction.d.ts} +1 -1
- package/dist/components/Explorer/link-item/{useLinkMassAction.js → useAddLinkMassAction.js} +2 -2
- package/dist/components/Explorer/link-item/useAddLinkMassAction.js.map +1 -0
- package/dist/components/Explorer/link-item/useReplaceLinkMassAction.d.ts +23 -0
- package/dist/components/Explorer/link-item/useReplaceLinkMassAction.js +35 -0
- package/dist/components/Explorer/link-item/useReplaceLinkMassAction.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/_shared/useAttributeDetailsData.js +11 -9
- package/dist/components/Explorer/manage-view-settings/_shared/useAttributeDetailsData.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/_shared/useTransformFilters.d.ts +4 -0
- package/dist/components/Explorer/manage-view-settings/_shared/useTransformFilters.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.js +1 -1
- package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.js.map +1 -1
- package/dist/components/Explorer/useColumnWidth.js +2 -1
- package/dist/components/Explorer/useColumnWidth.js.map +1 -1
- package/dist/components/Explorer/useLoadView.js +4 -2
- package/dist/components/Explorer/useLoadView.js.map +1 -1
- package/dist/components/Explorer/usePagination.d.ts +2 -1
- package/dist/components/Explorer/usePagination.js.map +1 -1
- package/dist/components/Explorer/useSearchInput.d.ts +3 -1
- package/dist/components/Explorer/useSearchInput.js +2 -1
- package/dist/components/Explorer/useSearchInput.js.map +1 -1
- package/dist/components/Explorer/useViewSettingsReducer.d.ts +1 -1
- package/dist/components/Explorer/useViewSettingsReducer.js +43 -19
- package/dist/components/Explorer/useViewSettingsReducer.js.map +1 -1
- package/dist/components/ImportModal/ImportModalConfigStep/ImportModalConfigStep.js +1 -1
- package/dist/components/ImportModal/ImportModalConfigStep/ImportModalConfigStep.js.map +1 -1
- package/dist/components/LibraryItemsList/CreateNewRecordButton/CreateNewRecordButton.js +1 -0
- package/dist/components/LibraryItemsList/CreateNewRecordButton/CreateNewRecordButton.js.map +1 -1
- package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.js +2 -2
- package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.js.map +1 -1
- package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.utils.js +2 -2
- package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.utils.js.map +1 -1
- package/dist/components/LibraryItemsList/LibraryItemsListTable/Cell/typeGuards.d.ts +4 -0
- package/dist/components/LibraryItemsList/LibraryItemsListTable/Cell/typeGuards.js +4 -1
- package/dist/components/LibraryItemsList/LibraryItemsListTable/Cell/typeGuards.js.map +1 -1
- package/dist/components/LibraryItemsList/shared/DeactivateRecordBtn/DeactivateRecordBtn.js +3 -3
- package/dist/components/LibraryItemsList/shared/DeactivateRecordBtn/DeactivateRecordBtn.js.map +1 -1
- package/dist/components/LinkSelect/LinkSelect.d.ts +15 -0
- package/dist/components/LinkSelect/LinkSelect.js +88 -0
- package/dist/components/LinkSelect/LinkSelect.js.map +1 -0
- package/dist/components/LinkSelect/index.d.ts +2 -0
- package/dist/components/{RecordEdition/EditRecordContent/uiElements/LinkField/ValuesAdd → LinkSelect}/index.js +2 -2
- package/dist/components/LinkSelect/index.js.map +1 -0
- package/dist/components/RecordEdition/EditRecord/EditRecord.d.ts +2 -4
- package/dist/components/RecordEdition/EditRecord/EditRecord.js +37 -39
- package/dist/components/RecordEdition/EditRecord/EditRecord.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordButtons/EditRecordButtons.d.ts +2 -0
- package/dist/components/RecordEdition/EditRecordButtons/EditRecordButtons.js +43 -0
- package/dist/components/RecordEdition/EditRecordButtons/EditRecordButtons.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordButtons/SidebarButton.d.ts +2 -0
- package/dist/components/RecordEdition/EditRecordButtons/SidebarButton.js +25 -0
- package/dist/components/RecordEdition/EditRecordButtons/SidebarButton.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordButtons/index.d.ts +2 -0
- package/dist/components/RecordEdition/{EditRecordContent/uiElements/TreeField/TreeFieldValue → EditRecordButtons}/index.js +2 -2
- package/dist/components/RecordEdition/EditRecordButtons/index.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.d.ts +3 -1
- package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js +12 -3
- package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/_types.d.ts +5 -0
- package/dist/components/RecordEdition/EditRecordContent/_types.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/formConstants.d.ts +1 -0
- package/dist/components/RecordEdition/EditRecordContent/formConstants.js +1 -0
- package/dist/components/RecordEdition/EditRecordContent/formConstants.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/Container/Container.d.ts +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/Container/Container.js +2 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/Container/Container.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.d.ts +8 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.js +102 -92
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useEditRecord.d.ts +5 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useEditRecord.js +39 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useEditRecord.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useUnselectRecord.d.ts +8 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useUnselectRecord.js +23 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useUnselectRecord.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-mass/useUnselectAllRecords.d.ts +9 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-mass/useUnselectAllRecords.js +23 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-mass/useUnselectAllRecords.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useCreateRecord.d.ts +8 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useCreateRecord.js +26 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useCreateRecord.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useRecordSelector.d.ts +12 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useRecordSelector.js +24 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useRecordSelector.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecords.d.ts +19 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecords.js +103 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecords.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecordsInCreation.d.ts +22 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecordsInCreation.js +104 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecordsInCreation.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecords.d.ts +22 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecords.js +85 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecords.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecordsInEdition.d.ts +27 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecordsInEdition.js +215 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecordsInEdition.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/ExplorerWrapper.d.ts +265 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/ExplorerWrapper.js +13 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/ExplorerWrapper.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/LinkActionsButtons.d.ts +9 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/LinkActionsButtons.js +15 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/LinkActionsButtons.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/utils.d.ts +4 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/utils.js +22 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/utils.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js +34 -47
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSBooleanWrapper.js +1 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSBooleanWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSColorPickerWrapper.js +1 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSColorPickerWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSDatePickerWrapper.js +1 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSDatePickerWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputEncryptedWrapper.js +2 -5
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputEncryptedWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputNumberWrapper.js +1 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputNumberWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputWrapper.js +1 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRangePickerWrapper.js +1 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRangePickerWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRichTextWrapper.js +1 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRichTextWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValue.d.ts +2 -3
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValue.js +2 -3
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValue.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/DSListSelect.js +5 -8
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/DSListSelect.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/_types.d.ts +1 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeField.d.ts +4 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeField.js +67 -215
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeField.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeFieldWrapper.d.ts +265 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeFieldWrapper.js +13 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeFieldWrapper.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeItem.d.ts +10 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeItem.js +51 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeItem.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/useDisplayTreeNode.d.ts +11 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/useDisplayTreeNode.js +8 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/useDisplayTreeNode.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/SelectTreeNodeModal.d.ts +15 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/SelectTreeNodeModal.js +44 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/SelectTreeNodeModal.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/useManageTreeNodeSelection.d.ts +23 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/useManageTreeNodeSelection.js +145 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/useManageTreeNodeSelection.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/{StandardField → shared}/ComputeIndicator.d.ts +4 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/ComputeIndicator.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/DeleteAllValuesButton.d.ts +8 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/{StandardField → shared}/DeleteAllValuesButton.js +2 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/DeleteAllValuesButton.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/calculatedInheritedFlags.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/useOutsideInteractionDetector.d.ts +17 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/useOutsideInteractionDetector.js +76 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/useOutsideInteractionDetector.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.d.ts +4 -0
- package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.js +51 -51
- package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.d.ts +3 -1
- package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.js +9 -7
- package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordSidebar/Breacrumb/Breadcrumb.js +2 -2
- package/dist/components/RecordEdition/EditRecordSidebar/Breacrumb/Breadcrumb.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.d.ts +0 -1
- package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.js +18 -12
- package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordSidebar/ValuesSummary/ValuesSummary.js +3 -0
- package/dist/components/RecordEdition/EditRecordSidebar/ValuesSummary/ValuesSummary.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordSidebar/ValuesVersions/ValuesVersions.js +2 -2
- package/dist/components/RecordEdition/EditRecordSidebar/ValuesVersions/ValuesVersions.js.map +1 -1
- package/dist/components/RecordEdition/constants.d.ts +2 -0
- package/dist/components/RecordEdition/constants.js +6 -0
- package/dist/components/RecordEdition/constants.js.map +1 -0
- package/dist/components/RecordEdition/editRecordReducer/editRecordReducer.d.ts +29 -3
- package/dist/components/RecordEdition/editRecordReducer/editRecordReducer.js +65 -5
- package/dist/components/RecordEdition/editRecordReducer/editRecordReducer.js.map +1 -1
- package/dist/components/RecordEdition/hooks/useGetSubmitButtons.d.ts +1 -1
- package/dist/components/RecordEdition/hooks/useGetSubmitButtons.js +3 -3
- package/dist/components/RecordEdition/hooks/useGetSubmitButtons.js.map +1 -1
- package/dist/components/RecordEdition/index.d.ts +2 -0
- package/dist/components/RecordEdition/index.js +2 -0
- package/dist/components/RecordEdition/index.js.map +1 -1
- package/dist/components/SelectRecordForLinkModal/SelectRecordForLinkModal.d.ts +2 -0
- package/dist/components/SelectRecordForLinkModal/SelectRecordForLinkModal.js +8 -6
- package/dist/components/SelectRecordForLinkModal/SelectRecordForLinkModal.js.map +1 -1
- package/dist/components/SelectTreeNode/SelectTreeNode.d.ts +3 -1
- package/dist/components/SelectTreeNode/SelectTreeNode.js +4 -4
- package/dist/components/SelectTreeNode/SelectTreeNode.js.map +1 -1
- package/dist/components/SelectTreeNode/SelectTreeNodeContent.d.ts +3 -1
- package/dist/components/SelectTreeNode/SelectTreeNodeContent.js +14 -6
- package/dist/components/SelectTreeNode/SelectTreeNodeContent.js.map +1 -1
- package/dist/components/SelectTreeNode/SelectTreeNodeContentSkeleton.d.ts +2 -0
- package/dist/components/SelectTreeNode/SelectTreeNodeContentSkeleton.js +17 -0
- package/dist/components/SelectTreeNode/SelectTreeNodeContentSkeleton.js.map +1 -0
- package/dist/components/SelectTreeNode/TreeNodeTitle.d.ts +9 -0
- package/dist/components/SelectTreeNode/TreeNodeTitle.js +8 -0
- package/dist/components/SelectTreeNode/TreeNodeTitle.js.map +1 -0
- package/dist/components/SelectTreeNodeModal/SelectTreeNodeModal.js +1 -1
- package/dist/components/SelectTreeNodeModal/SelectTreeNodeModal.js.map +1 -1
- package/dist/components/SimpleErrorBoundary/SimpleErrorBoundary.d.ts +1 -1
- package/dist/components/SimpleErrorBoundary/SimpleErrorBoundary.js.map +1 -1
- package/dist/components/SimpleErrorBoundary/SimpleErrorBoundaryContent/SimpleErrorBoundaryContent.d.ts +2 -2
- package/dist/components/SimpleErrorBoundary/SimpleErrorBoundaryContent/SimpleErrorBoundaryContent.js +6 -3
- package/dist/components/SimpleErrorBoundary/SimpleErrorBoundaryContent/SimpleErrorBoundaryContent.js.map +1 -1
- package/dist/components/UploadFiles/UploadFiles.js +4 -4
- package/dist/components/UploadFiles/UploadFiles.js.map +1 -1
- package/dist/components/index.d.ts +0 -1
- package/dist/components/index.js +0 -1
- package/dist/components/index.js.map +1 -1
- package/dist/constants.d.ts +3 -1
- package/dist/constants.js +3 -1
- package/dist/constants.js.map +1 -1
- package/dist/contexts/LangContext/LangContext.d.ts +1 -2
- package/dist/contexts/LangContext/LangContext.js +2 -2
- package/dist/contexts/LangContext/LangContext.js.map +1 -1
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/index.js +1 -0
- package/dist/hooks/index.js.map +1 -1
- package/dist/hooks/useAppLang/useAppLang.js.map +1 -1
- package/dist/hooks/useGetRecordForm/useGetRecordForm.js +1 -1
- package/dist/hooks/useGetRecordForm/useGetRecordForm.js.map +1 -1
- package/dist/hooks/useIFrameMessenger/messageHandlers.d.ts +14 -0
- package/dist/hooks/useIFrameMessenger/messageHandlers.js +118 -0
- package/dist/hooks/useIFrameMessenger/messageHandlers.js.map +1 -0
- package/dist/hooks/useIFrameMessenger/types.d.ts +92 -0
- package/dist/hooks/useIFrameMessenger/types.js +2 -0
- package/dist/hooks/useIFrameMessenger/types.js.map +1 -0
- package/dist/hooks/useIFrameMessenger/useIFrameMessenger.d.ts +11 -0
- package/dist/hooks/useIFrameMessenger/useIFrameMessenger.js +73 -0
- package/dist/hooks/useIFrameMessenger/useIFrameMessenger.js.map +1 -0
- package/dist/hooks/useRedirectToLogin/useRedirectToLogin.js +1 -1
- package/dist/hooks/useRedirectToLogin/useRedirectToLogin.js.map +1 -1
- package/dist/locales/en/shared.json +16 -1
- package/dist/locales/fr/shared.json +16 -1
- package/dist/types/attributes.d.ts +2 -1
- package/dist/types/trees.d.ts +1 -0
- package/package.json +3 -4
- package/dist/components/Explorer/actions-item/useRemoveItemAction.js.map +0 -1
- package/dist/components/Explorer/link-item/useLinkMassAction.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/FloatingMenuHandler/FloatingMenuHandler.d.ts +0 -14
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/FloatingMenuHandler/FloatingMenuHandler.js +0 -29
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/FloatingMenuHandler/FloatingMenuHandler.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/FloatingMenuHandler/index.d.ts +0 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/FloatingMenuHandler/index.js +0 -6
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/FloatingMenuHandler/index.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MonoValueSelect/MonoValueSelect.d.ts +0 -20
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MonoValueSelect/MonoValueSelect.js +0 -53
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MonoValueSelect/MonoValueSelect.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MonoValueSelect/useGetOptionsQuery.d.ts +0 -19
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MonoValueSelect/useGetOptionsQuery.js +0 -111
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MonoValueSelect/useGetOptionsQuery.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MultiValueSelect/MultiValueSelect.d.ts +0 -20
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MultiValueSelect/MultiValueSelect.js +0 -71
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MultiValueSelect/MultiValueSelect.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MultiValueSelect/useGetOptionsQuery.d.ts +0 -14
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MultiValueSelect/useGetOptionsQuery.js +0 -58
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MultiValueSelect/useGetOptionsQuery.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/RecordIdentityCell/RecordIdentityCell.d.ts +0 -6
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/RecordIdentityCell/RecordIdentityCell.js +0 -11
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/RecordIdentityCell/RecordIdentityCell.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/RecordIdentityCell/index.d.ts +0 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/RecordIdentityCell/index.js +0 -6
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/RecordIdentityCell/index.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/ValuesAdd/QuickSearch/QuickSearch.d.ts +0 -13
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/ValuesAdd/QuickSearch/QuickSearch.js +0 -50
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/ValuesAdd/QuickSearch/QuickSearch.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/ValuesAdd/QuickSearch/index.d.ts +0 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/ValuesAdd/QuickSearch/index.js +0 -6
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/ValuesAdd/QuickSearch/index.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/ValuesAdd/ValuesAdd.d.ts +0 -9
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/ValuesAdd/ValuesAdd.js +0 -215
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/ValuesAdd/ValuesAdd.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/ValuesAdd/index.d.ts +0 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/ValuesAdd/index.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/ComputeIndicator.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/DeleteAllValuesButton.d.ts +0 -4
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/DeleteAllValuesButton.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/calculatedInheritedFlags.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeFieldValue/TreeFieldValue.d.ts +0 -10
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeFieldValue/TreeFieldValue.js +0 -50
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeFieldValue/TreeFieldValue.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeFieldValue/index.d.ts +0 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeFieldValue/index.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/ValuesAdd/ValuesAdd.d.ts +0 -9
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/ValuesAdd/ValuesAdd.js +0 -106
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/ValuesAdd/ValuesAdd.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/ValuesAdd/index.d.ts +0 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/ValuesAdd/index.js +0 -6
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/ValuesAdd/index.js.map +0 -1
- /package/dist/components/RecordEdition/EditRecordContent/uiElements/{StandardField → shared}/ComputeIndicator.js +0 -0
- /package/dist/components/RecordEdition/EditRecordContent/uiElements/{StandardField → shared}/calculatedInheritedFlags.d.ts +0 -0
- /package/dist/components/RecordEdition/EditRecordContent/uiElements/{StandardField → shared}/calculatedInheritedFlags.js +0 -0
|
@@ -136,11 +136,13 @@ export type AttributeInput = {
|
|
|
136
136
|
linked_library?: InputMaybe<Scalars['String']>;
|
|
137
137
|
linked_tree?: InputMaybe<Scalars['String']>;
|
|
138
138
|
metadata_fields?: InputMaybe<Array<Scalars['String']>>;
|
|
139
|
+
multi_link_display_option?: InputMaybe<MultiLinkDisplayOption>;
|
|
139
140
|
multiple_values?: InputMaybe<Scalars['Boolean']>;
|
|
140
141
|
permissions_conf?: InputMaybe<TreepermissionsConfInput>;
|
|
141
142
|
readonly?: InputMaybe<Scalars['Boolean']>;
|
|
142
143
|
required?: InputMaybe<Scalars['Boolean']>;
|
|
143
144
|
reverse_link?: InputMaybe<Scalars['String']>;
|
|
145
|
+
settings?: InputMaybe<Scalars['JSONObject']>;
|
|
144
146
|
type?: InputMaybe<AttributeType>;
|
|
145
147
|
unique?: InputMaybe<Scalars['Boolean']>;
|
|
146
148
|
values_list?: InputMaybe<ValuesListConfInput>;
|
|
@@ -246,6 +248,11 @@ export type FormInput = {
|
|
|
246
248
|
id: Scalars['ID'];
|
|
247
249
|
label?: InputMaybe<Scalars['SystemTranslation']>;
|
|
248
250
|
library: Scalars['ID'];
|
|
251
|
+
sidePanel?: InputMaybe<FormSidePanelInput>;
|
|
252
|
+
};
|
|
253
|
+
export type FormSidePanelInput = {
|
|
254
|
+
enable: Scalars['Boolean'];
|
|
255
|
+
isOpenByDefault: Scalars['Boolean'];
|
|
249
256
|
};
|
|
250
257
|
export declare enum FormsSortableFields {
|
|
251
258
|
id = "id",
|
|
@@ -261,6 +268,7 @@ export type GlobalSettingsInput = {
|
|
|
261
268
|
favicon?: InputMaybe<GlobalSettingsFileInput>;
|
|
262
269
|
icon?: InputMaybe<GlobalSettingsFileInput>;
|
|
263
270
|
name?: InputMaybe<Scalars['String']>;
|
|
271
|
+
settings?: InputMaybe<Scalars['JSONObject']>;
|
|
264
272
|
};
|
|
265
273
|
export declare enum IoTypes {
|
|
266
274
|
boolean = "boolean",
|
|
@@ -292,6 +300,7 @@ export declare enum LibrariesSortableFields {
|
|
|
292
300
|
export declare enum LibraryBehavior {
|
|
293
301
|
directories = "directories",
|
|
294
302
|
files = "files",
|
|
303
|
+
join = "join",
|
|
295
304
|
standard = "standard"
|
|
296
305
|
}
|
|
297
306
|
export type LibraryIconInput = {
|
|
@@ -306,9 +315,11 @@ export type LibraryInput = {
|
|
|
306
315
|
icon?: InputMaybe<LibraryIconInput>;
|
|
307
316
|
id: Scalars['ID'];
|
|
308
317
|
label?: InputMaybe<Scalars['SystemTranslation']>;
|
|
318
|
+
mandatoryAttribute?: InputMaybe<Scalars['ID']>;
|
|
309
319
|
permissions_conf?: InputMaybe<TreepermissionsConfInput>;
|
|
310
320
|
previewsSettings?: InputMaybe<Array<LibraryPreviewsSettingsInput>>;
|
|
311
321
|
recordIdentityConf?: InputMaybe<RecordIdentityConfInput>;
|
|
322
|
+
settings?: InputMaybe<Scalars['JSONObject']>;
|
|
312
323
|
};
|
|
313
324
|
export type LibraryPreviewsSettingsInput = {
|
|
314
325
|
description?: InputMaybe<Scalars['SystemTranslationOptional']>;
|
|
@@ -335,6 +346,7 @@ export declare enum LogAction {
|
|
|
335
346
|
PERMISSION_SAVE = "PERMISSION_SAVE",
|
|
336
347
|
RECORD_DELETE = "RECORD_DELETE",
|
|
337
348
|
RECORD_SAVE = "RECORD_SAVE",
|
|
349
|
+
SDO_LOG_EXPORT_RECORD = "SDO_LOG_EXPORT_RECORD",
|
|
338
350
|
TASKS_DELETE = "TASKS_DELETE",
|
|
339
351
|
TREE_ADD_ELEMENT = "TREE_ADD_ELEMENT",
|
|
340
352
|
TREE_DELETE = "TREE_DELETE",
|
|
@@ -389,6 +401,11 @@ export type LogTopicRecordFilterInput = {
|
|
|
389
401
|
id?: InputMaybe<Scalars['String']>;
|
|
390
402
|
libraryId?: InputMaybe<Scalars['String']>;
|
|
391
403
|
};
|
|
404
|
+
export declare enum MultiLinkDisplayOption {
|
|
405
|
+
avatar = "avatar",
|
|
406
|
+
badge_qty = "badge_qty",
|
|
407
|
+
tag = "tag"
|
|
408
|
+
}
|
|
392
409
|
export type Pagination = {
|
|
393
410
|
limit: Scalars['Int'];
|
|
394
411
|
offset: Scalars['Int'];
|
|
@@ -640,6 +657,7 @@ export type TreeInput = {
|
|
|
640
657
|
label?: InputMaybe<Scalars['SystemTranslation']>;
|
|
641
658
|
libraries?: InputMaybe<Array<TreeLibraryInput>>;
|
|
642
659
|
permissions_conf?: InputMaybe<Array<TreeNodePermissionsConfInput>>;
|
|
660
|
+
settings?: InputMaybe<Scalars['JSONObject']>;
|
|
643
661
|
};
|
|
644
662
|
export type TreeLibraryInput = {
|
|
645
663
|
library: Scalars['ID'];
|
|
@@ -681,11 +699,13 @@ export type ValueBatchInput = {
|
|
|
681
699
|
attribute?: InputMaybe<Scalars['ID']>;
|
|
682
700
|
id_value?: InputMaybe<Scalars['ID']>;
|
|
683
701
|
metadata?: InputMaybe<Array<InputMaybe<ValueMetadataInput>>>;
|
|
702
|
+
/** Use "\__empty_value__" to set an empty value */
|
|
684
703
|
payload?: InputMaybe<Scalars['String']>;
|
|
685
704
|
};
|
|
686
705
|
export type ValueInput = {
|
|
687
706
|
id_value?: InputMaybe<Scalars['ID']>;
|
|
688
707
|
metadata?: InputMaybe<Array<InputMaybe<ValueMetadataInput>>>;
|
|
708
|
+
/** Use "\__empty_value__" to set an empty value */
|
|
689
709
|
payload?: InputMaybe<Scalars['String']>;
|
|
690
710
|
version?: InputMaybe<Array<InputMaybe<ValueVersionInput>>>;
|
|
691
711
|
};
|
|
@@ -823,6 +843,7 @@ export type AttributeDetailsLinkAttributeFragment = {
|
|
|
823
843
|
label?: any | null;
|
|
824
844
|
description?: any | null;
|
|
825
845
|
multiple_values: boolean;
|
|
846
|
+
multi_link_display_option?: MultiLinkDisplayOption | null;
|
|
826
847
|
linked_library?: {
|
|
827
848
|
id: string;
|
|
828
849
|
label?: any | null;
|
|
@@ -860,6 +881,7 @@ export type AttributeDetailsStandardAttributeFragment = {
|
|
|
860
881
|
label?: any | null;
|
|
861
882
|
description?: any | null;
|
|
862
883
|
multiple_values: boolean;
|
|
884
|
+
multi_link_display_option?: MultiLinkDisplayOption | null;
|
|
863
885
|
metadata_fields?: Array<{
|
|
864
886
|
id: string;
|
|
865
887
|
label?: any | null;
|
|
@@ -892,6 +914,7 @@ export type AttributeDetailsTreeAttributeFragment = {
|
|
|
892
914
|
label?: any | null;
|
|
893
915
|
description?: any | null;
|
|
894
916
|
multiple_values: boolean;
|
|
917
|
+
multi_link_display_option?: MultiLinkDisplayOption | null;
|
|
895
918
|
linked_tree?: {
|
|
896
919
|
id: string;
|
|
897
920
|
label?: any | null;
|
|
@@ -2561,6 +2584,66 @@ export type ViewDetailsFilterFragment = {
|
|
|
2561
2584
|
label?: any | null;
|
|
2562
2585
|
} | null;
|
|
2563
2586
|
};
|
|
2587
|
+
export type AttributesByLibAttributeWithPermissionsLinkAttributeFragment = {
|
|
2588
|
+
id: string;
|
|
2589
|
+
type: AttributeType;
|
|
2590
|
+
format?: AttributeFormat | null;
|
|
2591
|
+
label?: any | null;
|
|
2592
|
+
multiple_values: boolean;
|
|
2593
|
+
system: boolean;
|
|
2594
|
+
readonly: boolean;
|
|
2595
|
+
permissions: {
|
|
2596
|
+
access_attribute: boolean;
|
|
2597
|
+
};
|
|
2598
|
+
linked_library?: {
|
|
2599
|
+
id: string;
|
|
2600
|
+
} | null;
|
|
2601
|
+
};
|
|
2602
|
+
export type AttributesByLibAttributeWithPermissionsStandardAttributeFragment = {
|
|
2603
|
+
id: string;
|
|
2604
|
+
type: AttributeType;
|
|
2605
|
+
format?: AttributeFormat | null;
|
|
2606
|
+
label?: any | null;
|
|
2607
|
+
multiple_values: boolean;
|
|
2608
|
+
system: boolean;
|
|
2609
|
+
readonly: boolean;
|
|
2610
|
+
embedded_fields?: Array<{
|
|
2611
|
+
id: string;
|
|
2612
|
+
format?: AttributeFormat | null;
|
|
2613
|
+
label?: any | null;
|
|
2614
|
+
} | null> | null;
|
|
2615
|
+
permissions: {
|
|
2616
|
+
access_attribute: boolean;
|
|
2617
|
+
};
|
|
2618
|
+
};
|
|
2619
|
+
export type AttributesByLibAttributeWithPermissionsTreeAttributeFragment = {
|
|
2620
|
+
id: string;
|
|
2621
|
+
type: AttributeType;
|
|
2622
|
+
format?: AttributeFormat | null;
|
|
2623
|
+
label?: any | null;
|
|
2624
|
+
multiple_values: boolean;
|
|
2625
|
+
system: boolean;
|
|
2626
|
+
readonly: boolean;
|
|
2627
|
+
linked_tree?: {
|
|
2628
|
+
id: string;
|
|
2629
|
+
label?: any | null;
|
|
2630
|
+
libraries: Array<{
|
|
2631
|
+
library: {
|
|
2632
|
+
id: string;
|
|
2633
|
+
label?: any | null;
|
|
2634
|
+
};
|
|
2635
|
+
}>;
|
|
2636
|
+
} | null;
|
|
2637
|
+
permissions: {
|
|
2638
|
+
access_attribute: boolean;
|
|
2639
|
+
};
|
|
2640
|
+
};
|
|
2641
|
+
export type AttributesByLibAttributeWithPermissionsFragment = AttributesByLibAttributeWithPermissionsLinkAttributeFragment | AttributesByLibAttributeWithPermissionsStandardAttributeFragment | AttributesByLibAttributeWithPermissionsTreeAttributeFragment;
|
|
2642
|
+
export type AttributesByLibLinkAttributeWithPermissionsFragment = {
|
|
2643
|
+
linked_library?: {
|
|
2644
|
+
id: string;
|
|
2645
|
+
} | null;
|
|
2646
|
+
};
|
|
2564
2647
|
export type LinkAttributeDetailsFragment = {
|
|
2565
2648
|
label?: any | null;
|
|
2566
2649
|
linked_library?: {
|
|
@@ -2574,6 +2657,7 @@ export type AttributePropertiesFragment = {
|
|
|
2574
2657
|
type: AttributeType;
|
|
2575
2658
|
format?: AttributeFormat | null;
|
|
2576
2659
|
multiple_values: boolean;
|
|
2660
|
+
multi_link_display_option?: MultiLinkDisplayOption | null;
|
|
2577
2661
|
};
|
|
2578
2662
|
export type PropertyValueLinkValueFragment = {
|
|
2579
2663
|
linkPayload?: {
|
|
@@ -2626,6 +2710,7 @@ export type LinkPropertyLinkValueFragment = {
|
|
|
2626
2710
|
type: AttributeType;
|
|
2627
2711
|
format?: AttributeFormat | null;
|
|
2628
2712
|
multiple_values: boolean;
|
|
2713
|
+
multi_link_display_option?: MultiLinkDisplayOption | null;
|
|
2629
2714
|
};
|
|
2630
2715
|
values: Array<{
|
|
2631
2716
|
linkPayload?: {
|
|
@@ -2685,6 +2770,9 @@ export type LibraryAttributeLinkAttributeFragment = {
|
|
|
2685
2770
|
id: string;
|
|
2686
2771
|
type: AttributeType;
|
|
2687
2772
|
label?: any | null;
|
|
2773
|
+
permissions: {
|
|
2774
|
+
access_attribute: boolean;
|
|
2775
|
+
};
|
|
2688
2776
|
linked_library?: {
|
|
2689
2777
|
id: string;
|
|
2690
2778
|
label?: any | null;
|
|
@@ -2701,11 +2789,17 @@ export type LibraryAttributeStandardAttributeFragment = {
|
|
|
2701
2789
|
id: string;
|
|
2702
2790
|
type: AttributeType;
|
|
2703
2791
|
label?: any | null;
|
|
2792
|
+
permissions: {
|
|
2793
|
+
access_attribute: boolean;
|
|
2794
|
+
};
|
|
2704
2795
|
};
|
|
2705
2796
|
export type LibraryAttributeTreeAttributeFragment = {
|
|
2706
2797
|
id: string;
|
|
2707
2798
|
type: AttributeType;
|
|
2708
2799
|
label?: any | null;
|
|
2800
|
+
permissions: {
|
|
2801
|
+
access_attribute: boolean;
|
|
2802
|
+
};
|
|
2709
2803
|
};
|
|
2710
2804
|
export type LibraryAttributeFragment = LibraryAttributeLinkAttributeFragment | LibraryAttributeStandardAttributeFragment | LibraryAttributeTreeAttributeFragment;
|
|
2711
2805
|
export type LibraryAttributeLinkFragment = {
|
|
@@ -2840,6 +2934,7 @@ export type GetAttributeByIdQuery = {
|
|
|
2840
2934
|
label?: any | null;
|
|
2841
2935
|
description?: any | null;
|
|
2842
2936
|
multiple_values: boolean;
|
|
2937
|
+
multi_link_display_option?: MultiLinkDisplayOption | null;
|
|
2843
2938
|
linked_library?: {
|
|
2844
2939
|
id: string;
|
|
2845
2940
|
label?: any | null;
|
|
@@ -2876,6 +2971,7 @@ export type GetAttributeByIdQuery = {
|
|
|
2876
2971
|
label?: any | null;
|
|
2877
2972
|
description?: any | null;
|
|
2878
2973
|
multiple_values: boolean;
|
|
2974
|
+
multi_link_display_option?: MultiLinkDisplayOption | null;
|
|
2879
2975
|
metadata_fields?: Array<{
|
|
2880
2976
|
id: string;
|
|
2881
2977
|
label?: any | null;
|
|
@@ -2907,6 +3003,7 @@ export type GetAttributeByIdQuery = {
|
|
|
2907
3003
|
label?: any | null;
|
|
2908
3004
|
description?: any | null;
|
|
2909
3005
|
multiple_values: boolean;
|
|
3006
|
+
multi_link_display_option?: MultiLinkDisplayOption | null;
|
|
2910
3007
|
linked_tree?: {
|
|
2911
3008
|
id: string;
|
|
2912
3009
|
label?: any | null;
|
|
@@ -3049,6 +3146,7 @@ export type SaveAttributeMutation = {
|
|
|
3049
3146
|
label?: any | null;
|
|
3050
3147
|
description?: any | null;
|
|
3051
3148
|
multiple_values: boolean;
|
|
3149
|
+
multi_link_display_option?: MultiLinkDisplayOption | null;
|
|
3052
3150
|
linked_library?: {
|
|
3053
3151
|
id: string;
|
|
3054
3152
|
label?: any | null;
|
|
@@ -3085,6 +3183,7 @@ export type SaveAttributeMutation = {
|
|
|
3085
3183
|
label?: any | null;
|
|
3086
3184
|
description?: any | null;
|
|
3087
3185
|
multiple_values: boolean;
|
|
3186
|
+
multi_link_display_option?: MultiLinkDisplayOption | null;
|
|
3088
3187
|
metadata_fields?: Array<{
|
|
3089
3188
|
id: string;
|
|
3090
3189
|
label?: any | null;
|
|
@@ -3116,6 +3215,7 @@ export type SaveAttributeMutation = {
|
|
|
3116
3215
|
label?: any | null;
|
|
3117
3216
|
description?: any | null;
|
|
3118
3217
|
multiple_values: boolean;
|
|
3218
|
+
multi_link_display_option?: MultiLinkDisplayOption | null;
|
|
3119
3219
|
linked_tree?: {
|
|
3120
3220
|
id: string;
|
|
3121
3221
|
label?: any | null;
|
|
@@ -3569,6 +3669,27 @@ export type IsAllowedQuery = {
|
|
|
3569
3669
|
allowed?: boolean | null;
|
|
3570
3670
|
}> | null;
|
|
3571
3671
|
};
|
|
3672
|
+
export type ActivateRecordsMutationVariables = Exact<{
|
|
3673
|
+
libraryId: Scalars['String'];
|
|
3674
|
+
recordsIds?: InputMaybe<Array<Scalars['String']> | Scalars['String']>;
|
|
3675
|
+
filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
|
|
3676
|
+
}>;
|
|
3677
|
+
export type ActivateRecordsMutation = {
|
|
3678
|
+
activateRecords: Array<{
|
|
3679
|
+
id: string;
|
|
3680
|
+
whoAmI: {
|
|
3681
|
+
id: string;
|
|
3682
|
+
label?: string | null;
|
|
3683
|
+
subLabel?: string | null;
|
|
3684
|
+
color?: string | null;
|
|
3685
|
+
preview?: IPreviewScalar | null;
|
|
3686
|
+
library: {
|
|
3687
|
+
id: string;
|
|
3688
|
+
label?: any | null;
|
|
3689
|
+
};
|
|
3690
|
+
};
|
|
3691
|
+
}>;
|
|
3692
|
+
};
|
|
3572
3693
|
export type CreateRecordMutationVariables = Exact<{
|
|
3573
3694
|
library: Scalars['ID'];
|
|
3574
3695
|
data?: InputMaybe<CreateRecordDataInput>;
|
|
@@ -4361,6 +4482,10 @@ export type RecordFormQuery = {
|
|
|
4361
4482
|
value: any;
|
|
4362
4483
|
}>;
|
|
4363
4484
|
}>;
|
|
4485
|
+
sidePanel?: {
|
|
4486
|
+
enable: boolean;
|
|
4487
|
+
isOpenByDefault?: boolean | null;
|
|
4488
|
+
} | null;
|
|
4364
4489
|
} | null;
|
|
4365
4490
|
};
|
|
4366
4491
|
export type RecordUpdateSubscriptionVariables = Exact<{
|
|
@@ -4785,6 +4910,30 @@ export type RecordUpdateSubscription = {
|
|
|
4785
4910
|
}>;
|
|
4786
4911
|
};
|
|
4787
4912
|
};
|
|
4913
|
+
export type GetRecordsFromLibraryQueryVariables = Exact<{
|
|
4914
|
+
libraryId: Scalars['ID'];
|
|
4915
|
+
pagination?: InputMaybe<RecordsPagination>;
|
|
4916
|
+
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
4917
|
+
}>;
|
|
4918
|
+
export type GetRecordsFromLibraryQuery = {
|
|
4919
|
+
records: {
|
|
4920
|
+
totalCount?: number | null;
|
|
4921
|
+
list: Array<{
|
|
4922
|
+
id: string;
|
|
4923
|
+
whoAmI: {
|
|
4924
|
+
id: string;
|
|
4925
|
+
label?: string | null;
|
|
4926
|
+
subLabel?: string | null;
|
|
4927
|
+
color?: string | null;
|
|
4928
|
+
preview?: IPreviewScalar | null;
|
|
4929
|
+
library: {
|
|
4930
|
+
id: string;
|
|
4931
|
+
label?: any | null;
|
|
4932
|
+
};
|
|
4933
|
+
};
|
|
4934
|
+
}>;
|
|
4935
|
+
};
|
|
4936
|
+
};
|
|
4788
4937
|
export type IndexRecordsMutationVariables = Exact<{
|
|
4789
4938
|
libraryId: Scalars['String'];
|
|
4790
4939
|
records?: InputMaybe<Array<Scalars['String']> | Scalars['String']>;
|
|
@@ -6089,6 +6238,65 @@ export type SaveViewMutation = {
|
|
|
6089
6238
|
}> | null;
|
|
6090
6239
|
};
|
|
6091
6240
|
};
|
|
6241
|
+
export type GetAttributesByLibWithPermissionsQueryVariables = Exact<{
|
|
6242
|
+
library: Scalars['String'];
|
|
6243
|
+
}>;
|
|
6244
|
+
export type GetAttributesByLibWithPermissionsQuery = {
|
|
6245
|
+
attributes?: {
|
|
6246
|
+
list: Array<{
|
|
6247
|
+
id: string;
|
|
6248
|
+
type: AttributeType;
|
|
6249
|
+
format?: AttributeFormat | null;
|
|
6250
|
+
label?: any | null;
|
|
6251
|
+
multiple_values: boolean;
|
|
6252
|
+
system: boolean;
|
|
6253
|
+
readonly: boolean;
|
|
6254
|
+
linked_library?: {
|
|
6255
|
+
id: string;
|
|
6256
|
+
} | null;
|
|
6257
|
+
permissions: {
|
|
6258
|
+
access_attribute: boolean;
|
|
6259
|
+
};
|
|
6260
|
+
} | {
|
|
6261
|
+
id: string;
|
|
6262
|
+
type: AttributeType;
|
|
6263
|
+
format?: AttributeFormat | null;
|
|
6264
|
+
label?: any | null;
|
|
6265
|
+
multiple_values: boolean;
|
|
6266
|
+
system: boolean;
|
|
6267
|
+
readonly: boolean;
|
|
6268
|
+
embedded_fields?: Array<{
|
|
6269
|
+
id: string;
|
|
6270
|
+
format?: AttributeFormat | null;
|
|
6271
|
+
label?: any | null;
|
|
6272
|
+
} | null> | null;
|
|
6273
|
+
permissions: {
|
|
6274
|
+
access_attribute: boolean;
|
|
6275
|
+
};
|
|
6276
|
+
} | {
|
|
6277
|
+
id: string;
|
|
6278
|
+
type: AttributeType;
|
|
6279
|
+
format?: AttributeFormat | null;
|
|
6280
|
+
label?: any | null;
|
|
6281
|
+
multiple_values: boolean;
|
|
6282
|
+
system: boolean;
|
|
6283
|
+
readonly: boolean;
|
|
6284
|
+
linked_tree?: {
|
|
6285
|
+
id: string;
|
|
6286
|
+
label?: any | null;
|
|
6287
|
+
libraries: Array<{
|
|
6288
|
+
library: {
|
|
6289
|
+
id: string;
|
|
6290
|
+
label?: any | null;
|
|
6291
|
+
};
|
|
6292
|
+
}>;
|
|
6293
|
+
} | null;
|
|
6294
|
+
permissions: {
|
|
6295
|
+
access_attribute: boolean;
|
|
6296
|
+
};
|
|
6297
|
+
}>;
|
|
6298
|
+
} | null;
|
|
6299
|
+
};
|
|
6092
6300
|
export type ExplorerAttributesQueryVariables = Exact<{
|
|
6093
6301
|
ids?: InputMaybe<Array<Scalars['ID']> | Scalars['ID']>;
|
|
6094
6302
|
}>;
|
|
@@ -6103,11 +6311,17 @@ export type ExplorerAttributesQuery = {
|
|
|
6103
6311
|
id: string;
|
|
6104
6312
|
label?: any | null;
|
|
6105
6313
|
} | null;
|
|
6314
|
+
permissions: {
|
|
6315
|
+
access_attribute: boolean;
|
|
6316
|
+
};
|
|
6106
6317
|
} | {
|
|
6107
6318
|
id: string;
|
|
6108
6319
|
type: AttributeType;
|
|
6109
6320
|
format?: AttributeFormat | null;
|
|
6110
6321
|
label?: any | null;
|
|
6322
|
+
permissions: {
|
|
6323
|
+
access_attribute: boolean;
|
|
6324
|
+
};
|
|
6111
6325
|
}>;
|
|
6112
6326
|
} | null;
|
|
6113
6327
|
};
|
|
@@ -6124,9 +6338,17 @@ export type ExplorerLinkAttributeQuery = {
|
|
|
6124
6338
|
id: string;
|
|
6125
6339
|
label?: any | null;
|
|
6126
6340
|
} | null;
|
|
6341
|
+
permissions: {
|
|
6342
|
+
access_attribute: boolean;
|
|
6343
|
+
edit_value: boolean;
|
|
6344
|
+
};
|
|
6127
6345
|
} | {
|
|
6128
6346
|
id: string;
|
|
6129
6347
|
multiple_values: boolean;
|
|
6348
|
+
permissions: {
|
|
6349
|
+
access_attribute: boolean;
|
|
6350
|
+
edit_value: boolean;
|
|
6351
|
+
};
|
|
6130
6352
|
}>;
|
|
6131
6353
|
} | null;
|
|
6132
6354
|
};
|
|
@@ -6143,6 +6365,7 @@ export type ExplorerLibraryDataQuery = {
|
|
|
6143
6365
|
totalCount?: number | null;
|
|
6144
6366
|
list: Array<{
|
|
6145
6367
|
id: string;
|
|
6368
|
+
active: boolean;
|
|
6146
6369
|
whoAmI: {
|
|
6147
6370
|
id: string;
|
|
6148
6371
|
label?: string | null;
|
|
@@ -6154,6 +6377,10 @@ export type ExplorerLibraryDataQuery = {
|
|
|
6154
6377
|
label?: any | null;
|
|
6155
6378
|
};
|
|
6156
6379
|
};
|
|
6380
|
+
permissions: {
|
|
6381
|
+
create_record: boolean;
|
|
6382
|
+
delete_record: boolean;
|
|
6383
|
+
};
|
|
6157
6384
|
properties: Array<{
|
|
6158
6385
|
attributeId: string;
|
|
6159
6386
|
attributeProperties: {
|
|
@@ -6162,6 +6389,7 @@ export type ExplorerLibraryDataQuery = {
|
|
|
6162
6389
|
type: AttributeType;
|
|
6163
6390
|
format?: AttributeFormat | null;
|
|
6164
6391
|
multiple_values: boolean;
|
|
6392
|
+
multi_link_display_option?: MultiLinkDisplayOption | null;
|
|
6165
6393
|
};
|
|
6166
6394
|
values: Array<{
|
|
6167
6395
|
linkPayload?: {
|
|
@@ -6242,6 +6470,7 @@ export type ExplorerLinkDataQuery = {
|
|
|
6242
6470
|
type: AttributeType;
|
|
6243
6471
|
format?: AttributeFormat | null;
|
|
6244
6472
|
multiple_values: boolean;
|
|
6473
|
+
multi_link_display_option?: MultiLinkDisplayOption | null;
|
|
6245
6474
|
};
|
|
6246
6475
|
values: Array<{
|
|
6247
6476
|
linkPayload?: {
|
|
@@ -6308,15 +6537,24 @@ export type GetLibraryAttributesQuery = {
|
|
|
6308
6537
|
label?: any | null;
|
|
6309
6538
|
}> | null;
|
|
6310
6539
|
} | null;
|
|
6540
|
+
permissions: {
|
|
6541
|
+
access_attribute: boolean;
|
|
6542
|
+
};
|
|
6311
6543
|
} | {
|
|
6312
6544
|
format?: AttributeFormat | null;
|
|
6313
6545
|
id: string;
|
|
6314
6546
|
type: AttributeType;
|
|
6315
6547
|
label?: any | null;
|
|
6548
|
+
permissions: {
|
|
6549
|
+
access_attribute: boolean;
|
|
6550
|
+
};
|
|
6316
6551
|
} | {
|
|
6317
6552
|
id: string;
|
|
6318
6553
|
type: AttributeType;
|
|
6319
6554
|
label?: any | null;
|
|
6555
|
+
permissions: {
|
|
6556
|
+
access_attribute: boolean;
|
|
6557
|
+
};
|
|
6320
6558
|
}> | null;
|
|
6321
6559
|
}>;
|
|
6322
6560
|
} | null;
|
|
@@ -6452,6 +6690,8 @@ export declare const TreeDetailsFragmentDoc: Apollo.DocumentNode;
|
|
|
6452
6690
|
export declare const TreeNodeChildFragmentDoc: Apollo.DocumentNode;
|
|
6453
6691
|
export declare const ViewDetailsFilterFragmentDoc: Apollo.DocumentNode;
|
|
6454
6692
|
export declare const ViewDetailsFragmentDoc: Apollo.DocumentNode;
|
|
6693
|
+
export declare const AttributesByLibLinkAttributeWithPermissionsFragmentDoc: Apollo.DocumentNode;
|
|
6694
|
+
export declare const AttributesByLibAttributeWithPermissionsFragmentDoc: Apollo.DocumentNode;
|
|
6455
6695
|
export declare const LinkAttributeDetailsFragmentDoc: Apollo.DocumentNode;
|
|
6456
6696
|
export declare const AttributePropertiesFragmentDoc: Apollo.DocumentNode;
|
|
6457
6697
|
export declare const PropertyValueFragmentDoc: Apollo.DocumentNode;
|
|
@@ -7195,6 +7435,35 @@ export declare function useIsAllowedLazyQuery(baseOptions?: Apollo.LazyQueryHook
|
|
|
7195
7435
|
export type IsAllowedQueryHookResult = ReturnType<typeof useIsAllowedQuery>;
|
|
7196
7436
|
export type IsAllowedLazyQueryHookResult = ReturnType<typeof useIsAllowedLazyQuery>;
|
|
7197
7437
|
export type IsAllowedQueryResult = Apollo.QueryResult<IsAllowedQuery, IsAllowedQueryVariables>;
|
|
7438
|
+
export declare const ActivateRecordsDocument: Apollo.DocumentNode;
|
|
7439
|
+
export type ActivateRecordsMutationFn = Apollo.MutationFunction<ActivateRecordsMutation, ActivateRecordsMutationVariables>;
|
|
7440
|
+
/**
|
|
7441
|
+
* __useActivateRecordsMutation__
|
|
7442
|
+
*
|
|
7443
|
+
* To run a mutation, you first call `useActivateRecordsMutation` within a React component and pass it any options that fit your needs.
|
|
7444
|
+
* When your component renders, `useActivateRecordsMutation` returns a tuple that includes:
|
|
7445
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
7446
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
7447
|
+
*
|
|
7448
|
+
* @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;
|
|
7449
|
+
*
|
|
7450
|
+
* @example
|
|
7451
|
+
* const [activateRecordsMutation, { data, loading, error }] = useActivateRecordsMutation({
|
|
7452
|
+
* variables: {
|
|
7453
|
+
* libraryId: // value for 'libraryId'
|
|
7454
|
+
* recordsIds: // value for 'recordsIds'
|
|
7455
|
+
* filters: // value for 'filters'
|
|
7456
|
+
* },
|
|
7457
|
+
* });
|
|
7458
|
+
*/
|
|
7459
|
+
export declare function useActivateRecordsMutation(baseOptions?: Apollo.MutationHookOptions<ActivateRecordsMutation, ActivateRecordsMutationVariables>): Apollo.MutationTuple<ActivateRecordsMutation, Exact<{
|
|
7460
|
+
libraryId: Scalars["String"];
|
|
7461
|
+
recordsIds?: InputMaybe<Array<Scalars["String"]> | Scalars["String"]>;
|
|
7462
|
+
filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
|
|
7463
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
7464
|
+
export type ActivateRecordsMutationHookResult = ReturnType<typeof useActivateRecordsMutation>;
|
|
7465
|
+
export type ActivateRecordsMutationResult = Apollo.MutationResult<ActivateRecordsMutation>;
|
|
7466
|
+
export type ActivateRecordsMutationOptions = Apollo.BaseMutationOptions<ActivateRecordsMutation, ActivateRecordsMutationVariables>;
|
|
7198
7467
|
export declare const CreateRecordDocument: Apollo.DocumentNode;
|
|
7199
7468
|
export type CreateRecordMutationFn = Apollo.MutationFunction<CreateRecordMutation, CreateRecordMutationVariables>;
|
|
7200
7469
|
/**
|
|
@@ -7372,6 +7641,38 @@ export declare function useRecordUpdateSubscription(baseOptions?: Apollo.Subscri
|
|
|
7372
7641
|
}>>;
|
|
7373
7642
|
export type RecordUpdateSubscriptionHookResult = ReturnType<typeof useRecordUpdateSubscription>;
|
|
7374
7643
|
export type RecordUpdateSubscriptionResult = Apollo.SubscriptionResult<RecordUpdateSubscription>;
|
|
7644
|
+
export declare const GetRecordsFromLibraryDocument: Apollo.DocumentNode;
|
|
7645
|
+
/**
|
|
7646
|
+
* __useGetRecordsFromLibraryQuery__
|
|
7647
|
+
*
|
|
7648
|
+
* To run a query within a React component, call `useGetRecordsFromLibraryQuery` and pass it any options that fit your needs.
|
|
7649
|
+
* When your component renders, `useGetRecordsFromLibraryQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
7650
|
+
* you can use to render your UI.
|
|
7651
|
+
*
|
|
7652
|
+
* @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;
|
|
7653
|
+
*
|
|
7654
|
+
* @example
|
|
7655
|
+
* const { data, loading, error } = useGetRecordsFromLibraryQuery({
|
|
7656
|
+
* variables: {
|
|
7657
|
+
* libraryId: // value for 'libraryId'
|
|
7658
|
+
* pagination: // value for 'pagination'
|
|
7659
|
+
* filters: // value for 'filters'
|
|
7660
|
+
* },
|
|
7661
|
+
* });
|
|
7662
|
+
*/
|
|
7663
|
+
export declare function useGetRecordsFromLibraryQuery(baseOptions: Apollo.QueryHookOptions<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>): Apollo.QueryResult<GetRecordsFromLibraryQuery, Exact<{
|
|
7664
|
+
libraryId: Scalars["ID"];
|
|
7665
|
+
pagination?: InputMaybe<RecordsPagination>;
|
|
7666
|
+
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
7667
|
+
}>>;
|
|
7668
|
+
export declare function useGetRecordsFromLibraryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>): Apollo.LazyQueryResultTuple<GetRecordsFromLibraryQuery, Exact<{
|
|
7669
|
+
libraryId: Scalars["ID"];
|
|
7670
|
+
pagination?: InputMaybe<RecordsPagination>;
|
|
7671
|
+
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
7672
|
+
}>>;
|
|
7673
|
+
export type GetRecordsFromLibraryQueryHookResult = ReturnType<typeof useGetRecordsFromLibraryQuery>;
|
|
7674
|
+
export type GetRecordsFromLibraryLazyQueryHookResult = ReturnType<typeof useGetRecordsFromLibraryLazyQuery>;
|
|
7675
|
+
export type GetRecordsFromLibraryQueryResult = Apollo.QueryResult<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>;
|
|
7375
7676
|
export declare const IndexRecordsDocument: Apollo.DocumentNode;
|
|
7376
7677
|
export type IndexRecordsMutationFn = Apollo.MutationFunction<IndexRecordsMutation, IndexRecordsMutationVariables>;
|
|
7377
7678
|
/**
|
|
@@ -7868,6 +8169,32 @@ export declare function useSaveViewMutation(baseOptions?: Apollo.MutationHookOpt
|
|
|
7868
8169
|
export type SaveViewMutationHookResult = ReturnType<typeof useSaveViewMutation>;
|
|
7869
8170
|
export type SaveViewMutationResult = Apollo.MutationResult<SaveViewMutation>;
|
|
7870
8171
|
export type SaveViewMutationOptions = Apollo.BaseMutationOptions<SaveViewMutation, SaveViewMutationVariables>;
|
|
8172
|
+
export declare const GetAttributesByLibWithPermissionsDocument: Apollo.DocumentNode;
|
|
8173
|
+
/**
|
|
8174
|
+
* __useGetAttributesByLibWithPermissionsQuery__
|
|
8175
|
+
*
|
|
8176
|
+
* To run a query within a React component, call `useGetAttributesByLibWithPermissionsQuery` and pass it any options that fit your needs.
|
|
8177
|
+
* When your component renders, `useGetAttributesByLibWithPermissionsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
8178
|
+
* you can use to render your UI.
|
|
8179
|
+
*
|
|
8180
|
+
* @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;
|
|
8181
|
+
*
|
|
8182
|
+
* @example
|
|
8183
|
+
* const { data, loading, error } = useGetAttributesByLibWithPermissionsQuery({
|
|
8184
|
+
* variables: {
|
|
8185
|
+
* library: // value for 'library'
|
|
8186
|
+
* },
|
|
8187
|
+
* });
|
|
8188
|
+
*/
|
|
8189
|
+
export declare function useGetAttributesByLibWithPermissionsQuery(baseOptions: Apollo.QueryHookOptions<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>): Apollo.QueryResult<GetAttributesByLibWithPermissionsQuery, Exact<{
|
|
8190
|
+
library: Scalars["String"];
|
|
8191
|
+
}>>;
|
|
8192
|
+
export declare function useGetAttributesByLibWithPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributesByLibWithPermissionsQuery, Exact<{
|
|
8193
|
+
library: Scalars["String"];
|
|
8194
|
+
}>>;
|
|
8195
|
+
export type GetAttributesByLibWithPermissionsQueryHookResult = ReturnType<typeof useGetAttributesByLibWithPermissionsQuery>;
|
|
8196
|
+
export type GetAttributesByLibWithPermissionsLazyQueryHookResult = ReturnType<typeof useGetAttributesByLibWithPermissionsLazyQuery>;
|
|
8197
|
+
export type GetAttributesByLibWithPermissionsQueryResult = Apollo.QueryResult<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>;
|
|
7871
8198
|
export declare const ExplorerAttributesDocument: Apollo.DocumentNode;
|
|
7872
8199
|
/**
|
|
7873
8200
|
* __useExplorerAttributesQuery__
|