@leav/ui 0.3.6-57637c6 → 0.3.6-598b136
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/__mocks__/common/attribute.js +1 -0
- package/dist/__mocks__/common/attribute.js.map +1 -1
- package/dist/__mocks__/common/value.js +1 -0
- package/dist/__mocks__/common/value.js.map +1 -1
- package/dist/__mocks__/common/view.js +6 -4
- package/dist/__mocks__/common/view.js.map +1 -1
- package/dist/_gqlTypes/index.d.ts +306 -46
- package/dist/_gqlTypes/index.js +165 -45
- package/dist/_gqlTypes/index.js.map +1 -1
- package/dist/_queries/records/getRecordColumnsValues.d.ts +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 +1 -0
- package/dist/_queries/records/recordFormAttributeFragment.js.map +1 -1
- package/dist/_queries/views/saveViewMutation.js +1 -1
- package/dist/_queries/views/viewDetailsFragment.js +12 -8
- package/dist/_queries/views/viewDetailsFragment.js.map +1 -1
- package/dist/_utils/index.js +4 -1
- package/dist/_utils/index.js.map +1 -1
- 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/Explorer/Explorer.d.ts +5 -4
- package/dist/components/Explorer/Explorer.js +26 -20
- package/dist/components/Explorer/Explorer.js.map +1 -1
- package/dist/components/Explorer/ExplorerTitle.d.ts +2 -0
- package/dist/components/Explorer/ExplorerTitle.js +28 -11
- package/dist/components/Explorer/ExplorerTitle.js.map +1 -1
- package/dist/components/Explorer/TableCell.js +15 -6
- package/dist/components/Explorer/TableCell.js.map +1 -1
- package/dist/components/Explorer/_constants.d.ts +4 -0
- package/dist/components/Explorer/_constants.js +17 -0
- package/dist/components/Explorer/_constants.js.map +1 -0
- package/dist/components/Explorer/_queries/useExplorerData.d.ts +12 -6
- package/dist/components/Explorer/_queries/useExplorerData.js +101 -22
- package/dist/components/Explorer/_queries/useExplorerData.js.map +1 -1
- package/dist/components/Explorer/_types.d.ts +26 -1
- package/dist/components/Explorer/{nullValuesConditions.d.ts → conditionsHelper.d.ts} +1 -0
- package/dist/components/Explorer/{nullValuesConditions.js → conditionsHelper.js} +3 -1
- package/dist/components/Explorer/conditionsHelper.js.map +1 -0
- package/dist/components/Explorer/display-view-filters/ExplorerToolBar.js +1 -1
- package/dist/components/Explorer/display-view-filters/ExplorerToolBar.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.js +9 -3
- package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/BooleanAttributeDropdown.d.ts +2 -2
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/BooleanAttributeDropdown.js +16 -31
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/BooleanAttributeDropdown.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ColorAttributeDropDown.d.ts +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 +2 -2
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateAttributeDropDown.js +12 -36
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateAttributeDropDown.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateRangeAttributeDropDown.d.ts +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 +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.js +56 -8
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterValueList.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/NumericAttributeDropDown.d.ts +2 -2
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/NumericAttributeDropDown.js +7 -32
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/NumericAttributeDropDown.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TextAttributeDropDown.d.ts +2 -2
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TextAttributeDropDown.js +7 -32
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TextAttributeDropDown.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/useConditionOptionsByType.d.ts +1 -0
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/useConditionOptionsByType.js +5 -15
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/useConditionOptionsByType.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/router-menu/SettingsPanel.js +45 -5
- package/dist/components/Explorer/manage-view-settings/router-menu/SettingsPanel.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/sort-items/SortItems.js +25 -21
- package/dist/components/Explorer/manage-view-settings/sort-items/SortItems.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.js +12 -1
- package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.d.ts +14 -7
- package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.js +37 -32
- package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.js.map +1 -1
- package/dist/components/Explorer/useCreateAction.d.ts +4 -2
- package/dist/components/Explorer/useCreateAction.js +35 -2
- package/dist/components/Explorer/useCreateAction.js.map +1 -1
- package/dist/components/Explorer/useEditAction.js +3 -3
- package/dist/components/Explorer/useEditAction.js.map +1 -1
- package/dist/components/Explorer/usePrimaryActions.js +14 -7
- package/dist/components/Explorer/usePrimaryActions.js.map +1 -1
- package/dist/components/Explorer/useRemoveAction.d.ts +12 -0
- package/dist/components/Explorer/useRemoveAction.js +90 -0
- package/dist/components/Explorer/useRemoveAction.js.map +1 -0
- package/dist/components/Explorer/useSearchInput.js +1 -1
- package/dist/components/Explorer/useSearchInput.js.map +1 -1
- package/dist/components/Explorer/useViewSettingsReducer.d.ts +4 -3
- package/dist/components/Explorer/useViewSettingsReducer.js +101 -35
- package/dist/components/Explorer/useViewSettingsReducer.js.map +1 -1
- package/dist/components/LibraryItemsList/LibraryItemsListContent/LibraryItemsListContent.js +2 -2
- 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 +2 -2
- package/dist/components/LibraryItemsList/MenuView/MenuView.js.map +1 -1
- package/dist/components/LibraryItemsList/ViewPanel/EditView/EditView.js +2 -2
- 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/hooks/useLibraryView/useLibraryView.js +6 -4
- 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 +2 -7
- package/dist/components/LibraryItemsList/hooks/useSearchReducer/searchReducer.js.map +1 -1
- package/dist/components/RecordEdition/EditRecord/EditRecord.js +6 -5
- package/dist/components/RecordEdition/EditRecord/EditRecord.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js +4 -4
- package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/_types.d.ts +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/uiElements/LinkField/LinkField.js +2 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/ComputeIndicator.js +2 -4
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/ComputeIndicator.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js +40 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSBooleanWrapper.js +2 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSBooleanWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSColorPickerWrapper.js +39 -4
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSColorPickerWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSDatePickerWrapper.js +6 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSDatePickerWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputEncryptedWrapper.js +5 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputEncryptedWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputNumberWrapper.js +5 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputNumberWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputWrapper.js +6 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRangePickerWrapper.js +6 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRangePickerWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRichTextWrapper.js +5 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRichTextWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValue.d.ts +2 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValue.js +3 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValue.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/DSListSelect.js +5 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/DSListSelect.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/_types.d.ts +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/useGetPresentationValues.js +0 -5
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/useGetPresentationValues.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/EditRecordSidebar/EditRecordSidebar.d.ts +3 -2
- package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.js +32 -15
- 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/ValueDetails/ValueDetails.js +1 -13
- package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/ValueDetails.js.map +1 -1
- 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/EditRecordSkeleton/index.js +6 -0
- package/dist/components/RecordEdition/EditRecordSkeleton/index.js.map +1 -0
- 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/constants.d.ts +3 -0
- package/dist/constants.js +3 -0
- package/dist/constants.js.map +1 -1
- package/dist/hooks/useExecuteSaveViewMutation/index.d.ts +1 -0
- package/dist/hooks/useExecuteSaveViewMutation/index.js +5 -0
- 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/locales/en/shared.json +19 -3
- package/dist/locales/fr/shared.json +19 -3
- package/dist/types/views.d.ts +1 -1
- package/package.json +2 -2
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/SimpleFilterDropDown.d.ts +0 -3
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/SimpleFilterDropDown.js +0 -72
- package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/SimpleFilterDropDown.js.map +0 -1
- package/dist/components/Explorer/nullValuesConditions.js.map +0 -1
- package/dist/components/Explorer/useDeactivateAction.d.ts +0 -12
- package/dist/components/Explorer/useDeactivateAction.js +0 -52
- package/dist/components/Explorer/useDeactivateAction.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/EditRecordSkeleton.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/hooks/useExecuteAddViewMutation/useExecuteAddViewMutation.d.ts +0 -6
- package/dist/hooks/useExecuteAddViewMutation/useExecuteAddViewMutation.js.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"attribute.js","sourceRoot":"","sources":["../../../src/__mocks__/common/attribute.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"attribute.js","sourceRoot":"","sources":["../../../src/__mocks__/common/attribute.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"value.js","sourceRoot":"","sources":["../../../src/__mocks__/common/value.ts"],"names":[],"mappings":"AAKA,OAAO,EAAC,mBAAmB,EAAC,MAAM,aAAa,CAAC;AAChD,OAAO,EAAC,YAAY,EAAC,MAAM,UAAU,CAAC;AAEtC,MAAM,CAAC,MAAM,YAAY,GAA4B;IACjD,EAAE,EAAE,GAAG;IACP,MAAM,EAAE;QACJ,EAAE,EAAE,QAAQ;QACZ,KAAK,EAAE,OAAO;QACd,QAAQ,EAAE,OAAO;QACjB,OAAO,EAAE;YACL,EAAE,EAAE,OAAO;YACX,KAAK,EAAE,EAAC,EAAE,EAAE,cAAc,EAAC;SAC9B;QACD,OAAO,EAAE,YAAY;QACrB,KAAK,EAAE,SAAS;KACnB;CACJ,CAAC;AAEF,MAAM,CAAC,MAAM,kBAAkB,GAAmB;IAC9C,QAAQ,EAAE,QAAQ;IAClB,UAAU,EAAE,UAAU;IACtB,UAAU,EAAE,YAAY;IACxB,WAAW,EAAE,UAAU;IACvB,WAAW,EAAE,YAAY;IACzB,OAAO,EAAE,YAAY;IACrB,WAAW,EAAE,YAAY;IACzB,SAAS,EAAE,IAAI;IACf,SAAS,EAAE,IAAI;CAClB,CAAC;AAEF,MAAM,CAAC,MAAM,+BAA+B,GAAiC;IACzE,KAAK,EAAE,kBAAkB;IACzB,SAAS,EAAE;QACP,GAAG,mBAAmB;QACtB,WAAW,EAAE;YACT,EAAE,EAAE,gBAAgB;YACpB,EAAE,EAAE,gBAAgB;SACvB;QACD,eAAe,EAAE,KAAK;QACtB,QAAQ,EAAE,KAAK;QACf,WAAW,EAAE,EAAC,gBAAgB,EAAE,IAAI,EAAE,UAAU,EAAE,IAAI,EAAC;QACvD,OAAO,EAAE,KAAK;KACjB;CACJ,CAAC"}
|
|
1
|
+
{"version":3,"file":"value.js","sourceRoot":"","sources":["../../../src/__mocks__/common/value.ts"],"names":[],"mappings":"AAKA,OAAO,EAAC,mBAAmB,EAAC,MAAM,aAAa,CAAC;AAChD,OAAO,EAAC,YAAY,EAAC,MAAM,UAAU,CAAC;AAEtC,MAAM,CAAC,MAAM,YAAY,GAA4B;IACjD,EAAE,EAAE,GAAG;IACP,MAAM,EAAE;QACJ,EAAE,EAAE,QAAQ;QACZ,KAAK,EAAE,OAAO;QACd,QAAQ,EAAE,OAAO;QACjB,OAAO,EAAE;YACL,EAAE,EAAE,OAAO;YACX,KAAK,EAAE,EAAC,EAAE,EAAE,cAAc,EAAC;SAC9B;QACD,OAAO,EAAE,YAAY;QACrB,KAAK,EAAE,SAAS;KACnB;CACJ,CAAC;AAEF,MAAM,CAAC,MAAM,kBAAkB,GAAmB;IAC9C,QAAQ,EAAE,QAAQ;IAClB,UAAU,EAAE,UAAU;IACtB,UAAU,EAAE,YAAY;IACxB,WAAW,EAAE,UAAU;IACvB,WAAW,EAAE,YAAY;IACzB,OAAO,EAAE,YAAY;IACrB,WAAW,EAAE,YAAY;IACzB,SAAS,EAAE,IAAI;IACf,SAAS,EAAE,IAAI;CAClB,CAAC;AAEF,MAAM,CAAC,MAAM,+BAA+B,GAAiC;IACzE,KAAK,EAAE,kBAAkB;IACzB,SAAS,EAAE;QACP,GAAG,mBAAmB;QACtB,WAAW,EAAE;YACT,EAAE,EAAE,gBAAgB;YACpB,EAAE,EAAE,gBAAgB;SACvB;QACD,eAAe,EAAE,KAAK;QACtB,QAAQ,EAAE,KAAK;QACf,QAAQ,EAAE,KAAK;QACf,WAAW,EAAE,EAAC,gBAAgB,EAAE,IAAI,EAAE,UAAU,EAAE,IAAI,EAAC;QACvD,OAAO,EAAE,KAAK;KACjB;CACJ,CAAC"}
|
|
@@ -17,10 +17,12 @@ export const mockView = {
|
|
|
17
17
|
},
|
|
18
18
|
color: '#e48232',
|
|
19
19
|
filters: [],
|
|
20
|
-
sort:
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
20
|
+
sort: [
|
|
21
|
+
{
|
|
22
|
+
field: 'id',
|
|
23
|
+
order: SortOrder.asc
|
|
24
|
+
}
|
|
25
|
+
],
|
|
24
26
|
attributes: []
|
|
25
27
|
};
|
|
26
28
|
//# sourceMappingURL=view.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"view.js","sourceRoot":"","sources":["../../../src/__mocks__/common/view.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,sCAAsC;AACtC,sEAAsE;AAGtE,OAAO,EAAC,SAAS,EAAE,SAAS,EAAE,SAAS,EAAC,MAAM,eAAe,CAAC;AAE9D,MAAM,CAAC,MAAM,QAAQ,GAAU;IAC3B,EAAE,EAAE,IAAI;IACR,OAAO,EAAE,EAAC,IAAI,EAAE,SAAS,CAAC,IAAI,EAAE,IAAI,EAAE,SAAS,CAAC,MAAM,EAAC;IACvD,MAAM,EAAE,KAAK;IACb,KAAK,EAAE,IAAI;IACX,KAAK,EAAE;QACH,EAAE,EAAE,MAAM;QACV,EAAE,EAAE,MAAM;KACb;IACD,WAAW,EAAE;QACT,EAAE,EAAE,iBAAiB;QACrB,EAAE,EAAE,iBAAiB;KACxB;IACD,KAAK,EAAE,SAAS;IAChB,OAAO,EAAE,EAAE;IACX,IAAI,EAAE;QACF,KAAK,EAAE,IAAI;
|
|
1
|
+
{"version":3,"file":"view.js","sourceRoot":"","sources":["../../../src/__mocks__/common/view.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,sCAAsC;AACtC,sEAAsE;AAGtE,OAAO,EAAC,SAAS,EAAE,SAAS,EAAE,SAAS,EAAC,MAAM,eAAe,CAAC;AAE9D,MAAM,CAAC,MAAM,QAAQ,GAAU;IAC3B,EAAE,EAAE,IAAI;IACR,OAAO,EAAE,EAAC,IAAI,EAAE,SAAS,CAAC,IAAI,EAAE,IAAI,EAAE,SAAS,CAAC,MAAM,EAAC;IACvD,MAAM,EAAE,KAAK;IACb,KAAK,EAAE,IAAI;IACX,KAAK,EAAE;QACH,EAAE,EAAE,MAAM;QACV,EAAE,EAAE,MAAM;KACb;IACD,WAAW,EAAE;QACT,EAAE,EAAE,iBAAiB;QACrB,EAAE,EAAE,iBAAiB;KACxB;IACD,KAAK,EAAE,SAAS;IAChB,OAAO,EAAE,EAAE;IACX,IAAI,EAAE;QACF;YACI,KAAK,EAAE,IAAI;YACX,KAAK,EAAE,SAAS,CAAC,GAAG;SACvB;KACJ;IACD,UAAU,EAAE,EAAE;CACjB,CAAC"}
|
|
@@ -739,7 +739,7 @@ export type ViewInput = {
|
|
|
739
739
|
label?: InputMaybe<Scalars['SystemTranslation']>;
|
|
740
740
|
library: Scalars['String'];
|
|
741
741
|
shared: Scalars['Boolean'];
|
|
742
|
-
sort?: InputMaybe<RecordSortInput
|
|
742
|
+
sort?: InputMaybe<Array<RecordSortInput>>;
|
|
743
743
|
valuesVersions?: InputMaybe<Array<ViewValuesVersionInput>>;
|
|
744
744
|
};
|
|
745
745
|
export declare enum ViewSizes {
|
|
@@ -1483,6 +1483,7 @@ export type RecordFormElementFragment = {
|
|
|
1483
1483
|
format?: AttributeFormat | null;
|
|
1484
1484
|
system: boolean;
|
|
1485
1485
|
readonly: boolean;
|
|
1486
|
+
required: boolean;
|
|
1486
1487
|
multiple_values: boolean;
|
|
1487
1488
|
compute: boolean;
|
|
1488
1489
|
linked_library?: {
|
|
@@ -1565,6 +1566,7 @@ export type RecordFormElementFragment = {
|
|
|
1565
1566
|
format?: AttributeFormat | null;
|
|
1566
1567
|
system: boolean;
|
|
1567
1568
|
readonly: boolean;
|
|
1569
|
+
required: boolean;
|
|
1568
1570
|
multiple_values: boolean;
|
|
1569
1571
|
compute: boolean;
|
|
1570
1572
|
values_list?: {
|
|
@@ -1634,6 +1636,7 @@ export type RecordFormElementFragment = {
|
|
|
1634
1636
|
format?: AttributeFormat | null;
|
|
1635
1637
|
system: boolean;
|
|
1636
1638
|
readonly: boolean;
|
|
1639
|
+
required: boolean;
|
|
1637
1640
|
multiple_values: boolean;
|
|
1638
1641
|
compute: boolean;
|
|
1639
1642
|
linked_tree?: {
|
|
@@ -2138,6 +2141,7 @@ export type RecordFormAttributeLinkAttributeFragment = {
|
|
|
2138
2141
|
format?: AttributeFormat | null;
|
|
2139
2142
|
system: boolean;
|
|
2140
2143
|
readonly: boolean;
|
|
2144
|
+
required: boolean;
|
|
2141
2145
|
multiple_values: boolean;
|
|
2142
2146
|
compute: boolean;
|
|
2143
2147
|
linked_library?: {
|
|
@@ -2221,6 +2225,7 @@ export type RecordFormAttributeStandardAttributeFragment = {
|
|
|
2221
2225
|
format?: AttributeFormat | null;
|
|
2222
2226
|
system: boolean;
|
|
2223
2227
|
readonly: boolean;
|
|
2228
|
+
required: boolean;
|
|
2224
2229
|
multiple_values: boolean;
|
|
2225
2230
|
compute: boolean;
|
|
2226
2231
|
values_list?: {
|
|
@@ -2291,6 +2296,7 @@ export type RecordFormAttributeTreeAttributeFragment = {
|
|
|
2291
2296
|
format?: AttributeFormat | null;
|
|
2292
2297
|
system: boolean;
|
|
2293
2298
|
readonly: boolean;
|
|
2299
|
+
required: boolean;
|
|
2294
2300
|
multiple_values: boolean;
|
|
2295
2301
|
compute: boolean;
|
|
2296
2302
|
linked_tree?: {
|
|
@@ -2497,10 +2503,10 @@ export type ViewDetailsFragment = {
|
|
|
2497
2503
|
label?: any | null;
|
|
2498
2504
|
} | null;
|
|
2499
2505
|
}> | null;
|
|
2500
|
-
sort?: {
|
|
2506
|
+
sort?: Array<{
|
|
2501
2507
|
field: string;
|
|
2502
2508
|
order: SortOrder;
|
|
2503
|
-
} | null;
|
|
2509
|
+
}> | null;
|
|
2504
2510
|
valuesVersions?: Array<{
|
|
2505
2511
|
treeId: string;
|
|
2506
2512
|
treeNode: {
|
|
@@ -2525,6 +2531,22 @@ export type ViewDetailsFragment = {
|
|
|
2525
2531
|
id: string;
|
|
2526
2532
|
}> | null;
|
|
2527
2533
|
};
|
|
2534
|
+
export type ViewDetailsFilterFragment = {
|
|
2535
|
+
field?: string | null;
|
|
2536
|
+
value?: string | null;
|
|
2537
|
+
condition?: RecordFilterCondition | null;
|
|
2538
|
+
operator?: RecordFilterOperator | null;
|
|
2539
|
+
tree?: {
|
|
2540
|
+
id: string;
|
|
2541
|
+
label?: any | null;
|
|
2542
|
+
} | null;
|
|
2543
|
+
};
|
|
2544
|
+
export type LinkAttributeDetailsFragment = {
|
|
2545
|
+
label?: any | null;
|
|
2546
|
+
linked_library?: {
|
|
2547
|
+
id: string;
|
|
2548
|
+
} | null;
|
|
2549
|
+
};
|
|
2528
2550
|
export type AttributePropertiesFragment = {
|
|
2529
2551
|
id: string;
|
|
2530
2552
|
label?: any | null;
|
|
@@ -2568,8 +2590,76 @@ export type PropertyValueTreeValueFragment = {
|
|
|
2568
2590
|
};
|
|
2569
2591
|
export type PropertyValueValueFragment = {
|
|
2570
2592
|
valuePayload?: any | null;
|
|
2593
|
+
valueRawPayload?: any | null;
|
|
2571
2594
|
};
|
|
2572
2595
|
export type PropertyValueFragment = PropertyValueLinkValueFragment | PropertyValueTreeValueFragment | PropertyValueValueFragment;
|
|
2596
|
+
export type LinkPropertyLinkValueFragment = {
|
|
2597
|
+
id_value?: string | null;
|
|
2598
|
+
payload?: {
|
|
2599
|
+
id: string;
|
|
2600
|
+
properties: Array<{
|
|
2601
|
+
attributeId: string;
|
|
2602
|
+
attributeProperties: {
|
|
2603
|
+
id: string;
|
|
2604
|
+
label?: any | null;
|
|
2605
|
+
type: AttributeType;
|
|
2606
|
+
format?: AttributeFormat | null;
|
|
2607
|
+
multiple_values: boolean;
|
|
2608
|
+
};
|
|
2609
|
+
values: Array<{
|
|
2610
|
+
linkPayload?: {
|
|
2611
|
+
id: string;
|
|
2612
|
+
whoAmI: {
|
|
2613
|
+
id: string;
|
|
2614
|
+
label?: string | null;
|
|
2615
|
+
subLabel?: string | null;
|
|
2616
|
+
color?: string | null;
|
|
2617
|
+
preview?: IPreviewScalar | null;
|
|
2618
|
+
library: {
|
|
2619
|
+
id: string;
|
|
2620
|
+
label?: any | null;
|
|
2621
|
+
};
|
|
2622
|
+
};
|
|
2623
|
+
} | null;
|
|
2624
|
+
} | {
|
|
2625
|
+
treePayload?: {
|
|
2626
|
+
record: {
|
|
2627
|
+
id: string;
|
|
2628
|
+
whoAmI: {
|
|
2629
|
+
id: string;
|
|
2630
|
+
label?: string | null;
|
|
2631
|
+
subLabel?: string | null;
|
|
2632
|
+
color?: string | null;
|
|
2633
|
+
preview?: IPreviewScalar | null;
|
|
2634
|
+
library: {
|
|
2635
|
+
id: string;
|
|
2636
|
+
label?: any | null;
|
|
2637
|
+
};
|
|
2638
|
+
};
|
|
2639
|
+
};
|
|
2640
|
+
} | null;
|
|
2641
|
+
} | {
|
|
2642
|
+
valuePayload?: any | null;
|
|
2643
|
+
valueRawPayload?: any | null;
|
|
2644
|
+
}>;
|
|
2645
|
+
}>;
|
|
2646
|
+
whoAmI: {
|
|
2647
|
+
id: string;
|
|
2648
|
+
label?: string | null;
|
|
2649
|
+
subLabel?: string | null;
|
|
2650
|
+
color?: string | null;
|
|
2651
|
+
preview?: IPreviewScalar | null;
|
|
2652
|
+
library: {
|
|
2653
|
+
id: string;
|
|
2654
|
+
label?: any | null;
|
|
2655
|
+
};
|
|
2656
|
+
};
|
|
2657
|
+
} | null;
|
|
2658
|
+
};
|
|
2659
|
+
export type LinkPropertyTreeValueValueFragment = {
|
|
2660
|
+
id_value?: string | null;
|
|
2661
|
+
};
|
|
2662
|
+
export type LinkPropertyFragment = LinkPropertyLinkValueFragment | LinkPropertyTreeValueValueFragment;
|
|
2573
2663
|
export type CheckApplicationExistenceQueryVariables = Exact<{
|
|
2574
2664
|
id?: InputMaybe<Scalars['ID']>;
|
|
2575
2665
|
endpoint?: InputMaybe<Scalars['String']>;
|
|
@@ -3964,6 +4054,7 @@ export type RecordFormQuery = {
|
|
|
3964
4054
|
format?: AttributeFormat | null;
|
|
3965
4055
|
system: boolean;
|
|
3966
4056
|
readonly: boolean;
|
|
4057
|
+
required: boolean;
|
|
3967
4058
|
multiple_values: boolean;
|
|
3968
4059
|
compute: boolean;
|
|
3969
4060
|
linked_library?: {
|
|
@@ -4046,6 +4137,7 @@ export type RecordFormQuery = {
|
|
|
4046
4137
|
format?: AttributeFormat | null;
|
|
4047
4138
|
system: boolean;
|
|
4048
4139
|
readonly: boolean;
|
|
4140
|
+
required: boolean;
|
|
4049
4141
|
multiple_values: boolean;
|
|
4050
4142
|
compute: boolean;
|
|
4051
4143
|
values_list?: {
|
|
@@ -4115,6 +4207,7 @@ export type RecordFormQuery = {
|
|
|
4115
4207
|
format?: AttributeFormat | null;
|
|
4116
4208
|
system: boolean;
|
|
4117
4209
|
readonly: boolean;
|
|
4210
|
+
required: boolean;
|
|
4118
4211
|
multiple_values: boolean;
|
|
4119
4212
|
compute: boolean;
|
|
4120
4213
|
linked_tree?: {
|
|
@@ -5780,10 +5873,10 @@ export type GetViewQuery = {
|
|
|
5780
5873
|
label?: any | null;
|
|
5781
5874
|
} | null;
|
|
5782
5875
|
}> | null;
|
|
5783
|
-
sort?: {
|
|
5876
|
+
sort?: Array<{
|
|
5784
5877
|
field: string;
|
|
5785
5878
|
order: SortOrder;
|
|
5786
|
-
} | null;
|
|
5879
|
+
}> | null;
|
|
5787
5880
|
valuesVersions?: Array<{
|
|
5788
5881
|
treeId: string;
|
|
5789
5882
|
treeNode: {
|
|
@@ -5845,10 +5938,10 @@ export type GetViewsListQuery = {
|
|
|
5845
5938
|
label?: any | null;
|
|
5846
5939
|
} | null;
|
|
5847
5940
|
}> | null;
|
|
5848
|
-
sort?: {
|
|
5941
|
+
sort?: Array<{
|
|
5849
5942
|
field: string;
|
|
5850
5943
|
order: SortOrder;
|
|
5851
|
-
} | null;
|
|
5944
|
+
}> | null;
|
|
5852
5945
|
valuesVersions?: Array<{
|
|
5853
5946
|
treeId: string;
|
|
5854
5947
|
treeNode: {
|
|
@@ -5875,10 +5968,10 @@ export type GetViewsListQuery = {
|
|
|
5875
5968
|
}>;
|
|
5876
5969
|
};
|
|
5877
5970
|
};
|
|
5878
|
-
export type
|
|
5971
|
+
export type SaveViewMutationVariables = Exact<{
|
|
5879
5972
|
view: ViewInput;
|
|
5880
5973
|
}>;
|
|
5881
|
-
export type
|
|
5974
|
+
export type SaveViewMutation = {
|
|
5882
5975
|
saveView: {
|
|
5883
5976
|
id: string;
|
|
5884
5977
|
shared: boolean;
|
|
@@ -5909,10 +6002,10 @@ export type AddViewMutation = {
|
|
|
5909
6002
|
label?: any | null;
|
|
5910
6003
|
} | null;
|
|
5911
6004
|
}> | null;
|
|
5912
|
-
sort?: {
|
|
6005
|
+
sort?: Array<{
|
|
5913
6006
|
field: string;
|
|
5914
6007
|
order: SortOrder;
|
|
5915
|
-
} | null;
|
|
6008
|
+
}> | null;
|
|
5916
6009
|
valuesVersions?: Array<{
|
|
5917
6010
|
treeId: string;
|
|
5918
6011
|
treeNode: {
|
|
@@ -5951,7 +6044,25 @@ export type ExplorerAttributesQuery = {
|
|
|
5951
6044
|
}>;
|
|
5952
6045
|
} | null;
|
|
5953
6046
|
};
|
|
5954
|
-
export type
|
|
6047
|
+
export type ExplorerLinkAttributeQueryVariables = Exact<{
|
|
6048
|
+
id: Scalars['ID'];
|
|
6049
|
+
}>;
|
|
6050
|
+
export type ExplorerLinkAttributeQuery = {
|
|
6051
|
+
attributes?: {
|
|
6052
|
+
list: Array<{
|
|
6053
|
+
label?: any | null;
|
|
6054
|
+
id: string;
|
|
6055
|
+
multiple_values: boolean;
|
|
6056
|
+
linked_library?: {
|
|
6057
|
+
id: string;
|
|
6058
|
+
} | null;
|
|
6059
|
+
} | {
|
|
6060
|
+
id: string;
|
|
6061
|
+
multiple_values: boolean;
|
|
6062
|
+
}>;
|
|
6063
|
+
} | null;
|
|
6064
|
+
};
|
|
6065
|
+
export type ExplorerLibraryDataQueryVariables = Exact<{
|
|
5955
6066
|
libraryId: Scalars['ID'];
|
|
5956
6067
|
attributeIds: Array<Scalars['ID']> | Scalars['ID'];
|
|
5957
6068
|
pagination?: InputMaybe<RecordsPagination>;
|
|
@@ -5959,7 +6070,7 @@ export type ExplorerQueryVariables = Exact<{
|
|
|
5959
6070
|
multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
|
|
5960
6071
|
searchQuery?: InputMaybe<Scalars['String']>;
|
|
5961
6072
|
}>;
|
|
5962
|
-
export type
|
|
6073
|
+
export type ExplorerLibraryDataQuery = {
|
|
5963
6074
|
records: {
|
|
5964
6075
|
totalCount?: number | null;
|
|
5965
6076
|
list: Array<{
|
|
@@ -6018,15 +6129,100 @@ export type ExplorerQuery = {
|
|
|
6018
6129
|
} | null;
|
|
6019
6130
|
} | {
|
|
6020
6131
|
valuePayload?: any | null;
|
|
6132
|
+
valueRawPayload?: any | null;
|
|
6021
6133
|
}>;
|
|
6022
6134
|
}>;
|
|
6023
6135
|
}>;
|
|
6024
6136
|
};
|
|
6025
6137
|
};
|
|
6026
|
-
export type
|
|
6138
|
+
export type ExplorerLinkDataQueryVariables = Exact<{
|
|
6139
|
+
attributeIds: Array<Scalars['ID']> | Scalars['ID'];
|
|
6140
|
+
parentLibraryId: Scalars['ID'];
|
|
6141
|
+
parentRecordId?: InputMaybe<Scalars['String']>;
|
|
6142
|
+
linkAttributeId: Scalars['ID'];
|
|
6143
|
+
}>;
|
|
6144
|
+
export type ExplorerLinkDataQuery = {
|
|
6145
|
+
records: {
|
|
6146
|
+
list: Array<{
|
|
6147
|
+
id: string;
|
|
6148
|
+
whoAmI: {
|
|
6149
|
+
id: string;
|
|
6150
|
+
library: {
|
|
6151
|
+
id: string;
|
|
6152
|
+
};
|
|
6153
|
+
};
|
|
6154
|
+
property: Array<{
|
|
6155
|
+
id_value?: string | null;
|
|
6156
|
+
payload?: {
|
|
6157
|
+
id: string;
|
|
6158
|
+
whoAmI: {
|
|
6159
|
+
id: string;
|
|
6160
|
+
label?: string | null;
|
|
6161
|
+
subLabel?: string | null;
|
|
6162
|
+
color?: string | null;
|
|
6163
|
+
preview?: IPreviewScalar | null;
|
|
6164
|
+
library: {
|
|
6165
|
+
id: string;
|
|
6166
|
+
label?: any | null;
|
|
6167
|
+
};
|
|
6168
|
+
};
|
|
6169
|
+
properties: Array<{
|
|
6170
|
+
attributeId: string;
|
|
6171
|
+
attributeProperties: {
|
|
6172
|
+
id: string;
|
|
6173
|
+
label?: any | null;
|
|
6174
|
+
type: AttributeType;
|
|
6175
|
+
format?: AttributeFormat | null;
|
|
6176
|
+
multiple_values: boolean;
|
|
6177
|
+
};
|
|
6178
|
+
values: Array<{
|
|
6179
|
+
linkPayload?: {
|
|
6180
|
+
id: string;
|
|
6181
|
+
whoAmI: {
|
|
6182
|
+
id: string;
|
|
6183
|
+
label?: string | null;
|
|
6184
|
+
subLabel?: string | null;
|
|
6185
|
+
color?: string | null;
|
|
6186
|
+
preview?: IPreviewScalar | null;
|
|
6187
|
+
library: {
|
|
6188
|
+
id: string;
|
|
6189
|
+
label?: any | null;
|
|
6190
|
+
};
|
|
6191
|
+
};
|
|
6192
|
+
} | null;
|
|
6193
|
+
} | {
|
|
6194
|
+
treePayload?: {
|
|
6195
|
+
record: {
|
|
6196
|
+
id: string;
|
|
6197
|
+
whoAmI: {
|
|
6198
|
+
id: string;
|
|
6199
|
+
label?: string | null;
|
|
6200
|
+
subLabel?: string | null;
|
|
6201
|
+
color?: string | null;
|
|
6202
|
+
preview?: IPreviewScalar | null;
|
|
6203
|
+
library: {
|
|
6204
|
+
id: string;
|
|
6205
|
+
label?: any | null;
|
|
6206
|
+
};
|
|
6207
|
+
};
|
|
6208
|
+
};
|
|
6209
|
+
} | null;
|
|
6210
|
+
} | {
|
|
6211
|
+
valuePayload?: any | null;
|
|
6212
|
+
valueRawPayload?: any | null;
|
|
6213
|
+
}>;
|
|
6214
|
+
}>;
|
|
6215
|
+
} | null;
|
|
6216
|
+
} | {
|
|
6217
|
+
id_value?: string | null;
|
|
6218
|
+
}>;
|
|
6219
|
+
}>;
|
|
6220
|
+
};
|
|
6221
|
+
};
|
|
6222
|
+
export type ExplorerLibraryDetailsQueryVariables = Exact<{
|
|
6027
6223
|
libraryId: Scalars['ID'];
|
|
6028
6224
|
}>;
|
|
6029
|
-
export type
|
|
6225
|
+
export type ExplorerLibraryDetailsQuery = {
|
|
6030
6226
|
libraries?: {
|
|
6031
6227
|
list: Array<{
|
|
6032
6228
|
id: string;
|
|
@@ -6062,9 +6258,12 @@ export declare const RecordFormElementFragmentDoc: Apollo.DocumentNode;
|
|
|
6062
6258
|
export declare const TreeLightFragmentDoc: Apollo.DocumentNode;
|
|
6063
6259
|
export declare const TreeDetailsFragmentDoc: Apollo.DocumentNode;
|
|
6064
6260
|
export declare const TreeNodeChildFragmentDoc: Apollo.DocumentNode;
|
|
6261
|
+
export declare const ViewDetailsFilterFragmentDoc: Apollo.DocumentNode;
|
|
6065
6262
|
export declare const ViewDetailsFragmentDoc: Apollo.DocumentNode;
|
|
6066
|
-
export declare const
|
|
6263
|
+
export declare const LinkAttributeDetailsFragmentDoc: Apollo.DocumentNode;
|
|
6067
6264
|
export declare const AttributePropertiesFragmentDoc: Apollo.DocumentNode;
|
|
6265
|
+
export declare const PropertyValueFragmentDoc: Apollo.DocumentNode;
|
|
6266
|
+
export declare const LinkPropertyFragmentDoc: Apollo.DocumentNode;
|
|
6068
6267
|
export declare const CheckApplicationExistenceDocument: Apollo.DocumentNode;
|
|
6069
6268
|
/**
|
|
6070
6269
|
* __useCheckApplicationExistenceQuery__
|
|
@@ -7450,31 +7649,31 @@ export declare function useGetViewsListLazyQuery(baseOptions?: Apollo.LazyQueryH
|
|
|
7450
7649
|
export type GetViewsListQueryHookResult = ReturnType<typeof useGetViewsListQuery>;
|
|
7451
7650
|
export type GetViewsListLazyQueryHookResult = ReturnType<typeof useGetViewsListLazyQuery>;
|
|
7452
7651
|
export type GetViewsListQueryResult = Apollo.QueryResult<GetViewsListQuery, GetViewsListQueryVariables>;
|
|
7453
|
-
export declare const
|
|
7454
|
-
export type
|
|
7652
|
+
export declare const SaveViewDocument: Apollo.DocumentNode;
|
|
7653
|
+
export type SaveViewMutationFn = Apollo.MutationFunction<SaveViewMutation, SaveViewMutationVariables>;
|
|
7455
7654
|
/**
|
|
7456
|
-
*
|
|
7655
|
+
* __useSaveViewMutation__
|
|
7457
7656
|
*
|
|
7458
|
-
* To run a mutation, you first call `
|
|
7459
|
-
* When your component renders, `
|
|
7657
|
+
* To run a mutation, you first call `useSaveViewMutation` within a React component and pass it any options that fit your needs.
|
|
7658
|
+
* When your component renders, `useSaveViewMutation` returns a tuple that includes:
|
|
7460
7659
|
* - A mutate function that you can call at any time to execute the mutation
|
|
7461
7660
|
* - An object with fields that represent the current status of the mutation's execution
|
|
7462
7661
|
*
|
|
7463
7662
|
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
7464
7663
|
*
|
|
7465
7664
|
* @example
|
|
7466
|
-
* const [
|
|
7665
|
+
* const [saveViewMutation, { data, loading, error }] = useSaveViewMutation({
|
|
7467
7666
|
* variables: {
|
|
7468
7667
|
* view: // value for 'view'
|
|
7469
7668
|
* },
|
|
7470
7669
|
* });
|
|
7471
7670
|
*/
|
|
7472
|
-
export declare function
|
|
7671
|
+
export declare function useSaveViewMutation(baseOptions?: Apollo.MutationHookOptions<SaveViewMutation, SaveViewMutationVariables>): Apollo.MutationTuple<SaveViewMutation, Exact<{
|
|
7473
7672
|
view: ViewInput;
|
|
7474
7673
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
7475
|
-
export type
|
|
7476
|
-
export type
|
|
7477
|
-
export type
|
|
7674
|
+
export type SaveViewMutationHookResult = ReturnType<typeof useSaveViewMutation>;
|
|
7675
|
+
export type SaveViewMutationResult = Apollo.MutationResult<SaveViewMutation>;
|
|
7676
|
+
export type SaveViewMutationOptions = Apollo.BaseMutationOptions<SaveViewMutation, SaveViewMutationVariables>;
|
|
7478
7677
|
export declare const ExplorerAttributesDocument: Apollo.DocumentNode;
|
|
7479
7678
|
/**
|
|
7480
7679
|
* __useExplorerAttributesQuery__
|
|
@@ -7501,18 +7700,44 @@ export declare function useExplorerAttributesLazyQuery(baseOptions?: Apollo.Lazy
|
|
|
7501
7700
|
export type ExplorerAttributesQueryHookResult = ReturnType<typeof useExplorerAttributesQuery>;
|
|
7502
7701
|
export type ExplorerAttributesLazyQueryHookResult = ReturnType<typeof useExplorerAttributesLazyQuery>;
|
|
7503
7702
|
export type ExplorerAttributesQueryResult = Apollo.QueryResult<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>;
|
|
7504
|
-
export declare const
|
|
7703
|
+
export declare const ExplorerLinkAttributeDocument: Apollo.DocumentNode;
|
|
7505
7704
|
/**
|
|
7506
|
-
*
|
|
7705
|
+
* __useExplorerLinkAttributeQuery__
|
|
7507
7706
|
*
|
|
7508
|
-
* To run a query within a React component, call `
|
|
7509
|
-
* When your component renders, `
|
|
7707
|
+
* To run a query within a React component, call `useExplorerLinkAttributeQuery` and pass it any options that fit your needs.
|
|
7708
|
+
* When your component renders, `useExplorerLinkAttributeQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
7510
7709
|
* you can use to render your UI.
|
|
7511
7710
|
*
|
|
7512
7711
|
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
7513
7712
|
*
|
|
7514
7713
|
* @example
|
|
7515
|
-
* const { data, loading, error } =
|
|
7714
|
+
* const { data, loading, error } = useExplorerLinkAttributeQuery({
|
|
7715
|
+
* variables: {
|
|
7716
|
+
* id: // value for 'id'
|
|
7717
|
+
* },
|
|
7718
|
+
* });
|
|
7719
|
+
*/
|
|
7720
|
+
export declare function useExplorerLinkAttributeQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>): Apollo.QueryResult<ExplorerLinkAttributeQuery, Exact<{
|
|
7721
|
+
id: Scalars["ID"];
|
|
7722
|
+
}>>;
|
|
7723
|
+
export declare function useExplorerLinkAttributeLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLinkAttributeQuery, Exact<{
|
|
7724
|
+
id: Scalars["ID"];
|
|
7725
|
+
}>>;
|
|
7726
|
+
export type ExplorerLinkAttributeQueryHookResult = ReturnType<typeof useExplorerLinkAttributeQuery>;
|
|
7727
|
+
export type ExplorerLinkAttributeLazyQueryHookResult = ReturnType<typeof useExplorerLinkAttributeLazyQuery>;
|
|
7728
|
+
export type ExplorerLinkAttributeQueryResult = Apollo.QueryResult<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>;
|
|
7729
|
+
export declare const ExplorerLibraryDataDocument: Apollo.DocumentNode;
|
|
7730
|
+
/**
|
|
7731
|
+
* __useExplorerLibraryDataQuery__
|
|
7732
|
+
*
|
|
7733
|
+
* To run a query within a React component, call `useExplorerLibraryDataQuery` and pass it any options that fit your needs.
|
|
7734
|
+
* When your component renders, `useExplorerLibraryDataQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
7735
|
+
* you can use to render your UI.
|
|
7736
|
+
*
|
|
7737
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
7738
|
+
*
|
|
7739
|
+
* @example
|
|
7740
|
+
* const { data, loading, error } = useExplorerLibraryDataQuery({
|
|
7516
7741
|
* variables: {
|
|
7517
7742
|
* libraryId: // value for 'libraryId'
|
|
7518
7743
|
* attributeIds: // value for 'attributeIds'
|
|
@@ -7523,7 +7748,7 @@ export declare const ExplorerDocument: Apollo.DocumentNode;
|
|
|
7523
7748
|
* },
|
|
7524
7749
|
* });
|
|
7525
7750
|
*/
|
|
7526
|
-
export declare function
|
|
7751
|
+
export declare function useExplorerLibraryDataQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>): Apollo.QueryResult<ExplorerLibraryDataQuery, Exact<{
|
|
7527
7752
|
libraryId: Scalars["ID"];
|
|
7528
7753
|
attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
|
|
7529
7754
|
pagination?: InputMaybe<RecordsPagination>;
|
|
@@ -7531,7 +7756,7 @@ export declare function useExplorerQuery(baseOptions: Apollo.QueryHookOptions<Ex
|
|
|
7531
7756
|
multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
|
|
7532
7757
|
searchQuery?: InputMaybe<Scalars["String"]>;
|
|
7533
7758
|
}>>;
|
|
7534
|
-
export declare function
|
|
7759
|
+
export declare function useExplorerLibraryDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLibraryDataQuery, Exact<{
|
|
7535
7760
|
libraryId: Scalars["ID"];
|
|
7536
7761
|
attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
|
|
7537
7762
|
pagination?: InputMaybe<RecordsPagination>;
|
|
@@ -7539,35 +7764,70 @@ export declare function useExplorerLazyQuery(baseOptions?: Apollo.LazyQueryHookO
|
|
|
7539
7764
|
multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
|
|
7540
7765
|
searchQuery?: InputMaybe<Scalars["String"]>;
|
|
7541
7766
|
}>>;
|
|
7542
|
-
export type
|
|
7543
|
-
export type
|
|
7544
|
-
export type
|
|
7545
|
-
export declare const
|
|
7767
|
+
export type ExplorerLibraryDataQueryHookResult = ReturnType<typeof useExplorerLibraryDataQuery>;
|
|
7768
|
+
export type ExplorerLibraryDataLazyQueryHookResult = ReturnType<typeof useExplorerLibraryDataLazyQuery>;
|
|
7769
|
+
export type ExplorerLibraryDataQueryResult = Apollo.QueryResult<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>;
|
|
7770
|
+
export declare const ExplorerLinkDataDocument: Apollo.DocumentNode;
|
|
7546
7771
|
/**
|
|
7547
|
-
*
|
|
7772
|
+
* __useExplorerLinkDataQuery__
|
|
7548
7773
|
*
|
|
7549
|
-
* To run a query within a React component, call `
|
|
7550
|
-
* When your component renders, `
|
|
7774
|
+
* To run a query within a React component, call `useExplorerLinkDataQuery` and pass it any options that fit your needs.
|
|
7775
|
+
* When your component renders, `useExplorerLinkDataQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
7551
7776
|
* you can use to render your UI.
|
|
7552
7777
|
*
|
|
7553
7778
|
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
7554
7779
|
*
|
|
7555
7780
|
* @example
|
|
7556
|
-
* const { data, loading, error } =
|
|
7781
|
+
* const { data, loading, error } = useExplorerLinkDataQuery({
|
|
7782
|
+
* variables: {
|
|
7783
|
+
* attributeIds: // value for 'attributeIds'
|
|
7784
|
+
* parentLibraryId: // value for 'parentLibraryId'
|
|
7785
|
+
* parentRecordId: // value for 'parentRecordId'
|
|
7786
|
+
* linkAttributeId: // value for 'linkAttributeId'
|
|
7787
|
+
* },
|
|
7788
|
+
* });
|
|
7789
|
+
*/
|
|
7790
|
+
export declare function useExplorerLinkDataQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>): Apollo.QueryResult<ExplorerLinkDataQuery, Exact<{
|
|
7791
|
+
attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
|
|
7792
|
+
parentLibraryId: Scalars["ID"];
|
|
7793
|
+
parentRecordId?: InputMaybe<Scalars["String"]>;
|
|
7794
|
+
linkAttributeId: Scalars["ID"];
|
|
7795
|
+
}>>;
|
|
7796
|
+
export declare function useExplorerLinkDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLinkDataQuery, Exact<{
|
|
7797
|
+
attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
|
|
7798
|
+
parentLibraryId: Scalars["ID"];
|
|
7799
|
+
parentRecordId?: InputMaybe<Scalars["String"]>;
|
|
7800
|
+
linkAttributeId: Scalars["ID"];
|
|
7801
|
+
}>>;
|
|
7802
|
+
export type ExplorerLinkDataQueryHookResult = ReturnType<typeof useExplorerLinkDataQuery>;
|
|
7803
|
+
export type ExplorerLinkDataLazyQueryHookResult = ReturnType<typeof useExplorerLinkDataLazyQuery>;
|
|
7804
|
+
export type ExplorerLinkDataQueryResult = Apollo.QueryResult<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>;
|
|
7805
|
+
export declare const ExplorerLibraryDetailsDocument: Apollo.DocumentNode;
|
|
7806
|
+
/**
|
|
7807
|
+
* __useExplorerLibraryDetailsQuery__
|
|
7808
|
+
*
|
|
7809
|
+
* To run a query within a React component, call `useExplorerLibraryDetailsQuery` and pass it any options that fit your needs.
|
|
7810
|
+
* When your component renders, `useExplorerLibraryDetailsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
7811
|
+
* you can use to render your UI.
|
|
7812
|
+
*
|
|
7813
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
7814
|
+
*
|
|
7815
|
+
* @example
|
|
7816
|
+
* const { data, loading, error } = useExplorerLibraryDetailsQuery({
|
|
7557
7817
|
* variables: {
|
|
7558
7818
|
* libraryId: // value for 'libraryId'
|
|
7559
7819
|
* },
|
|
7560
7820
|
* });
|
|
7561
7821
|
*/
|
|
7562
|
-
export declare function
|
|
7822
|
+
export declare function useExplorerLibraryDetailsQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>): Apollo.QueryResult<ExplorerLibraryDetailsQuery, Exact<{
|
|
7563
7823
|
libraryId: Scalars["ID"];
|
|
7564
7824
|
}>>;
|
|
7565
|
-
export declare function
|
|
7825
|
+
export declare function useExplorerLibraryDetailsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLibraryDetailsQuery, Exact<{
|
|
7566
7826
|
libraryId: Scalars["ID"];
|
|
7567
7827
|
}>>;
|
|
7568
|
-
export type
|
|
7569
|
-
export type
|
|
7570
|
-
export type
|
|
7828
|
+
export type ExplorerLibraryDetailsQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsQuery>;
|
|
7829
|
+
export type ExplorerLibraryDetailsLazyQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsLazyQuery>;
|
|
7830
|
+
export type ExplorerLibraryDetailsQueryResult = Apollo.QueryResult<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>;
|
|
7571
7831
|
export declare const TreeDataQueryDocument: Apollo.DocumentNode;
|
|
7572
7832
|
/**
|
|
7573
7833
|
* __useTreeDataQueryQuery__
|