@leav/ui 0.3.6-032b1da → 0.3.6-0488d59
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.d.ts +1 -0
- package/dist/__mocks__/common/attribute.js +11 -2
- package/dist/__mocks__/common/attribute.js.map +1 -1
- package/dist/__mocks__/common/form.d.ts +12 -5
- package/dist/__mocks__/common/form.js +35 -4
- package/dist/__mocks__/common/form.js.map +1 -1
- package/dist/__mocks__/common/record.d.ts +13 -2
- package/dist/__mocks__/common/record.js.map +1 -1
- package/dist/__mocks__/common/value.js +3 -2
- package/dist/__mocks__/common/value.js.map +1 -1
- package/dist/__mocks__/common/view.js +7 -5
- package/dist/__mocks__/common/view.js.map +1 -1
- package/dist/__mocks__/mockQuery/mockGetLibraryDetailExtendedQuery.js +1 -1
- package/dist/__mocks__/mockQuery/mockGetLibraryDetailExtendedQuery.js.map +1 -1
- package/dist/__mocks__/mockQuery/mockGetViewListQuery.js +2 -1
- package/dist/__mocks__/mockQuery/mockGetViewListQuery.js.map +1 -1
- package/dist/_gqlTypes/index.d.ts +768 -78
- package/dist/_gqlTypes/index.js +391 -40
- package/dist/_gqlTypes/index.js.map +1 -1
- package/dist/_queries/attributes/getAttributesByLib.js +7 -5
- package/dist/_queries/attributes/getAttributesByLib.js.map +1 -1
- package/dist/_queries/libraries/getLibraryDetailExtendQuery.d.ts +3 -4
- package/dist/_queries/libraries/getLibraryDetailExtendQuery.js +2 -3
- package/dist/_queries/libraries/getLibraryDetailExtendQuery.js.map +1 -1
- package/dist/_queries/records/getRecordColumnsValues.d.ts +5 -3
- package/dist/_queries/records/getRecordColumnsValues.js +4 -1
- package/dist/_queries/records/getRecordColumnsValues.js.map +1 -1
- package/dist/_queries/records/getRecordFormQuery.js +2 -0
- package/dist/_queries/records/getRecordFormQuery.js.map +1 -1
- package/dist/_queries/records/getRecordPropertiesQuery.js +2 -0
- package/dist/_queries/records/getRecordPropertiesQuery.js.map +1 -1
- package/dist/_queries/records/getRecordsFromLibraryQuery.js +1 -0
- package/dist/_queries/records/getRecordsFromLibraryQuery.js.map +1 -1
- package/dist/_queries/records/recordFormAttributeFragment.js +4 -0
- package/dist/_queries/records/recordFormAttributeFragment.js.map +1 -1
- package/dist/_queries/views/saveViewMutation.js +1 -1
- package/dist/_queries/views/viewDetailsFragment.js +14 -11
- package/dist/_queries/views/viewDetailsFragment.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.d.ts +2 -0
- package/dist/_utils/index.js +9 -2
- package/dist/_utils/index.js.map +1 -1
- package/dist/_utils/interleaveElement.d.ts +1 -0
- package/dist/{components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/index.js → _utils/interleaveElement.js} +2 -3
- package/dist/_utils/interleaveElement.js.map +1 -0
- package/dist/antdTheme/index.d.ts +0 -3
- package/dist/antdTheme/index.js +3 -42
- package/dist/antdTheme/index.js.map +1 -1
- package/dist/components/CreateDirectory/CreateDirectory.js +1 -1
- package/dist/components/CreateDirectory/CreateDirectory.js.map +1 -1
- package/dist/components/EditApplication/EditApplication.js +2 -2
- package/dist/components/EditApplication/EditApplication.js.map +1 -1
- package/dist/components/EditApplication/_types.d.ts +2 -2
- package/dist/components/Explorer/DataView.d.ts +15 -1
- package/dist/components/Explorer/DataView.js +97 -48
- package/dist/components/Explorer/DataView.js.map +1 -1
- package/dist/components/Explorer/Explorer.d.ts +13 -6
- package/dist/components/Explorer/Explorer.js +97 -14
- package/dist/components/Explorer/Explorer.js.map +1 -1
- package/dist/components/Explorer/ExplorerTitle.d.ts +9 -0
- package/dist/components/Explorer/ExplorerTitle.js +47 -0
- package/dist/components/Explorer/ExplorerTitle.js.map +1 -0
- package/dist/components/Explorer/ExplorerToolbar.d.ts +5 -0
- package/dist/components/Explorer/ExplorerToolbar.js +45 -0
- package/dist/components/Explorer/ExplorerToolbar.js.map +1 -0
- package/dist/components/Explorer/IdCard.d.ts +7 -0
- package/dist/components/Explorer/IdCard.js +15 -0
- package/dist/components/Explorer/IdCard.js.map +1 -0
- package/dist/components/Explorer/TableCell.d.ts +8 -0
- package/dist/components/Explorer/TableCell.js +152 -0
- package/dist/components/Explorer/TableCell.js.map +1 -0
- package/dist/components/Explorer/TableTagGroup.d.ts +7 -0
- package/dist/components/Explorer/TableTagGroup.js +30 -0
- package/dist/components/Explorer/TableTagGroup.js.map +1 -0
- package/dist/components/Explorer/_constants.d.ts +5 -0
- package/dist/components/Explorer/_constants.js +18 -0
- package/dist/components/Explorer/_constants.js.map +1 -0
- package/dist/components/Explorer/_queries/prepareFiltersForRequest.d.ts +4 -0
- package/dist/components/Explorer/_queries/prepareFiltersForRequest.js +99 -0
- package/dist/components/Explorer/_queries/prepareFiltersForRequest.js.map +1 -0
- package/dist/components/Explorer/_queries/useExplorerData.d.ts +35 -0
- package/dist/components/Explorer/_queries/useExplorerData.js +119 -0
- package/dist/components/Explorer/_queries/useExplorerData.js.map +1 -0
- package/dist/components/Explorer/_types.d.ts +110 -0
- package/dist/components/Explorer/_types.js +8 -0
- package/dist/components/Explorer/_types.js.map +1 -0
- package/dist/components/Explorer/conditionsHelper.d.ts +2 -0
- package/dist/components/Explorer/conditionsHelper.js +16 -0
- package/dist/components/Explorer/conditionsHelper.js.map +1 -0
- package/dist/components/Explorer/index.d.ts +9 -1
- package/dist/components/Explorer/index.js +6 -1
- package/dist/components/Explorer/index.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/_shared/ColumnItem.d.ts +12 -0
- package/dist/components/Explorer/manage-view-settings/_shared/ColumnItem.js +85 -0
- package/dist/components/Explorer/manage-view-settings/_shared/ColumnItem.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/_shared/CommonFilterItem.d.ts +6 -0
- package/dist/components/Explorer/manage-view-settings/_shared/CommonFilterItem.js +12 -0
- package/dist/components/Explorer/manage-view-settings/_shared/CommonFilterItem.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/_shared/useAttributeDetailsData.d.ts +13 -0
- package/dist/components/Explorer/manage-view-settings/_shared/useAttributeDetailsData.js +67 -0
- package/dist/components/Explorer/manage-view-settings/_shared/useAttributeDetailsData.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/configure-display/ConfigureDisplay.d.ts +6 -0
- package/dist/components/Explorer/manage-view-settings/configure-display/ConfigureDisplay.js +28 -0
- package/dist/components/Explorer/manage-view-settings/configure-display/ConfigureDisplay.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/configure-display/attributes/SelectVisibleAttributes.d.ts +6 -0
- package/dist/components/Explorer/manage-view-settings/configure-display/attributes/SelectVisibleAttributes.js +56 -0
- package/dist/components/Explorer/manage-view-settings/configure-display/attributes/SelectVisibleAttributes.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/configure-display/view-type/SelectViewType.d.ts +8 -0
- package/dist/components/Explorer/manage-view-settings/configure-display/view-type/SelectViewType.js +12 -0
- package/dist/components/Explorer/manage-view-settings/configure-display/view-type/SelectViewType.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.d.ts +4 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.js +88 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/FilterListItem.d.ts +9 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/FilterListItem.js +33 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/FilterListItem.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/BooleanAttributeDropdown.d.ts +3 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/BooleanAttributeDropdown.js +22 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/BooleanAttributeDropdown.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ColorAttributeDropDown.d.ts +3 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ColorAttributeDropDown.js +11 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ColorAttributeDropDown.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateAttributeDropDown.d.ts +3 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateAttributeDropDown.js +66 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateAttributeDropDown.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateRangeAttributeDropDown.d.ts +3 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateRangeAttributeDropDown.js +11 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateRangeAttributeDropDown.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/EncryptedAttributeDropDown.d.ts +3 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/EncryptedAttributeDropDown.js +11 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/EncryptedAttributeDropDown.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ExtendedAttributeDropDown.d.ts +3 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ExtendedAttributeDropDown.js +11 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ExtendedAttributeDropDown.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.d.ts +3 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.js +35 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropdownContent.d.ts +7 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropdownContent.js +40 -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/FilterValueList.d.ts +10 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterValueList.js +75 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterValueList.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 +3 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/NumericAttributeDropDown.js +19 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/NumericAttributeDropDown.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TextAttributeDropDown.d.ts +3 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TextAttributeDropDown.js +28 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TextAttributeDropDown.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/_types.d.ts +10 -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 +12 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/useConditionOptionsByType.js +108 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/useConditionOptionsByType.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/index.d.ts +8 -0
- package/dist/components/Explorer/manage-view-settings/index.js +11 -0
- package/dist/components/Explorer/manage-view-settings/index.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContext.d.ts +15 -0
- package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContext.js +15 -0
- package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContext.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContextProvider.d.ts +7 -0
- package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContextProvider.js +17 -0
- package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContextProvider.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/open-view-settings/SidePanel.d.ts +2 -0
- package/dist/components/Explorer/manage-view-settings/open-view-settings/SidePanel.js +19 -0
- package/dist/components/Explorer/manage-view-settings/open-view-settings/SidePanel.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/open-view-settings/useEditSettings.d.ts +1 -0
- package/dist/components/{RecordEdition/EditRecordContent/reducers/standardFieldReducer/useStandardFieldReducer.js → Explorer/manage-view-settings/open-view-settings/useEditSettings.js} +3 -3
- package/dist/components/Explorer/manage-view-settings/open-view-settings/useEditSettings.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/open-view-settings/useOpenViewSettings.d.ts +5 -0
- package/dist/components/Explorer/manage-view-settings/open-view-settings/useOpenViewSettings.js +39 -0
- package/dist/components/Explorer/manage-view-settings/open-view-settings/useOpenViewSettings.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/router-menu/SettingItem.d.ts +9 -0
- package/dist/components/Explorer/manage-view-settings/router-menu/SettingItem.js +55 -0
- package/dist/components/Explorer/manage-view-settings/router-menu/SettingItem.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/router-menu/SettingsPanel.d.ts +8 -0
- package/dist/components/Explorer/manage-view-settings/router-menu/SettingsPanel.js +77 -0
- package/dist/components/Explorer/manage-view-settings/router-menu/SettingsPanel.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/sort-items/SortItems.d.ts +4 -0
- package/dist/components/Explorer/manage-view-settings/sort-items/SortItems.js +113 -0
- package/dist/components/Explorer/manage-view-settings/sort-items/SortItems.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/sort-items/SortListItem.d.ts +10 -0
- package/dist/components/Explorer/manage-view-settings/sort-items/SortListItem.js +32 -0
- package/dist/components/Explorer/manage-view-settings/sort-items/SortListItem.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/store-view-settings/ViewSettingsContext.d.ts +6 -0
- package/dist/components/Explorer/manage-view-settings/store-view-settings/ViewSettingsContext.js +11 -0
- package/dist/components/Explorer/manage-view-settings/store-view-settings/ViewSettingsContext.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/store-view-settings/useViewSettingsContext.d.ts +4 -0
- package/dist/components/Explorer/manage-view-settings/store-view-settings/useViewSettingsContext.js +7 -0
- package/dist/components/Explorer/manage-view-settings/store-view-settings/useViewSettingsContext.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.d.ts +4 -0
- package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.js +25 -0
- package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.d.ts +159 -0
- package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.js +232 -0
- package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.js.map +1 -0
- package/dist/components/Explorer/useColumnWidth.d.ts +6 -0
- package/dist/components/Explorer/useColumnWidth.js +48 -0
- package/dist/components/Explorer/useColumnWidth.js.map +1 -0
- package/dist/components/Explorer/{useCreateMainAction.d.ts → useCreateAction.d.ts} +5 -3
- package/dist/components/Explorer/useCreateAction.js +73 -0
- package/dist/components/Explorer/useCreateAction.js.map +1 -0
- package/dist/components/Explorer/useDeactivateMassAction.d.ts +27 -0
- package/dist/components/Explorer/useDeactivateMassAction.js +71 -0
- package/dist/components/Explorer/useDeactivateMassAction.js.map +1 -0
- package/dist/components/Explorer/useEditAction.d.ts +1 -1
- package/dist/components/Explorer/useEditAction.js +10 -8
- package/dist/components/Explorer/useEditAction.js.map +1 -1
- package/dist/components/Explorer/useMassActions.d.ts +27 -0
- package/dist/components/Explorer/useMassActions.js +109 -0
- package/dist/components/Explorer/useMassActions.js.map +1 -0
- package/dist/components/Explorer/usePagination.d.ts +7 -0
- package/dist/components/Explorer/usePagination.js +25 -0
- package/dist/components/Explorer/usePagination.js.map +1 -0
- package/dist/components/Explorer/usePrimaryActions.d.ts +12 -0
- package/dist/components/Explorer/usePrimaryActions.js +28 -0
- package/dist/components/Explorer/usePrimaryActions.js.map +1 -0
- package/dist/components/Explorer/useRemoveAction.d.ts +23 -0
- package/dist/components/Explorer/useRemoveAction.js +109 -0
- package/dist/components/Explorer/useRemoveAction.js.map +1 -0
- package/dist/components/Explorer/useSearchInput.d.ts +16 -0
- package/dist/components/Explorer/useSearchInput.js +39 -0
- package/dist/components/Explorer/useSearchInput.js.map +1 -0
- package/dist/components/Explorer/useTableScrollableHeight.d.ts +5 -0
- package/dist/components/Explorer/useTableScrollableHeight.js +15 -0
- package/dist/components/Explorer/useTableScrollableHeight.js.map +1 -0
- package/dist/components/Explorer/useViewSettingsReducer.d.ts +8 -0
- package/dist/components/Explorer/useViewSettingsReducer.js +208 -0
- package/dist/components/Explorer/useViewSettingsReducer.js.map +1 -0
- package/dist/components/ExportModal/ExportModal.js +2 -2
- package/dist/components/ExportModal/ExportModal.js.map +1 -1
- package/dist/components/ImportModal/ImportModalConfigStep/ImportModalConfigStep.js +5 -5
- package/dist/components/ImportModal/ImportModalConfigStep/ImportModalConfigStep.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/LibraryItemsListContent/LibraryItemsListContent.js +7 -11
- package/dist/components/LibraryItemsList/LibraryItemsListContent/LibraryItemsListContent.js.map +1 -1
- package/dist/components/LibraryItemsList/LibraryItemsListTable/Cell/StandardCell/StandardCell.js +7 -2
- package/dist/components/LibraryItemsList/LibraryItemsListTable/Cell/StandardCell/StandardCell.js.map +1 -1
- package/dist/components/LibraryItemsList/LibraryItemsListTable/Header/Header.js +7 -5
- package/dist/components/LibraryItemsList/LibraryItemsListTable/Header/Header.js.map +1 -1
- package/dist/components/LibraryItemsList/MenuView/MenuView.js +4 -9
- package/dist/components/LibraryItemsList/MenuView/MenuView.js.map +1 -1
- package/dist/components/LibraryItemsList/ViewPanel/EditView/EditView.js +2 -3
- package/dist/components/LibraryItemsList/ViewPanel/EditView/EditView.js.map +1 -1
- package/dist/components/LibraryItemsList/ViewPanel/View/View.js +3 -3
- package/dist/components/LibraryItemsList/ViewPanel/View/View.js.map +1 -1
- package/dist/components/LibraryItemsList/helpers/getFieldsFromView.js +4 -9
- package/dist/components/LibraryItemsList/helpers/getFieldsFromView.js.map +1 -1
- package/dist/components/LibraryItemsList/hooks/useLibraryView/useLibraryView.js +7 -5
- package/dist/components/LibraryItemsList/hooks/useLibraryView/useLibraryView.js.map +1 -1
- package/dist/components/LibraryItemsList/hooks/useSearchReducer/_types.d.ts +1 -1
- package/dist/components/LibraryItemsList/hooks/useSearchReducer/searchReducer.d.ts +1 -1
- package/dist/components/LibraryItemsList/hooks/useSearchReducer/searchReducer.js +25 -33
- package/dist/components/LibraryItemsList/hooks/useSearchReducer/searchReducer.js.map +1 -1
- package/dist/components/RecordEdition/EditRecord/EditRecord.d.ts +1 -0
- package/dist/components/RecordEdition/EditRecord/EditRecord.js +97 -77
- package/dist/components/RecordEdition/EditRecord/EditRecord.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js +18 -5
- package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/_types.d.ts +12 -23
- package/dist/components/RecordEdition/EditRecordContent/_types.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/antdUtils.d.ts +5 -1
- package/dist/components/RecordEdition/EditRecordContent/antdUtils.js +44 -34
- package/dist/components/RecordEdition/EditRecordContent/antdUtils.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/helpers/extractFormElements/extractFormElements.d.ts +3 -1
- package/dist/components/RecordEdition/EditRecordContent/helpers/extractFormElements/extractFormElements.js +8 -2
- package/dist/components/RecordEdition/EditRecordContent/helpers/extractFormElements/extractFormElements.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/hooks/useExecuteSaveValueBatchMutation.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/hooks/useRunActionsListAndFormatOnValue.d.ts +121 -0
- package/dist/components/RecordEdition/EditRecordContent/hooks/useRunActionsListAndFormatOnValue.js +31 -0
- package/dist/components/RecordEdition/EditRecordContent/hooks/useRunActionsListAndFormatOnValue.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/Container/Container.d.ts +3 -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.js +2 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MonoValueSelect/MonoValueSelect.d.ts +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MonoValueSelect/MonoValueSelect.js +2 -7
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MonoValueSelect/MonoValueSelect.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MultiValueSelect/MultiValueSelect.d.ts +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MultiValueSelect/MultiValueSelect.js +2 -9
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MultiValueSelect/MultiValueSelect.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/ComputeIndicator.d.ts +6 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/ComputeIndicator.js +16 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/ComputeIndicator.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/DeleteAllValuesButton.d.ts +4 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/DeleteAllValuesButton.js +25 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/DeleteAllValuesButton.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.d.ts +5 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js +201 -186
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSBooleanWrapper.d.ts +2 -8
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSBooleanWrapper.js +14 -30
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSBooleanWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSColorPickerWrapper.d.ts +2 -13
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSColorPickerWrapper.js +82 -45
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSColorPickerWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSDatePickerWrapper.d.ts +3 -14
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSDatePickerWrapper.js +43 -45
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSDatePickerWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputEncryptedWrapper.d.ts +3 -14
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputEncryptedWrapper.js +16 -73
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputEncryptedWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputNumberWrapper.d.ts +3 -14
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputNumberWrapper.js +33 -49
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputNumberWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputWrapper.d.ts +3 -14
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputWrapper.js +36 -60
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRangePickerWrapper.d.ts +3 -14
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRangePickerWrapper.js +60 -63
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRangePickerWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRichTextWrapper.d.ts +3 -14
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRichTextWrapper.js +36 -56
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRichTextWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValue.d.ts +16 -9
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValue.js +56 -402
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValue.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/DSListSelect.d.ts +4 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/DSListSelect.js +141 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/DSListSelect.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/_types.d.ts +10 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/_types.js +2 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/_types.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/_types.d.ts +15 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/_types.js +2 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/_types.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/calculatedInheritedFlags.d.ts +42 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/calculatedInheritedFlags.js +56 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/calculatedInheritedFlags.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/useGetPresentationValues.d.ts +12 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/useGetPresentationValues.js +32 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/useGetPresentationValues.js.map +1 -0
- 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/EditRecordContent/uiElements/TreeField/ValuesAdd/ValuesAdd.js +2 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/ValuesAdd/ValuesAdd.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.js +10 -4
- package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.d.ts +2 -0
- package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.js +2 -2
- package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.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 → Breacrumb}/index.js +2 -2
- package/dist/components/RecordEdition/EditRecordSidebar/Breacrumb/index.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.d.ts +4 -1
- package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.js +41 -6
- package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordSidebar/PropertiesList/PropertiesList.d.ts +4 -7
- package/dist/components/RecordEdition/EditRecordSidebar/PropertiesList/PropertiesList.js +6 -8
- package/dist/components/RecordEdition/EditRecordSidebar/PropertiesList/PropertiesList.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordInformations/RecordInformations.d.ts +9 -0
- package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordInformations/RecordInformations.js +42 -0
- package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordInformations/RecordInformations.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordInformations/useRecordInformations.d.ts +6 -0
- package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordInformations/useRecordInformations.js +35 -0
- package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordInformations/useRecordInformations.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordSummary.d.ts +2 -281
- package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordSummary.js +25 -56
- 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 +66 -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/TreeValuePath → ValuesSummary}/index.js +2 -2
- package/dist/components/RecordEdition/EditRecordSidebar/ValuesSummary/index.js.map +1 -0
- package/dist/components/RecordEdition/{EditRecordContent → EditRecordSkeleton}/EditRecordSkeleton.d.ts +1 -1
- package/dist/components/RecordEdition/{EditRecordContent → EditRecordSkeleton}/EditRecordSkeleton.js +2 -2
- package/dist/components/RecordEdition/EditRecordSkeleton/EditRecordSkeleton.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordSkeleton/index.d.ts +2 -0
- package/dist/components/RecordEdition/{EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler → EditRecordSkeleton}/index.js +2 -1
- package/dist/components/RecordEdition/EditRecordSkeleton/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/RecordEdition/index.d.ts +1 -0
- package/dist/components/RecordEdition/index.js +1 -0
- package/dist/components/RecordEdition/index.js.map +1 -1
- package/dist/components/SelectTreeNode/SelectTreeNode.d.ts +4 -7
- package/dist/components/SelectTreeNode/SelectTreeNode.js +17 -135
- package/dist/components/SelectTreeNode/SelectTreeNode.js.map +1 -1
- package/dist/components/SelectTreeNode/SelectTreeNodeContent.d.ts +16 -0
- package/dist/components/SelectTreeNode/SelectTreeNodeContent.js +129 -0
- package/dist/components/SelectTreeNode/SelectTreeNodeContent.js.map +1 -0
- package/dist/components/SelectTreeNode/index.d.ts +1 -1
- package/dist/components/SelectTreeNode/index.js +1 -1
- package/dist/components/SelectTreeNode/index.js.map +1 -1
- package/dist/components/SelectTreeNodeModal/SelectTreeNodeModal.d.ts +4 -7
- package/dist/components/SelectTreeNodeModal/SelectTreeNodeModal.js +10 -10
- package/dist/components/SelectTreeNodeModal/SelectTreeNodeModal.js.map +1 -1
- package/dist/components/SelectTreeNodeModal/index.d.ts +1 -2
- package/dist/components/SelectTreeNodeModal/index.js +1 -2
- package/dist/components/SelectTreeNodeModal/index.js.map +1 -1
- package/dist/components/UploadFiles/UploadFiles.js +1 -1
- package/dist/components/UploadFiles/UploadFiles.js.map +1 -1
- package/dist/components/ValuesVersionConfigurator/VersionTree/VersionTree.js +2 -2
- package/dist/components/ValuesVersionConfigurator/VersionTree/VersionTree.js.map +1 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +1 -0
- package/dist/components/index.js.map +1 -1
- package/dist/constants.d.ts +3 -0
- package/dist/constants.js +3 -0
- package/dist/constants.js.map +1 -1
- package/dist/hooks/useDebouncedValue/index.d.ts +1 -0
- package/dist/{components/RecordEdition/EditRecordSidebar/ValueDetails/ValueInfo → hooks/useDebouncedValue}/index.js +1 -2
- package/dist/hooks/useDebouncedValue/index.js.map +1 -0
- package/dist/hooks/useExecuteSaveViewMutation/index.d.ts +1 -0
- package/dist/{components/RecordEdition/EditRecordSidebar/ValueDetails/ValueMetadata → hooks/useExecuteSaveViewMutation}/index.js +1 -2
- package/dist/hooks/useExecuteSaveViewMutation/index.js.map +1 -0
- package/dist/hooks/useExecuteSaveViewMutation/useExecuteSaveViewMutation.d.ts +6 -0
- package/dist/hooks/{useExecuteAddViewMutation/useExecuteAddViewMutation.js → useExecuteSaveViewMutation/useExecuteSaveViewMutation.js} +6 -6
- package/dist/hooks/useExecuteSaveViewMutation/useExecuteSaveViewMutation.js.map +1 -0
- package/dist/hooks/useGetRecordForm/useGetRecordForm.d.ts +1 -0
- package/dist/hooks/useGetRecordForm/useGetRecordForm.js.map +1 -1
- package/dist/locales/en/shared.json +104 -10
- package/dist/locales/fr/shared.json +106 -12
- package/dist/types/views.d.ts +4 -4
- package/package.json +7 -2
- package/dist/components/Explorer/types.d.ts +0 -21
- package/dist/components/Explorer/types.js +0 -2
- package/dist/components/Explorer/types.js.map +0 -1
- package/dist/components/Explorer/useCreateMainAction.js +0 -36
- package/dist/components/Explorer/useCreateMainAction.js.map +0 -1
- package/dist/components/Explorer/useDeactivateAction.d.ts +0 -12
- package/dist/components/Explorer/useDeactivateAction.js +0 -51
- package/dist/components/Explorer/useDeactivateAction.js.map +0 -1
- package/dist/components/Explorer/useExplorerData.d.ts +0 -11
- package/dist/components/Explorer/useExplorerData.js +0 -23
- package/dist/components/Explorer/useExplorerData.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/EditRecordSkeleton.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/index.d.ts +0 -2
- package/dist/components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/index.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/standardFieldReducer.d.ts +0 -138
- package/dist/components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/standardFieldReducer.js +0 -367
- package/dist/components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/standardFieldReducer.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/standardFieldReducerContext.d.ts +0 -7
- package/dist/components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/standardFieldReducerContext.js +0 -9
- package/dist/components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/standardFieldReducerContext.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/useStandardFieldReducer.d.ts +0 -1
- package/dist/components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/useStandardFieldReducer.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/shared/ValueDetailsBtn/useValueDetailsButton.d.ts +0 -8
- package/dist/components/RecordEdition/EditRecordContent/shared/ValueDetailsBtn/useValueDetailsButton.js +0 -23
- package/dist/components/RecordEdition/EditRecordContent/shared/ValueDetailsBtn/useValueDetailsButton.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/CheckboxInput.d.ts +0 -3
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/CheckboxInput.js +0 -14
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/CheckboxInput.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/ColorInput.d.ts +0 -3
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/ColorInput.js +0 -22
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/ColorInput.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/DateInput.d.ts +0 -3
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/DateInput.js +0 -22
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/DateInput.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/EncryptedInput.d.ts +0 -3
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/EncryptedInput.js +0 -19
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/EncryptedInput.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/NumberInput.d.ts +0 -3
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/NumberInput.js +0 -32
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/NumberInput.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/RichTextEditorInput.d.ts +0 -3
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/RichTextEditorInput.js +0 -51
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/RichTextEditorInput.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/TextInput.d.ts +0 -3
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/TextInput.js +0 -26
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/TextInput.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/StandardFieldValueDisplayHandler.d.ts +0 -13
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/StandardFieldValueDisplayHandler.js +0 -80
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/StandardFieldValueDisplayHandler.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/StandardFieldValueRead/ColorPickerBlock.d.ts +0 -7
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/StandardFieldValueRead/ColorPickerBlock.js +0 -45
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/StandardFieldValueRead/ColorPickerBlock.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/StandardFieldValueRead/StandardFieldValueRead.d.ts +0 -9
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/StandardFieldValueRead/StandardFieldValueRead.js +0 -137
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/StandardFieldValueRead/StandardFieldValueRead.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/index.d.ts +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/index.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.map +0 -1
- package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/ValueDetails.d.ts +0 -10
- package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/ValueDetails.js +0 -63
- 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.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
- package/dist/hooks/useExecuteAddViewMutation/useExecuteAddViewMutation.d.ts +0 -6
- package/dist/hooks/useExecuteAddViewMutation/useExecuteAddViewMutation.js.map +0 -1
|
@@ -158,14 +158,15 @@ export declare enum AttributeType {
|
|
|
158
158
|
tree = "tree"
|
|
159
159
|
}
|
|
160
160
|
export type AttributesFiltersInput = {
|
|
161
|
-
format?: InputMaybe<Array<
|
|
161
|
+
format?: InputMaybe<Array<AttributeFormat>>;
|
|
162
162
|
id?: InputMaybe<Scalars['ID']>;
|
|
163
|
+
ids?: InputMaybe<Array<Scalars['ID']>>;
|
|
163
164
|
label?: InputMaybe<Scalars['String']>;
|
|
164
|
-
libraries?: InputMaybe<Array<
|
|
165
|
-
librariesExcluded?: InputMaybe<Array<
|
|
165
|
+
libraries?: InputMaybe<Array<Scalars['String']>>;
|
|
166
|
+
librariesExcluded?: InputMaybe<Array<Scalars['String']>>;
|
|
166
167
|
multiple_values?: InputMaybe<Scalars['Boolean']>;
|
|
167
168
|
system?: InputMaybe<Scalars['Boolean']>;
|
|
168
|
-
type?: InputMaybe<Array<
|
|
169
|
+
type?: InputMaybe<Array<AttributeType>>;
|
|
169
170
|
versionable?: InputMaybe<Scalars['Boolean']>;
|
|
170
171
|
};
|
|
171
172
|
export declare enum AttributesSortableFields {
|
|
@@ -701,6 +702,7 @@ export declare enum ValueVersionMode {
|
|
|
701
702
|
}
|
|
702
703
|
export type ValuesListConfInput = {
|
|
703
704
|
allowFreeEntry?: InputMaybe<Scalars['Boolean']>;
|
|
705
|
+
allowListUpdate?: InputMaybe<Scalars['Boolean']>;
|
|
704
706
|
enable: Scalars['Boolean'];
|
|
705
707
|
values?: InputMaybe<Array<Scalars['String']>>;
|
|
706
708
|
};
|
|
@@ -724,10 +726,11 @@ export declare enum VersionProfilesSortableFields {
|
|
|
724
726
|
id = "id"
|
|
725
727
|
}
|
|
726
728
|
export type ViewDisplayInput = {
|
|
727
|
-
size
|
|
729
|
+
size?: InputMaybe<ViewSizes>;
|
|
728
730
|
type: ViewTypes;
|
|
729
731
|
};
|
|
730
732
|
export type ViewInput = {
|
|
733
|
+
attributes?: InputMaybe<Array<Scalars['String']>>;
|
|
731
734
|
color?: InputMaybe<Scalars['String']>;
|
|
732
735
|
description?: InputMaybe<Scalars['SystemTranslationOptional']>;
|
|
733
736
|
display: ViewDisplayInput;
|
|
@@ -735,15 +738,10 @@ export type ViewInput = {
|
|
|
735
738
|
id?: InputMaybe<Scalars['String']>;
|
|
736
739
|
label?: InputMaybe<Scalars['SystemTranslation']>;
|
|
737
740
|
library: Scalars['String'];
|
|
738
|
-
settings?: InputMaybe<Array<ViewSettingsInput>>;
|
|
739
741
|
shared: Scalars['Boolean'];
|
|
740
|
-
sort?: InputMaybe<RecordSortInput
|
|
742
|
+
sort?: InputMaybe<Array<RecordSortInput>>;
|
|
741
743
|
valuesVersions?: InputMaybe<Array<ViewValuesVersionInput>>;
|
|
742
744
|
};
|
|
743
|
-
export type ViewSettingsInput = {
|
|
744
|
-
name: Scalars['String'];
|
|
745
|
-
value?: InputMaybe<Scalars['Any']>;
|
|
746
|
-
};
|
|
747
745
|
export declare enum ViewSizes {
|
|
748
746
|
BIG = "BIG",
|
|
749
747
|
MEDIUM = "MEDIUM",
|
|
@@ -955,6 +953,11 @@ export type AttributesByLibAttributeTreeAttributeFragment = {
|
|
|
955
953
|
} | null;
|
|
956
954
|
};
|
|
957
955
|
export type AttributesByLibAttributeFragment = AttributesByLibAttributeLinkAttributeFragment | AttributesByLibAttributeStandardAttributeFragment | AttributesByLibAttributeTreeAttributeFragment;
|
|
956
|
+
export type AttributesByLibLinkAttributeFragment = {
|
|
957
|
+
linked_library?: {
|
|
958
|
+
id: string;
|
|
959
|
+
} | null;
|
|
960
|
+
};
|
|
958
961
|
export type LibraryLightFragment = {
|
|
959
962
|
id: string;
|
|
960
963
|
label?: any | null;
|
|
@@ -1485,7 +1488,9 @@ export type RecordFormElementFragment = {
|
|
|
1485
1488
|
format?: AttributeFormat | null;
|
|
1486
1489
|
system: boolean;
|
|
1487
1490
|
readonly: boolean;
|
|
1491
|
+
required: boolean;
|
|
1488
1492
|
multiple_values: boolean;
|
|
1493
|
+
compute: boolean;
|
|
1489
1494
|
linked_library?: {
|
|
1490
1495
|
id: string;
|
|
1491
1496
|
label?: any | null;
|
|
@@ -1497,6 +1502,7 @@ export type RecordFormElementFragment = {
|
|
|
1497
1502
|
linkValuesList?: {
|
|
1498
1503
|
enable: boolean;
|
|
1499
1504
|
allowFreeEntry?: boolean | null;
|
|
1505
|
+
allowListUpdate?: boolean | null;
|
|
1500
1506
|
values?: Array<{
|
|
1501
1507
|
id: string;
|
|
1502
1508
|
whoAmI: {
|
|
@@ -1542,6 +1548,7 @@ export type RecordFormElementFragment = {
|
|
|
1542
1548
|
values_list?: {
|
|
1543
1549
|
enable: boolean;
|
|
1544
1550
|
allowFreeEntry?: boolean | null;
|
|
1551
|
+
allowListUpdate?: boolean | null;
|
|
1545
1552
|
dateRangeValues?: Array<{
|
|
1546
1553
|
from?: string | null;
|
|
1547
1554
|
to?: string | null;
|
|
@@ -1549,6 +1556,7 @@ export type RecordFormElementFragment = {
|
|
|
1549
1556
|
} | {
|
|
1550
1557
|
enable: boolean;
|
|
1551
1558
|
allowFreeEntry?: boolean | null;
|
|
1559
|
+
allowListUpdate?: boolean | null;
|
|
1552
1560
|
values?: Array<string> | null;
|
|
1553
1561
|
} | null;
|
|
1554
1562
|
metadata_fields?: Array<{
|
|
@@ -1563,10 +1571,13 @@ export type RecordFormElementFragment = {
|
|
|
1563
1571
|
format?: AttributeFormat | null;
|
|
1564
1572
|
system: boolean;
|
|
1565
1573
|
readonly: boolean;
|
|
1574
|
+
required: boolean;
|
|
1566
1575
|
multiple_values: boolean;
|
|
1576
|
+
compute: boolean;
|
|
1567
1577
|
values_list?: {
|
|
1568
1578
|
enable: boolean;
|
|
1569
1579
|
allowFreeEntry?: boolean | null;
|
|
1580
|
+
allowListUpdate?: boolean | null;
|
|
1570
1581
|
dateRangeValues?: Array<{
|
|
1571
1582
|
from?: string | null;
|
|
1572
1583
|
to?: string | null;
|
|
@@ -1574,6 +1585,7 @@ export type RecordFormElementFragment = {
|
|
|
1574
1585
|
} | {
|
|
1575
1586
|
enable: boolean;
|
|
1576
1587
|
allowFreeEntry?: boolean | null;
|
|
1588
|
+
allowListUpdate?: boolean | null;
|
|
1577
1589
|
values?: Array<string> | null;
|
|
1578
1590
|
} | null;
|
|
1579
1591
|
permissions: {
|
|
@@ -1606,6 +1618,7 @@ export type RecordFormElementFragment = {
|
|
|
1606
1618
|
values_list?: {
|
|
1607
1619
|
enable: boolean;
|
|
1608
1620
|
allowFreeEntry?: boolean | null;
|
|
1621
|
+
allowListUpdate?: boolean | null;
|
|
1609
1622
|
dateRangeValues?: Array<{
|
|
1610
1623
|
from?: string | null;
|
|
1611
1624
|
to?: string | null;
|
|
@@ -1613,6 +1626,7 @@ export type RecordFormElementFragment = {
|
|
|
1613
1626
|
} | {
|
|
1614
1627
|
enable: boolean;
|
|
1615
1628
|
allowFreeEntry?: boolean | null;
|
|
1629
|
+
allowListUpdate?: boolean | null;
|
|
1616
1630
|
values?: Array<string> | null;
|
|
1617
1631
|
} | null;
|
|
1618
1632
|
metadata_fields?: Array<{
|
|
@@ -1627,7 +1641,9 @@ export type RecordFormElementFragment = {
|
|
|
1627
1641
|
format?: AttributeFormat | null;
|
|
1628
1642
|
system: boolean;
|
|
1629
1643
|
readonly: boolean;
|
|
1644
|
+
required: boolean;
|
|
1630
1645
|
multiple_values: boolean;
|
|
1646
|
+
compute: boolean;
|
|
1631
1647
|
linked_tree?: {
|
|
1632
1648
|
id: string;
|
|
1633
1649
|
label?: any | null;
|
|
@@ -1635,6 +1651,7 @@ export type RecordFormElementFragment = {
|
|
|
1635
1651
|
treeValuesList?: {
|
|
1636
1652
|
enable: boolean;
|
|
1637
1653
|
allowFreeEntry?: boolean | null;
|
|
1654
|
+
allowListUpdate?: boolean | null;
|
|
1638
1655
|
values?: Array<{
|
|
1639
1656
|
id: string;
|
|
1640
1657
|
record: {
|
|
@@ -1699,6 +1716,7 @@ export type RecordFormElementFragment = {
|
|
|
1699
1716
|
values_list?: {
|
|
1700
1717
|
enable: boolean;
|
|
1701
1718
|
allowFreeEntry?: boolean | null;
|
|
1719
|
+
allowListUpdate?: boolean | null;
|
|
1702
1720
|
dateRangeValues?: Array<{
|
|
1703
1721
|
from?: string | null;
|
|
1704
1722
|
to?: string | null;
|
|
@@ -1706,6 +1724,7 @@ export type RecordFormElementFragment = {
|
|
|
1706
1724
|
} | {
|
|
1707
1725
|
enable: boolean;
|
|
1708
1726
|
allowFreeEntry?: boolean | null;
|
|
1727
|
+
allowListUpdate?: boolean | null;
|
|
1709
1728
|
values?: Array<string> | null;
|
|
1710
1729
|
} | null;
|
|
1711
1730
|
metadata_fields?: Array<{
|
|
@@ -2127,7 +2146,9 @@ export type RecordFormAttributeLinkAttributeFragment = {
|
|
|
2127
2146
|
format?: AttributeFormat | null;
|
|
2128
2147
|
system: boolean;
|
|
2129
2148
|
readonly: boolean;
|
|
2149
|
+
required: boolean;
|
|
2130
2150
|
multiple_values: boolean;
|
|
2151
|
+
compute: boolean;
|
|
2131
2152
|
linked_library?: {
|
|
2132
2153
|
id: string;
|
|
2133
2154
|
label?: any | null;
|
|
@@ -2139,6 +2160,7 @@ export type RecordFormAttributeLinkAttributeFragment = {
|
|
|
2139
2160
|
linkValuesList?: {
|
|
2140
2161
|
enable: boolean;
|
|
2141
2162
|
allowFreeEntry?: boolean | null;
|
|
2163
|
+
allowListUpdate?: boolean | null;
|
|
2142
2164
|
values?: Array<{
|
|
2143
2165
|
id: string;
|
|
2144
2166
|
whoAmI: {
|
|
@@ -2184,6 +2206,7 @@ export type RecordFormAttributeLinkAttributeFragment = {
|
|
|
2184
2206
|
values_list?: {
|
|
2185
2207
|
enable: boolean;
|
|
2186
2208
|
allowFreeEntry?: boolean | null;
|
|
2209
|
+
allowListUpdate?: boolean | null;
|
|
2187
2210
|
dateRangeValues?: Array<{
|
|
2188
2211
|
from?: string | null;
|
|
2189
2212
|
to?: string | null;
|
|
@@ -2191,6 +2214,7 @@ export type RecordFormAttributeLinkAttributeFragment = {
|
|
|
2191
2214
|
} | {
|
|
2192
2215
|
enable: boolean;
|
|
2193
2216
|
allowFreeEntry?: boolean | null;
|
|
2217
|
+
allowListUpdate?: boolean | null;
|
|
2194
2218
|
values?: Array<string> | null;
|
|
2195
2219
|
} | null;
|
|
2196
2220
|
metadata_fields?: Array<{
|
|
@@ -2206,10 +2230,13 @@ export type RecordFormAttributeStandardAttributeFragment = {
|
|
|
2206
2230
|
format?: AttributeFormat | null;
|
|
2207
2231
|
system: boolean;
|
|
2208
2232
|
readonly: boolean;
|
|
2233
|
+
required: boolean;
|
|
2209
2234
|
multiple_values: boolean;
|
|
2235
|
+
compute: boolean;
|
|
2210
2236
|
values_list?: {
|
|
2211
2237
|
enable: boolean;
|
|
2212
2238
|
allowFreeEntry?: boolean | null;
|
|
2239
|
+
allowListUpdate?: boolean | null;
|
|
2213
2240
|
dateRangeValues?: Array<{
|
|
2214
2241
|
from?: string | null;
|
|
2215
2242
|
to?: string | null;
|
|
@@ -2217,6 +2244,7 @@ export type RecordFormAttributeStandardAttributeFragment = {
|
|
|
2217
2244
|
} | {
|
|
2218
2245
|
enable: boolean;
|
|
2219
2246
|
allowFreeEntry?: boolean | null;
|
|
2247
|
+
allowListUpdate?: boolean | null;
|
|
2220
2248
|
values?: Array<string> | null;
|
|
2221
2249
|
} | null;
|
|
2222
2250
|
permissions: {
|
|
@@ -2249,6 +2277,7 @@ export type RecordFormAttributeStandardAttributeFragment = {
|
|
|
2249
2277
|
values_list?: {
|
|
2250
2278
|
enable: boolean;
|
|
2251
2279
|
allowFreeEntry?: boolean | null;
|
|
2280
|
+
allowListUpdate?: boolean | null;
|
|
2252
2281
|
dateRangeValues?: Array<{
|
|
2253
2282
|
from?: string | null;
|
|
2254
2283
|
to?: string | null;
|
|
@@ -2256,6 +2285,7 @@ export type RecordFormAttributeStandardAttributeFragment = {
|
|
|
2256
2285
|
} | {
|
|
2257
2286
|
enable: boolean;
|
|
2258
2287
|
allowFreeEntry?: boolean | null;
|
|
2288
|
+
allowListUpdate?: boolean | null;
|
|
2259
2289
|
values?: Array<string> | null;
|
|
2260
2290
|
} | null;
|
|
2261
2291
|
metadata_fields?: Array<{
|
|
@@ -2271,7 +2301,9 @@ export type RecordFormAttributeTreeAttributeFragment = {
|
|
|
2271
2301
|
format?: AttributeFormat | null;
|
|
2272
2302
|
system: boolean;
|
|
2273
2303
|
readonly: boolean;
|
|
2304
|
+
required: boolean;
|
|
2274
2305
|
multiple_values: boolean;
|
|
2306
|
+
compute: boolean;
|
|
2275
2307
|
linked_tree?: {
|
|
2276
2308
|
id: string;
|
|
2277
2309
|
label?: any | null;
|
|
@@ -2279,6 +2311,7 @@ export type RecordFormAttributeTreeAttributeFragment = {
|
|
|
2279
2311
|
treeValuesList?: {
|
|
2280
2312
|
enable: boolean;
|
|
2281
2313
|
allowFreeEntry?: boolean | null;
|
|
2314
|
+
allowListUpdate?: boolean | null;
|
|
2282
2315
|
values?: Array<{
|
|
2283
2316
|
id: string;
|
|
2284
2317
|
record: {
|
|
@@ -2343,6 +2376,7 @@ export type RecordFormAttributeTreeAttributeFragment = {
|
|
|
2343
2376
|
values_list?: {
|
|
2344
2377
|
enable: boolean;
|
|
2345
2378
|
allowFreeEntry?: boolean | null;
|
|
2379
|
+
allowListUpdate?: boolean | null;
|
|
2346
2380
|
dateRangeValues?: Array<{
|
|
2347
2381
|
from?: string | null;
|
|
2348
2382
|
to?: string | null;
|
|
@@ -2350,6 +2384,7 @@ export type RecordFormAttributeTreeAttributeFragment = {
|
|
|
2350
2384
|
} | {
|
|
2351
2385
|
enable: boolean;
|
|
2352
2386
|
allowFreeEntry?: boolean | null;
|
|
2387
|
+
allowListUpdate?: boolean | null;
|
|
2353
2388
|
values?: Array<string> | null;
|
|
2354
2389
|
} | null;
|
|
2355
2390
|
metadata_fields?: Array<{
|
|
@@ -2361,6 +2396,7 @@ export type RecordFormAttributeFragment = RecordFormAttributeLinkAttributeFragme
|
|
|
2361
2396
|
export type StandardValuesListFragmentStandardDateRangeValuesListConfFragment = {
|
|
2362
2397
|
enable: boolean;
|
|
2363
2398
|
allowFreeEntry?: boolean | null;
|
|
2399
|
+
allowListUpdate?: boolean | null;
|
|
2364
2400
|
dateRangeValues?: Array<{
|
|
2365
2401
|
from?: string | null;
|
|
2366
2402
|
to?: string | null;
|
|
@@ -2369,6 +2405,7 @@ export type StandardValuesListFragmentStandardDateRangeValuesListConfFragment =
|
|
|
2369
2405
|
export type StandardValuesListFragmentStandardStringValuesListConfFragment = {
|
|
2370
2406
|
enable: boolean;
|
|
2371
2407
|
allowFreeEntry?: boolean | null;
|
|
2408
|
+
allowListUpdate?: boolean | null;
|
|
2372
2409
|
values?: Array<string> | null;
|
|
2373
2410
|
};
|
|
2374
2411
|
export type StandardValuesListFragmentFragment = StandardValuesListFragmentStandardDateRangeValuesListConfFragment | StandardValuesListFragmentStandardStringValuesListConfFragment;
|
|
@@ -2448,7 +2485,7 @@ export type ViewDetailsFragment = {
|
|
|
2448
2485
|
description?: any | null;
|
|
2449
2486
|
color?: string | null;
|
|
2450
2487
|
display: {
|
|
2451
|
-
size
|
|
2488
|
+
size?: ViewSizes | null;
|
|
2452
2489
|
type: ViewTypes;
|
|
2453
2490
|
};
|
|
2454
2491
|
created_by: {
|
|
@@ -2471,10 +2508,10 @@ export type ViewDetailsFragment = {
|
|
|
2471
2508
|
label?: any | null;
|
|
2472
2509
|
} | null;
|
|
2473
2510
|
}> | null;
|
|
2474
|
-
sort?: {
|
|
2511
|
+
sort?: Array<{
|
|
2475
2512
|
field: string;
|
|
2476
2513
|
order: SortOrder;
|
|
2477
|
-
} | null;
|
|
2514
|
+
}> | null;
|
|
2478
2515
|
valuesVersions?: Array<{
|
|
2479
2516
|
treeId: string;
|
|
2480
2517
|
treeNode: {
|
|
@@ -2495,11 +2532,34 @@ export type ViewDetailsFragment = {
|
|
|
2495
2532
|
};
|
|
2496
2533
|
};
|
|
2497
2534
|
}> | null;
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
value?: any | null;
|
|
2535
|
+
attributes?: Array<{
|
|
2536
|
+
id: string;
|
|
2501
2537
|
}> | null;
|
|
2502
2538
|
};
|
|
2539
|
+
export type ViewDetailsFilterFragment = {
|
|
2540
|
+
field?: string | null;
|
|
2541
|
+
value?: string | null;
|
|
2542
|
+
condition?: RecordFilterCondition | null;
|
|
2543
|
+
operator?: RecordFilterOperator | null;
|
|
2544
|
+
tree?: {
|
|
2545
|
+
id: string;
|
|
2546
|
+
label?: any | null;
|
|
2547
|
+
} | null;
|
|
2548
|
+
};
|
|
2549
|
+
export type LinkAttributeDetailsFragment = {
|
|
2550
|
+
label?: any | null;
|
|
2551
|
+
linked_library?: {
|
|
2552
|
+
id: string;
|
|
2553
|
+
label?: any | null;
|
|
2554
|
+
} | null;
|
|
2555
|
+
};
|
|
2556
|
+
export type AttributePropertiesFragment = {
|
|
2557
|
+
id: string;
|
|
2558
|
+
label?: any | null;
|
|
2559
|
+
type: AttributeType;
|
|
2560
|
+
format?: AttributeFormat | null;
|
|
2561
|
+
multiple_values: boolean;
|
|
2562
|
+
};
|
|
2503
2563
|
export type PropertyValueLinkValueFragment = {
|
|
2504
2564
|
linkPayload?: {
|
|
2505
2565
|
id: string;
|
|
@@ -2515,9 +2575,6 @@ export type PropertyValueLinkValueFragment = {
|
|
|
2515
2575
|
};
|
|
2516
2576
|
};
|
|
2517
2577
|
} | null;
|
|
2518
|
-
attribute: {
|
|
2519
|
-
type: AttributeType;
|
|
2520
|
-
};
|
|
2521
2578
|
};
|
|
2522
2579
|
export type PropertyValueTreeValueFragment = {
|
|
2523
2580
|
treePayload?: {
|
|
@@ -2536,17 +2593,118 @@ export type PropertyValueTreeValueFragment = {
|
|
|
2536
2593
|
};
|
|
2537
2594
|
};
|
|
2538
2595
|
} | null;
|
|
2539
|
-
attribute: {
|
|
2540
|
-
type: AttributeType;
|
|
2541
|
-
};
|
|
2542
2596
|
};
|
|
2543
2597
|
export type PropertyValueValueFragment = {
|
|
2544
2598
|
valuePayload?: any | null;
|
|
2545
|
-
|
|
2546
|
-
type: AttributeType;
|
|
2547
|
-
};
|
|
2599
|
+
valueRawPayload?: any | null;
|
|
2548
2600
|
};
|
|
2549
2601
|
export type PropertyValueFragment = PropertyValueLinkValueFragment | PropertyValueTreeValueFragment | PropertyValueValueFragment;
|
|
2602
|
+
export type LinkPropertyLinkValueFragment = {
|
|
2603
|
+
id_value?: string | null;
|
|
2604
|
+
payload?: {
|
|
2605
|
+
id: string;
|
|
2606
|
+
properties: Array<{
|
|
2607
|
+
attributeId: string;
|
|
2608
|
+
attributeProperties: {
|
|
2609
|
+
id: string;
|
|
2610
|
+
label?: any | null;
|
|
2611
|
+
type: AttributeType;
|
|
2612
|
+
format?: AttributeFormat | null;
|
|
2613
|
+
multiple_values: boolean;
|
|
2614
|
+
};
|
|
2615
|
+
values: Array<{
|
|
2616
|
+
linkPayload?: {
|
|
2617
|
+
id: string;
|
|
2618
|
+
whoAmI: {
|
|
2619
|
+
id: string;
|
|
2620
|
+
label?: string | null;
|
|
2621
|
+
subLabel?: string | null;
|
|
2622
|
+
color?: string | null;
|
|
2623
|
+
preview?: IPreviewScalar | null;
|
|
2624
|
+
library: {
|
|
2625
|
+
id: string;
|
|
2626
|
+
label?: any | null;
|
|
2627
|
+
};
|
|
2628
|
+
};
|
|
2629
|
+
} | null;
|
|
2630
|
+
} | {
|
|
2631
|
+
treePayload?: {
|
|
2632
|
+
record: {
|
|
2633
|
+
id: string;
|
|
2634
|
+
whoAmI: {
|
|
2635
|
+
id: string;
|
|
2636
|
+
label?: string | null;
|
|
2637
|
+
subLabel?: string | null;
|
|
2638
|
+
color?: string | null;
|
|
2639
|
+
preview?: IPreviewScalar | null;
|
|
2640
|
+
library: {
|
|
2641
|
+
id: string;
|
|
2642
|
+
label?: any | null;
|
|
2643
|
+
};
|
|
2644
|
+
};
|
|
2645
|
+
};
|
|
2646
|
+
} | null;
|
|
2647
|
+
} | {
|
|
2648
|
+
valuePayload?: any | null;
|
|
2649
|
+
valueRawPayload?: any | null;
|
|
2650
|
+
}>;
|
|
2651
|
+
}>;
|
|
2652
|
+
whoAmI: {
|
|
2653
|
+
id: string;
|
|
2654
|
+
label?: string | null;
|
|
2655
|
+
subLabel?: string | null;
|
|
2656
|
+
color?: string | null;
|
|
2657
|
+
preview?: IPreviewScalar | null;
|
|
2658
|
+
library: {
|
|
2659
|
+
id: string;
|
|
2660
|
+
label?: any | null;
|
|
2661
|
+
};
|
|
2662
|
+
};
|
|
2663
|
+
} | null;
|
|
2664
|
+
};
|
|
2665
|
+
export type LinkPropertyTreeValueValueFragment = {
|
|
2666
|
+
id_value?: string | null;
|
|
2667
|
+
};
|
|
2668
|
+
export type LinkPropertyFragment = LinkPropertyLinkValueFragment | LinkPropertyTreeValueValueFragment;
|
|
2669
|
+
export type LibraryAttributeLinkAttributeFragment = {
|
|
2670
|
+
id: string;
|
|
2671
|
+
type: AttributeType;
|
|
2672
|
+
label?: any | null;
|
|
2673
|
+
linked_library?: {
|
|
2674
|
+
id: string;
|
|
2675
|
+
label?: any | null;
|
|
2676
|
+
attributes?: Array<{
|
|
2677
|
+
id: string;
|
|
2678
|
+
type: AttributeType;
|
|
2679
|
+
format?: AttributeFormat | null;
|
|
2680
|
+
label?: any | null;
|
|
2681
|
+
}> | null;
|
|
2682
|
+
} | null;
|
|
2683
|
+
};
|
|
2684
|
+
export type LibraryAttributeStandardAttributeFragment = {
|
|
2685
|
+
format?: AttributeFormat | null;
|
|
2686
|
+
id: string;
|
|
2687
|
+
type: AttributeType;
|
|
2688
|
+
label?: any | null;
|
|
2689
|
+
};
|
|
2690
|
+
export type LibraryAttributeTreeAttributeFragment = {
|
|
2691
|
+
id: string;
|
|
2692
|
+
type: AttributeType;
|
|
2693
|
+
label?: any | null;
|
|
2694
|
+
};
|
|
2695
|
+
export type LibraryAttributeFragment = LibraryAttributeLinkAttributeFragment | LibraryAttributeStandardAttributeFragment | LibraryAttributeTreeAttributeFragment;
|
|
2696
|
+
export type LibraryAttributeLinkFragment = {
|
|
2697
|
+
linked_library?: {
|
|
2698
|
+
id: string;
|
|
2699
|
+
label?: any | null;
|
|
2700
|
+
attributes?: Array<{
|
|
2701
|
+
id: string;
|
|
2702
|
+
type: AttributeType;
|
|
2703
|
+
format?: AttributeFormat | null;
|
|
2704
|
+
label?: any | null;
|
|
2705
|
+
}> | null;
|
|
2706
|
+
} | null;
|
|
2707
|
+
};
|
|
2550
2708
|
export type CheckApplicationExistenceQueryVariables = Exact<{
|
|
2551
2709
|
id?: InputMaybe<Scalars['ID']>;
|
|
2552
2710
|
endpoint?: InputMaybe<Scalars['String']>;
|
|
@@ -3941,7 +4099,9 @@ export type RecordFormQuery = {
|
|
|
3941
4099
|
format?: AttributeFormat | null;
|
|
3942
4100
|
system: boolean;
|
|
3943
4101
|
readonly: boolean;
|
|
4102
|
+
required: boolean;
|
|
3944
4103
|
multiple_values: boolean;
|
|
4104
|
+
compute: boolean;
|
|
3945
4105
|
linked_library?: {
|
|
3946
4106
|
id: string;
|
|
3947
4107
|
label?: any | null;
|
|
@@ -3953,6 +4113,7 @@ export type RecordFormQuery = {
|
|
|
3953
4113
|
linkValuesList?: {
|
|
3954
4114
|
enable: boolean;
|
|
3955
4115
|
allowFreeEntry?: boolean | null;
|
|
4116
|
+
allowListUpdate?: boolean | null;
|
|
3956
4117
|
values?: Array<{
|
|
3957
4118
|
id: string;
|
|
3958
4119
|
whoAmI: {
|
|
@@ -3998,6 +4159,7 @@ export type RecordFormQuery = {
|
|
|
3998
4159
|
values_list?: {
|
|
3999
4160
|
enable: boolean;
|
|
4000
4161
|
allowFreeEntry?: boolean | null;
|
|
4162
|
+
allowListUpdate?: boolean | null;
|
|
4001
4163
|
dateRangeValues?: Array<{
|
|
4002
4164
|
from?: string | null;
|
|
4003
4165
|
to?: string | null;
|
|
@@ -4005,6 +4167,7 @@ export type RecordFormQuery = {
|
|
|
4005
4167
|
} | {
|
|
4006
4168
|
enable: boolean;
|
|
4007
4169
|
allowFreeEntry?: boolean | null;
|
|
4170
|
+
allowListUpdate?: boolean | null;
|
|
4008
4171
|
values?: Array<string> | null;
|
|
4009
4172
|
} | null;
|
|
4010
4173
|
metadata_fields?: Array<{
|
|
@@ -4019,10 +4182,13 @@ export type RecordFormQuery = {
|
|
|
4019
4182
|
format?: AttributeFormat | null;
|
|
4020
4183
|
system: boolean;
|
|
4021
4184
|
readonly: boolean;
|
|
4185
|
+
required: boolean;
|
|
4022
4186
|
multiple_values: boolean;
|
|
4187
|
+
compute: boolean;
|
|
4023
4188
|
values_list?: {
|
|
4024
4189
|
enable: boolean;
|
|
4025
4190
|
allowFreeEntry?: boolean | null;
|
|
4191
|
+
allowListUpdate?: boolean | null;
|
|
4026
4192
|
dateRangeValues?: Array<{
|
|
4027
4193
|
from?: string | null;
|
|
4028
4194
|
to?: string | null;
|
|
@@ -4030,6 +4196,7 @@ export type RecordFormQuery = {
|
|
|
4030
4196
|
} | {
|
|
4031
4197
|
enable: boolean;
|
|
4032
4198
|
allowFreeEntry?: boolean | null;
|
|
4199
|
+
allowListUpdate?: boolean | null;
|
|
4033
4200
|
values?: Array<string> | null;
|
|
4034
4201
|
} | null;
|
|
4035
4202
|
permissions: {
|
|
@@ -4062,6 +4229,7 @@ export type RecordFormQuery = {
|
|
|
4062
4229
|
values_list?: {
|
|
4063
4230
|
enable: boolean;
|
|
4064
4231
|
allowFreeEntry?: boolean | null;
|
|
4232
|
+
allowListUpdate?: boolean | null;
|
|
4065
4233
|
dateRangeValues?: Array<{
|
|
4066
4234
|
from?: string | null;
|
|
4067
4235
|
to?: string | null;
|
|
@@ -4069,6 +4237,7 @@ export type RecordFormQuery = {
|
|
|
4069
4237
|
} | {
|
|
4070
4238
|
enable: boolean;
|
|
4071
4239
|
allowFreeEntry?: boolean | null;
|
|
4240
|
+
allowListUpdate?: boolean | null;
|
|
4072
4241
|
values?: Array<string> | null;
|
|
4073
4242
|
} | null;
|
|
4074
4243
|
metadata_fields?: Array<{
|
|
@@ -4083,7 +4252,9 @@ export type RecordFormQuery = {
|
|
|
4083
4252
|
format?: AttributeFormat | null;
|
|
4084
4253
|
system: boolean;
|
|
4085
4254
|
readonly: boolean;
|
|
4255
|
+
required: boolean;
|
|
4086
4256
|
multiple_values: boolean;
|
|
4257
|
+
compute: boolean;
|
|
4087
4258
|
linked_tree?: {
|
|
4088
4259
|
id: string;
|
|
4089
4260
|
label?: any | null;
|
|
@@ -4091,6 +4262,7 @@ export type RecordFormQuery = {
|
|
|
4091
4262
|
treeValuesList?: {
|
|
4092
4263
|
enable: boolean;
|
|
4093
4264
|
allowFreeEntry?: boolean | null;
|
|
4265
|
+
allowListUpdate?: boolean | null;
|
|
4094
4266
|
values?: Array<{
|
|
4095
4267
|
id: string;
|
|
4096
4268
|
record: {
|
|
@@ -4155,6 +4327,7 @@ export type RecordFormQuery = {
|
|
|
4155
4327
|
values_list?: {
|
|
4156
4328
|
enable: boolean;
|
|
4157
4329
|
allowFreeEntry?: boolean | null;
|
|
4330
|
+
allowListUpdate?: boolean | null;
|
|
4158
4331
|
dateRangeValues?: Array<{
|
|
4159
4332
|
from?: string | null;
|
|
4160
4333
|
to?: string | null;
|
|
@@ -4162,6 +4335,7 @@ export type RecordFormQuery = {
|
|
|
4162
4335
|
} | {
|
|
4163
4336
|
enable: boolean;
|
|
4164
4337
|
allowFreeEntry?: boolean | null;
|
|
4338
|
+
allowListUpdate?: boolean | null;
|
|
4165
4339
|
values?: Array<string> | null;
|
|
4166
4340
|
} | null;
|
|
4167
4341
|
metadata_fields?: Array<{
|
|
@@ -5180,6 +5354,128 @@ export type DeleteValueMutation = {
|
|
|
5180
5354
|
} | null> | null;
|
|
5181
5355
|
}>;
|
|
5182
5356
|
};
|
|
5357
|
+
export type RunActionsListAndFormatOnValueQueryVariables = Exact<{
|
|
5358
|
+
library: Scalars['ID'];
|
|
5359
|
+
value?: InputMaybe<ValueBatchInput>;
|
|
5360
|
+
version?: InputMaybe<Array<InputMaybe<ValueVersionInput>> | InputMaybe<ValueVersionInput>>;
|
|
5361
|
+
}>;
|
|
5362
|
+
export type RunActionsListAndFormatOnValueQuery = {
|
|
5363
|
+
runActionsListAndFormatOnValue: Array<{
|
|
5364
|
+
id_value?: string | null;
|
|
5365
|
+
isInherited?: boolean | null;
|
|
5366
|
+
isCalculated?: boolean | null;
|
|
5367
|
+
modified_at?: number | null;
|
|
5368
|
+
created_at?: number | null;
|
|
5369
|
+
payload?: any | null;
|
|
5370
|
+
raw_payload?: any | null;
|
|
5371
|
+
value?: any | null;
|
|
5372
|
+
raw_value?: any | null;
|
|
5373
|
+
modified_by?: {
|
|
5374
|
+
id: string;
|
|
5375
|
+
whoAmI: {
|
|
5376
|
+
id: string;
|
|
5377
|
+
label?: string | null;
|
|
5378
|
+
subLabel?: string | null;
|
|
5379
|
+
color?: string | null;
|
|
5380
|
+
preview?: IPreviewScalar | null;
|
|
5381
|
+
library: {
|
|
5382
|
+
id: string;
|
|
5383
|
+
label?: any | null;
|
|
5384
|
+
};
|
|
5385
|
+
};
|
|
5386
|
+
} | null;
|
|
5387
|
+
created_by?: {
|
|
5388
|
+
id: string;
|
|
5389
|
+
whoAmI: {
|
|
5390
|
+
id: string;
|
|
5391
|
+
label?: string | null;
|
|
5392
|
+
subLabel?: string | null;
|
|
5393
|
+
color?: string | null;
|
|
5394
|
+
preview?: IPreviewScalar | null;
|
|
5395
|
+
library: {
|
|
5396
|
+
id: string;
|
|
5397
|
+
label?: any | null;
|
|
5398
|
+
};
|
|
5399
|
+
};
|
|
5400
|
+
} | null;
|
|
5401
|
+
version?: Array<{
|
|
5402
|
+
treeId: string;
|
|
5403
|
+
treeNode?: {
|
|
5404
|
+
id: string;
|
|
5405
|
+
record: {
|
|
5406
|
+
id: string;
|
|
5407
|
+
whoAmI: {
|
|
5408
|
+
id: string;
|
|
5409
|
+
label?: string | null;
|
|
5410
|
+
library: {
|
|
5411
|
+
id: string;
|
|
5412
|
+
};
|
|
5413
|
+
};
|
|
5414
|
+
};
|
|
5415
|
+
} | null;
|
|
5416
|
+
} | null> | null;
|
|
5417
|
+
attribute: {
|
|
5418
|
+
id: string;
|
|
5419
|
+
format?: AttributeFormat | null;
|
|
5420
|
+
type: AttributeType;
|
|
5421
|
+
system: boolean;
|
|
5422
|
+
};
|
|
5423
|
+
metadata?: Array<{
|
|
5424
|
+
name: string;
|
|
5425
|
+
value?: {
|
|
5426
|
+
id_value?: string | null;
|
|
5427
|
+
modified_at?: number | null;
|
|
5428
|
+
created_at?: number | null;
|
|
5429
|
+
payload?: any | null;
|
|
5430
|
+
raw_payload?: any | null;
|
|
5431
|
+
modified_by?: {
|
|
5432
|
+
id: string;
|
|
5433
|
+
whoAmI: {
|
|
5434
|
+
id: string;
|
|
5435
|
+
label?: string | null;
|
|
5436
|
+
subLabel?: string | null;
|
|
5437
|
+
color?: string | null;
|
|
5438
|
+
preview?: IPreviewScalar | null;
|
|
5439
|
+
library: {
|
|
5440
|
+
id: string;
|
|
5441
|
+
label?: any | null;
|
|
5442
|
+
};
|
|
5443
|
+
};
|
|
5444
|
+
} | null;
|
|
5445
|
+
created_by?: {
|
|
5446
|
+
id: string;
|
|
5447
|
+
whoAmI: {
|
|
5448
|
+
id: string;
|
|
5449
|
+
label?: string | null;
|
|
5450
|
+
subLabel?: string | null;
|
|
5451
|
+
color?: string | null;
|
|
5452
|
+
preview?: IPreviewScalar | null;
|
|
5453
|
+
library: {
|
|
5454
|
+
id: string;
|
|
5455
|
+
label?: any | null;
|
|
5456
|
+
};
|
|
5457
|
+
};
|
|
5458
|
+
} | null;
|
|
5459
|
+
version?: Array<{
|
|
5460
|
+
treeId: string;
|
|
5461
|
+
treeNode?: {
|
|
5462
|
+
id: string;
|
|
5463
|
+
record: {
|
|
5464
|
+
id: string;
|
|
5465
|
+
whoAmI: {
|
|
5466
|
+
id: string;
|
|
5467
|
+
label?: string | null;
|
|
5468
|
+
library: {
|
|
5469
|
+
id: string;
|
|
5470
|
+
};
|
|
5471
|
+
};
|
|
5472
|
+
};
|
|
5473
|
+
} | null;
|
|
5474
|
+
} | null> | null;
|
|
5475
|
+
} | null;
|
|
5476
|
+
} | null> | null;
|
|
5477
|
+
}>;
|
|
5478
|
+
};
|
|
5183
5479
|
export type SaveValueBatchMutationVariables = Exact<{
|
|
5184
5480
|
library: Scalars['ID'];
|
|
5185
5481
|
recordId: Scalars['ID'];
|
|
@@ -5599,7 +5895,7 @@ export type GetViewQuery = {
|
|
|
5599
5895
|
description?: any | null;
|
|
5600
5896
|
color?: string | null;
|
|
5601
5897
|
display: {
|
|
5602
|
-
size
|
|
5898
|
+
size?: ViewSizes | null;
|
|
5603
5899
|
type: ViewTypes;
|
|
5604
5900
|
};
|
|
5605
5901
|
created_by: {
|
|
@@ -5622,10 +5918,10 @@ export type GetViewQuery = {
|
|
|
5622
5918
|
label?: any | null;
|
|
5623
5919
|
} | null;
|
|
5624
5920
|
}> | null;
|
|
5625
|
-
sort?: {
|
|
5921
|
+
sort?: Array<{
|
|
5626
5922
|
field: string;
|
|
5627
5923
|
order: SortOrder;
|
|
5628
|
-
} | null;
|
|
5924
|
+
}> | null;
|
|
5629
5925
|
valuesVersions?: Array<{
|
|
5630
5926
|
treeId: string;
|
|
5631
5927
|
treeNode: {
|
|
@@ -5646,9 +5942,8 @@ export type GetViewQuery = {
|
|
|
5646
5942
|
};
|
|
5647
5943
|
};
|
|
5648
5944
|
}> | null;
|
|
5649
|
-
|
|
5650
|
-
|
|
5651
|
-
value?: any | null;
|
|
5945
|
+
attributes?: Array<{
|
|
5946
|
+
id: string;
|
|
5652
5947
|
}> | null;
|
|
5653
5948
|
};
|
|
5654
5949
|
};
|
|
@@ -5665,7 +5960,7 @@ export type GetViewsListQuery = {
|
|
|
5665
5960
|
description?: any | null;
|
|
5666
5961
|
color?: string | null;
|
|
5667
5962
|
display: {
|
|
5668
|
-
size
|
|
5963
|
+
size?: ViewSizes | null;
|
|
5669
5964
|
type: ViewTypes;
|
|
5670
5965
|
};
|
|
5671
5966
|
created_by: {
|
|
@@ -5688,10 +5983,10 @@ export type GetViewsListQuery = {
|
|
|
5688
5983
|
label?: any | null;
|
|
5689
5984
|
} | null;
|
|
5690
5985
|
}> | null;
|
|
5691
|
-
sort?: {
|
|
5986
|
+
sort?: Array<{
|
|
5692
5987
|
field: string;
|
|
5693
5988
|
order: SortOrder;
|
|
5694
|
-
} | null;
|
|
5989
|
+
}> | null;
|
|
5695
5990
|
valuesVersions?: Array<{
|
|
5696
5991
|
treeId: string;
|
|
5697
5992
|
treeNode: {
|
|
@@ -5712,17 +6007,16 @@ export type GetViewsListQuery = {
|
|
|
5712
6007
|
};
|
|
5713
6008
|
};
|
|
5714
6009
|
}> | null;
|
|
5715
|
-
|
|
5716
|
-
|
|
5717
|
-
|
|
5718
|
-
}> | null;
|
|
6010
|
+
attributes?: Array<{
|
|
6011
|
+
id: string;
|
|
6012
|
+
}> | null;
|
|
5719
6013
|
}>;
|
|
5720
6014
|
};
|
|
5721
6015
|
};
|
|
5722
|
-
export type
|
|
6016
|
+
export type SaveViewMutationVariables = Exact<{
|
|
5723
6017
|
view: ViewInput;
|
|
5724
6018
|
}>;
|
|
5725
|
-
export type
|
|
6019
|
+
export type SaveViewMutation = {
|
|
5726
6020
|
saveView: {
|
|
5727
6021
|
id: string;
|
|
5728
6022
|
shared: boolean;
|
|
@@ -5730,7 +6024,7 @@ export type AddViewMutation = {
|
|
|
5730
6024
|
description?: any | null;
|
|
5731
6025
|
color?: string | null;
|
|
5732
6026
|
display: {
|
|
5733
|
-
size
|
|
6027
|
+
size?: ViewSizes | null;
|
|
5734
6028
|
type: ViewTypes;
|
|
5735
6029
|
};
|
|
5736
6030
|
created_by: {
|
|
@@ -5753,10 +6047,10 @@ export type AddViewMutation = {
|
|
|
5753
6047
|
label?: any | null;
|
|
5754
6048
|
} | null;
|
|
5755
6049
|
}> | null;
|
|
5756
|
-
sort?: {
|
|
6050
|
+
sort?: Array<{
|
|
5757
6051
|
field: string;
|
|
5758
6052
|
order: SortOrder;
|
|
5759
|
-
} | null;
|
|
6053
|
+
}> | null;
|
|
5760
6054
|
valuesVersions?: Array<{
|
|
5761
6055
|
treeId: string;
|
|
5762
6056
|
treeNode: {
|
|
@@ -5777,19 +6071,63 @@ export type AddViewMutation = {
|
|
|
5777
6071
|
};
|
|
5778
6072
|
};
|
|
5779
6073
|
}> | null;
|
|
5780
|
-
|
|
5781
|
-
|
|
5782
|
-
value?: any | null;
|
|
6074
|
+
attributes?: Array<{
|
|
6075
|
+
id: string;
|
|
5783
6076
|
}> | null;
|
|
5784
6077
|
};
|
|
5785
6078
|
};
|
|
5786
|
-
export type
|
|
6079
|
+
export type ExplorerAttributesQueryVariables = Exact<{
|
|
6080
|
+
ids?: InputMaybe<Array<Scalars['ID']> | Scalars['ID']>;
|
|
6081
|
+
}>;
|
|
6082
|
+
export type ExplorerAttributesQuery = {
|
|
6083
|
+
attributes?: {
|
|
6084
|
+
list: Array<{
|
|
6085
|
+
id: string;
|
|
6086
|
+
type: AttributeType;
|
|
6087
|
+
format?: AttributeFormat | null;
|
|
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;
|
|
6098
|
+
}>;
|
|
6099
|
+
} | null;
|
|
6100
|
+
};
|
|
6101
|
+
export type ExplorerLinkAttributeQueryVariables = Exact<{
|
|
6102
|
+
id: Scalars['ID'];
|
|
6103
|
+
}>;
|
|
6104
|
+
export type ExplorerLinkAttributeQuery = {
|
|
6105
|
+
attributes?: {
|
|
6106
|
+
list: Array<{
|
|
6107
|
+
label?: any | null;
|
|
6108
|
+
id: string;
|
|
6109
|
+
multiple_values: boolean;
|
|
6110
|
+
linked_library?: {
|
|
6111
|
+
id: string;
|
|
6112
|
+
label?: any | null;
|
|
6113
|
+
} | null;
|
|
6114
|
+
} | {
|
|
6115
|
+
id: string;
|
|
6116
|
+
multiple_values: boolean;
|
|
6117
|
+
}>;
|
|
6118
|
+
} | null;
|
|
6119
|
+
};
|
|
6120
|
+
export type ExplorerLibraryDataQueryVariables = Exact<{
|
|
5787
6121
|
libraryId: Scalars['ID'];
|
|
5788
6122
|
attributeIds: Array<Scalars['ID']> | Scalars['ID'];
|
|
6123
|
+
pagination?: InputMaybe<RecordsPagination>;
|
|
5789
6124
|
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
6125
|
+
multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
|
|
6126
|
+
searchQuery?: InputMaybe<Scalars['String']>;
|
|
5790
6127
|
}>;
|
|
5791
|
-
export type
|
|
6128
|
+
export type ExplorerLibraryDataQuery = {
|
|
5792
6129
|
records: {
|
|
6130
|
+
totalCount?: number | null;
|
|
5793
6131
|
list: Array<{
|
|
5794
6132
|
id: string;
|
|
5795
6133
|
whoAmI: {
|
|
@@ -5805,6 +6143,13 @@ export type ExplorerQuery = {
|
|
|
5805
6143
|
};
|
|
5806
6144
|
properties: Array<{
|
|
5807
6145
|
attributeId: string;
|
|
6146
|
+
attributeProperties: {
|
|
6147
|
+
id: string;
|
|
6148
|
+
label?: any | null;
|
|
6149
|
+
type: AttributeType;
|
|
6150
|
+
format?: AttributeFormat | null;
|
|
6151
|
+
multiple_values: boolean;
|
|
6152
|
+
};
|
|
5808
6153
|
values: Array<{
|
|
5809
6154
|
linkPayload?: {
|
|
5810
6155
|
id: string;
|
|
@@ -5820,9 +6165,6 @@ export type ExplorerQuery = {
|
|
|
5820
6165
|
};
|
|
5821
6166
|
};
|
|
5822
6167
|
} | null;
|
|
5823
|
-
attribute: {
|
|
5824
|
-
type: AttributeType;
|
|
5825
|
-
};
|
|
5826
6168
|
} | {
|
|
5827
6169
|
treePayload?: {
|
|
5828
6170
|
record: {
|
|
@@ -5840,22 +6182,158 @@ export type ExplorerQuery = {
|
|
|
5840
6182
|
};
|
|
5841
6183
|
};
|
|
5842
6184
|
} | null;
|
|
5843
|
-
attribute: {
|
|
5844
|
-
type: AttributeType;
|
|
5845
|
-
};
|
|
5846
6185
|
} | {
|
|
5847
6186
|
valuePayload?: any | null;
|
|
5848
|
-
|
|
5849
|
-
type: AttributeType;
|
|
5850
|
-
};
|
|
6187
|
+
valueRawPayload?: any | null;
|
|
5851
6188
|
}>;
|
|
5852
6189
|
}>;
|
|
5853
6190
|
}>;
|
|
5854
6191
|
};
|
|
5855
6192
|
};
|
|
6193
|
+
export type ExplorerLinkDataQueryVariables = Exact<{
|
|
6194
|
+
attributeIds: Array<Scalars['ID']> | Scalars['ID'];
|
|
6195
|
+
parentLibraryId: Scalars['ID'];
|
|
6196
|
+
parentRecordId?: InputMaybe<Scalars['String']>;
|
|
6197
|
+
linkAttributeId: Scalars['ID'];
|
|
6198
|
+
}>;
|
|
6199
|
+
export type ExplorerLinkDataQuery = {
|
|
6200
|
+
records: {
|
|
6201
|
+
list: Array<{
|
|
6202
|
+
id: string;
|
|
6203
|
+
whoAmI: {
|
|
6204
|
+
id: string;
|
|
6205
|
+
library: {
|
|
6206
|
+
id: string;
|
|
6207
|
+
};
|
|
6208
|
+
};
|
|
6209
|
+
property: Array<{
|
|
6210
|
+
id_value?: string | null;
|
|
6211
|
+
payload?: {
|
|
6212
|
+
id: string;
|
|
6213
|
+
whoAmI: {
|
|
6214
|
+
id: string;
|
|
6215
|
+
label?: string | null;
|
|
6216
|
+
subLabel?: string | null;
|
|
6217
|
+
color?: string | null;
|
|
6218
|
+
preview?: IPreviewScalar | null;
|
|
6219
|
+
library: {
|
|
6220
|
+
id: string;
|
|
6221
|
+
label?: any | null;
|
|
6222
|
+
};
|
|
6223
|
+
};
|
|
6224
|
+
properties: Array<{
|
|
6225
|
+
attributeId: string;
|
|
6226
|
+
attributeProperties: {
|
|
6227
|
+
id: string;
|
|
6228
|
+
label?: any | null;
|
|
6229
|
+
type: AttributeType;
|
|
6230
|
+
format?: AttributeFormat | null;
|
|
6231
|
+
multiple_values: boolean;
|
|
6232
|
+
};
|
|
6233
|
+
values: Array<{
|
|
6234
|
+
linkPayload?: {
|
|
6235
|
+
id: string;
|
|
6236
|
+
whoAmI: {
|
|
6237
|
+
id: string;
|
|
6238
|
+
label?: string | null;
|
|
6239
|
+
subLabel?: string | null;
|
|
6240
|
+
color?: string | null;
|
|
6241
|
+
preview?: IPreviewScalar | null;
|
|
6242
|
+
library: {
|
|
6243
|
+
id: string;
|
|
6244
|
+
label?: any | null;
|
|
6245
|
+
};
|
|
6246
|
+
};
|
|
6247
|
+
} | null;
|
|
6248
|
+
} | {
|
|
6249
|
+
treePayload?: {
|
|
6250
|
+
record: {
|
|
6251
|
+
id: string;
|
|
6252
|
+
whoAmI: {
|
|
6253
|
+
id: string;
|
|
6254
|
+
label?: string | null;
|
|
6255
|
+
subLabel?: string | null;
|
|
6256
|
+
color?: string | null;
|
|
6257
|
+
preview?: IPreviewScalar | null;
|
|
6258
|
+
library: {
|
|
6259
|
+
id: string;
|
|
6260
|
+
label?: any | null;
|
|
6261
|
+
};
|
|
6262
|
+
};
|
|
6263
|
+
};
|
|
6264
|
+
} | null;
|
|
6265
|
+
} | {
|
|
6266
|
+
valuePayload?: any | null;
|
|
6267
|
+
valueRawPayload?: any | null;
|
|
6268
|
+
}>;
|
|
6269
|
+
}>;
|
|
6270
|
+
} | null;
|
|
6271
|
+
} | {
|
|
6272
|
+
id_value?: string | null;
|
|
6273
|
+
}>;
|
|
6274
|
+
}>;
|
|
6275
|
+
};
|
|
6276
|
+
};
|
|
6277
|
+
export type GetLibraryAttributesQueryVariables = Exact<{
|
|
6278
|
+
id: 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
|
+
};
|
|
6311
|
+
export type ExplorerLibraryDetailsQueryVariables = Exact<{
|
|
6312
|
+
libraryId: Scalars['ID'];
|
|
6313
|
+
}>;
|
|
6314
|
+
export type ExplorerLibraryDetailsQuery = {
|
|
6315
|
+
libraries?: {
|
|
6316
|
+
list: Array<{
|
|
6317
|
+
id: string;
|
|
6318
|
+
label?: any | null;
|
|
6319
|
+
}>;
|
|
6320
|
+
} | null;
|
|
6321
|
+
};
|
|
6322
|
+
export type TreeDataQueryQueryVariables = Exact<{
|
|
6323
|
+
treeId: Scalars['ID'];
|
|
6324
|
+
}>;
|
|
6325
|
+
export type TreeDataQueryQuery = {
|
|
6326
|
+
trees?: {
|
|
6327
|
+
list: Array<{
|
|
6328
|
+
id: string;
|
|
6329
|
+
label?: any | null;
|
|
6330
|
+
}>;
|
|
6331
|
+
} | null;
|
|
6332
|
+
};
|
|
5856
6333
|
export declare const RecordIdentityFragmentDoc: Apollo.DocumentNode;
|
|
5857
6334
|
export declare const DetailsApplicationFragmentDoc: Apollo.DocumentNode;
|
|
5858
6335
|
export declare const AttributeDetailsFragmentDoc: Apollo.DocumentNode;
|
|
6336
|
+
export declare const AttributesByLibLinkAttributeFragmentDoc: Apollo.DocumentNode;
|
|
5859
6337
|
export declare const AttributesByLibAttributeFragmentDoc: Apollo.DocumentNode;
|
|
5860
6338
|
export declare const LibraryLightFragmentDoc: Apollo.DocumentNode;
|
|
5861
6339
|
export declare const LibraryLinkAttributeDetailsFragmentDoc: Apollo.DocumentNode;
|
|
@@ -5870,8 +6348,14 @@ export declare const RecordFormElementFragmentDoc: Apollo.DocumentNode;
|
|
|
5870
6348
|
export declare const TreeLightFragmentDoc: Apollo.DocumentNode;
|
|
5871
6349
|
export declare const TreeDetailsFragmentDoc: Apollo.DocumentNode;
|
|
5872
6350
|
export declare const TreeNodeChildFragmentDoc: Apollo.DocumentNode;
|
|
6351
|
+
export declare const ViewDetailsFilterFragmentDoc: Apollo.DocumentNode;
|
|
5873
6352
|
export declare const ViewDetailsFragmentDoc: Apollo.DocumentNode;
|
|
6353
|
+
export declare const LinkAttributeDetailsFragmentDoc: Apollo.DocumentNode;
|
|
6354
|
+
export declare const AttributePropertiesFragmentDoc: Apollo.DocumentNode;
|
|
5874
6355
|
export declare const PropertyValueFragmentDoc: Apollo.DocumentNode;
|
|
6356
|
+
export declare const LinkPropertyFragmentDoc: Apollo.DocumentNode;
|
|
6357
|
+
export declare const LibraryAttributeLinkFragmentDoc: Apollo.DocumentNode;
|
|
6358
|
+
export declare const LibraryAttributeFragmentDoc: Apollo.DocumentNode;
|
|
5875
6359
|
export declare const CheckApplicationExistenceDocument: Apollo.DocumentNode;
|
|
5876
6360
|
/**
|
|
5877
6361
|
* __useCheckApplicationExistenceQuery__
|
|
@@ -7115,6 +7599,38 @@ export declare function useDeleteValueMutation(baseOptions?: Apollo.MutationHook
|
|
|
7115
7599
|
export type DeleteValueMutationHookResult = ReturnType<typeof useDeleteValueMutation>;
|
|
7116
7600
|
export type DeleteValueMutationResult = Apollo.MutationResult<DeleteValueMutation>;
|
|
7117
7601
|
export type DeleteValueMutationOptions = Apollo.BaseMutationOptions<DeleteValueMutation, DeleteValueMutationVariables>;
|
|
7602
|
+
export declare const RunActionsListAndFormatOnValueDocument: Apollo.DocumentNode;
|
|
7603
|
+
/**
|
|
7604
|
+
* __useRunActionsListAndFormatOnValueQuery__
|
|
7605
|
+
*
|
|
7606
|
+
* To run a query within a React component, call `useRunActionsListAndFormatOnValueQuery` and pass it any options that fit your needs.
|
|
7607
|
+
* When your component renders, `useRunActionsListAndFormatOnValueQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
7608
|
+
* you can use to render your UI.
|
|
7609
|
+
*
|
|
7610
|
+
* @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;
|
|
7611
|
+
*
|
|
7612
|
+
* @example
|
|
7613
|
+
* const { data, loading, error } = useRunActionsListAndFormatOnValueQuery({
|
|
7614
|
+
* variables: {
|
|
7615
|
+
* library: // value for 'library'
|
|
7616
|
+
* value: // value for 'value'
|
|
7617
|
+
* version: // value for 'version'
|
|
7618
|
+
* },
|
|
7619
|
+
* });
|
|
7620
|
+
*/
|
|
7621
|
+
export declare function useRunActionsListAndFormatOnValueQuery(baseOptions: Apollo.QueryHookOptions<RunActionsListAndFormatOnValueQuery, RunActionsListAndFormatOnValueQueryVariables>): Apollo.QueryResult<RunActionsListAndFormatOnValueQuery, Exact<{
|
|
7622
|
+
library: Scalars["ID"];
|
|
7623
|
+
value?: InputMaybe<ValueBatchInput>;
|
|
7624
|
+
version?: InputMaybe<Array<InputMaybe<ValueVersionInput>> | InputMaybe<ValueVersionInput>>;
|
|
7625
|
+
}>>;
|
|
7626
|
+
export declare function useRunActionsListAndFormatOnValueLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<RunActionsListAndFormatOnValueQuery, RunActionsListAndFormatOnValueQueryVariables>): Apollo.LazyQueryResultTuple<RunActionsListAndFormatOnValueQuery, Exact<{
|
|
7627
|
+
library: Scalars["ID"];
|
|
7628
|
+
value?: InputMaybe<ValueBatchInput>;
|
|
7629
|
+
version?: InputMaybe<Array<InputMaybe<ValueVersionInput>> | InputMaybe<ValueVersionInput>>;
|
|
7630
|
+
}>>;
|
|
7631
|
+
export type RunActionsListAndFormatOnValueQueryHookResult = ReturnType<typeof useRunActionsListAndFormatOnValueQuery>;
|
|
7632
|
+
export type RunActionsListAndFormatOnValueLazyQueryHookResult = ReturnType<typeof useRunActionsListAndFormatOnValueLazyQuery>;
|
|
7633
|
+
export type RunActionsListAndFormatOnValueQueryResult = Apollo.QueryResult<RunActionsListAndFormatOnValueQuery, RunActionsListAndFormatOnValueQueryVariables>;
|
|
7118
7634
|
export declare const SaveValueBatchDocument: Apollo.DocumentNode;
|
|
7119
7635
|
export type SaveValueBatchMutationFn = Apollo.MutationFunction<SaveValueBatchMutation, SaveValueBatchMutationVariables>;
|
|
7120
7636
|
/**
|
|
@@ -7225,60 +7741,234 @@ export declare function useGetViewsListLazyQuery(baseOptions?: Apollo.LazyQueryH
|
|
|
7225
7741
|
export type GetViewsListQueryHookResult = ReturnType<typeof useGetViewsListQuery>;
|
|
7226
7742
|
export type GetViewsListLazyQueryHookResult = ReturnType<typeof useGetViewsListLazyQuery>;
|
|
7227
7743
|
export type GetViewsListQueryResult = Apollo.QueryResult<GetViewsListQuery, GetViewsListQueryVariables>;
|
|
7228
|
-
export declare const
|
|
7229
|
-
export type
|
|
7744
|
+
export declare const SaveViewDocument: Apollo.DocumentNode;
|
|
7745
|
+
export type SaveViewMutationFn = Apollo.MutationFunction<SaveViewMutation, SaveViewMutationVariables>;
|
|
7230
7746
|
/**
|
|
7231
|
-
*
|
|
7747
|
+
* __useSaveViewMutation__
|
|
7232
7748
|
*
|
|
7233
|
-
* To run a mutation, you first call `
|
|
7234
|
-
* When your component renders, `
|
|
7749
|
+
* To run a mutation, you first call `useSaveViewMutation` within a React component and pass it any options that fit your needs.
|
|
7750
|
+
* When your component renders, `useSaveViewMutation` returns a tuple that includes:
|
|
7235
7751
|
* - A mutate function that you can call at any time to execute the mutation
|
|
7236
7752
|
* - An object with fields that represent the current status of the mutation's execution
|
|
7237
7753
|
*
|
|
7238
7754
|
* @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;
|
|
7239
7755
|
*
|
|
7240
7756
|
* @example
|
|
7241
|
-
* const [
|
|
7757
|
+
* const [saveViewMutation, { data, loading, error }] = useSaveViewMutation({
|
|
7242
7758
|
* variables: {
|
|
7243
7759
|
* view: // value for 'view'
|
|
7244
7760
|
* },
|
|
7245
7761
|
* });
|
|
7246
7762
|
*/
|
|
7247
|
-
export declare function
|
|
7763
|
+
export declare function useSaveViewMutation(baseOptions?: Apollo.MutationHookOptions<SaveViewMutation, SaveViewMutationVariables>): Apollo.MutationTuple<SaveViewMutation, Exact<{
|
|
7248
7764
|
view: ViewInput;
|
|
7249
7765
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
7250
|
-
export type
|
|
7251
|
-
export type
|
|
7252
|
-
export type
|
|
7253
|
-
export declare const
|
|
7766
|
+
export type SaveViewMutationHookResult = ReturnType<typeof useSaveViewMutation>;
|
|
7767
|
+
export type SaveViewMutationResult = Apollo.MutationResult<SaveViewMutation>;
|
|
7768
|
+
export type SaveViewMutationOptions = Apollo.BaseMutationOptions<SaveViewMutation, SaveViewMutationVariables>;
|
|
7769
|
+
export declare const ExplorerAttributesDocument: Apollo.DocumentNode;
|
|
7254
7770
|
/**
|
|
7255
|
-
*
|
|
7771
|
+
* __useExplorerAttributesQuery__
|
|
7256
7772
|
*
|
|
7257
|
-
* To run a query within a React component, call `
|
|
7258
|
-
* When your component renders, `
|
|
7773
|
+
* To run a query within a React component, call `useExplorerAttributesQuery` and pass it any options that fit your needs.
|
|
7774
|
+
* When your component renders, `useExplorerAttributesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
7259
7775
|
* you can use to render your UI.
|
|
7260
7776
|
*
|
|
7261
7777
|
* @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;
|
|
7262
7778
|
*
|
|
7263
7779
|
* @example
|
|
7264
|
-
* const { data, loading, error } =
|
|
7780
|
+
* const { data, loading, error } = useExplorerAttributesQuery({
|
|
7781
|
+
* variables: {
|
|
7782
|
+
* ids: // value for 'ids'
|
|
7783
|
+
* },
|
|
7784
|
+
* });
|
|
7785
|
+
*/
|
|
7786
|
+
export declare function useExplorerAttributesQuery(baseOptions?: Apollo.QueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.QueryResult<ExplorerAttributesQuery, Exact<{
|
|
7787
|
+
ids?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
7788
|
+
}>>;
|
|
7789
|
+
export declare function useExplorerAttributesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerAttributesQuery, Exact<{
|
|
7790
|
+
ids?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
7791
|
+
}>>;
|
|
7792
|
+
export type ExplorerAttributesQueryHookResult = ReturnType<typeof useExplorerAttributesQuery>;
|
|
7793
|
+
export type ExplorerAttributesLazyQueryHookResult = ReturnType<typeof useExplorerAttributesLazyQuery>;
|
|
7794
|
+
export type ExplorerAttributesQueryResult = Apollo.QueryResult<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>;
|
|
7795
|
+
export declare const ExplorerLinkAttributeDocument: Apollo.DocumentNode;
|
|
7796
|
+
/**
|
|
7797
|
+
* __useExplorerLinkAttributeQuery__
|
|
7798
|
+
*
|
|
7799
|
+
* To run a query within a React component, call `useExplorerLinkAttributeQuery` and pass it any options that fit your needs.
|
|
7800
|
+
* When your component renders, `useExplorerLinkAttributeQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
7801
|
+
* you can use to render your UI.
|
|
7802
|
+
*
|
|
7803
|
+
* @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;
|
|
7804
|
+
*
|
|
7805
|
+
* @example
|
|
7806
|
+
* const { data, loading, error } = useExplorerLinkAttributeQuery({
|
|
7807
|
+
* variables: {
|
|
7808
|
+
* id: // value for 'id'
|
|
7809
|
+
* },
|
|
7810
|
+
* });
|
|
7811
|
+
*/
|
|
7812
|
+
export declare function useExplorerLinkAttributeQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>): Apollo.QueryResult<ExplorerLinkAttributeQuery, Exact<{
|
|
7813
|
+
id: Scalars["ID"];
|
|
7814
|
+
}>>;
|
|
7815
|
+
export declare function useExplorerLinkAttributeLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLinkAttributeQuery, Exact<{
|
|
7816
|
+
id: Scalars["ID"];
|
|
7817
|
+
}>>;
|
|
7818
|
+
export type ExplorerLinkAttributeQueryHookResult = ReturnType<typeof useExplorerLinkAttributeQuery>;
|
|
7819
|
+
export type ExplorerLinkAttributeLazyQueryHookResult = ReturnType<typeof useExplorerLinkAttributeLazyQuery>;
|
|
7820
|
+
export type ExplorerLinkAttributeQueryResult = Apollo.QueryResult<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>;
|
|
7821
|
+
export declare const ExplorerLibraryDataDocument: Apollo.DocumentNode;
|
|
7822
|
+
/**
|
|
7823
|
+
* __useExplorerLibraryDataQuery__
|
|
7824
|
+
*
|
|
7825
|
+
* To run a query within a React component, call `useExplorerLibraryDataQuery` and pass it any options that fit your needs.
|
|
7826
|
+
* When your component renders, `useExplorerLibraryDataQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
7827
|
+
* you can use to render your UI.
|
|
7828
|
+
*
|
|
7829
|
+
* @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;
|
|
7830
|
+
*
|
|
7831
|
+
* @example
|
|
7832
|
+
* const { data, loading, error } = useExplorerLibraryDataQuery({
|
|
7265
7833
|
* variables: {
|
|
7266
7834
|
* libraryId: // value for 'libraryId'
|
|
7267
7835
|
* attributeIds: // value for 'attributeIds'
|
|
7836
|
+
* pagination: // value for 'pagination'
|
|
7268
7837
|
* filters: // value for 'filters'
|
|
7838
|
+
* multipleSort: // value for 'multipleSort'
|
|
7839
|
+
* searchQuery: // value for 'searchQuery'
|
|
7269
7840
|
* },
|
|
7270
7841
|
* });
|
|
7271
7842
|
*/
|
|
7272
|
-
export declare function
|
|
7843
|
+
export declare function useExplorerLibraryDataQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>): Apollo.QueryResult<ExplorerLibraryDataQuery, Exact<{
|
|
7273
7844
|
libraryId: Scalars["ID"];
|
|
7274
7845
|
attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
|
|
7846
|
+
pagination?: InputMaybe<RecordsPagination>;
|
|
7275
7847
|
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
7848
|
+
multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
|
|
7849
|
+
searchQuery?: InputMaybe<Scalars["String"]>;
|
|
7276
7850
|
}>>;
|
|
7277
|
-
export declare function
|
|
7851
|
+
export declare function useExplorerLibraryDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLibraryDataQuery, Exact<{
|
|
7278
7852
|
libraryId: Scalars["ID"];
|
|
7279
7853
|
attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
|
|
7854
|
+
pagination?: InputMaybe<RecordsPagination>;
|
|
7280
7855
|
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
7856
|
+
multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
|
|
7857
|
+
searchQuery?: InputMaybe<Scalars["String"]>;
|
|
7858
|
+
}>>;
|
|
7859
|
+
export type ExplorerLibraryDataQueryHookResult = ReturnType<typeof useExplorerLibraryDataQuery>;
|
|
7860
|
+
export type ExplorerLibraryDataLazyQueryHookResult = ReturnType<typeof useExplorerLibraryDataLazyQuery>;
|
|
7861
|
+
export type ExplorerLibraryDataQueryResult = Apollo.QueryResult<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>;
|
|
7862
|
+
export declare const ExplorerLinkDataDocument: Apollo.DocumentNode;
|
|
7863
|
+
/**
|
|
7864
|
+
* __useExplorerLinkDataQuery__
|
|
7865
|
+
*
|
|
7866
|
+
* To run a query within a React component, call `useExplorerLinkDataQuery` and pass it any options that fit your needs.
|
|
7867
|
+
* When your component renders, `useExplorerLinkDataQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
7868
|
+
* you can use to render your UI.
|
|
7869
|
+
*
|
|
7870
|
+
* @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;
|
|
7871
|
+
*
|
|
7872
|
+
* @example
|
|
7873
|
+
* const { data, loading, error } = useExplorerLinkDataQuery({
|
|
7874
|
+
* variables: {
|
|
7875
|
+
* attributeIds: // value for 'attributeIds'
|
|
7876
|
+
* parentLibraryId: // value for 'parentLibraryId'
|
|
7877
|
+
* parentRecordId: // value for 'parentRecordId'
|
|
7878
|
+
* linkAttributeId: // value for 'linkAttributeId'
|
|
7879
|
+
* },
|
|
7880
|
+
* });
|
|
7881
|
+
*/
|
|
7882
|
+
export declare function useExplorerLinkDataQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>): Apollo.QueryResult<ExplorerLinkDataQuery, Exact<{
|
|
7883
|
+
attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
|
|
7884
|
+
parentLibraryId: Scalars["ID"];
|
|
7885
|
+
parentRecordId?: InputMaybe<Scalars["String"]>;
|
|
7886
|
+
linkAttributeId: Scalars["ID"];
|
|
7887
|
+
}>>;
|
|
7888
|
+
export declare function useExplorerLinkDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLinkDataQuery, Exact<{
|
|
7889
|
+
attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
|
|
7890
|
+
parentLibraryId: Scalars["ID"];
|
|
7891
|
+
parentRecordId?: InputMaybe<Scalars["String"]>;
|
|
7892
|
+
linkAttributeId: Scalars["ID"];
|
|
7893
|
+
}>>;
|
|
7894
|
+
export type ExplorerLinkDataQueryHookResult = ReturnType<typeof useExplorerLinkDataQuery>;
|
|
7895
|
+
export type ExplorerLinkDataLazyQueryHookResult = ReturnType<typeof useExplorerLinkDataLazyQuery>;
|
|
7896
|
+
export type ExplorerLinkDataQueryResult = Apollo.QueryResult<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>;
|
|
7897
|
+
export declare const GetLibraryAttributesDocument: Apollo.DocumentNode;
|
|
7898
|
+
/**
|
|
7899
|
+
* __useGetLibraryAttributesQuery__
|
|
7900
|
+
*
|
|
7901
|
+
* To run a query within a React component, call `useGetLibraryAttributesQuery` and pass it any options that fit your needs.
|
|
7902
|
+
* When your component renders, `useGetLibraryAttributesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
7903
|
+
* you can use to render your UI.
|
|
7904
|
+
*
|
|
7905
|
+
* @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;
|
|
7906
|
+
*
|
|
7907
|
+
* @example
|
|
7908
|
+
* const { data, loading, error } = useGetLibraryAttributesQuery({
|
|
7909
|
+
* variables: {
|
|
7910
|
+
* id: // value for 'id'
|
|
7911
|
+
* },
|
|
7912
|
+
* });
|
|
7913
|
+
*/
|
|
7914
|
+
export declare function useGetLibraryAttributesQuery(baseOptions: Apollo.QueryHookOptions<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>): Apollo.QueryResult<GetLibraryAttributesQuery, Exact<{
|
|
7915
|
+
id: Scalars["ID"];
|
|
7916
|
+
}>>;
|
|
7917
|
+
export declare function useGetLibraryAttributesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryAttributesQuery, Exact<{
|
|
7918
|
+
id: Scalars["ID"];
|
|
7919
|
+
}>>;
|
|
7920
|
+
export type GetLibraryAttributesQueryHookResult = ReturnType<typeof useGetLibraryAttributesQuery>;
|
|
7921
|
+
export type GetLibraryAttributesLazyQueryHookResult = ReturnType<typeof useGetLibraryAttributesLazyQuery>;
|
|
7922
|
+
export type GetLibraryAttributesQueryResult = Apollo.QueryResult<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>;
|
|
7923
|
+
export declare const ExplorerLibraryDetailsDocument: Apollo.DocumentNode;
|
|
7924
|
+
/**
|
|
7925
|
+
* __useExplorerLibraryDetailsQuery__
|
|
7926
|
+
*
|
|
7927
|
+
* To run a query within a React component, call `useExplorerLibraryDetailsQuery` and pass it any options that fit your needs.
|
|
7928
|
+
* When your component renders, `useExplorerLibraryDetailsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
7929
|
+
* you can use to render your UI.
|
|
7930
|
+
*
|
|
7931
|
+
* @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;
|
|
7932
|
+
*
|
|
7933
|
+
* @example
|
|
7934
|
+
* const { data, loading, error } = useExplorerLibraryDetailsQuery({
|
|
7935
|
+
* variables: {
|
|
7936
|
+
* libraryId: // value for 'libraryId'
|
|
7937
|
+
* },
|
|
7938
|
+
* });
|
|
7939
|
+
*/
|
|
7940
|
+
export declare function useExplorerLibraryDetailsQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>): Apollo.QueryResult<ExplorerLibraryDetailsQuery, Exact<{
|
|
7941
|
+
libraryId: Scalars["ID"];
|
|
7942
|
+
}>>;
|
|
7943
|
+
export declare function useExplorerLibraryDetailsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLibraryDetailsQuery, Exact<{
|
|
7944
|
+
libraryId: Scalars["ID"];
|
|
7945
|
+
}>>;
|
|
7946
|
+
export type ExplorerLibraryDetailsQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsQuery>;
|
|
7947
|
+
export type ExplorerLibraryDetailsLazyQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsLazyQuery>;
|
|
7948
|
+
export type ExplorerLibraryDetailsQueryResult = Apollo.QueryResult<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>;
|
|
7949
|
+
export declare const TreeDataQueryDocument: Apollo.DocumentNode;
|
|
7950
|
+
/**
|
|
7951
|
+
* __useTreeDataQueryQuery__
|
|
7952
|
+
*
|
|
7953
|
+
* To run a query within a React component, call `useTreeDataQueryQuery` and pass it any options that fit your needs.
|
|
7954
|
+
* When your component renders, `useTreeDataQueryQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
7955
|
+
* you can use to render your UI.
|
|
7956
|
+
*
|
|
7957
|
+
* @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;
|
|
7958
|
+
*
|
|
7959
|
+
* @example
|
|
7960
|
+
* const { data, loading, error } = useTreeDataQueryQuery({
|
|
7961
|
+
* variables: {
|
|
7962
|
+
* treeId: // value for 'treeId'
|
|
7963
|
+
* },
|
|
7964
|
+
* });
|
|
7965
|
+
*/
|
|
7966
|
+
export declare function useTreeDataQueryQuery(baseOptions: Apollo.QueryHookOptions<TreeDataQueryQuery, TreeDataQueryQueryVariables>): Apollo.QueryResult<TreeDataQueryQuery, Exact<{
|
|
7967
|
+
treeId: Scalars["ID"];
|
|
7968
|
+
}>>;
|
|
7969
|
+
export declare function useTreeDataQueryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<TreeDataQueryQuery, TreeDataQueryQueryVariables>): Apollo.LazyQueryResultTuple<TreeDataQueryQuery, Exact<{
|
|
7970
|
+
treeId: Scalars["ID"];
|
|
7281
7971
|
}>>;
|
|
7282
|
-
export type
|
|
7283
|
-
export type
|
|
7284
|
-
export type
|
|
7972
|
+
export type TreeDataQueryQueryHookResult = ReturnType<typeof useTreeDataQueryQuery>;
|
|
7973
|
+
export type TreeDataQueryLazyQueryHookResult = ReturnType<typeof useTreeDataQueryLazyQuery>;
|
|
7974
|
+
export type TreeDataQueryQueryResult = Apollo.QueryResult<TreeDataQueryQuery, TreeDataQueryQueryVariables>;
|