@docupace/ihub-config 1.1.4 → 1.1.5
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/README.md +182 -182
- package/dist/model/graphs/config/common.graphql +7 -7
- package/dist/model/graphs/config/fields.graphql +338 -338
- package/dist/model/graphs/config/menu.graphql +48 -48
- package/dist/model/graphs/config/mutation.graphql +30 -30
- package/dist/model/graphs/config/page.graphql +241 -241
- package/dist/model/graphs/config/panel.graphql +30 -30
- package/dist/model/graphs/config/query.graphql +55 -55
- package/dist/model/graphs/config/selectOptions.graphql +47 -47
- package/dist/model/graphs/config/table.graphql +159 -157
- package/dist/model/graphs/config/tests.graphql +16 -16
- package/dist/model/graphs/config/theme.graphql +41 -41
- package/dist/model/graphs/config/ui-components.graphql +10 -10
- package/dist/model/graphs/domains/scalars.graphql +3 -3
- package/dist/model/graphs/filter.graphql +5 -5
- package/dist/model/graphs/schema.graphql +7 -7
- package/dist/types/graphql.d.ts +15 -0
- package/dist/types/graphql.d.ts.map +1 -1
- package/dist/types/graphql.js +5 -0
- package/dist/types/graphql.js.map +1 -1
- package/model/graphs/config/common.graphql +7 -7
- package/model/graphs/config/fields.graphql +338 -338
- package/model/graphs/config/menu.graphql +48 -48
- package/model/graphs/config/mutation.graphql +30 -30
- package/model/graphs/config/page.graphql +241 -241
- package/model/graphs/config/panel.graphql +30 -30
- package/model/graphs/config/query.graphql +55 -55
- package/model/graphs/config/selectOptions.graphql +47 -47
- package/model/graphs/config/table.graphql +159 -157
- package/model/graphs/config/tests.graphql +16 -16
- package/model/graphs/config/theme.graphql +41 -41
- package/model/graphs/config/ui-components.graphql +10 -10
- package/model/graphs/domains/scalars.graphql +3 -3
- package/model/graphs/filter.graphql +5 -5
- package/model/graphs/schema.graphql +7 -7
- package/package.json +80 -78
|
@@ -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
|
+
}
|
package/dist/types/graphql.d.ts
CHANGED
|
@@ -504,6 +504,7 @@ export type ITable = {
|
|
|
504
504
|
actionButton?: Maybe<ActionButton>;
|
|
505
505
|
cardView?: Maybe<CardView>;
|
|
506
506
|
columns: Array<Column>;
|
|
507
|
+
config?: Maybe<Scalars['JSON']['output']>;
|
|
507
508
|
dataType?: Maybe<Scalars['String']['output']>;
|
|
508
509
|
defaultPageSize?: Maybe<Scalars['Int']['output']>;
|
|
509
510
|
disableColumnSorting?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -611,6 +612,7 @@ export type NamedTable = ITable & {
|
|
|
611
612
|
actionButton?: Maybe<ActionButton>;
|
|
612
613
|
cardView?: Maybe<CardView>;
|
|
613
614
|
columns: Array<Column>;
|
|
615
|
+
config?: Maybe<Scalars['JSON']['output']>;
|
|
614
616
|
dataType?: Maybe<Scalars['String']['output']>;
|
|
615
617
|
defaultPageSize?: Maybe<Scalars['Int']['output']>;
|
|
616
618
|
disableColumnSorting?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -913,6 +915,7 @@ export type Table = ITable & {
|
|
|
913
915
|
actionButton?: Maybe<ActionButton>;
|
|
914
916
|
cardView?: Maybe<CardView>;
|
|
915
917
|
columns: Array<Column>;
|
|
918
|
+
config?: Maybe<Scalars['JSON']['output']>;
|
|
916
919
|
dataType?: Maybe<Scalars['String']['output']>;
|
|
917
920
|
defaultPageSize?: Maybe<Scalars['Int']['output']>;
|
|
918
921
|
disableColumnSorting?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -988,10 +991,16 @@ export type TablePaginationTotalCount = {
|
|
|
988
991
|
export type TableSelection = {
|
|
989
992
|
__typename?: 'TableSelection';
|
|
990
993
|
action?: Maybe<Scalars['String']['output']>;
|
|
994
|
+
disabledCondition?: Maybe<Scalars['String']['output']>;
|
|
991
995
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
992
996
|
label?: Maybe<Scalars['String']['output']>;
|
|
997
|
+
position?: Maybe<TableSelectionPosition>;
|
|
993
998
|
visibilityCondition?: Maybe<Scalars['String']['output']>;
|
|
994
999
|
};
|
|
1000
|
+
export declare enum TableSelectionPosition {
|
|
1001
|
+
Left = "LEFT",
|
|
1002
|
+
Right = "RIGHT"
|
|
1003
|
+
}
|
|
995
1004
|
export type TableTab = {
|
|
996
1005
|
__typename?: 'TableTab';
|
|
997
1006
|
label: Scalars['String']['output'];
|
|
@@ -1369,6 +1378,7 @@ export type ResolversTypes = {
|
|
|
1369
1378
|
TablePagination: ResolverTypeWrapper<TablePagination>;
|
|
1370
1379
|
TablePaginationTotalCount: ResolverTypeWrapper<TablePaginationTotalCount>;
|
|
1371
1380
|
TableSelection: ResolverTypeWrapper<TableSelection>;
|
|
1381
|
+
TableSelectionPosition: TableSelectionPosition;
|
|
1372
1382
|
TableTab: ResolverTypeWrapper<TableTab>;
|
|
1373
1383
|
Test: ResolverTypeWrapper<Test>;
|
|
1374
1384
|
TestQuery: ResolverTypeWrapper<TestQuery>;
|
|
@@ -1961,6 +1971,7 @@ export type ITableResolvers<ContextType = any, ParentType extends ResolversParen
|
|
|
1961
1971
|
actionButton?: Resolver<Maybe<ResolversTypes['ActionButton']>, ParentType, ContextType>;
|
|
1962
1972
|
cardView?: Resolver<Maybe<ResolversTypes['CardView']>, ParentType, ContextType>;
|
|
1963
1973
|
columns?: Resolver<Array<ResolversTypes['Column']>, ParentType, ContextType>;
|
|
1974
|
+
config?: Resolver<Maybe<ResolversTypes['JSON']>, ParentType, ContextType>;
|
|
1964
1975
|
dataType?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1965
1976
|
defaultPageSize?: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
1966
1977
|
disableColumnSorting?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
@@ -2069,6 +2080,7 @@ export type NamedTableResolvers<ContextType = any, ParentType extends ResolversP
|
|
|
2069
2080
|
actionButton?: Resolver<Maybe<ResolversTypes['ActionButton']>, ParentType, ContextType>;
|
|
2070
2081
|
cardView?: Resolver<Maybe<ResolversTypes['CardView']>, ParentType, ContextType>;
|
|
2071
2082
|
columns?: Resolver<Array<ResolversTypes['Column']>, ParentType, ContextType>;
|
|
2083
|
+
config?: Resolver<Maybe<ResolversTypes['JSON']>, ParentType, ContextType>;
|
|
2072
2084
|
dataType?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2073
2085
|
defaultPageSize?: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
2074
2086
|
disableColumnSorting?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
@@ -2365,6 +2377,7 @@ export type TableResolvers<ContextType = any, ParentType extends ResolversParent
|
|
|
2365
2377
|
actionButton?: Resolver<Maybe<ResolversTypes['ActionButton']>, ParentType, ContextType>;
|
|
2366
2378
|
cardView?: Resolver<Maybe<ResolversTypes['CardView']>, ParentType, ContextType>;
|
|
2367
2379
|
columns?: Resolver<Array<ResolversTypes['Column']>, ParentType, ContextType>;
|
|
2380
|
+
config?: Resolver<Maybe<ResolversTypes['JSON']>, ParentType, ContextType>;
|
|
2368
2381
|
dataType?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2369
2382
|
defaultPageSize?: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
2370
2383
|
disableColumnSorting?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
@@ -2436,8 +2449,10 @@ export type TablePaginationTotalCountResolvers<ContextType = any, ParentType ext
|
|
|
2436
2449
|
};
|
|
2437
2450
|
export type TableSelectionResolvers<ContextType = any, ParentType extends ResolversParentTypes['TableSelection'] = ResolversParentTypes['TableSelection']> = {
|
|
2438
2451
|
action?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2452
|
+
disabledCondition?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2439
2453
|
enabled?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2440
2454
|
label?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2455
|
+
position?: Resolver<Maybe<ResolversTypes['TableSelectionPosition']>, ParentType, ContextType>;
|
|
2441
2456
|
visibilityCondition?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2442
2457
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2443
2458
|
};
|