@docupace/ihub-config 1.1.14 → 1.1.15
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/model/graphs/config/fields.graphql +367 -367
- package/dist/model/graphs/config/page.graphql +242 -242
- package/dist/model/graphs/config/table.graphql +182 -180
- package/model/graphs/config/fields.graphql +367 -367
- package/model/graphs/config/page.graphql +242 -242
- package/model/graphs/config/table.graphql +182 -180
- package/package.json +80 -78
|
@@ -1,180 +1,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
|
-
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
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
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
|
+
}
|