@leav/ui 0.3.6-8c2b8a1 → 0.3.6-8dbf318
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/attribute.js +0 -1
- package/dist/__mocks__/common/attribute.js.map +1 -1
- package/dist/__mocks__/common/value.js +0 -1
- package/dist/__mocks__/common/value.js.map +1 -1
- package/dist/_gqlTypes/index.d.ts +205 -8
- package/dist/_gqlTypes/index.js +146 -11
- package/dist/_gqlTypes/index.js.map +1 -1
- package/dist/_queries/attributes/attributeDetailsFragment.js +0 -1
- package/dist/_queries/attributes/attributeDetailsFragment.js.map +1 -1
- package/dist/_queries/attributes/getAttributesByLib.js +7 -5
- package/dist/_queries/attributes/getAttributesByLib.js.map +1 -1
- package/dist/_queries/records/createRecordMutation.js +2 -3
- package/dist/_queries/records/createRecordMutation.js.map +1 -1
- package/dist/_queries/records/recordFormAttributeFragment.js +1 -0
- package/dist/_queries/records/recordFormAttributeFragment.js.map +1 -1
- package/dist/_utils/attributeType.d.ts +3 -0
- package/dist/_utils/attributeType.js +7 -0
- package/dist/_utils/attributeType.js.map +1 -0
- package/dist/_utils/index.js +1 -1
- package/dist/_utils/index.js.map +1 -1
- package/dist/components/CreateDirectory/CreateDirectory.js +0 -2
- package/dist/components/CreateDirectory/CreateDirectory.js.map +1 -1
- package/dist/components/EditApplication/EditApplicationInfo/EditApplicationInfoForm/EditApplicationInfoForm.js.map +1 -1
- package/dist/components/EditAttributeModal/EditAttribute/EditAttributeInfo/EditAttributeInfo.js +0 -1
- package/dist/components/EditAttributeModal/EditAttribute/EditAttributeInfo/EditAttributeInfo.js.map +1 -1
- package/dist/components/EditAttributeModal/EditAttribute/EditAttributeInfo/EditAttributeInfoForm/EditAttributeInfoForm.js +2 -5
- package/dist/components/EditAttributeModal/EditAttribute/EditAttributeInfo/EditAttributeInfoForm/EditAttributeInfoForm.js.map +1 -1
- package/dist/components/EditTreeModal/EditTree/EditTreeInfo/EditTreeInfoForm/EditTreeInfoForm.d.ts +1 -1
- package/dist/components/EditTreeModal/EditTree/EditTreeInfo/EditTreeInfoForm/EditTreeInfoForm.js.map +1 -1
- package/dist/components/Explorer/DataView.d.ts +4 -3
- package/dist/components/Explorer/DataView.js +16 -10
- package/dist/components/Explorer/DataView.js.map +1 -1
- package/dist/components/Explorer/Explorer.d.ts +3 -0
- package/dist/components/Explorer/Explorer.js +53 -26
- package/dist/components/Explorer/Explorer.js.map +1 -1
- package/dist/components/Explorer/ExplorerToolbar.d.ts +1 -1
- package/dist/components/Explorer/ExplorerToolbar.js +13 -9
- package/dist/components/Explorer/ExplorerToolbar.js.map +1 -1
- package/dist/components/Explorer/TableCell.js +3 -3
- package/dist/components/Explorer/TableCell.js.map +1 -1
- package/dist/components/Explorer/_queries/prepareFiltersForRequest.d.ts +2 -2
- package/dist/components/Explorer/_queries/prepareFiltersForRequest.js +37 -19
- package/dist/components/Explorer/_queries/prepareFiltersForRequest.js.map +1 -1
- package/dist/components/Explorer/_queries/useExplorerData.d.ts +2 -2
- package/dist/components/Explorer/_queries/useExplorerData.js +5 -1
- package/dist/components/Explorer/_queries/useExplorerData.js.map +1 -1
- package/dist/components/Explorer/_types.d.ts +55 -17
- package/dist/components/Explorer/_types.js +7 -1
- package/dist/components/Explorer/_types.js.map +1 -1
- package/dist/components/Explorer/{useEditAction.d.ts → actions-item/useEditItemAction.d.ts} +4 -4
- package/dist/components/Explorer/{useEditAction.js → actions-item/useEditItemAction.js} +8 -8
- package/dist/components/Explorer/actions-item/useEditItemAction.js.map +1 -0
- package/dist/components/Explorer/{useRemoveAction.d.ts → actions-item/useRemoveItemAction.d.ts} +4 -4
- package/dist/components/Explorer/{useRemoveAction.js → actions-item/useRemoveItemAction.js} +9 -9
- package/dist/components/Explorer/actions-item/useRemoveItemAction.js.map +1 -0
- package/dist/components/Explorer/{useDeactivateMassAction.d.ts → actions-mass/useDeactivateMassAction.d.ts} +4 -4
- package/dist/components/Explorer/{useDeactivateMassAction.js → actions-mass/useDeactivateMassAction.js} +4 -4
- package/dist/components/Explorer/actions-mass/useDeactivateMassAction.js.map +1 -0
- package/dist/components/Explorer/actions-mass/useDeleteLinkValues.d.ts +18 -0
- package/dist/components/Explorer/actions-mass/useDeleteLinkValues.js +84 -0
- package/dist/components/Explorer/actions-mass/useDeleteLinkValues.js.map +1 -0
- package/dist/components/Explorer/{useMassActions.d.ts → actions-mass/useMassActions.d.ts} +4 -3
- package/dist/components/Explorer/{useMassActions.js → actions-mass/useMassActions.js} +10 -8
- package/dist/components/Explorer/actions-mass/useMassActions.js.map +1 -0
- package/dist/components/Explorer/{useCreateAction.d.ts → actions-primary/useCreatePrimaryAction.d.ts} +8 -6
- package/dist/components/Explorer/{useCreateAction.js → actions-primary/useCreatePrimaryAction.js} +13 -11
- package/dist/components/Explorer/actions-primary/useCreatePrimaryAction.js.map +1 -0
- package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.d.ts +17 -0
- package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.js +38 -0
- package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.js.map +1 -0
- package/dist/components/Explorer/actions-primary/usePrimaryActions.d.ts +17 -0
- package/dist/components/Explorer/actions-primary/usePrimaryActions.js +27 -0
- package/dist/components/Explorer/actions-primary/usePrimaryActions.js.map +1 -0
- package/dist/components/Explorer/link-item/LinkModal.d.ts +7 -0
- package/dist/components/Explorer/link-item/LinkModal.js +73 -0
- package/dist/components/Explorer/link-item/LinkModal.js.map +1 -0
- package/dist/components/Explorer/link-item/useLinkMassAction.d.ts +24 -0
- package/dist/components/Explorer/link-item/useLinkMassAction.js +57 -0
- package/dist/components/Explorer/link-item/useLinkMassAction.js.map +1 -0
- package/dist/components/Explorer/list-saved-views/SavedViews.d.ts +2 -0
- package/dist/components/Explorer/list-saved-views/SavedViews.js +74 -0
- package/dist/components/Explorer/list-saved-views/SavedViews.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/_shared/CommonFilterItem.d.ts +2 -2
- package/dist/components/Explorer/manage-view-settings/_shared/CommonFilterItem.js +8 -1
- package/dist/components/Explorer/manage-view-settings/_shared/CommonFilterItem.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/_shared/useAttributeDetailsData.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/_shared/useTransformFilters.d.ts +17 -0
- package/dist/components/Explorer/manage-view-settings/_shared/useTransformFilters.js +93 -0
- package/dist/components/Explorer/manage-view-settings/_shared/useTransformFilters.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/configure-display/attributes/SelectVisibleAttributes.js +1 -2
- package/dist/components/Explorer/manage-view-settings/configure-display/attributes/SelectVisibleAttributes.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.js +6 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/BooleanAttributeDropdown.d.ts +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/BooleanAttributeDropdown.js +2 -2
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/BooleanAttributeDropdown.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ColorAttributeDropDown.d.ts +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ColorAttributeDropDown.js +2 -2
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ColorAttributeDropDown.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateAttributeDropDown.d.ts +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateAttributeDropDown.js +2 -2
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateAttributeDropDown.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateRangeAttributeDropDown.d.ts +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateRangeAttributeDropDown.js +2 -2
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateRangeAttributeDropDown.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/EncryptedAttributeDropDown.d.ts +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/EncryptedAttributeDropDown.js +2 -2
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/EncryptedAttributeDropDown.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ExtendedAttributeDropDown.d.ts +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ExtendedAttributeDropDown.js +2 -2
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ExtendedAttributeDropDown.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.d.ts +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.js +7 -38
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropdownContent.d.ts +8 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropdownContent.js +41 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropdownContent.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/LinkAttributeDropdown.d.ts +3 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/LinkAttributeDropdown.js +79 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/LinkAttributeDropdown.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/NumericAttributeDropDown.d.ts +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/NumericAttributeDropDown.js +2 -2
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/NumericAttributeDropDown.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TextAttributeDropDown.d.ts +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TextAttributeDropDown.js +2 -2
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TextAttributeDropDown.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/_types.d.ts +13 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/_types.js +2 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/_types.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/useConditionOptionsByType.d.ts +6 -5
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/useConditionOptionsByType.js +12 -4
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/useConditionOptionsByType.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContext.d.ts +3 -3
- package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContext.js +2 -2
- package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContext.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContextProvider.d.ts +1 -0
- package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContextProvider.js +2 -2
- package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContextProvider.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/open-view-settings/SidePanel.js +3 -3
- package/dist/components/Explorer/manage-view-settings/open-view-settings/SidePanel.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/open-view-settings/useOpenViewSettings.d.ts +9 -2
- package/dist/components/Explorer/manage-view-settings/open-view-settings/useOpenViewSettings.js +34 -7
- package/dist/components/Explorer/manage-view-settings/open-view-settings/useOpenViewSettings.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/router-menu/SettingsPanel.js +9 -43
- package/dist/components/Explorer/manage-view-settings/router-menu/SettingsPanel.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/save-view/SaveViewModal.d.ts +8 -0
- package/dist/components/Explorer/manage-view-settings/save-view/SaveViewModal.js +44 -0
- package/dist/components/Explorer/manage-view-settings/save-view/SaveViewModal.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/save-view/ViewActionsButtons.d.ts +1 -0
- package/dist/components/Explorer/manage-view-settings/save-view/ViewActionsButtons.js +22 -0
- package/dist/components/Explorer/manage-view-settings/save-view/ViewActionsButtons.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/save-view/prepareViewForRequest.d.ts +3 -0
- package/dist/components/Explorer/manage-view-settings/save-view/prepareViewForRequest.js +24 -0
- package/dist/components/Explorer/manage-view-settings/save-view/prepareViewForRequest.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/save-view/useCreateNewView.d.ts +3 -0
- package/dist/components/Explorer/manage-view-settings/save-view/useCreateNewView.js +52 -0
- package/dist/components/Explorer/manage-view-settings/save-view/useCreateNewView.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/save-view/useResetView.d.ts +3 -0
- package/dist/components/Explorer/manage-view-settings/save-view/useResetView.js +20 -0
- package/dist/components/Explorer/manage-view-settings/save-view/useResetView.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/save-view/useShareView.d.ts +3 -0
- package/dist/components/Explorer/manage-view-settings/save-view/useShareView.js +64 -0
- package/dist/components/Explorer/manage-view-settings/save-view/useShareView.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/save-view/useUpdateView.d.ts +3 -0
- package/dist/components/Explorer/manage-view-settings/save-view/useUpdateView.js +49 -0
- package/dist/components/Explorer/manage-view-settings/save-view/useUpdateView.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/sort-items/SortItems.js +7 -9
- package/dist/components/Explorer/manage-view-settings/sort-items/SortItems.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.js +10 -0
- package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.d.ts +25 -9
- package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.js +92 -21
- package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.js.map +1 -1
- package/dist/components/Explorer/useColumnWidth.d.ts +2 -0
- package/dist/components/Explorer/useColumnWidth.js +3 -2
- package/dist/components/Explorer/useColumnWidth.js.map +1 -1
- package/dist/components/Explorer/useLoadView.d.ts +3 -0
- package/dist/components/Explorer/useLoadView.js +81 -0
- package/dist/components/Explorer/useLoadView.js.map +1 -0
- package/dist/components/Explorer/useSearchInput.js +2 -1
- package/dist/components/Explorer/useSearchInput.js.map +1 -1
- package/dist/components/Explorer/useViewSettingsReducer.js +42 -37
- package/dist/components/Explorer/useViewSettingsReducer.js.map +1 -1
- package/dist/components/ImportModal/ImportModalSelectFileStep/ImportModalSelectFileStep.js +1 -2
- package/dist/components/ImportModal/ImportModalSelectFileStep/ImportModalSelectFileStep.js.map +1 -1
- package/dist/components/LibraryItemsList/DisplayOptions/DisplayOptions.js.map +1 -1
- package/dist/components/LibraryItemsList/LibraryItemsListTable/Cell/StandardCell/StandardCell.js +2 -2
- package/dist/components/LibraryItemsList/LibraryItemsListTable/Cell/StandardCell/StandardCell.js.map +1 -1
- package/dist/components/LibraryItemsList/MenuView/MenuView.js +1 -1
- package/dist/components/LibraryItemsList/MenuView/MenuView.js.map +1 -1
- package/dist/components/RecordEdition/EditRecord/EditRecord.js +45 -27
- package/dist/components/RecordEdition/EditRecord/EditRecord.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.d.ts +2 -1
- package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js +2 -2
- package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/_types.d.ts +7 -1
- package/dist/components/RecordEdition/EditRecordContent/_types.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateRecordMutation.d.ts +5 -0
- package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateRecordMutation.js +28 -0
- package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateRecordMutation.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/shared/ValueDetailsBtn/ValueDetailsBtn.js +1 -7
- package/dist/components/RecordEdition/EditRecordContent/shared/ValueDetailsBtn/ValueDetailsBtn.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js +16 -9
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSBooleanWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSColorPickerWrapper.js +4 -8
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSColorPickerWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputWrapper.js +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRangePickerWrapper.js +3 -6
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRangePickerWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRichTextWrapper.js +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRichTextWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeField.js +4 -7
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeField.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordSidebar/AttributeSummary/AttributeSummary.d.ts +7 -0
- package/dist/components/RecordEdition/EditRecordSidebar/AttributeSummary/AttributeSummary.js +9 -0
- package/dist/components/RecordEdition/EditRecordSidebar/AttributeSummary/AttributeSummary.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordSidebar/AttributeSummary/index.d.ts +2 -0
- package/dist/components/RecordEdition/EditRecordSidebar/{ValueDetails/AttributeDetails → AttributeSummary}/index.js +2 -2
- package/dist/components/RecordEdition/EditRecordSidebar/AttributeSummary/index.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordSidebar/AttributeSummary/useAttributeInformations.d.ts +2 -0
- package/dist/components/RecordEdition/EditRecordSidebar/AttributeSummary/useAttributeInformations.js +25 -0
- package/dist/components/RecordEdition/EditRecordSidebar/AttributeSummary/useAttributeInformations.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordSidebar/Breacrumb/Breadcrumb.d.ts +3 -0
- package/dist/components/RecordEdition/EditRecordSidebar/Breacrumb/Breadcrumb.js +53 -0
- package/dist/components/RecordEdition/EditRecordSidebar/Breacrumb/Breadcrumb.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordSidebar/Breacrumb/index.d.ts +2 -0
- package/dist/components/RecordEdition/EditRecordSidebar/{ValueDetails/ValueInfo → Breacrumb}/index.js +2 -2
- package/dist/components/RecordEdition/EditRecordSidebar/Breacrumb/index.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.js +15 -6
- package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordSummary.d.ts +1 -1
- package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordSummary.js +7 -9
- package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordSummary.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordSidebar/ValuesSummary/ValuesSummary.d.ts +8 -0
- package/dist/components/RecordEdition/EditRecordSidebar/ValuesSummary/ValuesSummary.js +73 -0
- package/dist/components/RecordEdition/EditRecordSidebar/ValuesSummary/ValuesSummary.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordSidebar/ValuesSummary/index.d.ts +2 -0
- package/dist/components/RecordEdition/EditRecordSidebar/{ValueDetails → ValuesSummary}/index.js +2 -2
- package/dist/components/RecordEdition/EditRecordSidebar/ValuesSummary/index.js.map +1 -0
- package/dist/components/RecordEdition/editRecordReducer/editRecordReducer.d.ts +12 -10
- package/dist/components/RecordEdition/editRecordReducer/editRecordReducer.js +15 -13
- package/dist/components/RecordEdition/editRecordReducer/editRecordReducer.js.map +1 -1
- package/dist/components/SelectTreeNode/SelectTreeNodeContent.js +1 -3
- package/dist/components/SelectTreeNode/SelectTreeNodeContent.js.map +1 -1
- package/dist/hooks/useExecuteSaveViewMutation/useExecuteSaveViewMutation.js +2 -1
- package/dist/hooks/useExecuteSaveViewMutation/useExecuteSaveViewMutation.js.map +1 -1
- package/dist/hooks/useGetRecordValuesQuery/useGetRecordValuesQuery.d.ts +1 -1
- package/dist/hooks/useGetRecordValuesQuery/useGetRecordValuesQuery.js +2 -2
- package/dist/hooks/useGetRecordValuesQuery/useGetRecordValuesQuery.js.map +1 -1
- package/dist/locales/en/shared.json +31 -6
- package/dist/locales/fr/shared.json +33 -8
- package/package.json +4 -4
- package/dist/components/Explorer/useCreateAction.js.map +0 -1
- package/dist/components/Explorer/useDeactivateMassAction.js.map +0 -1
- package/dist/components/Explorer/useEditAction.js.map +0 -1
- package/dist/components/Explorer/useMassActions.js.map +0 -1
- package/dist/components/Explorer/usePrimaryActions.d.ts +0 -12
- package/dist/components/Explorer/usePrimaryActions.js +0 -28
- package/dist/components/Explorer/usePrimaryActions.js.map +0 -1
- package/dist/components/Explorer/useRemoveAction.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/AttributeDetails/AttributeDetails.d.ts +0 -6
- package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/AttributeDetails/AttributeDetails.js +0 -56
- package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/AttributeDetails/AttributeDetails.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/AttributeDetails/index.d.ts +0 -2
- package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/AttributeDetails/index.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/TreeValuePath/TreeValuePath.d.ts +0 -8
- package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/TreeValuePath/TreeValuePath.js +0 -41
- package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/TreeValuePath/TreeValuePath.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/TreeValuePath/index.d.ts +0 -2
- package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/TreeValuePath/index.js +0 -6
- package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/TreeValuePath/index.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/ValueDetails.d.ts +0 -10
- package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/ValueDetails.js +0 -51
- package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/ValueDetails.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/ValueInfo/ValueInfo.d.ts +0 -2
- package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/ValueInfo/ValueInfo.js +0 -76
- package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/ValueInfo/ValueInfo.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/ValueInfo/index.d.ts +0 -2
- package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/ValueInfo/index.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/ValueMetadata/ValueMetadata.d.ts +0 -11
- package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/ValueMetadata/ValueMetadata.js +0 -43
- package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/ValueMetadata/ValueMetadata.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/ValueMetadata/index.d.ts +0 -2
- package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/ValueMetadata/index.js +0 -6
- package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/ValueMetadata/index.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/index.d.ts +0 -2
- package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/index.js.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"attribute.js","sourceRoot":"","sources":["../../../src/__mocks__/common/attribute.ts"],"names":[],"mappings":"AAIA,OAAO,EAEH,eAAe,EACf,aAAa,EAKhB,MAAM,eAAe,CAAC;AAEvB,MAAM,CAAC,MAAM,oBAAoB,GAA8B;IAC3D,EAAE,EAAE,cAAc;IAClB,IAAI,EAAE,aAAa,CAAC,MAAM;IAC1B,MAAM,EAAE,eAAe,CAAC,IAAI;IAC5B,KAAK,EAAE;QACH,EAAE,EAAE,cAAc;QAClB,EAAE,EAAE,cAAc;KACrB;IACD,MAAM,EAAE,KAAK;CAChB,CAAC;AAEF,MAAM,CAAC,MAAM,mBAAmB,GAAgD;IAC5E,EAAE,EAAE,cAAc;IAClB,KAAK,EAAE;QACH,EAAE,EAAE,cAAc;QAClB,EAAE,EAAE,cAAc;KACrB;IACD,IAAI,EAAE,aAAa,CAAC,MAAM;IAC1B,MAAM,EAAE,eAAe,CAAC,IAAI;IAC5B,MAAM,EAAE,KAAK;CAChB,CAAC;AAEF,MAAM,CAAC,MAAM,wBAAwB,GAA6B;IAC9D,EAAE,EAAE,cAAc;IAClB,KAAK,EAAE;QACH,EAAE,EAAE,cAAc;QAClB,EAAE,EAAE,cAAc;KACrB;IACD,MAAM,EAAE,eAAe,CAAC,IAAI;IAC5B,IAAI,EAAE,aAAa,CAAC,MAAM;IAC1B,MAAM,EAAE,KAAK;IACb,WAAW,EAAE;QACT,EAAE,EAAE,gBAAgB;QACpB,EAAE,EAAE,gBAAgB;KACvB;IACD,
|
|
1
|
+
{"version":3,"file":"attribute.js","sourceRoot":"","sources":["../../../src/__mocks__/common/attribute.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"value.js","sourceRoot":"","sources":["../../../src/__mocks__/common/value.ts"],"names":[],"mappings":"AAKA,OAAO,EAAC,mBAAmB,EAAC,MAAM,aAAa,CAAC;AAChD,OAAO,EAAC,YAAY,EAAC,MAAM,UAAU,CAAC;AAEtC,MAAM,CAAC,MAAM,YAAY,GAA4B;IACjD,EAAE,EAAE,GAAG;IACP,MAAM,EAAE;QACJ,EAAE,EAAE,QAAQ;QACZ,KAAK,EAAE,OAAO;QACd,QAAQ,EAAE,OAAO;QACjB,OAAO,EAAE;YACL,EAAE,EAAE,OAAO;YACX,KAAK,EAAE,EAAC,EAAE,EAAE,cAAc,EAAC;SAC9B;QACD,OAAO,EAAE,YAAY;QACrB,KAAK,EAAE,SAAS;KACnB;CACJ,CAAC;AAEF,MAAM,CAAC,MAAM,kBAAkB,GAAmB;IAC9C,QAAQ,EAAE,QAAQ;IAClB,UAAU,EAAE,UAAU;IACtB,UAAU,EAAE,YAAY;IACxB,WAAW,EAAE,UAAU;IACvB,WAAW,EAAE,YAAY;IACzB,OAAO,EAAE,YAAY;IACrB,WAAW,EAAE,YAAY;IACzB,SAAS,EAAE,IAAI;IACf,SAAS,EAAE,IAAI;CAClB,CAAC;AAEF,MAAM,CAAC,MAAM,+BAA+B,GAAiC;IACzE,
|
|
1
|
+
{"version":3,"file":"value.js","sourceRoot":"","sources":["../../../src/__mocks__/common/value.ts"],"names":[],"mappings":"AAKA,OAAO,EAAC,mBAAmB,EAAC,MAAM,aAAa,CAAC;AAChD,OAAO,EAAC,YAAY,EAAC,MAAM,UAAU,CAAC;AAEtC,MAAM,CAAC,MAAM,YAAY,GAA4B;IACjD,EAAE,EAAE,GAAG;IACP,MAAM,EAAE;QACJ,EAAE,EAAE,QAAQ;QACZ,KAAK,EAAE,OAAO;QACd,QAAQ,EAAE,OAAO;QACjB,OAAO,EAAE;YACL,EAAE,EAAE,OAAO;YACX,KAAK,EAAE,EAAC,EAAE,EAAE,cAAc,EAAC;SAC9B;QACD,OAAO,EAAE,YAAY;QACrB,KAAK,EAAE,SAAS;KACnB;CACJ,CAAC;AAEF,MAAM,CAAC,MAAM,kBAAkB,GAAmB;IAC9C,QAAQ,EAAE,QAAQ;IAClB,UAAU,EAAE,UAAU;IACtB,UAAU,EAAE,YAAY;IACxB,WAAW,EAAE,UAAU;IACvB,WAAW,EAAE,YAAY;IACzB,OAAO,EAAE,YAAY;IACrB,WAAW,EAAE,YAAY;IACzB,SAAS,EAAE,IAAI;IACf,SAAS,EAAE,IAAI;CAClB,CAAC;AAEF,MAAM,CAAC,MAAM,+BAA+B,GAAiC;IACzE,SAAS,EAAE;QACP,GAAG,mBAAmB;QACtB,WAAW,EAAE;YACT,EAAE,EAAE,gBAAgB;YACpB,EAAE,EAAE,gBAAgB;SACvB;QACD,eAAe,EAAE,KAAK;QACtB,QAAQ,EAAE,KAAK;QACf,QAAQ,EAAE,KAAK;QACf,WAAW,EAAE,EAAC,gBAAgB,EAAE,IAAI,EAAE,UAAU,EAAE,IAAI,EAAC;QACvD,OAAO,EAAE,KAAK;KACjB;CACJ,CAAC"}
|
|
@@ -127,6 +127,7 @@ export declare enum AttributeFormat {
|
|
|
127
127
|
}
|
|
128
128
|
export type AttributeInput = {
|
|
129
129
|
actions_list?: InputMaybe<ActionsListConfigurationInput>;
|
|
130
|
+
character_limit?: InputMaybe<Scalars['Int']>;
|
|
130
131
|
description?: InputMaybe<Scalars['SystemTranslationOptional']>;
|
|
131
132
|
embedded_fields?: InputMaybe<Array<InputMaybe<EmbeddedAttributeInput>>>;
|
|
132
133
|
format?: InputMaybe<AttributeFormat>;
|
|
@@ -134,7 +135,6 @@ export type AttributeInput = {
|
|
|
134
135
|
label?: InputMaybe<Scalars['SystemTranslation']>;
|
|
135
136
|
linked_library?: InputMaybe<Scalars['String']>;
|
|
136
137
|
linked_tree?: InputMaybe<Scalars['String']>;
|
|
137
|
-
maxLength?: InputMaybe<Scalars['Int']>;
|
|
138
138
|
metadata_fields?: InputMaybe<Array<Scalars['String']>>;
|
|
139
139
|
multiple_values?: InputMaybe<Scalars['Boolean']>;
|
|
140
140
|
permissions_conf?: InputMaybe<TreepermissionsConfInput>;
|
|
@@ -257,6 +257,7 @@ export type GlobalSettingsFileInput = {
|
|
|
257
257
|
recordId: Scalars['String'];
|
|
258
258
|
};
|
|
259
259
|
export type GlobalSettingsInput = {
|
|
260
|
+
defaultApp?: InputMaybe<Scalars['String']>;
|
|
260
261
|
favicon?: InputMaybe<GlobalSettingsFileInput>;
|
|
261
262
|
icon?: InputMaybe<GlobalSettingsFileInput>;
|
|
262
263
|
name?: InputMaybe<Scalars['String']>;
|
|
@@ -838,7 +839,6 @@ export type AttributeDetailsLinkAttributeFragment = {
|
|
|
838
839
|
};
|
|
839
840
|
export type AttributeDetailsStandardAttributeFragment = {
|
|
840
841
|
unique?: boolean | null;
|
|
841
|
-
maxLength?: number | null;
|
|
842
842
|
id: string;
|
|
843
843
|
type: AttributeType;
|
|
844
844
|
format?: AttributeFormat | null;
|
|
@@ -953,6 +953,11 @@ export type AttributesByLibAttributeTreeAttributeFragment = {
|
|
|
953
953
|
} | null;
|
|
954
954
|
};
|
|
955
955
|
export type AttributesByLibAttributeFragment = AttributesByLibAttributeLinkAttributeFragment | AttributesByLibAttributeStandardAttributeFragment | AttributesByLibAttributeTreeAttributeFragment;
|
|
956
|
+
export type AttributesByLibLinkAttributeFragment = {
|
|
957
|
+
linked_library?: {
|
|
958
|
+
id: string;
|
|
959
|
+
} | null;
|
|
960
|
+
};
|
|
956
961
|
export type LibraryLightFragment = {
|
|
957
962
|
id: string;
|
|
958
963
|
label?: any | null;
|
|
@@ -1559,6 +1564,7 @@ export type RecordFormElementFragment = {
|
|
|
1559
1564
|
}> | null;
|
|
1560
1565
|
}> | null;
|
|
1561
1566
|
} | {
|
|
1567
|
+
character_limit?: number | null;
|
|
1562
1568
|
id: string;
|
|
1563
1569
|
label?: any | null;
|
|
1564
1570
|
description?: any | null;
|
|
@@ -2218,6 +2224,7 @@ export type RecordFormAttributeLinkAttributeFragment = {
|
|
|
2218
2224
|
}> | null;
|
|
2219
2225
|
};
|
|
2220
2226
|
export type RecordFormAttributeStandardAttributeFragment = {
|
|
2227
|
+
character_limit?: number | null;
|
|
2221
2228
|
id: string;
|
|
2222
2229
|
label?: any | null;
|
|
2223
2230
|
description?: any | null;
|
|
@@ -2545,6 +2552,7 @@ export type LinkAttributeDetailsFragment = {
|
|
|
2545
2552
|
label?: any | null;
|
|
2546
2553
|
linked_library?: {
|
|
2547
2554
|
id: string;
|
|
2555
|
+
label?: any | null;
|
|
2548
2556
|
} | null;
|
|
2549
2557
|
};
|
|
2550
2558
|
export type AttributePropertiesFragment = {
|
|
@@ -2660,6 +2668,45 @@ export type LinkPropertyTreeValueValueFragment = {
|
|
|
2660
2668
|
id_value?: string | null;
|
|
2661
2669
|
};
|
|
2662
2670
|
export type LinkPropertyFragment = LinkPropertyLinkValueFragment | LinkPropertyTreeValueValueFragment;
|
|
2671
|
+
export type LibraryAttributeLinkAttributeFragment = {
|
|
2672
|
+
id: string;
|
|
2673
|
+
type: AttributeType;
|
|
2674
|
+
label?: any | null;
|
|
2675
|
+
linked_library?: {
|
|
2676
|
+
id: string;
|
|
2677
|
+
label?: any | null;
|
|
2678
|
+
attributes?: Array<{
|
|
2679
|
+
id: string;
|
|
2680
|
+
type: AttributeType;
|
|
2681
|
+
format?: AttributeFormat | null;
|
|
2682
|
+
label?: any | null;
|
|
2683
|
+
}> | null;
|
|
2684
|
+
} | null;
|
|
2685
|
+
};
|
|
2686
|
+
export type LibraryAttributeStandardAttributeFragment = {
|
|
2687
|
+
format?: AttributeFormat | null;
|
|
2688
|
+
id: string;
|
|
2689
|
+
type: AttributeType;
|
|
2690
|
+
label?: any | null;
|
|
2691
|
+
};
|
|
2692
|
+
export type LibraryAttributeTreeAttributeFragment = {
|
|
2693
|
+
id: string;
|
|
2694
|
+
type: AttributeType;
|
|
2695
|
+
label?: any | null;
|
|
2696
|
+
};
|
|
2697
|
+
export type LibraryAttributeFragment = LibraryAttributeLinkAttributeFragment | LibraryAttributeStandardAttributeFragment | LibraryAttributeTreeAttributeFragment;
|
|
2698
|
+
export type LibraryAttributeLinkFragment = {
|
|
2699
|
+
linked_library?: {
|
|
2700
|
+
id: string;
|
|
2701
|
+
label?: any | null;
|
|
2702
|
+
attributes?: Array<{
|
|
2703
|
+
id: string;
|
|
2704
|
+
type: AttributeType;
|
|
2705
|
+
format?: AttributeFormat | null;
|
|
2706
|
+
label?: any | null;
|
|
2707
|
+
}> | null;
|
|
2708
|
+
} | null;
|
|
2709
|
+
};
|
|
2663
2710
|
export type CheckApplicationExistenceQueryVariables = Exact<{
|
|
2664
2711
|
id?: InputMaybe<Scalars['ID']>;
|
|
2665
2712
|
endpoint?: InputMaybe<Scalars['String']>;
|
|
@@ -2808,7 +2855,6 @@ export type GetAttributeByIdQuery = {
|
|
|
2808
2855
|
}> | null;
|
|
2809
2856
|
} | {
|
|
2810
2857
|
unique?: boolean | null;
|
|
2811
|
-
maxLength?: number | null;
|
|
2812
2858
|
id: string;
|
|
2813
2859
|
type: AttributeType;
|
|
2814
2860
|
format?: AttributeFormat | null;
|
|
@@ -3018,7 +3064,6 @@ export type SaveAttributeMutation = {
|
|
|
3018
3064
|
}> | null;
|
|
3019
3065
|
} | {
|
|
3020
3066
|
unique?: boolean | null;
|
|
3021
|
-
maxLength?: number | null;
|
|
3022
3067
|
id: string;
|
|
3023
3068
|
type: AttributeType;
|
|
3024
3069
|
format?: AttributeFormat | null;
|
|
@@ -3532,11 +3577,10 @@ export type CreateRecordMutation = {
|
|
|
3532
3577
|
};
|
|
3533
3578
|
} | null;
|
|
3534
3579
|
valuesErrors?: Array<{
|
|
3535
|
-
attributeId: string;
|
|
3536
|
-
id_value?: string | null;
|
|
3537
|
-
input?: string | null;
|
|
3538
|
-
message?: string | null;
|
|
3539
3580
|
type: string;
|
|
3581
|
+
attribute: string;
|
|
3582
|
+
input?: string | null;
|
|
3583
|
+
message: string;
|
|
3540
3584
|
}> | null;
|
|
3541
3585
|
};
|
|
3542
3586
|
};
|
|
@@ -4130,6 +4174,7 @@ export type RecordFormQuery = {
|
|
|
4130
4174
|
}> | null;
|
|
4131
4175
|
}> | null;
|
|
4132
4176
|
} | {
|
|
4177
|
+
character_limit?: number | null;
|
|
4133
4178
|
id: string;
|
|
4134
4179
|
label?: any | null;
|
|
4135
4180
|
description?: any | null;
|
|
@@ -6041,6 +6086,15 @@ export type ExplorerAttributesQuery = {
|
|
|
6041
6086
|
type: AttributeType;
|
|
6042
6087
|
format?: AttributeFormat | null;
|
|
6043
6088
|
label?: any | null;
|
|
6089
|
+
linked_library?: {
|
|
6090
|
+
id: string;
|
|
6091
|
+
label?: any | null;
|
|
6092
|
+
} | null;
|
|
6093
|
+
} | {
|
|
6094
|
+
id: string;
|
|
6095
|
+
type: AttributeType;
|
|
6096
|
+
format?: AttributeFormat | null;
|
|
6097
|
+
label?: any | null;
|
|
6044
6098
|
}>;
|
|
6045
6099
|
} | null;
|
|
6046
6100
|
};
|
|
@@ -6055,6 +6109,7 @@ export type ExplorerLinkAttributeQuery = {
|
|
|
6055
6109
|
multiple_values: boolean;
|
|
6056
6110
|
linked_library?: {
|
|
6057
6111
|
id: string;
|
|
6112
|
+
label?: any | null;
|
|
6058
6113
|
} | null;
|
|
6059
6114
|
} | {
|
|
6060
6115
|
id: string;
|
|
@@ -6219,6 +6274,40 @@ export type ExplorerLinkDataQuery = {
|
|
|
6219
6274
|
}>;
|
|
6220
6275
|
};
|
|
6221
6276
|
};
|
|
6277
|
+
export type GetLibraryAttributesQueryVariables = Exact<{
|
|
6278
|
+
libraryId: Scalars['ID'];
|
|
6279
|
+
}>;
|
|
6280
|
+
export type GetLibraryAttributesQuery = {
|
|
6281
|
+
libraries?: {
|
|
6282
|
+
list: Array<{
|
|
6283
|
+
id: string;
|
|
6284
|
+
attributes?: Array<{
|
|
6285
|
+
id: string;
|
|
6286
|
+
type: AttributeType;
|
|
6287
|
+
label?: any | null;
|
|
6288
|
+
linked_library?: {
|
|
6289
|
+
id: string;
|
|
6290
|
+
label?: any | null;
|
|
6291
|
+
attributes?: Array<{
|
|
6292
|
+
id: string;
|
|
6293
|
+
type: AttributeType;
|
|
6294
|
+
format?: AttributeFormat | null;
|
|
6295
|
+
label?: any | null;
|
|
6296
|
+
}> | null;
|
|
6297
|
+
} | null;
|
|
6298
|
+
} | {
|
|
6299
|
+
format?: AttributeFormat | null;
|
|
6300
|
+
id: string;
|
|
6301
|
+
type: AttributeType;
|
|
6302
|
+
label?: any | null;
|
|
6303
|
+
} | {
|
|
6304
|
+
id: string;
|
|
6305
|
+
type: AttributeType;
|
|
6306
|
+
label?: any | null;
|
|
6307
|
+
}> | null;
|
|
6308
|
+
}>;
|
|
6309
|
+
} | null;
|
|
6310
|
+
};
|
|
6222
6311
|
export type ExplorerLibraryDetailsQueryVariables = Exact<{
|
|
6223
6312
|
libraryId: Scalars['ID'];
|
|
6224
6313
|
}>;
|
|
@@ -6230,6 +6319,31 @@ export type ExplorerLibraryDetailsQuery = {
|
|
|
6230
6319
|
}>;
|
|
6231
6320
|
} | null;
|
|
6232
6321
|
};
|
|
6322
|
+
export type ExplorerSelectionIdsQueryVariables = Exact<{
|
|
6323
|
+
libraryId: Scalars['ID'];
|
|
6324
|
+
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
6325
|
+
}>;
|
|
6326
|
+
export type ExplorerSelectionIdsQuery = {
|
|
6327
|
+
records: {
|
|
6328
|
+
list: Array<{
|
|
6329
|
+
id: string;
|
|
6330
|
+
}>;
|
|
6331
|
+
};
|
|
6332
|
+
};
|
|
6333
|
+
export type MeQueryVariables = Exact<{
|
|
6334
|
+
[key: string]: never;
|
|
6335
|
+
}>;
|
|
6336
|
+
export type MeQuery = {
|
|
6337
|
+
me?: {
|
|
6338
|
+
id: string;
|
|
6339
|
+
whoAmI: {
|
|
6340
|
+
id: string;
|
|
6341
|
+
library: {
|
|
6342
|
+
id: string;
|
|
6343
|
+
};
|
|
6344
|
+
};
|
|
6345
|
+
} | null;
|
|
6346
|
+
};
|
|
6233
6347
|
export type TreeDataQueryQueryVariables = Exact<{
|
|
6234
6348
|
treeId: Scalars['ID'];
|
|
6235
6349
|
}>;
|
|
@@ -6244,6 +6358,7 @@ export type TreeDataQueryQuery = {
|
|
|
6244
6358
|
export declare const RecordIdentityFragmentDoc: Apollo.DocumentNode;
|
|
6245
6359
|
export declare const DetailsApplicationFragmentDoc: Apollo.DocumentNode;
|
|
6246
6360
|
export declare const AttributeDetailsFragmentDoc: Apollo.DocumentNode;
|
|
6361
|
+
export declare const AttributesByLibLinkAttributeFragmentDoc: Apollo.DocumentNode;
|
|
6247
6362
|
export declare const AttributesByLibAttributeFragmentDoc: Apollo.DocumentNode;
|
|
6248
6363
|
export declare const LibraryLightFragmentDoc: Apollo.DocumentNode;
|
|
6249
6364
|
export declare const LibraryLinkAttributeDetailsFragmentDoc: Apollo.DocumentNode;
|
|
@@ -6264,6 +6379,8 @@ export declare const LinkAttributeDetailsFragmentDoc: Apollo.DocumentNode;
|
|
|
6264
6379
|
export declare const AttributePropertiesFragmentDoc: Apollo.DocumentNode;
|
|
6265
6380
|
export declare const PropertyValueFragmentDoc: Apollo.DocumentNode;
|
|
6266
6381
|
export declare const LinkPropertyFragmentDoc: Apollo.DocumentNode;
|
|
6382
|
+
export declare const LibraryAttributeLinkFragmentDoc: Apollo.DocumentNode;
|
|
6383
|
+
export declare const LibraryAttributeFragmentDoc: Apollo.DocumentNode;
|
|
6267
6384
|
export declare const CheckApplicationExistenceDocument: Apollo.DocumentNode;
|
|
6268
6385
|
/**
|
|
6269
6386
|
* __useCheckApplicationExistenceQuery__
|
|
@@ -7802,6 +7919,32 @@ export declare function useExplorerLinkDataLazyQuery(baseOptions?: Apollo.LazyQu
|
|
|
7802
7919
|
export type ExplorerLinkDataQueryHookResult = ReturnType<typeof useExplorerLinkDataQuery>;
|
|
7803
7920
|
export type ExplorerLinkDataLazyQueryHookResult = ReturnType<typeof useExplorerLinkDataLazyQuery>;
|
|
7804
7921
|
export type ExplorerLinkDataQueryResult = Apollo.QueryResult<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>;
|
|
7922
|
+
export declare const GetLibraryAttributesDocument: Apollo.DocumentNode;
|
|
7923
|
+
/**
|
|
7924
|
+
* __useGetLibraryAttributesQuery__
|
|
7925
|
+
*
|
|
7926
|
+
* To run a query within a React component, call `useGetLibraryAttributesQuery` and pass it any options that fit your needs.
|
|
7927
|
+
* When your component renders, `useGetLibraryAttributesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
7928
|
+
* you can use to render your UI.
|
|
7929
|
+
*
|
|
7930
|
+
* @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;
|
|
7931
|
+
*
|
|
7932
|
+
* @example
|
|
7933
|
+
* const { data, loading, error } = useGetLibraryAttributesQuery({
|
|
7934
|
+
* variables: {
|
|
7935
|
+
* libraryId: // value for 'libraryId'
|
|
7936
|
+
* },
|
|
7937
|
+
* });
|
|
7938
|
+
*/
|
|
7939
|
+
export declare function useGetLibraryAttributesQuery(baseOptions: Apollo.QueryHookOptions<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>): Apollo.QueryResult<GetLibraryAttributesQuery, Exact<{
|
|
7940
|
+
libraryId: Scalars["ID"];
|
|
7941
|
+
}>>;
|
|
7942
|
+
export declare function useGetLibraryAttributesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryAttributesQuery, Exact<{
|
|
7943
|
+
libraryId: Scalars["ID"];
|
|
7944
|
+
}>>;
|
|
7945
|
+
export type GetLibraryAttributesQueryHookResult = ReturnType<typeof useGetLibraryAttributesQuery>;
|
|
7946
|
+
export type GetLibraryAttributesLazyQueryHookResult = ReturnType<typeof useGetLibraryAttributesLazyQuery>;
|
|
7947
|
+
export type GetLibraryAttributesQueryResult = Apollo.QueryResult<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>;
|
|
7805
7948
|
export declare const ExplorerLibraryDetailsDocument: Apollo.DocumentNode;
|
|
7806
7949
|
/**
|
|
7807
7950
|
* __useExplorerLibraryDetailsQuery__
|
|
@@ -7828,6 +7971,60 @@ export declare function useExplorerLibraryDetailsLazyQuery(baseOptions?: Apollo.
|
|
|
7828
7971
|
export type ExplorerLibraryDetailsQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsQuery>;
|
|
7829
7972
|
export type ExplorerLibraryDetailsLazyQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsLazyQuery>;
|
|
7830
7973
|
export type ExplorerLibraryDetailsQueryResult = Apollo.QueryResult<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>;
|
|
7974
|
+
export declare const ExplorerSelectionIdsDocument: Apollo.DocumentNode;
|
|
7975
|
+
/**
|
|
7976
|
+
* __useExplorerSelectionIdsQuery__
|
|
7977
|
+
*
|
|
7978
|
+
* To run a query within a React component, call `useExplorerSelectionIdsQuery` and pass it any options that fit your needs.
|
|
7979
|
+
* When your component renders, `useExplorerSelectionIdsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
7980
|
+
* you can use to render your UI.
|
|
7981
|
+
*
|
|
7982
|
+
* @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;
|
|
7983
|
+
*
|
|
7984
|
+
* @example
|
|
7985
|
+
* const { data, loading, error } = useExplorerSelectionIdsQuery({
|
|
7986
|
+
* variables: {
|
|
7987
|
+
* libraryId: // value for 'libraryId'
|
|
7988
|
+
* filters: // value for 'filters'
|
|
7989
|
+
* },
|
|
7990
|
+
* });
|
|
7991
|
+
*/
|
|
7992
|
+
export declare function useExplorerSelectionIdsQuery(baseOptions: Apollo.QueryHookOptions<ExplorerSelectionIdsQuery, ExplorerSelectionIdsQueryVariables>): Apollo.QueryResult<ExplorerSelectionIdsQuery, Exact<{
|
|
7993
|
+
libraryId: Scalars["ID"];
|
|
7994
|
+
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
7995
|
+
}>>;
|
|
7996
|
+
export declare function useExplorerSelectionIdsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerSelectionIdsQuery, ExplorerSelectionIdsQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerSelectionIdsQuery, Exact<{
|
|
7997
|
+
libraryId: Scalars["ID"];
|
|
7998
|
+
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
7999
|
+
}>>;
|
|
8000
|
+
export type ExplorerSelectionIdsQueryHookResult = ReturnType<typeof useExplorerSelectionIdsQuery>;
|
|
8001
|
+
export type ExplorerSelectionIdsLazyQueryHookResult = ReturnType<typeof useExplorerSelectionIdsLazyQuery>;
|
|
8002
|
+
export type ExplorerSelectionIdsQueryResult = Apollo.QueryResult<ExplorerSelectionIdsQuery, ExplorerSelectionIdsQueryVariables>;
|
|
8003
|
+
export declare const MeDocument: Apollo.DocumentNode;
|
|
8004
|
+
/**
|
|
8005
|
+
* __useMeQuery__
|
|
8006
|
+
*
|
|
8007
|
+
* To run a query within a React component, call `useMeQuery` and pass it any options that fit your needs.
|
|
8008
|
+
* When your component renders, `useMeQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
8009
|
+
* you can use to render your UI.
|
|
8010
|
+
*
|
|
8011
|
+
* @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;
|
|
8012
|
+
*
|
|
8013
|
+
* @example
|
|
8014
|
+
* const { data, loading, error } = useMeQuery({
|
|
8015
|
+
* variables: {
|
|
8016
|
+
* },
|
|
8017
|
+
* });
|
|
8018
|
+
*/
|
|
8019
|
+
export declare function useMeQuery(baseOptions?: Apollo.QueryHookOptions<MeQuery, MeQueryVariables>): Apollo.QueryResult<MeQuery, Exact<{
|
|
8020
|
+
[key: string]: never;
|
|
8021
|
+
}>>;
|
|
8022
|
+
export declare function useMeLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<MeQuery, MeQueryVariables>): Apollo.LazyQueryResultTuple<MeQuery, Exact<{
|
|
8023
|
+
[key: string]: never;
|
|
8024
|
+
}>>;
|
|
8025
|
+
export type MeQueryHookResult = ReturnType<typeof useMeQuery>;
|
|
8026
|
+
export type MeLazyQueryHookResult = ReturnType<typeof useMeLazyQuery>;
|
|
8027
|
+
export type MeQueryResult = Apollo.QueryResult<MeQuery, MeQueryVariables>;
|
|
7831
8028
|
export declare const TreeDataQueryDocument: Apollo.DocumentNode;
|
|
7832
8029
|
/**
|
|
7833
8030
|
* __useTreeDataQueryQuery__
|
package/dist/_gqlTypes/index.js
CHANGED
|
@@ -395,7 +395,6 @@ export const AttributeDetailsFragmentDoc = gql `
|
|
|
395
395
|
}
|
|
396
396
|
... on StandardAttribute {
|
|
397
397
|
unique
|
|
398
|
-
maxLength
|
|
399
398
|
}
|
|
400
399
|
... on LinkAttribute {
|
|
401
400
|
linked_library {
|
|
@@ -412,6 +411,13 @@ export const AttributeDetailsFragmentDoc = gql `
|
|
|
412
411
|
}
|
|
413
412
|
}
|
|
414
413
|
`;
|
|
414
|
+
export const AttributesByLibLinkAttributeFragmentDoc = gql `
|
|
415
|
+
fragment AttributesByLibLinkAttribute on LinkAttribute {
|
|
416
|
+
linked_library {
|
|
417
|
+
id
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
`;
|
|
415
421
|
export const AttributesByLibAttributeFragmentDoc = gql `
|
|
416
422
|
fragment AttributesByLibAttribute on Attribute {
|
|
417
423
|
id
|
|
@@ -421,11 +427,7 @@ export const AttributesByLibAttributeFragmentDoc = gql `
|
|
|
421
427
|
multiple_values
|
|
422
428
|
system
|
|
423
429
|
readonly
|
|
424
|
-
...
|
|
425
|
-
linked_library {
|
|
426
|
-
id
|
|
427
|
-
}
|
|
428
|
-
}
|
|
430
|
+
...AttributesByLibLinkAttribute
|
|
429
431
|
... on TreeAttribute {
|
|
430
432
|
linked_tree {
|
|
431
433
|
id
|
|
@@ -446,7 +448,7 @@ export const AttributesByLibAttributeFragmentDoc = gql `
|
|
|
446
448
|
}
|
|
447
449
|
}
|
|
448
450
|
}
|
|
449
|
-
`;
|
|
451
|
+
${AttributesByLibLinkAttributeFragmentDoc}`;
|
|
450
452
|
export const LibraryLightFragmentDoc = gql `
|
|
451
453
|
fragment LibraryLight on Library {
|
|
452
454
|
id
|
|
@@ -702,6 +704,7 @@ export const RecordFormAttributeFragmentDoc = gql `
|
|
|
702
704
|
values_list {
|
|
703
705
|
...StandardValuesListFragment
|
|
704
706
|
}
|
|
707
|
+
character_limit
|
|
705
708
|
}
|
|
706
709
|
... on LinkAttribute {
|
|
707
710
|
linked_library {
|
|
@@ -882,6 +885,7 @@ export const LinkAttributeDetailsFragmentDoc = gql `
|
|
|
882
885
|
label
|
|
883
886
|
linked_library {
|
|
884
887
|
id
|
|
888
|
+
label
|
|
885
889
|
}
|
|
886
890
|
}
|
|
887
891
|
`;
|
|
@@ -935,6 +939,31 @@ export const LinkPropertyFragmentDoc = gql `
|
|
|
935
939
|
${RecordIdentityFragmentDoc}
|
|
936
940
|
${AttributePropertiesFragmentDoc}
|
|
937
941
|
${PropertyValueFragmentDoc}`;
|
|
942
|
+
export const LibraryAttributeLinkFragmentDoc = gql `
|
|
943
|
+
fragment LibraryAttributeLink on LinkAttribute {
|
|
944
|
+
linked_library {
|
|
945
|
+
id
|
|
946
|
+
label
|
|
947
|
+
attributes {
|
|
948
|
+
id
|
|
949
|
+
type
|
|
950
|
+
format
|
|
951
|
+
label
|
|
952
|
+
}
|
|
953
|
+
}
|
|
954
|
+
}
|
|
955
|
+
`;
|
|
956
|
+
export const LibraryAttributeFragmentDoc = gql `
|
|
957
|
+
fragment LibraryAttribute on Attribute {
|
|
958
|
+
id
|
|
959
|
+
type
|
|
960
|
+
label
|
|
961
|
+
... on StandardAttribute {
|
|
962
|
+
format
|
|
963
|
+
}
|
|
964
|
+
...LibraryAttributeLink
|
|
965
|
+
}
|
|
966
|
+
${LibraryAttributeLinkFragmentDoc}`;
|
|
938
967
|
export const CheckApplicationExistenceDocument = gql `
|
|
939
968
|
query CHECK_APPLICATION_EXISTENCE($id: ID, $endpoint: String) {
|
|
940
969
|
applications(filters: {id: $id, endpoint: $endpoint}) {
|
|
@@ -1882,11 +1911,10 @@ export const CreateRecordDocument = gql `
|
|
|
1882
1911
|
...RecordIdentity
|
|
1883
1912
|
}
|
|
1884
1913
|
valuesErrors {
|
|
1885
|
-
|
|
1886
|
-
|
|
1914
|
+
type
|
|
1915
|
+
attribute
|
|
1887
1916
|
input
|
|
1888
1917
|
message
|
|
1889
|
-
type
|
|
1890
1918
|
}
|
|
1891
1919
|
}
|
|
1892
1920
|
}
|
|
@@ -2759,10 +2787,11 @@ export const ExplorerAttributesDocument = gql `
|
|
|
2759
2787
|
type
|
|
2760
2788
|
format
|
|
2761
2789
|
label
|
|
2790
|
+
...LinkAttributeDetails
|
|
2762
2791
|
}
|
|
2763
2792
|
}
|
|
2764
2793
|
}
|
|
2765
|
-
`;
|
|
2794
|
+
${LinkAttributeDetailsFragmentDoc}`;
|
|
2766
2795
|
/**
|
|
2767
2796
|
* __useExplorerAttributesQuery__
|
|
2768
2797
|
*
|
|
@@ -2926,6 +2955,42 @@ export function useExplorerLinkDataLazyQuery(baseOptions) {
|
|
|
2926
2955
|
const options = { ...defaultOptions, ...baseOptions };
|
|
2927
2956
|
return Apollo.useLazyQuery(ExplorerLinkDataDocument, options);
|
|
2928
2957
|
}
|
|
2958
|
+
export const GetLibraryAttributesDocument = gql `
|
|
2959
|
+
query GetLibraryAttributes($libraryId: ID!) {
|
|
2960
|
+
libraries(filters: {id: [$libraryId]}) {
|
|
2961
|
+
list {
|
|
2962
|
+
id
|
|
2963
|
+
attributes {
|
|
2964
|
+
...LibraryAttribute
|
|
2965
|
+
}
|
|
2966
|
+
}
|
|
2967
|
+
}
|
|
2968
|
+
}
|
|
2969
|
+
${LibraryAttributeFragmentDoc}`;
|
|
2970
|
+
/**
|
|
2971
|
+
* __useGetLibraryAttributesQuery__
|
|
2972
|
+
*
|
|
2973
|
+
* To run a query within a React component, call `useGetLibraryAttributesQuery` and pass it any options that fit your needs.
|
|
2974
|
+
* When your component renders, `useGetLibraryAttributesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
2975
|
+
* you can use to render your UI.
|
|
2976
|
+
*
|
|
2977
|
+
* @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;
|
|
2978
|
+
*
|
|
2979
|
+
* @example
|
|
2980
|
+
* const { data, loading, error } = useGetLibraryAttributesQuery({
|
|
2981
|
+
* variables: {
|
|
2982
|
+
* libraryId: // value for 'libraryId'
|
|
2983
|
+
* },
|
|
2984
|
+
* });
|
|
2985
|
+
*/
|
|
2986
|
+
export function useGetLibraryAttributesQuery(baseOptions) {
|
|
2987
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
2988
|
+
return Apollo.useQuery(GetLibraryAttributesDocument, options);
|
|
2989
|
+
}
|
|
2990
|
+
export function useGetLibraryAttributesLazyQuery(baseOptions) {
|
|
2991
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
2992
|
+
return Apollo.useLazyQuery(GetLibraryAttributesDocument, options);
|
|
2993
|
+
}
|
|
2929
2994
|
export const ExplorerLibraryDetailsDocument = gql `
|
|
2930
2995
|
query ExplorerLibraryDetails($libraryId: ID!) {
|
|
2931
2996
|
libraries(filters: {id: [$libraryId]}) {
|
|
@@ -2960,6 +3025,76 @@ export function useExplorerLibraryDetailsLazyQuery(baseOptions) {
|
|
|
2960
3025
|
const options = { ...defaultOptions, ...baseOptions };
|
|
2961
3026
|
return Apollo.useLazyQuery(ExplorerLibraryDetailsDocument, options);
|
|
2962
3027
|
}
|
|
3028
|
+
export const ExplorerSelectionIdsDocument = gql `
|
|
3029
|
+
query ExplorerSelectionIds($libraryId: ID!, $filters: [RecordFilterInput]) {
|
|
3030
|
+
records(library: $libraryId, filters: $filters) {
|
|
3031
|
+
list {
|
|
3032
|
+
id
|
|
3033
|
+
}
|
|
3034
|
+
}
|
|
3035
|
+
}
|
|
3036
|
+
`;
|
|
3037
|
+
/**
|
|
3038
|
+
* __useExplorerSelectionIdsQuery__
|
|
3039
|
+
*
|
|
3040
|
+
* To run a query within a React component, call `useExplorerSelectionIdsQuery` and pass it any options that fit your needs.
|
|
3041
|
+
* When your component renders, `useExplorerSelectionIdsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3042
|
+
* you can use to render your UI.
|
|
3043
|
+
*
|
|
3044
|
+
* @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;
|
|
3045
|
+
*
|
|
3046
|
+
* @example
|
|
3047
|
+
* const { data, loading, error } = useExplorerSelectionIdsQuery({
|
|
3048
|
+
* variables: {
|
|
3049
|
+
* libraryId: // value for 'libraryId'
|
|
3050
|
+
* filters: // value for 'filters'
|
|
3051
|
+
* },
|
|
3052
|
+
* });
|
|
3053
|
+
*/
|
|
3054
|
+
export function useExplorerSelectionIdsQuery(baseOptions) {
|
|
3055
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
3056
|
+
return Apollo.useQuery(ExplorerSelectionIdsDocument, options);
|
|
3057
|
+
}
|
|
3058
|
+
export function useExplorerSelectionIdsLazyQuery(baseOptions) {
|
|
3059
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
3060
|
+
return Apollo.useLazyQuery(ExplorerSelectionIdsDocument, options);
|
|
3061
|
+
}
|
|
3062
|
+
export const MeDocument = gql `
|
|
3063
|
+
query Me {
|
|
3064
|
+
me {
|
|
3065
|
+
id
|
|
3066
|
+
whoAmI {
|
|
3067
|
+
id
|
|
3068
|
+
library {
|
|
3069
|
+
id
|
|
3070
|
+
}
|
|
3071
|
+
}
|
|
3072
|
+
}
|
|
3073
|
+
}
|
|
3074
|
+
`;
|
|
3075
|
+
/**
|
|
3076
|
+
* __useMeQuery__
|
|
3077
|
+
*
|
|
3078
|
+
* To run a query within a React component, call `useMeQuery` and pass it any options that fit your needs.
|
|
3079
|
+
* When your component renders, `useMeQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3080
|
+
* you can use to render your UI.
|
|
3081
|
+
*
|
|
3082
|
+
* @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;
|
|
3083
|
+
*
|
|
3084
|
+
* @example
|
|
3085
|
+
* const { data, loading, error } = useMeQuery({
|
|
3086
|
+
* variables: {
|
|
3087
|
+
* },
|
|
3088
|
+
* });
|
|
3089
|
+
*/
|
|
3090
|
+
export function useMeQuery(baseOptions) {
|
|
3091
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
3092
|
+
return Apollo.useQuery(MeDocument, options);
|
|
3093
|
+
}
|
|
3094
|
+
export function useMeLazyQuery(baseOptions) {
|
|
3095
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
3096
|
+
return Apollo.useLazyQuery(MeDocument, options);
|
|
3097
|
+
}
|
|
2963
3098
|
export const TreeDataQueryDocument = gql `
|
|
2964
3099
|
query TreeDataQuery($treeId: ID!) {
|
|
2965
3100
|
trees(filters: {id: [$treeId]}) {
|