@leav/ui 0.3.6-b70e858 → 0.3.6-bcac760

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.
Files changed (191) hide show
  1. package/dist/__mocks__/common/attribute.js +1 -0
  2. package/dist/__mocks__/common/attribute.js.map +1 -1
  3. package/dist/__mocks__/common/value.js +1 -0
  4. package/dist/__mocks__/common/value.js.map +1 -1
  5. package/dist/__mocks__/common/view.js +6 -4
  6. package/dist/__mocks__/common/view.js.map +1 -1
  7. package/dist/_gqlTypes/index.d.ts +302 -46
  8. package/dist/_gqlTypes/index.js +164 -45
  9. package/dist/_gqlTypes/index.js.map +1 -1
  10. package/dist/_queries/records/getRecordColumnsValues.d.ts +1 -1
  11. package/dist/_queries/records/recordFormAttributeFragment.js +1 -0
  12. package/dist/_queries/records/recordFormAttributeFragment.js.map +1 -1
  13. package/dist/_queries/views/saveViewMutation.js +1 -1
  14. package/dist/_queries/views/viewDetailsFragment.js +12 -8
  15. package/dist/_queries/views/viewDetailsFragment.js.map +1 -1
  16. package/dist/_utils/index.js +4 -1
  17. package/dist/_utils/index.js.map +1 -1
  18. package/dist/antdTheme/index.d.ts +0 -3
  19. package/dist/antdTheme/index.js +3 -42
  20. package/dist/antdTheme/index.js.map +1 -1
  21. package/dist/components/Explorer/Explorer.d.ts +3 -3
  22. package/dist/components/Explorer/Explorer.js +25 -19
  23. package/dist/components/Explorer/Explorer.js.map +1 -1
  24. package/dist/components/Explorer/ExplorerTitle.d.ts +2 -0
  25. package/dist/components/Explorer/ExplorerTitle.js +28 -11
  26. package/dist/components/Explorer/ExplorerTitle.js.map +1 -1
  27. package/dist/components/Explorer/_constants.d.ts +4 -0
  28. package/dist/components/Explorer/_constants.js +17 -0
  29. package/dist/components/Explorer/_constants.js.map +1 -0
  30. package/dist/components/Explorer/_queries/useExplorerData.d.ts +12 -6
  31. package/dist/components/Explorer/_queries/useExplorerData.js +95 -22
  32. package/dist/components/Explorer/_queries/useExplorerData.js.map +1 -1
  33. package/dist/components/Explorer/_types.d.ts +26 -1
  34. package/dist/components/Explorer/{nullValuesConditions.d.ts → conditionsHelper.d.ts} +1 -0
  35. package/dist/components/Explorer/{nullValuesConditions.js → conditionsHelper.js} +3 -1
  36. package/dist/components/Explorer/conditionsHelper.js.map +1 -0
  37. package/dist/components/Explorer/display-view-filters/ExplorerToolBar.js +1 -1
  38. package/dist/components/Explorer/display-view-filters/ExplorerToolBar.js.map +1 -1
  39. package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.js +2 -1
  40. package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.js.map +1 -1
  41. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/BooleanAttributeDropdown.d.ts +2 -2
  42. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/BooleanAttributeDropdown.js +16 -31
  43. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/BooleanAttributeDropdown.js.map +1 -1
  44. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ColorAttributeDropDown.d.ts +3 -0
  45. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ColorAttributeDropDown.js +11 -0
  46. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ColorAttributeDropDown.js.map +1 -0
  47. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateAttributeDropDown.d.ts +2 -2
  48. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateAttributeDropDown.js +12 -36
  49. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateAttributeDropDown.js.map +1 -1
  50. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateRangeAttributeDropDown.d.ts +3 -0
  51. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateRangeAttributeDropDown.js +11 -0
  52. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateRangeAttributeDropDown.js.map +1 -0
  53. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/EncryptedAttributeDropDown.d.ts +3 -0
  54. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/EncryptedAttributeDropDown.js +11 -0
  55. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/EncryptedAttributeDropDown.js.map +1 -0
  56. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ExtendedAttributeDropDown.d.ts +3 -0
  57. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ExtendedAttributeDropDown.js +11 -0
  58. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ExtendedAttributeDropDown.js.map +1 -0
  59. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.d.ts +1 -1
  60. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.js +56 -8
  61. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.js.map +1 -1
  62. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterValueList.js.map +1 -1
  63. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/NumericAttributeDropDown.d.ts +2 -2
  64. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/NumericAttributeDropDown.js +7 -32
  65. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/NumericAttributeDropDown.js.map +1 -1
  66. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TextAttributeDropDown.d.ts +2 -2
  67. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TextAttributeDropDown.js +7 -32
  68. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TextAttributeDropDown.js.map +1 -1
  69. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/useConditionOptionsByType.d.ts +1 -0
  70. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/useConditionOptionsByType.js +5 -15
  71. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/useConditionOptionsByType.js.map +1 -1
  72. package/dist/components/Explorer/manage-view-settings/router-menu/SettingsPanel.js +45 -5
  73. package/dist/components/Explorer/manage-view-settings/router-menu/SettingsPanel.js.map +1 -1
  74. package/dist/components/Explorer/manage-view-settings/sort-items/SortItems.js +20 -20
  75. package/dist/components/Explorer/manage-view-settings/sort-items/SortItems.js.map +1 -1
  76. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.js +12 -1
  77. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.js.map +1 -1
  78. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.d.ts +14 -7
  79. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.js +37 -32
  80. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.js.map +1 -1
  81. package/dist/components/Explorer/useCreateAction.d.ts +4 -2
  82. package/dist/components/Explorer/useCreateAction.js +35 -2
  83. package/dist/components/Explorer/useCreateAction.js.map +1 -1
  84. package/dist/components/Explorer/useEditAction.js +3 -3
  85. package/dist/components/Explorer/useEditAction.js.map +1 -1
  86. package/dist/components/Explorer/usePrimaryActions.js +14 -7
  87. package/dist/components/Explorer/usePrimaryActions.js.map +1 -1
  88. package/dist/components/Explorer/useRemoveAction.d.ts +12 -0
  89. package/dist/components/Explorer/useRemoveAction.js +90 -0
  90. package/dist/components/Explorer/useRemoveAction.js.map +1 -0
  91. package/dist/components/Explorer/useSearchInput.js +1 -1
  92. package/dist/components/Explorer/useSearchInput.js.map +1 -1
  93. package/dist/components/Explorer/useViewSettingsReducer.d.ts +4 -3
  94. package/dist/components/Explorer/useViewSettingsReducer.js +101 -35
  95. package/dist/components/Explorer/useViewSettingsReducer.js.map +1 -1
  96. package/dist/components/LibraryItemsList/LibraryItemsListContent/LibraryItemsListContent.js +2 -2
  97. package/dist/components/LibraryItemsList/LibraryItemsListContent/LibraryItemsListContent.js.map +1 -1
  98. package/dist/components/LibraryItemsList/LibraryItemsListTable/Header/Header.js +7 -5
  99. package/dist/components/LibraryItemsList/LibraryItemsListTable/Header/Header.js.map +1 -1
  100. package/dist/components/LibraryItemsList/MenuView/MenuView.js +2 -2
  101. package/dist/components/LibraryItemsList/MenuView/MenuView.js.map +1 -1
  102. package/dist/components/LibraryItemsList/ViewPanel/EditView/EditView.js +2 -2
  103. package/dist/components/LibraryItemsList/ViewPanel/EditView/EditView.js.map +1 -1
  104. package/dist/components/LibraryItemsList/ViewPanel/View/View.js +3 -3
  105. package/dist/components/LibraryItemsList/ViewPanel/View/View.js.map +1 -1
  106. package/dist/components/LibraryItemsList/hooks/useLibraryView/useLibraryView.js +6 -4
  107. package/dist/components/LibraryItemsList/hooks/useLibraryView/useLibraryView.js.map +1 -1
  108. package/dist/components/LibraryItemsList/hooks/useSearchReducer/_types.d.ts +1 -1
  109. package/dist/components/LibraryItemsList/hooks/useSearchReducer/searchReducer.d.ts +1 -1
  110. package/dist/components/LibraryItemsList/hooks/useSearchReducer/searchReducer.js +2 -7
  111. package/dist/components/LibraryItemsList/hooks/useSearchReducer/searchReducer.js.map +1 -1
  112. package/dist/components/RecordEdition/EditRecord/EditRecord.js +5 -4
  113. package/dist/components/RecordEdition/EditRecord/EditRecord.js.map +1 -1
  114. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js +3 -3
  115. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js.map +1 -1
  116. package/dist/components/RecordEdition/EditRecordContent/_types.d.ts +1 -1
  117. package/dist/components/RecordEdition/EditRecordContent/helpers/extractFormElements/extractFormElements.d.ts +3 -1
  118. package/dist/components/RecordEdition/EditRecordContent/helpers/extractFormElements/extractFormElements.js +8 -2
  119. package/dist/components/RecordEdition/EditRecordContent/helpers/extractFormElements/extractFormElements.js.map +1 -1
  120. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.js +2 -2
  121. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.js.map +1 -1
  122. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/ComputeIndicator.js +1 -1
  123. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/ComputeIndicator.js.map +1 -1
  124. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js +40 -2
  125. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js.map +1 -1
  126. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSBooleanWrapper.js +2 -1
  127. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSBooleanWrapper.js.map +1 -1
  128. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSColorPickerWrapper.js +2 -1
  129. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSColorPickerWrapper.js.map +1 -1
  130. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSDatePickerWrapper.js +6 -2
  131. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSDatePickerWrapper.js.map +1 -1
  132. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputEncryptedWrapper.js +5 -2
  133. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputEncryptedWrapper.js.map +1 -1
  134. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputNumberWrapper.js +5 -2
  135. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputNumberWrapper.js.map +1 -1
  136. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputWrapper.js +6 -2
  137. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputWrapper.js.map +1 -1
  138. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRangePickerWrapper.js +6 -2
  139. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRangePickerWrapper.js.map +1 -1
  140. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRichTextWrapper.js +5 -2
  141. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRichTextWrapper.js.map +1 -1
  142. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValue.d.ts +2 -1
  143. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValue.js +3 -2
  144. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValue.js.map +1 -1
  145. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/DSListSelect.js +5 -2
  146. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/DSListSelect.js.map +1 -1
  147. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/_types.d.ts +1 -0
  148. package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.js +10 -4
  149. package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.js.map +1 -1
  150. package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.d.ts +1 -0
  151. package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.js +32 -15
  152. package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.js.map +1 -1
  153. package/dist/components/RecordEdition/EditRecordSidebar/PropertiesList/PropertiesList.d.ts +4 -7
  154. package/dist/components/RecordEdition/EditRecordSidebar/PropertiesList/PropertiesList.js +6 -8
  155. package/dist/components/RecordEdition/EditRecordSidebar/PropertiesList/PropertiesList.js.map +1 -1
  156. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordInformations/RecordInformations.d.ts +9 -0
  157. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordInformations/RecordInformations.js +42 -0
  158. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordInformations/RecordInformations.js.map +1 -0
  159. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordInformations/useRecordInformations.d.ts +6 -0
  160. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordInformations/useRecordInformations.js +35 -0
  161. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordInformations/useRecordInformations.js.map +1 -0
  162. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordSummary.d.ts +2 -281
  163. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordSummary.js +25 -56
  164. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordSummary.js.map +1 -1
  165. package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/ValueDetails.js +1 -13
  166. package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/ValueDetails.js.map +1 -1
  167. package/dist/constants.d.ts +3 -0
  168. package/dist/constants.js +3 -0
  169. package/dist/constants.js.map +1 -1
  170. package/dist/hooks/useExecuteSaveViewMutation/index.d.ts +1 -0
  171. package/dist/hooks/useExecuteSaveViewMutation/index.js +5 -0
  172. package/dist/hooks/useExecuteSaveViewMutation/index.js.map +1 -0
  173. package/dist/hooks/useExecuteSaveViewMutation/useExecuteSaveViewMutation.d.ts +6 -0
  174. package/dist/hooks/{useExecuteAddViewMutation/useExecuteAddViewMutation.js → useExecuteSaveViewMutation/useExecuteSaveViewMutation.js} +6 -6
  175. package/dist/hooks/useExecuteSaveViewMutation/useExecuteSaveViewMutation.js.map +1 -0
  176. package/dist/locales/en/shared.json +19 -3
  177. package/dist/locales/fr/shared.json +19 -3
  178. package/dist/types/views.d.ts +1 -1
  179. package/package.json +2 -2
  180. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/SimpleFilterDropDown.d.ts +0 -3
  181. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/SimpleFilterDropDown.js +0 -72
  182. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/SimpleFilterDropDown.js.map +0 -1
  183. package/dist/components/Explorer/nullValuesConditions.js.map +0 -1
  184. package/dist/components/Explorer/useDeactivateAction.d.ts +0 -12
  185. package/dist/components/Explorer/useDeactivateAction.js +0 -52
  186. package/dist/components/Explorer/useDeactivateAction.js.map +0 -1
  187. package/dist/components/RecordEdition/EditRecordContent/shared/ValueDetailsBtn/useValueDetailsButton.d.ts +0 -8
  188. package/dist/components/RecordEdition/EditRecordContent/shared/ValueDetailsBtn/useValueDetailsButton.js +0 -23
  189. package/dist/components/RecordEdition/EditRecordContent/shared/ValueDetailsBtn/useValueDetailsButton.js.map +0 -1
  190. package/dist/hooks/useExecuteAddViewMutation/useExecuteAddViewMutation.d.ts +0 -6
  191. package/dist/hooks/useExecuteAddViewMutation/useExecuteAddViewMutation.js.map +0 -1
@@ -95,6 +95,7 @@ export const mockFormAttribute = {
95
95
  },
96
96
  system: false,
97
97
  readonly: false,
98
+ required: false,
98
99
  multiple_values: false,
99
100
  values_list: {
100
101
  enable: false,
@@ -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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"}
@@ -35,6 +35,7 @@ export const mockRecordPropertyWithAttribute = {
35
35
  },
36
36
  multiple_values: false,
37
37
  readonly: false,
38
+ required: false,
38
39
  permissions: { access_attribute: true, edit_value: true },
39
40
  compute: false
40
41
  }
@@ -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
- field: 'id',
22
- order: SortOrder.asc
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;QACX,KAAK,EAAE,SAAS,CAAC,GAAG;KACvB;IACD,UAAU,EAAE,EAAE;CACjB,CAAC"}
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;
@@ -2570,6 +2592,72 @@ export type PropertyValueValueFragment = {
2570
2592
  valuePayload?: any | null;
2571
2593
  };
2572
2594
  export type PropertyValueFragment = PropertyValueLinkValueFragment | PropertyValueTreeValueFragment | PropertyValueValueFragment;
2595
+ export type LinkPropertyLinkValueFragment = {
2596
+ id_value?: string | null;
2597
+ payload?: {
2598
+ id: string;
2599
+ properties: Array<{
2600
+ attributeId: string;
2601
+ attributeProperties: {
2602
+ id: string;
2603
+ label?: any | null;
2604
+ type: AttributeType;
2605
+ format?: AttributeFormat | null;
2606
+ multiple_values: boolean;
2607
+ };
2608
+ values: Array<{
2609
+ linkPayload?: {
2610
+ id: string;
2611
+ whoAmI: {
2612
+ id: string;
2613
+ label?: string | null;
2614
+ subLabel?: string | null;
2615
+ color?: string | null;
2616
+ preview?: IPreviewScalar | null;
2617
+ library: {
2618
+ id: string;
2619
+ label?: any | null;
2620
+ };
2621
+ };
2622
+ } | null;
2623
+ } | {
2624
+ treePayload?: {
2625
+ record: {
2626
+ id: string;
2627
+ whoAmI: {
2628
+ id: string;
2629
+ label?: string | null;
2630
+ subLabel?: string | null;
2631
+ color?: string | null;
2632
+ preview?: IPreviewScalar | null;
2633
+ library: {
2634
+ id: string;
2635
+ label?: any | null;
2636
+ };
2637
+ };
2638
+ };
2639
+ } | null;
2640
+ } | {
2641
+ valuePayload?: any | null;
2642
+ }>;
2643
+ }>;
2644
+ whoAmI: {
2645
+ id: string;
2646
+ label?: string | null;
2647
+ subLabel?: string | null;
2648
+ color?: string | null;
2649
+ preview?: IPreviewScalar | null;
2650
+ library: {
2651
+ id: string;
2652
+ label?: any | null;
2653
+ };
2654
+ };
2655
+ } | null;
2656
+ };
2657
+ export type LinkPropertyTreeValueValueFragment = {
2658
+ id_value?: string | null;
2659
+ };
2660
+ export type LinkPropertyFragment = LinkPropertyLinkValueFragment | LinkPropertyTreeValueValueFragment;
2573
2661
  export type CheckApplicationExistenceQueryVariables = Exact<{
2574
2662
  id?: InputMaybe<Scalars['ID']>;
2575
2663
  endpoint?: InputMaybe<Scalars['String']>;
@@ -3964,6 +4052,7 @@ export type RecordFormQuery = {
3964
4052
  format?: AttributeFormat | null;
3965
4053
  system: boolean;
3966
4054
  readonly: boolean;
4055
+ required: boolean;
3967
4056
  multiple_values: boolean;
3968
4057
  compute: boolean;
3969
4058
  linked_library?: {
@@ -4046,6 +4135,7 @@ export type RecordFormQuery = {
4046
4135
  format?: AttributeFormat | null;
4047
4136
  system: boolean;
4048
4137
  readonly: boolean;
4138
+ required: boolean;
4049
4139
  multiple_values: boolean;
4050
4140
  compute: boolean;
4051
4141
  values_list?: {
@@ -4115,6 +4205,7 @@ export type RecordFormQuery = {
4115
4205
  format?: AttributeFormat | null;
4116
4206
  system: boolean;
4117
4207
  readonly: boolean;
4208
+ required: boolean;
4118
4209
  multiple_values: boolean;
4119
4210
  compute: boolean;
4120
4211
  linked_tree?: {
@@ -5780,10 +5871,10 @@ export type GetViewQuery = {
5780
5871
  label?: any | null;
5781
5872
  } | null;
5782
5873
  }> | null;
5783
- sort?: {
5874
+ sort?: Array<{
5784
5875
  field: string;
5785
5876
  order: SortOrder;
5786
- } | null;
5877
+ }> | null;
5787
5878
  valuesVersions?: Array<{
5788
5879
  treeId: string;
5789
5880
  treeNode: {
@@ -5845,10 +5936,10 @@ export type GetViewsListQuery = {
5845
5936
  label?: any | null;
5846
5937
  } | null;
5847
5938
  }> | null;
5848
- sort?: {
5939
+ sort?: Array<{
5849
5940
  field: string;
5850
5941
  order: SortOrder;
5851
- } | null;
5942
+ }> | null;
5852
5943
  valuesVersions?: Array<{
5853
5944
  treeId: string;
5854
5945
  treeNode: {
@@ -5875,10 +5966,10 @@ export type GetViewsListQuery = {
5875
5966
  }>;
5876
5967
  };
5877
5968
  };
5878
- export type AddViewMutationVariables = Exact<{
5969
+ export type SaveViewMutationVariables = Exact<{
5879
5970
  view: ViewInput;
5880
5971
  }>;
5881
- export type AddViewMutation = {
5972
+ export type SaveViewMutation = {
5882
5973
  saveView: {
5883
5974
  id: string;
5884
5975
  shared: boolean;
@@ -5909,10 +6000,10 @@ export type AddViewMutation = {
5909
6000
  label?: any | null;
5910
6001
  } | null;
5911
6002
  }> | null;
5912
- sort?: {
6003
+ sort?: Array<{
5913
6004
  field: string;
5914
6005
  order: SortOrder;
5915
- } | null;
6006
+ }> | null;
5916
6007
  valuesVersions?: Array<{
5917
6008
  treeId: string;
5918
6009
  treeNode: {
@@ -5951,7 +6042,25 @@ export type ExplorerAttributesQuery = {
5951
6042
  }>;
5952
6043
  } | null;
5953
6044
  };
5954
- export type ExplorerQueryVariables = Exact<{
6045
+ export type ExplorerLinkAttributeQueryVariables = Exact<{
6046
+ id: Scalars['ID'];
6047
+ }>;
6048
+ export type ExplorerLinkAttributeQuery = {
6049
+ attributes?: {
6050
+ list: Array<{
6051
+ label?: any | null;
6052
+ id: string;
6053
+ multiple_values: boolean;
6054
+ linked_library?: {
6055
+ id: string;
6056
+ } | null;
6057
+ } | {
6058
+ id: string;
6059
+ multiple_values: boolean;
6060
+ }>;
6061
+ } | null;
6062
+ };
6063
+ export type ExplorerLibraryDataQueryVariables = Exact<{
5955
6064
  libraryId: Scalars['ID'];
5956
6065
  attributeIds: Array<Scalars['ID']> | Scalars['ID'];
5957
6066
  pagination?: InputMaybe<RecordsPagination>;
@@ -5959,7 +6068,7 @@ export type ExplorerQueryVariables = Exact<{
5959
6068
  multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
5960
6069
  searchQuery?: InputMaybe<Scalars['String']>;
5961
6070
  }>;
5962
- export type ExplorerQuery = {
6071
+ export type ExplorerLibraryDataQuery = {
5963
6072
  records: {
5964
6073
  totalCount?: number | null;
5965
6074
  list: Array<{
@@ -6023,10 +6132,93 @@ export type ExplorerQuery = {
6023
6132
  }>;
6024
6133
  };
6025
6134
  };
6026
- export type ExplorerLibraryDataQueryVariables = Exact<{
6135
+ export type ExplorerLinkDataQueryVariables = Exact<{
6136
+ attributeIds: Array<Scalars['ID']> | Scalars['ID'];
6137
+ parentLibraryId: Scalars['ID'];
6138
+ parentRecordId?: InputMaybe<Scalars['String']>;
6139
+ linkAttributeId: Scalars['ID'];
6140
+ }>;
6141
+ export type ExplorerLinkDataQuery = {
6142
+ records: {
6143
+ list: Array<{
6144
+ id: string;
6145
+ whoAmI: {
6146
+ id: string;
6147
+ library: {
6148
+ id: string;
6149
+ };
6150
+ };
6151
+ property: Array<{
6152
+ id_value?: string | null;
6153
+ payload?: {
6154
+ id: string;
6155
+ whoAmI: {
6156
+ id: string;
6157
+ label?: string | null;
6158
+ subLabel?: string | null;
6159
+ color?: string | null;
6160
+ preview?: IPreviewScalar | null;
6161
+ library: {
6162
+ id: string;
6163
+ label?: any | null;
6164
+ };
6165
+ };
6166
+ properties: Array<{
6167
+ attributeId: string;
6168
+ attributeProperties: {
6169
+ id: string;
6170
+ label?: any | null;
6171
+ type: AttributeType;
6172
+ format?: AttributeFormat | null;
6173
+ multiple_values: boolean;
6174
+ };
6175
+ values: Array<{
6176
+ linkPayload?: {
6177
+ id: string;
6178
+ whoAmI: {
6179
+ id: string;
6180
+ label?: string | null;
6181
+ subLabel?: string | null;
6182
+ color?: string | null;
6183
+ preview?: IPreviewScalar | null;
6184
+ library: {
6185
+ id: string;
6186
+ label?: any | null;
6187
+ };
6188
+ };
6189
+ } | null;
6190
+ } | {
6191
+ treePayload?: {
6192
+ record: {
6193
+ id: string;
6194
+ whoAmI: {
6195
+ id: string;
6196
+ label?: string | null;
6197
+ subLabel?: string | null;
6198
+ color?: string | null;
6199
+ preview?: IPreviewScalar | null;
6200
+ library: {
6201
+ id: string;
6202
+ label?: any | null;
6203
+ };
6204
+ };
6205
+ };
6206
+ } | null;
6207
+ } | {
6208
+ valuePayload?: any | null;
6209
+ }>;
6210
+ }>;
6211
+ } | null;
6212
+ } | {
6213
+ id_value?: string | null;
6214
+ }>;
6215
+ }>;
6216
+ };
6217
+ };
6218
+ export type ExplorerLibraryDetailsQueryVariables = Exact<{
6027
6219
  libraryId: Scalars['ID'];
6028
6220
  }>;
6029
- export type ExplorerLibraryDataQuery = {
6221
+ export type ExplorerLibraryDetailsQuery = {
6030
6222
  libraries?: {
6031
6223
  list: Array<{
6032
6224
  id: string;
@@ -6062,9 +6254,12 @@ export declare const RecordFormElementFragmentDoc: Apollo.DocumentNode;
6062
6254
  export declare const TreeLightFragmentDoc: Apollo.DocumentNode;
6063
6255
  export declare const TreeDetailsFragmentDoc: Apollo.DocumentNode;
6064
6256
  export declare const TreeNodeChildFragmentDoc: Apollo.DocumentNode;
6257
+ export declare const ViewDetailsFilterFragmentDoc: Apollo.DocumentNode;
6065
6258
  export declare const ViewDetailsFragmentDoc: Apollo.DocumentNode;
6066
- export declare const PropertyValueFragmentDoc: Apollo.DocumentNode;
6259
+ export declare const LinkAttributeDetailsFragmentDoc: Apollo.DocumentNode;
6067
6260
  export declare const AttributePropertiesFragmentDoc: Apollo.DocumentNode;
6261
+ export declare const PropertyValueFragmentDoc: Apollo.DocumentNode;
6262
+ export declare const LinkPropertyFragmentDoc: Apollo.DocumentNode;
6068
6263
  export declare const CheckApplicationExistenceDocument: Apollo.DocumentNode;
6069
6264
  /**
6070
6265
  * __useCheckApplicationExistenceQuery__
@@ -7450,31 +7645,31 @@ export declare function useGetViewsListLazyQuery(baseOptions?: Apollo.LazyQueryH
7450
7645
  export type GetViewsListQueryHookResult = ReturnType<typeof useGetViewsListQuery>;
7451
7646
  export type GetViewsListLazyQueryHookResult = ReturnType<typeof useGetViewsListLazyQuery>;
7452
7647
  export type GetViewsListQueryResult = Apollo.QueryResult<GetViewsListQuery, GetViewsListQueryVariables>;
7453
- export declare const AddViewDocument: Apollo.DocumentNode;
7454
- export type AddViewMutationFn = Apollo.MutationFunction<AddViewMutation, AddViewMutationVariables>;
7648
+ export declare const SaveViewDocument: Apollo.DocumentNode;
7649
+ export type SaveViewMutationFn = Apollo.MutationFunction<SaveViewMutation, SaveViewMutationVariables>;
7455
7650
  /**
7456
- * __useAddViewMutation__
7651
+ * __useSaveViewMutation__
7457
7652
  *
7458
- * To run a mutation, you first call `useAddViewMutation` within a React component and pass it any options that fit your needs.
7459
- * When your component renders, `useAddViewMutation` returns a tuple that includes:
7653
+ * To run a mutation, you first call `useSaveViewMutation` within a React component and pass it any options that fit your needs.
7654
+ * When your component renders, `useSaveViewMutation` returns a tuple that includes:
7460
7655
  * - A mutate function that you can call at any time to execute the mutation
7461
7656
  * - An object with fields that represent the current status of the mutation's execution
7462
7657
  *
7463
7658
  * @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
7659
  *
7465
7660
  * @example
7466
- * const [addViewMutation, { data, loading, error }] = useAddViewMutation({
7661
+ * const [saveViewMutation, { data, loading, error }] = useSaveViewMutation({
7467
7662
  * variables: {
7468
7663
  * view: // value for 'view'
7469
7664
  * },
7470
7665
  * });
7471
7666
  */
7472
- export declare function useAddViewMutation(baseOptions?: Apollo.MutationHookOptions<AddViewMutation, AddViewMutationVariables>): Apollo.MutationTuple<AddViewMutation, Exact<{
7667
+ export declare function useSaveViewMutation(baseOptions?: Apollo.MutationHookOptions<SaveViewMutation, SaveViewMutationVariables>): Apollo.MutationTuple<SaveViewMutation, Exact<{
7473
7668
  view: ViewInput;
7474
7669
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
7475
- export type AddViewMutationHookResult = ReturnType<typeof useAddViewMutation>;
7476
- export type AddViewMutationResult = Apollo.MutationResult<AddViewMutation>;
7477
- export type AddViewMutationOptions = Apollo.BaseMutationOptions<AddViewMutation, AddViewMutationVariables>;
7670
+ export type SaveViewMutationHookResult = ReturnType<typeof useSaveViewMutation>;
7671
+ export type SaveViewMutationResult = Apollo.MutationResult<SaveViewMutation>;
7672
+ export type SaveViewMutationOptions = Apollo.BaseMutationOptions<SaveViewMutation, SaveViewMutationVariables>;
7478
7673
  export declare const ExplorerAttributesDocument: Apollo.DocumentNode;
7479
7674
  /**
7480
7675
  * __useExplorerAttributesQuery__
@@ -7501,18 +7696,44 @@ export declare function useExplorerAttributesLazyQuery(baseOptions?: Apollo.Lazy
7501
7696
  export type ExplorerAttributesQueryHookResult = ReturnType<typeof useExplorerAttributesQuery>;
7502
7697
  export type ExplorerAttributesLazyQueryHookResult = ReturnType<typeof useExplorerAttributesLazyQuery>;
7503
7698
  export type ExplorerAttributesQueryResult = Apollo.QueryResult<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>;
7504
- export declare const ExplorerDocument: Apollo.DocumentNode;
7699
+ export declare const ExplorerLinkAttributeDocument: Apollo.DocumentNode;
7505
7700
  /**
7506
- * __useExplorerQuery__
7701
+ * __useExplorerLinkAttributeQuery__
7507
7702
  *
7508
- * To run a query within a React component, call `useExplorerQuery` and pass it any options that fit your needs.
7509
- * When your component renders, `useExplorerQuery` returns an object from Apollo Client that contains loading, error, and data properties
7703
+ * To run a query within a React component, call `useExplorerLinkAttributeQuery` and pass it any options that fit your needs.
7704
+ * When your component renders, `useExplorerLinkAttributeQuery` returns an object from Apollo Client that contains loading, error, and data properties
7510
7705
  * you can use to render your UI.
7511
7706
  *
7512
7707
  * @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
7708
  *
7514
7709
  * @example
7515
- * const { data, loading, error } = useExplorerQuery({
7710
+ * const { data, loading, error } = useExplorerLinkAttributeQuery({
7711
+ * variables: {
7712
+ * id: // value for 'id'
7713
+ * },
7714
+ * });
7715
+ */
7716
+ export declare function useExplorerLinkAttributeQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>): Apollo.QueryResult<ExplorerLinkAttributeQuery, Exact<{
7717
+ id: Scalars["ID"];
7718
+ }>>;
7719
+ export declare function useExplorerLinkAttributeLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLinkAttributeQuery, Exact<{
7720
+ id: Scalars["ID"];
7721
+ }>>;
7722
+ export type ExplorerLinkAttributeQueryHookResult = ReturnType<typeof useExplorerLinkAttributeQuery>;
7723
+ export type ExplorerLinkAttributeLazyQueryHookResult = ReturnType<typeof useExplorerLinkAttributeLazyQuery>;
7724
+ export type ExplorerLinkAttributeQueryResult = Apollo.QueryResult<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>;
7725
+ export declare const ExplorerLibraryDataDocument: Apollo.DocumentNode;
7726
+ /**
7727
+ * __useExplorerLibraryDataQuery__
7728
+ *
7729
+ * To run a query within a React component, call `useExplorerLibraryDataQuery` and pass it any options that fit your needs.
7730
+ * When your component renders, `useExplorerLibraryDataQuery` returns an object from Apollo Client that contains loading, error, and data properties
7731
+ * you can use to render your UI.
7732
+ *
7733
+ * @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;
7734
+ *
7735
+ * @example
7736
+ * const { data, loading, error } = useExplorerLibraryDataQuery({
7516
7737
  * variables: {
7517
7738
  * libraryId: // value for 'libraryId'
7518
7739
  * attributeIds: // value for 'attributeIds'
@@ -7523,7 +7744,7 @@ export declare const ExplorerDocument: Apollo.DocumentNode;
7523
7744
  * },
7524
7745
  * });
7525
7746
  */
7526
- export declare function useExplorerQuery(baseOptions: Apollo.QueryHookOptions<ExplorerQuery, ExplorerQueryVariables>): Apollo.QueryResult<ExplorerQuery, Exact<{
7747
+ export declare function useExplorerLibraryDataQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>): Apollo.QueryResult<ExplorerLibraryDataQuery, Exact<{
7527
7748
  libraryId: Scalars["ID"];
7528
7749
  attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
7529
7750
  pagination?: InputMaybe<RecordsPagination>;
@@ -7531,7 +7752,7 @@ export declare function useExplorerQuery(baseOptions: Apollo.QueryHookOptions<Ex
7531
7752
  multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
7532
7753
  searchQuery?: InputMaybe<Scalars["String"]>;
7533
7754
  }>>;
7534
- export declare function useExplorerLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerQuery, ExplorerQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerQuery, Exact<{
7755
+ export declare function useExplorerLibraryDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLibraryDataQuery, Exact<{
7535
7756
  libraryId: Scalars["ID"];
7536
7757
  attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
7537
7758
  pagination?: InputMaybe<RecordsPagination>;
@@ -7539,35 +7760,70 @@ export declare function useExplorerLazyQuery(baseOptions?: Apollo.LazyQueryHookO
7539
7760
  multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
7540
7761
  searchQuery?: InputMaybe<Scalars["String"]>;
7541
7762
  }>>;
7542
- export type ExplorerQueryHookResult = ReturnType<typeof useExplorerQuery>;
7543
- export type ExplorerLazyQueryHookResult = ReturnType<typeof useExplorerLazyQuery>;
7544
- export type ExplorerQueryResult = Apollo.QueryResult<ExplorerQuery, ExplorerQueryVariables>;
7545
- export declare const ExplorerLibraryDataDocument: Apollo.DocumentNode;
7763
+ export type ExplorerLibraryDataQueryHookResult = ReturnType<typeof useExplorerLibraryDataQuery>;
7764
+ export type ExplorerLibraryDataLazyQueryHookResult = ReturnType<typeof useExplorerLibraryDataLazyQuery>;
7765
+ export type ExplorerLibraryDataQueryResult = Apollo.QueryResult<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>;
7766
+ export declare const ExplorerLinkDataDocument: Apollo.DocumentNode;
7546
7767
  /**
7547
- * __useExplorerLibraryDataQuery__
7768
+ * __useExplorerLinkDataQuery__
7548
7769
  *
7549
- * To run a query within a React component, call `useExplorerLibraryDataQuery` and pass it any options that fit your needs.
7550
- * When your component renders, `useExplorerLibraryDataQuery` returns an object from Apollo Client that contains loading, error, and data properties
7770
+ * To run a query within a React component, call `useExplorerLinkDataQuery` and pass it any options that fit your needs.
7771
+ * When your component renders, `useExplorerLinkDataQuery` returns an object from Apollo Client that contains loading, error, and data properties
7551
7772
  * you can use to render your UI.
7552
7773
  *
7553
7774
  * @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
7775
  *
7555
7776
  * @example
7556
- * const { data, loading, error } = useExplorerLibraryDataQuery({
7777
+ * const { data, loading, error } = useExplorerLinkDataQuery({
7778
+ * variables: {
7779
+ * attributeIds: // value for 'attributeIds'
7780
+ * parentLibraryId: // value for 'parentLibraryId'
7781
+ * parentRecordId: // value for 'parentRecordId'
7782
+ * linkAttributeId: // value for 'linkAttributeId'
7783
+ * },
7784
+ * });
7785
+ */
7786
+ export declare function useExplorerLinkDataQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>): Apollo.QueryResult<ExplorerLinkDataQuery, Exact<{
7787
+ attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
7788
+ parentLibraryId: Scalars["ID"];
7789
+ parentRecordId?: InputMaybe<Scalars["String"]>;
7790
+ linkAttributeId: Scalars["ID"];
7791
+ }>>;
7792
+ export declare function useExplorerLinkDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLinkDataQuery, Exact<{
7793
+ attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
7794
+ parentLibraryId: Scalars["ID"];
7795
+ parentRecordId?: InputMaybe<Scalars["String"]>;
7796
+ linkAttributeId: Scalars["ID"];
7797
+ }>>;
7798
+ export type ExplorerLinkDataQueryHookResult = ReturnType<typeof useExplorerLinkDataQuery>;
7799
+ export type ExplorerLinkDataLazyQueryHookResult = ReturnType<typeof useExplorerLinkDataLazyQuery>;
7800
+ export type ExplorerLinkDataQueryResult = Apollo.QueryResult<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>;
7801
+ export declare const ExplorerLibraryDetailsDocument: Apollo.DocumentNode;
7802
+ /**
7803
+ * __useExplorerLibraryDetailsQuery__
7804
+ *
7805
+ * To run a query within a React component, call `useExplorerLibraryDetailsQuery` and pass it any options that fit your needs.
7806
+ * When your component renders, `useExplorerLibraryDetailsQuery` returns an object from Apollo Client that contains loading, error, and data properties
7807
+ * you can use to render your UI.
7808
+ *
7809
+ * @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;
7810
+ *
7811
+ * @example
7812
+ * const { data, loading, error } = useExplorerLibraryDetailsQuery({
7557
7813
  * variables: {
7558
7814
  * libraryId: // value for 'libraryId'
7559
7815
  * },
7560
7816
  * });
7561
7817
  */
7562
- export declare function useExplorerLibraryDataQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>): Apollo.QueryResult<ExplorerLibraryDataQuery, Exact<{
7818
+ export declare function useExplorerLibraryDetailsQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>): Apollo.QueryResult<ExplorerLibraryDetailsQuery, Exact<{
7563
7819
  libraryId: Scalars["ID"];
7564
7820
  }>>;
7565
- export declare function useExplorerLibraryDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLibraryDataQuery, Exact<{
7821
+ export declare function useExplorerLibraryDetailsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLibraryDetailsQuery, Exact<{
7566
7822
  libraryId: Scalars["ID"];
7567
7823
  }>>;
7568
- export type ExplorerLibraryDataQueryHookResult = ReturnType<typeof useExplorerLibraryDataQuery>;
7569
- export type ExplorerLibraryDataLazyQueryHookResult = ReturnType<typeof useExplorerLibraryDataLazyQuery>;
7570
- export type ExplorerLibraryDataQueryResult = Apollo.QueryResult<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>;
7824
+ export type ExplorerLibraryDetailsQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsQuery>;
7825
+ export type ExplorerLibraryDetailsLazyQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsLazyQuery>;
7826
+ export type ExplorerLibraryDetailsQueryResult = Apollo.QueryResult<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>;
7571
7827
  export declare const TreeDataQueryDocument: Apollo.DocumentNode;
7572
7828
  /**
7573
7829
  * __useTreeDataQueryQuery__