@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
package/dist/_gqlTypes/index.js
CHANGED
|
@@ -412,6 +412,13 @@ export const AttributeDetailsFragmentDoc = gql `
|
|
|
412
412
|
}
|
|
413
413
|
}
|
|
414
414
|
`;
|
|
415
|
+
export const AttributesByLibLinkAttributeFragmentDoc = gql `
|
|
416
|
+
fragment AttributesByLibLinkAttribute on LinkAttribute {
|
|
417
|
+
linked_library {
|
|
418
|
+
id
|
|
419
|
+
}
|
|
420
|
+
}
|
|
421
|
+
`;
|
|
415
422
|
export const AttributesByLibAttributeFragmentDoc = gql `
|
|
416
423
|
fragment AttributesByLibAttribute on Attribute {
|
|
417
424
|
id
|
|
@@ -421,11 +428,7 @@ export const AttributesByLibAttributeFragmentDoc = gql `
|
|
|
421
428
|
multiple_values
|
|
422
429
|
system
|
|
423
430
|
readonly
|
|
424
|
-
...
|
|
425
|
-
linked_library {
|
|
426
|
-
id
|
|
427
|
-
}
|
|
428
|
-
}
|
|
431
|
+
...AttributesByLibLinkAttribute
|
|
429
432
|
... on TreeAttribute {
|
|
430
433
|
linked_tree {
|
|
431
434
|
id
|
|
@@ -446,7 +449,7 @@ export const AttributesByLibAttributeFragmentDoc = gql `
|
|
|
446
449
|
}
|
|
447
450
|
}
|
|
448
451
|
}
|
|
449
|
-
`;
|
|
452
|
+
${AttributesByLibLinkAttributeFragmentDoc}`;
|
|
450
453
|
export const LibraryLightFragmentDoc = gql `
|
|
451
454
|
fragment LibraryLight on Library {
|
|
452
455
|
id
|
|
@@ -638,11 +641,13 @@ export const StandardValuesListFragmentFragmentDoc = gql `
|
|
|
638
641
|
... on StandardStringValuesListConf {
|
|
639
642
|
enable
|
|
640
643
|
allowFreeEntry
|
|
644
|
+
allowListUpdate
|
|
641
645
|
values
|
|
642
646
|
}
|
|
643
647
|
... on StandardDateRangeValuesListConf {
|
|
644
648
|
enable
|
|
645
649
|
allowFreeEntry
|
|
650
|
+
allowListUpdate
|
|
646
651
|
dateRangeValues: values {
|
|
647
652
|
from
|
|
648
653
|
to
|
|
@@ -659,7 +664,9 @@ export const RecordFormAttributeFragmentDoc = gql `
|
|
|
659
664
|
format
|
|
660
665
|
system
|
|
661
666
|
readonly
|
|
667
|
+
required
|
|
662
668
|
multiple_values
|
|
669
|
+
compute
|
|
663
670
|
permissions(record: {id: $recordId, library: $libraryId}) {
|
|
664
671
|
access_attribute
|
|
665
672
|
edit_value
|
|
@@ -711,6 +718,7 @@ export const RecordFormAttributeFragmentDoc = gql `
|
|
|
711
718
|
linkValuesList: values_list {
|
|
712
719
|
enable
|
|
713
720
|
allowFreeEntry
|
|
721
|
+
allowListUpdate
|
|
714
722
|
values {
|
|
715
723
|
...RecordIdentity
|
|
716
724
|
}
|
|
@@ -724,6 +732,7 @@ export const RecordFormAttributeFragmentDoc = gql `
|
|
|
724
732
|
treeValuesList: values_list {
|
|
725
733
|
enable
|
|
726
734
|
allowFreeEntry
|
|
735
|
+
allowListUpdate
|
|
727
736
|
values {
|
|
728
737
|
id
|
|
729
738
|
record {
|
|
@@ -816,6 +825,18 @@ export const TreeNodeChildFragmentDoc = gql `
|
|
|
816
825
|
}
|
|
817
826
|
}
|
|
818
827
|
${RecordIdentityFragmentDoc}`;
|
|
828
|
+
export const ViewDetailsFilterFragmentDoc = gql `
|
|
829
|
+
fragment ViewDetailsFilter on RecordFilter {
|
|
830
|
+
field
|
|
831
|
+
value
|
|
832
|
+
tree {
|
|
833
|
+
id
|
|
834
|
+
label
|
|
835
|
+
}
|
|
836
|
+
condition
|
|
837
|
+
operator
|
|
838
|
+
}
|
|
839
|
+
`;
|
|
819
840
|
export const ViewDetailsFragmentDoc = gql `
|
|
820
841
|
fragment ViewDetails on View {
|
|
821
842
|
id
|
|
@@ -838,14 +859,7 @@ export const ViewDetailsFragmentDoc = gql `
|
|
|
838
859
|
description
|
|
839
860
|
color
|
|
840
861
|
filters {
|
|
841
|
-
|
|
842
|
-
value
|
|
843
|
-
tree {
|
|
844
|
-
id
|
|
845
|
-
label
|
|
846
|
-
}
|
|
847
|
-
condition
|
|
848
|
-
operator
|
|
862
|
+
...ViewDetailsFilter
|
|
849
863
|
}
|
|
850
864
|
sort {
|
|
851
865
|
field
|
|
@@ -860,19 +874,35 @@ export const ViewDetailsFragmentDoc = gql `
|
|
|
860
874
|
}
|
|
861
875
|
}
|
|
862
876
|
}
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
value
|
|
877
|
+
attributes {
|
|
878
|
+
id
|
|
866
879
|
}
|
|
867
880
|
}
|
|
868
|
-
${
|
|
881
|
+
${ViewDetailsFilterFragmentDoc}
|
|
882
|
+
${RecordIdentityFragmentDoc}`;
|
|
883
|
+
export const LinkAttributeDetailsFragmentDoc = gql `
|
|
884
|
+
fragment LinkAttributeDetails on LinkAttribute {
|
|
885
|
+
label
|
|
886
|
+
linked_library {
|
|
887
|
+
id
|
|
888
|
+
label
|
|
889
|
+
}
|
|
890
|
+
}
|
|
891
|
+
`;
|
|
892
|
+
export const AttributePropertiesFragmentDoc = gql `
|
|
893
|
+
fragment AttributeProperties on Attribute {
|
|
894
|
+
id
|
|
895
|
+
label
|
|
896
|
+
type
|
|
897
|
+
format
|
|
898
|
+
multiple_values
|
|
899
|
+
}
|
|
900
|
+
`;
|
|
869
901
|
export const PropertyValueFragmentDoc = gql `
|
|
870
902
|
fragment PropertyValue on GenericValue {
|
|
871
|
-
attribute {
|
|
872
|
-
type
|
|
873
|
-
}
|
|
874
903
|
... on Value {
|
|
875
904
|
valuePayload: payload
|
|
905
|
+
valueRawPayload: raw_payload
|
|
876
906
|
}
|
|
877
907
|
... on LinkValue {
|
|
878
908
|
linkPayload: payload {
|
|
@@ -888,6 +918,52 @@ export const PropertyValueFragmentDoc = gql `
|
|
|
888
918
|
}
|
|
889
919
|
}
|
|
890
920
|
${RecordIdentityFragmentDoc}`;
|
|
921
|
+
export const LinkPropertyFragmentDoc = gql `
|
|
922
|
+
fragment LinkProperty on GenericValue {
|
|
923
|
+
id_value
|
|
924
|
+
... on LinkValue {
|
|
925
|
+
payload {
|
|
926
|
+
...RecordIdentity
|
|
927
|
+
properties(attributeIds: $attributeIds) {
|
|
928
|
+
attributeId
|
|
929
|
+
attributeProperties {
|
|
930
|
+
...AttributeProperties
|
|
931
|
+
}
|
|
932
|
+
values {
|
|
933
|
+
...PropertyValue
|
|
934
|
+
}
|
|
935
|
+
}
|
|
936
|
+
}
|
|
937
|
+
}
|
|
938
|
+
}
|
|
939
|
+
${RecordIdentityFragmentDoc}
|
|
940
|
+
${AttributePropertiesFragmentDoc}
|
|
941
|
+
${PropertyValueFragmentDoc}`;
|
|
942
|
+
export const LibraryAttributeLinkFragmentDoc = gql `
|
|
943
|
+
fragment LibraryAttributeLink on LinkAttribute {
|
|
944
|
+
linked_library {
|
|
945
|
+
id
|
|
946
|
+
label
|
|
947
|
+
attributes {
|
|
948
|
+
id
|
|
949
|
+
type
|
|
950
|
+
format
|
|
951
|
+
label
|
|
952
|
+
}
|
|
953
|
+
}
|
|
954
|
+
}
|
|
955
|
+
`;
|
|
956
|
+
export const LibraryAttributeFragmentDoc = gql `
|
|
957
|
+
fragment LibraryAttribute on Attribute {
|
|
958
|
+
id
|
|
959
|
+
type
|
|
960
|
+
label
|
|
961
|
+
... on StandardAttribute {
|
|
962
|
+
format
|
|
963
|
+
}
|
|
964
|
+
...LibraryAttributeLink
|
|
965
|
+
}
|
|
966
|
+
${LibraryAttributeLinkFragmentDoc}`;
|
|
891
967
|
export const CheckApplicationExistenceDocument = gql `
|
|
892
968
|
query CHECK_APPLICATION_EXISTENCE($id: ID, $endpoint: String) {
|
|
893
969
|
applications(filters: {id: $id, endpoint: $endpoint}) {
|
|
@@ -2499,6 +2575,43 @@ export function useDeleteValueMutation(baseOptions) {
|
|
|
2499
2575
|
const options = { ...defaultOptions, ...baseOptions };
|
|
2500
2576
|
return Apollo.useMutation(DeleteValueDocument, options);
|
|
2501
2577
|
}
|
|
2578
|
+
export const RunActionsListAndFormatOnValueDocument = gql `
|
|
2579
|
+
query RUN_ACTIONS_LIST_AND_FORMAT_ON_VALUE($library: ID!, $value: ValueBatchInput, $version: [ValueVersionInput]) {
|
|
2580
|
+
runActionsListAndFormatOnValue(
|
|
2581
|
+
library: $library
|
|
2582
|
+
value: $value
|
|
2583
|
+
version: $version
|
|
2584
|
+
) {
|
|
2585
|
+
...ValueDetails
|
|
2586
|
+
}
|
|
2587
|
+
}
|
|
2588
|
+
${ValueDetailsFragmentDoc}`;
|
|
2589
|
+
/**
|
|
2590
|
+
* __useRunActionsListAndFormatOnValueQuery__
|
|
2591
|
+
*
|
|
2592
|
+
* To run a query within a React component, call `useRunActionsListAndFormatOnValueQuery` and pass it any options that fit your needs.
|
|
2593
|
+
* When your component renders, `useRunActionsListAndFormatOnValueQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
2594
|
+
* you can use to render your UI.
|
|
2595
|
+
*
|
|
2596
|
+
* @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;
|
|
2597
|
+
*
|
|
2598
|
+
* @example
|
|
2599
|
+
* const { data, loading, error } = useRunActionsListAndFormatOnValueQuery({
|
|
2600
|
+
* variables: {
|
|
2601
|
+
* library: // value for 'library'
|
|
2602
|
+
* value: // value for 'value'
|
|
2603
|
+
* version: // value for 'version'
|
|
2604
|
+
* },
|
|
2605
|
+
* });
|
|
2606
|
+
*/
|
|
2607
|
+
export function useRunActionsListAndFormatOnValueQuery(baseOptions) {
|
|
2608
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
2609
|
+
return Apollo.useQuery(RunActionsListAndFormatOnValueDocument, options);
|
|
2610
|
+
}
|
|
2611
|
+
export function useRunActionsListAndFormatOnValueLazyQuery(baseOptions) {
|
|
2612
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
2613
|
+
return Apollo.useLazyQuery(RunActionsListAndFormatOnValueDocument, options);
|
|
2614
|
+
}
|
|
2502
2615
|
export const SaveValueBatchDocument = gql `
|
|
2503
2616
|
mutation SAVE_VALUE_BATCH($library: ID!, $recordId: ID!, $version: [ValueVersionInput!], $values: [ValueBatchInput!]!, $deleteEmpty: Boolean) {
|
|
2504
2617
|
saveValueBatch(
|
|
@@ -2639,41 +2752,123 @@ export function useGetViewsListLazyQuery(baseOptions) {
|
|
|
2639
2752
|
const options = { ...defaultOptions, ...baseOptions };
|
|
2640
2753
|
return Apollo.useLazyQuery(GetViewsListDocument, options);
|
|
2641
2754
|
}
|
|
2642
|
-
export const
|
|
2643
|
-
mutation
|
|
2755
|
+
export const SaveViewDocument = gql `
|
|
2756
|
+
mutation SAVE_VIEW($view: ViewInput!) {
|
|
2644
2757
|
saveView(view: $view) {
|
|
2645
2758
|
...ViewDetails
|
|
2646
2759
|
}
|
|
2647
2760
|
}
|
|
2648
2761
|
${ViewDetailsFragmentDoc}`;
|
|
2649
2762
|
/**
|
|
2650
|
-
*
|
|
2763
|
+
* __useSaveViewMutation__
|
|
2651
2764
|
*
|
|
2652
|
-
* To run a mutation, you first call `
|
|
2653
|
-
* When your component renders, `
|
|
2765
|
+
* To run a mutation, you first call `useSaveViewMutation` within a React component and pass it any options that fit your needs.
|
|
2766
|
+
* When your component renders, `useSaveViewMutation` returns a tuple that includes:
|
|
2654
2767
|
* - A mutate function that you can call at any time to execute the mutation
|
|
2655
2768
|
* - An object with fields that represent the current status of the mutation's execution
|
|
2656
2769
|
*
|
|
2657
2770
|
* @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;
|
|
2658
2771
|
*
|
|
2659
2772
|
* @example
|
|
2660
|
-
* const [
|
|
2773
|
+
* const [saveViewMutation, { data, loading, error }] = useSaveViewMutation({
|
|
2661
2774
|
* variables: {
|
|
2662
2775
|
* view: // value for 'view'
|
|
2663
2776
|
* },
|
|
2664
2777
|
* });
|
|
2665
2778
|
*/
|
|
2666
|
-
export function
|
|
2779
|
+
export function useSaveViewMutation(baseOptions) {
|
|
2780
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
2781
|
+
return Apollo.useMutation(SaveViewDocument, options);
|
|
2782
|
+
}
|
|
2783
|
+
export const ExplorerAttributesDocument = gql `
|
|
2784
|
+
query ExplorerAttributes($ids: [ID!]) {
|
|
2785
|
+
attributes(filters: {ids: $ids}) {
|
|
2786
|
+
list {
|
|
2787
|
+
id
|
|
2788
|
+
type
|
|
2789
|
+
format
|
|
2790
|
+
label
|
|
2791
|
+
...LinkAttributeDetails
|
|
2792
|
+
}
|
|
2793
|
+
}
|
|
2794
|
+
}
|
|
2795
|
+
${LinkAttributeDetailsFragmentDoc}`;
|
|
2796
|
+
/**
|
|
2797
|
+
* __useExplorerAttributesQuery__
|
|
2798
|
+
*
|
|
2799
|
+
* To run a query within a React component, call `useExplorerAttributesQuery` and pass it any options that fit your needs.
|
|
2800
|
+
* When your component renders, `useExplorerAttributesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
2801
|
+
* you can use to render your UI.
|
|
2802
|
+
*
|
|
2803
|
+
* @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;
|
|
2804
|
+
*
|
|
2805
|
+
* @example
|
|
2806
|
+
* const { data, loading, error } = useExplorerAttributesQuery({
|
|
2807
|
+
* variables: {
|
|
2808
|
+
* ids: // value for 'ids'
|
|
2809
|
+
* },
|
|
2810
|
+
* });
|
|
2811
|
+
*/
|
|
2812
|
+
export function useExplorerAttributesQuery(baseOptions) {
|
|
2813
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
2814
|
+
return Apollo.useQuery(ExplorerAttributesDocument, options);
|
|
2815
|
+
}
|
|
2816
|
+
export function useExplorerAttributesLazyQuery(baseOptions) {
|
|
2667
2817
|
const options = { ...defaultOptions, ...baseOptions };
|
|
2668
|
-
return Apollo.
|
|
2818
|
+
return Apollo.useLazyQuery(ExplorerAttributesDocument, options);
|
|
2669
2819
|
}
|
|
2670
|
-
export const
|
|
2671
|
-
query
|
|
2672
|
-
|
|
2820
|
+
export const ExplorerLinkAttributeDocument = gql `
|
|
2821
|
+
query ExplorerLinkAttribute($id: ID!) {
|
|
2822
|
+
attributes(filters: {ids: [$id]}) {
|
|
2823
|
+
list {
|
|
2824
|
+
id
|
|
2825
|
+
multiple_values
|
|
2826
|
+
...LinkAttributeDetails
|
|
2827
|
+
}
|
|
2828
|
+
}
|
|
2829
|
+
}
|
|
2830
|
+
${LinkAttributeDetailsFragmentDoc}`;
|
|
2831
|
+
/**
|
|
2832
|
+
* __useExplorerLinkAttributeQuery__
|
|
2833
|
+
*
|
|
2834
|
+
* To run a query within a React component, call `useExplorerLinkAttributeQuery` and pass it any options that fit your needs.
|
|
2835
|
+
* When your component renders, `useExplorerLinkAttributeQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
2836
|
+
* you can use to render your UI.
|
|
2837
|
+
*
|
|
2838
|
+
* @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;
|
|
2839
|
+
*
|
|
2840
|
+
* @example
|
|
2841
|
+
* const { data, loading, error } = useExplorerLinkAttributeQuery({
|
|
2842
|
+
* variables: {
|
|
2843
|
+
* id: // value for 'id'
|
|
2844
|
+
* },
|
|
2845
|
+
* });
|
|
2846
|
+
*/
|
|
2847
|
+
export function useExplorerLinkAttributeQuery(baseOptions) {
|
|
2848
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
2849
|
+
return Apollo.useQuery(ExplorerLinkAttributeDocument, options);
|
|
2850
|
+
}
|
|
2851
|
+
export function useExplorerLinkAttributeLazyQuery(baseOptions) {
|
|
2852
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
2853
|
+
return Apollo.useLazyQuery(ExplorerLinkAttributeDocument, options);
|
|
2854
|
+
}
|
|
2855
|
+
export const ExplorerLibraryDataDocument = gql `
|
|
2856
|
+
query ExplorerLibraryData($libraryId: ID!, $attributeIds: [ID!]!, $pagination: RecordsPagination, $filters: [RecordFilterInput], $multipleSort: [RecordSortInput!], $searchQuery: String) {
|
|
2857
|
+
records(
|
|
2858
|
+
library: $libraryId
|
|
2859
|
+
filters: $filters
|
|
2860
|
+
pagination: $pagination
|
|
2861
|
+
multipleSort: $multipleSort
|
|
2862
|
+
searchQuery: $searchQuery
|
|
2863
|
+
) {
|
|
2864
|
+
totalCount
|
|
2673
2865
|
list {
|
|
2674
2866
|
...RecordIdentity
|
|
2675
2867
|
properties(attributeIds: $attributeIds) {
|
|
2676
2868
|
attributeId
|
|
2869
|
+
attributeProperties {
|
|
2870
|
+
...AttributeProperties
|
|
2871
|
+
}
|
|
2677
2872
|
values {
|
|
2678
2873
|
...PropertyValue
|
|
2679
2874
|
}
|
|
@@ -2682,31 +2877,187 @@ export const ExplorerDocument = gql `
|
|
|
2682
2877
|
}
|
|
2683
2878
|
}
|
|
2684
2879
|
${RecordIdentityFragmentDoc}
|
|
2880
|
+
${AttributePropertiesFragmentDoc}
|
|
2685
2881
|
${PropertyValueFragmentDoc}`;
|
|
2686
2882
|
/**
|
|
2687
|
-
*
|
|
2883
|
+
* __useExplorerLibraryDataQuery__
|
|
2688
2884
|
*
|
|
2689
|
-
* To run a query within a React component, call `
|
|
2690
|
-
* When your component renders, `
|
|
2885
|
+
* To run a query within a React component, call `useExplorerLibraryDataQuery` and pass it any options that fit your needs.
|
|
2886
|
+
* When your component renders, `useExplorerLibraryDataQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
2691
2887
|
* you can use to render your UI.
|
|
2692
2888
|
*
|
|
2693
2889
|
* @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;
|
|
2694
2890
|
*
|
|
2695
2891
|
* @example
|
|
2696
|
-
* const { data, loading, error } =
|
|
2892
|
+
* const { data, loading, error } = useExplorerLibraryDataQuery({
|
|
2697
2893
|
* variables: {
|
|
2698
2894
|
* libraryId: // value for 'libraryId'
|
|
2699
2895
|
* attributeIds: // value for 'attributeIds'
|
|
2896
|
+
* pagination: // value for 'pagination'
|
|
2700
2897
|
* filters: // value for 'filters'
|
|
2898
|
+
* multipleSort: // value for 'multipleSort'
|
|
2899
|
+
* searchQuery: // value for 'searchQuery'
|
|
2900
|
+
* },
|
|
2901
|
+
* });
|
|
2902
|
+
*/
|
|
2903
|
+
export function useExplorerLibraryDataQuery(baseOptions) {
|
|
2904
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
2905
|
+
return Apollo.useQuery(ExplorerLibraryDataDocument, options);
|
|
2906
|
+
}
|
|
2907
|
+
export function useExplorerLibraryDataLazyQuery(baseOptions) {
|
|
2908
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
2909
|
+
return Apollo.useLazyQuery(ExplorerLibraryDataDocument, options);
|
|
2910
|
+
}
|
|
2911
|
+
export const ExplorerLinkDataDocument = gql `
|
|
2912
|
+
query ExplorerLinkData($attributeIds: [ID!]!, $parentLibraryId: ID!, $parentRecordId: String, $linkAttributeId: ID!) {
|
|
2913
|
+
records(
|
|
2914
|
+
library: $parentLibraryId
|
|
2915
|
+
filters: [{field: "id", condition: EQUAL, value: $parentRecordId}]
|
|
2916
|
+
) {
|
|
2917
|
+
list {
|
|
2918
|
+
id
|
|
2919
|
+
whoAmI {
|
|
2920
|
+
id
|
|
2921
|
+
library {
|
|
2922
|
+
id
|
|
2923
|
+
}
|
|
2924
|
+
}
|
|
2925
|
+
property(attribute: $linkAttributeId) {
|
|
2926
|
+
...LinkProperty
|
|
2927
|
+
}
|
|
2928
|
+
}
|
|
2929
|
+
}
|
|
2930
|
+
}
|
|
2931
|
+
${LinkPropertyFragmentDoc}`;
|
|
2932
|
+
/**
|
|
2933
|
+
* __useExplorerLinkDataQuery__
|
|
2934
|
+
*
|
|
2935
|
+
* To run a query within a React component, call `useExplorerLinkDataQuery` and pass it any options that fit your needs.
|
|
2936
|
+
* When your component renders, `useExplorerLinkDataQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
2937
|
+
* you can use to render your UI.
|
|
2938
|
+
*
|
|
2939
|
+
* @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;
|
|
2940
|
+
*
|
|
2941
|
+
* @example
|
|
2942
|
+
* const { data, loading, error } = useExplorerLinkDataQuery({
|
|
2943
|
+
* variables: {
|
|
2944
|
+
* attributeIds: // value for 'attributeIds'
|
|
2945
|
+
* parentLibraryId: // value for 'parentLibraryId'
|
|
2946
|
+
* parentRecordId: // value for 'parentRecordId'
|
|
2947
|
+
* linkAttributeId: // value for 'linkAttributeId'
|
|
2948
|
+
* },
|
|
2949
|
+
* });
|
|
2950
|
+
*/
|
|
2951
|
+
export function useExplorerLinkDataQuery(baseOptions) {
|
|
2952
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
2953
|
+
return Apollo.useQuery(ExplorerLinkDataDocument, options);
|
|
2954
|
+
}
|
|
2955
|
+
export function useExplorerLinkDataLazyQuery(baseOptions) {
|
|
2956
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
2957
|
+
return Apollo.useLazyQuery(ExplorerLinkDataDocument, options);
|
|
2958
|
+
}
|
|
2959
|
+
export const GetLibraryAttributesDocument = gql `
|
|
2960
|
+
query GetLibraryAttributes($id: ID!) {
|
|
2961
|
+
libraries(filters: {id: [$id]}) {
|
|
2962
|
+
list {
|
|
2963
|
+
id
|
|
2964
|
+
attributes {
|
|
2965
|
+
...LibraryAttribute
|
|
2966
|
+
}
|
|
2967
|
+
}
|
|
2968
|
+
}
|
|
2969
|
+
}
|
|
2970
|
+
${LibraryAttributeFragmentDoc}`;
|
|
2971
|
+
/**
|
|
2972
|
+
* __useGetLibraryAttributesQuery__
|
|
2973
|
+
*
|
|
2974
|
+
* To run a query within a React component, call `useGetLibraryAttributesQuery` and pass it any options that fit your needs.
|
|
2975
|
+
* When your component renders, `useGetLibraryAttributesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
2976
|
+
* you can use to render your UI.
|
|
2977
|
+
*
|
|
2978
|
+
* @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;
|
|
2979
|
+
*
|
|
2980
|
+
* @example
|
|
2981
|
+
* const { data, loading, error } = useGetLibraryAttributesQuery({
|
|
2982
|
+
* variables: {
|
|
2983
|
+
* id: // value for 'id'
|
|
2984
|
+
* },
|
|
2985
|
+
* });
|
|
2986
|
+
*/
|
|
2987
|
+
export function useGetLibraryAttributesQuery(baseOptions) {
|
|
2988
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
2989
|
+
return Apollo.useQuery(GetLibraryAttributesDocument, options);
|
|
2990
|
+
}
|
|
2991
|
+
export function useGetLibraryAttributesLazyQuery(baseOptions) {
|
|
2992
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
2993
|
+
return Apollo.useLazyQuery(GetLibraryAttributesDocument, options);
|
|
2994
|
+
}
|
|
2995
|
+
export const ExplorerLibraryDetailsDocument = gql `
|
|
2996
|
+
query ExplorerLibraryDetails($libraryId: ID!) {
|
|
2997
|
+
libraries(filters: {id: [$libraryId]}) {
|
|
2998
|
+
list {
|
|
2999
|
+
id
|
|
3000
|
+
label
|
|
3001
|
+
}
|
|
3002
|
+
}
|
|
3003
|
+
}
|
|
3004
|
+
`;
|
|
3005
|
+
/**
|
|
3006
|
+
* __useExplorerLibraryDetailsQuery__
|
|
3007
|
+
*
|
|
3008
|
+
* To run a query within a React component, call `useExplorerLibraryDetailsQuery` and pass it any options that fit your needs.
|
|
3009
|
+
* When your component renders, `useExplorerLibraryDetailsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3010
|
+
* you can use to render your UI.
|
|
3011
|
+
*
|
|
3012
|
+
* @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;
|
|
3013
|
+
*
|
|
3014
|
+
* @example
|
|
3015
|
+
* const { data, loading, error } = useExplorerLibraryDetailsQuery({
|
|
3016
|
+
* variables: {
|
|
3017
|
+
* libraryId: // value for 'libraryId'
|
|
3018
|
+
* },
|
|
3019
|
+
* });
|
|
3020
|
+
*/
|
|
3021
|
+
export function useExplorerLibraryDetailsQuery(baseOptions) {
|
|
3022
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
3023
|
+
return Apollo.useQuery(ExplorerLibraryDetailsDocument, options);
|
|
3024
|
+
}
|
|
3025
|
+
export function useExplorerLibraryDetailsLazyQuery(baseOptions) {
|
|
3026
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
3027
|
+
return Apollo.useLazyQuery(ExplorerLibraryDetailsDocument, options);
|
|
3028
|
+
}
|
|
3029
|
+
export const TreeDataQueryDocument = gql `
|
|
3030
|
+
query TreeDataQuery($treeId: ID!) {
|
|
3031
|
+
trees(filters: {id: [$treeId]}) {
|
|
3032
|
+
list {
|
|
3033
|
+
id
|
|
3034
|
+
label
|
|
3035
|
+
}
|
|
3036
|
+
}
|
|
3037
|
+
}
|
|
3038
|
+
`;
|
|
3039
|
+
/**
|
|
3040
|
+
* __useTreeDataQueryQuery__
|
|
3041
|
+
*
|
|
3042
|
+
* To run a query within a React component, call `useTreeDataQueryQuery` and pass it any options that fit your needs.
|
|
3043
|
+
* When your component renders, `useTreeDataQueryQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3044
|
+
* you can use to render your UI.
|
|
3045
|
+
*
|
|
3046
|
+
* @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;
|
|
3047
|
+
*
|
|
3048
|
+
* @example
|
|
3049
|
+
* const { data, loading, error } = useTreeDataQueryQuery({
|
|
3050
|
+
* variables: {
|
|
3051
|
+
* treeId: // value for 'treeId'
|
|
2701
3052
|
* },
|
|
2702
3053
|
* });
|
|
2703
3054
|
*/
|
|
2704
|
-
export function
|
|
3055
|
+
export function useTreeDataQueryQuery(baseOptions) {
|
|
2705
3056
|
const options = { ...defaultOptions, ...baseOptions };
|
|
2706
|
-
return Apollo.useQuery(
|
|
3057
|
+
return Apollo.useQuery(TreeDataQueryDocument, options);
|
|
2707
3058
|
}
|
|
2708
|
-
export function
|
|
3059
|
+
export function useTreeDataQueryLazyQuery(baseOptions) {
|
|
2709
3060
|
const options = { ...defaultOptions, ...baseOptions };
|
|
2710
|
-
return Apollo.useLazyQuery(
|
|
3061
|
+
return Apollo.useLazyQuery(TreeDataQueryDocument, options);
|
|
2711
3062
|
}
|
|
2712
3063
|
//# sourceMappingURL=index.js.map
|