@docupace/ihub-config 1.1.21 → 1.1.22

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 (34) hide show
  1. package/README.md +182 -182
  2. package/dist/model/graphs/config/common.graphql +7 -7
  3. package/dist/model/graphs/config/fields.graphql +382 -382
  4. package/dist/model/graphs/config/menu.graphql +54 -54
  5. package/dist/model/graphs/config/mutation.graphql +30 -30
  6. package/dist/model/graphs/config/page.graphql +256 -256
  7. package/dist/model/graphs/config/panel.graphql +30 -30
  8. package/dist/model/graphs/config/query.graphql +84 -84
  9. package/dist/model/graphs/config/rules.graphql +104 -104
  10. package/dist/model/graphs/config/selectOptions.graphql +47 -47
  11. package/dist/model/graphs/config/table.graphql +202 -182
  12. package/dist/model/graphs/config/tests.graphql +16 -16
  13. package/dist/model/graphs/config/theme.graphql +41 -41
  14. package/dist/model/graphs/config/ui-components.graphql +10 -10
  15. package/dist/model/graphs/domains/scalars.graphql +3 -3
  16. package/dist/model/graphs/filter.graphql +5 -5
  17. package/dist/model/graphs/schema.graphql +7 -7
  18. package/model/graphs/config/common.graphql +7 -7
  19. package/model/graphs/config/fields.graphql +382 -382
  20. package/model/graphs/config/menu.graphql +54 -54
  21. package/model/graphs/config/mutation.graphql +30 -30
  22. package/model/graphs/config/page.graphql +256 -256
  23. package/model/graphs/config/panel.graphql +30 -30
  24. package/model/graphs/config/query.graphql +84 -84
  25. package/model/graphs/config/rules.graphql +104 -104
  26. package/model/graphs/config/selectOptions.graphql +47 -47
  27. package/model/graphs/config/table.graphql +202 -182
  28. package/model/graphs/config/tests.graphql +16 -16
  29. package/model/graphs/config/theme.graphql +41 -41
  30. package/model/graphs/config/ui-components.graphql +10 -10
  31. package/model/graphs/domains/scalars.graphql +3 -3
  32. package/model/graphs/filter.graphql +5 -5
  33. package/model/graphs/schema.graphql +7 -7
  34. package/package.json +81 -81
@@ -1,182 +1,202 @@
1
-
2
- interface ITable {
3
- dataType: String
4
- selection: TableSelection
5
- disableColumnSorting: Boolean
6
- disableRowClick: Boolean
7
- queryName: String!
8
- operationName: String
9
- variableDefinitions: JSON
10
- variablesExpressions: JSON
11
- filter: TableFilter
12
- search: SimpleSearch
13
- menuItems: [MenuItem!]
14
- columns: [Column!]!
15
- rowMenuItems: [MenuItem!]
16
- preview: Preview
17
- cardView: CardView
18
- groupBy: GroupBy
19
- orderBy: [OrderBy!]
20
- flattenDataKey: String
21
- actionButton: ActionButton
22
- pagingMode: String
23
- maxRows: Int
24
- pageSizeOptions: [Int!]
25
- defaultPageSize: Int
26
- deferredLoad: Boolean
27
- useCardView: Boolean
28
- whereFilter: WhereFilter
29
- whereFilterName: String
30
- emptyStateMessage: String
31
- unstructuredData: Boolean
32
- toolbar: Toolbar
33
- pagination: TablePagination
34
- expandable: Expandable
35
- totals: [TotalsItem!]
36
- config: JSON
37
- }
38
-
39
- type TotalsItem {
40
- path: String!
41
- label: String!
42
- component: String
43
- }
44
-
45
- type GroupBy {
46
- path: String
47
- pathExpression: String
48
- orderType: OrderType!
49
- component: String
50
- }
51
-
52
-
53
- type OrderBy {
54
- path: String!
55
- orderType: OrderType!
56
- }
57
-
58
- type TableSelection {
59
- enabled: Boolean
60
- label: String
61
- action: String
62
- disabledCondition: String
63
- visibilityCondition: String
64
- position: TablePinnedPosition
65
- }
66
-
67
- enum TablePinnedPosition {
68
- RIGHT
69
- LEFT
70
- }
71
-
72
- type Toolbar {
73
- columns: ToolbarColumns
74
- }
75
-
76
- type ToolbarColumns {
77
- enabled: Boolean
78
- }
79
-
80
- type TablePagination {
81
- totalCount: TablePaginationTotalCount
82
- }
83
-
84
- type TablePaginationTotalCount {
85
- enabled: Boolean
86
- }
87
-
88
- type Table implements ITable
89
-
90
- type NamedTable implements ITable {
91
- name: String
92
- }
93
-
94
- type TabbedTable {
95
- tabs: [TableTab!]!
96
- }
97
-
98
- union AnyTable = Table | TabbedTable
99
-
100
- type TableTab {
101
- name : String!
102
- label: String!
103
- table: Table!
104
- visibilityCondition: String
105
- }
106
-
107
- type TableFilter {
108
- criteria: [TableCriteria!]!
109
- variant: TableFilterVariant
110
- }
111
-
112
- type DateShortcuts {
113
- enabled: Boolean
114
- days: [Int!]
115
- }
116
-
117
- type TableCriteriaDate {
118
- calendars: Int
119
- disableFuture: Boolean
120
- format: String
121
- shortcuts: DateShortcuts
122
- }
123
-
124
- type TableCriteria {
125
- name: String!
126
- label: String!
127
- labelProp: String
128
- path: String!
129
- component: String
130
- config: JSON
131
- dataType: String
132
- date: TableCriteriaDate
133
- defaultValue: String
134
- multiple: Boolean
135
- exactMatchEnabled: Boolean
136
- operator: String
137
- selectOptions: ISelectOptions
138
- min: Float
139
- max: Float
140
- }
141
-
142
- enum TableFilterVariant {
143
- SIDEBAR
144
- MODAL
145
- }
146
-
147
- type Column {
148
- name: String!
149
- label: String!
150
- visible: Boolean
151
- paths: [String!]
152
- expression: String
153
- component: String
154
- sortable: Boolean
155
- flex: Float
156
- pinned: TablePinnedPosition
157
- config: JSON
158
- filter: ColumnFilter
159
- }
160
-
161
- type ColumnFilter {
162
- operators: [String]
163
- path: String
164
- dataType: String
165
- selectOptions: ISelectOptions
166
- }
167
-
168
- type SimpleSearch {
169
- filterType: String
170
- searchBy: String
171
- placeholder: String
172
- selectOptions: QuerySelectOptions!
173
- }
174
-
175
- type WhereFilter {
176
- type: String!
177
- value: JSON!
178
- }
179
-
180
- type Expandable {
181
- component: String
182
- }
1
+
2
+ interface ITable {
3
+ dataType: String
4
+ selection: TableSelection
5
+ disableColumnSorting: Boolean
6
+ disableRowClick: Boolean
7
+ queryName: String!
8
+ operationName: String
9
+ variableDefinitions: JSON
10
+ variablesExpressions: JSON
11
+ filter: TableFilter
12
+ search: SimpleSearch
13
+ menuItems: [MenuItem!]
14
+ columns: [Column!]!
15
+ rowMenuItems: [MenuItem!]
16
+ preview: Preview
17
+ cardView: CardView
18
+ groupBy: GroupBy
19
+ orderBy: [OrderBy!]
20
+ flattenDataKey: String
21
+ actionButton: ActionButton
22
+ pagingMode: String
23
+ maxRows: Int
24
+ pageSizeOptions: [Int!]
25
+ defaultPageSize: Int
26
+ deferredLoad: Boolean
27
+ useCardView: Boolean
28
+ whereFilter: WhereFilter
29
+ whereFilterName: String
30
+ emptyStateMessage: String
31
+ unstructuredData: Boolean
32
+ toolbar: Toolbar
33
+ pagination: TablePagination
34
+ expandable: Expandable
35
+ totals: [TotalsItem!]
36
+ config: JSON
37
+ }
38
+
39
+ type TotalsItem {
40
+ path: String!
41
+ label: String!
42
+ component: String
43
+ }
44
+
45
+ type GroupBy {
46
+ path: String
47
+ pathExpression: String
48
+ orderType: OrderType!
49
+ component: String
50
+ }
51
+
52
+
53
+ type OrderBy {
54
+ path: String!
55
+ orderType: OrderType!
56
+ }
57
+
58
+ type TableSelection {
59
+ enabled: Boolean
60
+ """
61
+ Label for the single selection action. One-button shorthand, superseded by
62
+ actions.
63
+ """
64
+ label: String @deprecated(reason: "Use actions instead.")
65
+ """
66
+ Action dispatched by the single selection action. One-button shorthand,
67
+ superseded by actions. Ignored when actions is set.
68
+ """
69
+ action: String @deprecated(reason: "Use actions instead.")
70
+ """
71
+ Multiple actions rendered side by side in the selection bar. When set, this
72
+ takes precedence over the label/action pair.
73
+ """
74
+ actions: [TableSelectionButton!]
75
+ disabledCondition: String
76
+ visibilityCondition: String
77
+ position: TablePinnedPosition
78
+ }
79
+
80
+ type TableSelectionButton {
81
+ label: String!
82
+ action: String!
83
+ visibilityCondition: String
84
+ disabledCondition: String
85
+ }
86
+
87
+ enum TablePinnedPosition {
88
+ RIGHT
89
+ LEFT
90
+ }
91
+
92
+ type Toolbar {
93
+ columns: ToolbarColumns
94
+ }
95
+
96
+ type ToolbarColumns {
97
+ enabled: Boolean
98
+ }
99
+
100
+ type TablePagination {
101
+ totalCount: TablePaginationTotalCount
102
+ }
103
+
104
+ type TablePaginationTotalCount {
105
+ enabled: Boolean
106
+ }
107
+
108
+ type Table implements ITable
109
+
110
+ type NamedTable implements ITable {
111
+ name: String
112
+ }
113
+
114
+ type TabbedTable {
115
+ tabs: [TableTab!]!
116
+ }
117
+
118
+ union AnyTable = Table | TabbedTable
119
+
120
+ type TableTab {
121
+ name : String!
122
+ label: String!
123
+ table: Table!
124
+ visibilityCondition: String
125
+ }
126
+
127
+ type TableFilter {
128
+ criteria: [TableCriteria!]!
129
+ variant: TableFilterVariant
130
+ }
131
+
132
+ type DateShortcuts {
133
+ enabled: Boolean
134
+ days: [Int!]
135
+ }
136
+
137
+ type TableCriteriaDate {
138
+ calendars: Int
139
+ disableFuture: Boolean
140
+ format: String
141
+ shortcuts: DateShortcuts
142
+ }
143
+
144
+ type TableCriteria {
145
+ name: String!
146
+ label: String!
147
+ labelProp: String
148
+ path: String!
149
+ component: String
150
+ config: JSON
151
+ dataType: String
152
+ date: TableCriteriaDate
153
+ defaultValue: String
154
+ multiple: Boolean
155
+ exactMatchEnabled: Boolean
156
+ operator: String
157
+ selectOptions: ISelectOptions
158
+ min: Float
159
+ max: Float
160
+ }
161
+
162
+ enum TableFilterVariant {
163
+ SIDEBAR
164
+ MODAL
165
+ }
166
+
167
+ type Column {
168
+ name: String!
169
+ label: String!
170
+ visible: Boolean
171
+ paths: [String!]
172
+ expression: String
173
+ component: String
174
+ sortable: Boolean
175
+ flex: Float
176
+ pinned: TablePinnedPosition
177
+ config: JSON
178
+ filter: ColumnFilter
179
+ }
180
+
181
+ type ColumnFilter {
182
+ operators: [String]
183
+ path: String
184
+ dataType: String
185
+ selectOptions: ISelectOptions
186
+ }
187
+
188
+ type SimpleSearch {
189
+ filterType: String
190
+ searchBy: String
191
+ placeholder: String
192
+ selectOptions: QuerySelectOptions!
193
+ }
194
+
195
+ type WhereFilter {
196
+ type: String!
197
+ value: JSON!
198
+ }
199
+
200
+ type Expandable {
201
+ component: String
202
+ }
@@ -1,16 +1,16 @@
1
-
2
- type Test {
3
- name : String!
4
- description: String
5
- configPath : String!
6
- }
7
-
8
- type TestResults {
9
- items : [Test!]!
10
- }
11
-
12
- type TestQuery {
13
- list(path : String!, search: String) : TestResults
14
- getConfig(path : String) : JSON!
15
- }
16
-
1
+
2
+ type Test {
3
+ name : String!
4
+ description: String
5
+ configPath : String!
6
+ }
7
+
8
+ type TestResults {
9
+ items : [Test!]!
10
+ }
11
+
12
+ type TestQuery {
13
+ list(path : String!, search: String) : TestResults
14
+ getConfig(path : String) : JSON!
15
+ }
16
+
@@ -1,41 +1,41 @@
1
- type Base64Image {
2
- "Base64 encoded image data"
3
- data: String!
4
- "MIME type of the image (e.g. 'image/png', 'image/jpeg')"
5
- mimeType: String!
6
- "Unique hash of the image data for caching purposes"
7
- hash: String!
8
- }
9
-
10
- type Theme {
11
- name: String
12
- "Base64 encoded logo image data"
13
- logoImage: Base64Image
14
- """
15
- @deprecated Use logoImage instead
16
- SVG logo image data in string format
17
- """
18
- logoSvg: String
19
- "Base64 encoded sidebar logo image data"
20
- sidebarLogoImage: Base64Image
21
- """
22
- @deprecated Use sidebarLogoImage instead
23
- SVG sidebar logo image data in string format
24
- """
25
- sidebarLogoSvg: String
26
- "Base64 encoded login logo image data"
27
- loginLogoImage: Base64Image
28
- """
29
- @deprecated Use loginLogoImage instead
30
- SVG login logo image data in string format
31
- """
32
- loginLogoSvg: String
33
- "Base64 encoded login background image data"
34
- loginBackgroundImage: Base64Image
35
- """
36
- @deprecated Use loginBackgroundImage instead
37
- SVG login background image data in string format
38
- """
39
- loginBackgroundSvg: String
40
- colors: JSON
41
- }
1
+ type Base64Image {
2
+ "Base64 encoded image data"
3
+ data: String!
4
+ "MIME type of the image (e.g. 'image/png', 'image/jpeg')"
5
+ mimeType: String!
6
+ "Unique hash of the image data for caching purposes"
7
+ hash: String!
8
+ }
9
+
10
+ type Theme {
11
+ name: String
12
+ "Base64 encoded logo image data"
13
+ logoImage: Base64Image
14
+ """
15
+ @deprecated Use logoImage instead
16
+ SVG logo image data in string format
17
+ """
18
+ logoSvg: String
19
+ "Base64 encoded sidebar logo image data"
20
+ sidebarLogoImage: Base64Image
21
+ """
22
+ @deprecated Use sidebarLogoImage instead
23
+ SVG sidebar logo image data in string format
24
+ """
25
+ sidebarLogoSvg: String
26
+ "Base64 encoded login logo image data"
27
+ loginLogoImage: Base64Image
28
+ """
29
+ @deprecated Use loginLogoImage instead
30
+ SVG login logo image data in string format
31
+ """
32
+ loginLogoSvg: String
33
+ "Base64 encoded login background image data"
34
+ loginBackgroundImage: Base64Image
35
+ """
36
+ @deprecated Use loginBackgroundImage instead
37
+ SVG login background image data in string format
38
+ """
39
+ loginBackgroundSvg: String
40
+ colors: JSON
41
+ }
@@ -1,11 +1,11 @@
1
- type TextElement implements IRowElement & IElement {
2
- color: String
3
- cols: Int
4
- fontSize: String
5
- name: String
6
- sx: JSON
7
- value: String
8
- valueExpression: String
9
- variant: String
10
- visibilityCondition: String
1
+ type TextElement implements IRowElement & IElement {
2
+ color: String
3
+ cols: Int
4
+ fontSize: String
5
+ name: String
6
+ sx: JSON
7
+ value: String
8
+ valueExpression: String
9
+ variant: String
10
+ visibilityCondition: String
11
11
  }
@@ -1,3 +1,3 @@
1
- scalar Number
2
-
3
- scalar JSON
1
+ scalar Number
2
+
3
+ scalar JSON
@@ -1,5 +1,5 @@
1
-
2
- enum OrderType {
3
- ASC
4
- DESC
5
- }
1
+
2
+ enum OrderType {
3
+ ASC
4
+ DESC
5
+ }
@@ -1,7 +1,7 @@
1
- type Query {
2
- config: ConfigQuery
3
- }
4
-
5
- type Mutation {
6
- config: ConfigMutation
7
- }
1
+ type Query {
2
+ config: ConfigQuery
3
+ }
4
+
5
+ type Mutation {
6
+ config: ConfigMutation
7
+ }