@docupace/ihub-config 1.1.12 → 1.1.13
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 +367 -367
- package/dist/model/graphs/config/menu.graphql +49 -49
- 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 +180 -177
- 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 +6 -0
- package/dist/types/graphql.d.ts.map +1 -1
- package/dist/types/graphql.js.map +1 -1
- package/model/graphs/config/common.graphql +7 -7
- package/model/graphs/config/fields.graphql +367 -367
- package/model/graphs/config/menu.graphql +49 -49
- 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 +180 -177
- 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 +78 -80
|
@@ -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
|
+
}
|
package/dist/types/graphql.d.ts
CHANGED
|
@@ -979,6 +979,8 @@ export type Table = ITable & {
|
|
|
979
979
|
};
|
|
980
980
|
export type TableCriteria = {
|
|
981
981
|
__typename?: 'TableCriteria';
|
|
982
|
+
component?: Maybe<Scalars['String']['output']>;
|
|
983
|
+
config?: Maybe<Scalars['JSON']['output']>;
|
|
982
984
|
dataType?: Maybe<Scalars['String']['output']>;
|
|
983
985
|
date?: Maybe<TableCriteriaDate>;
|
|
984
986
|
defaultValue?: Maybe<Scalars['String']['output']>;
|
|
@@ -994,6 +996,7 @@ export type TableCriteria = {
|
|
|
994
996
|
export type TableCriteriaDate = {
|
|
995
997
|
__typename?: 'TableCriteriaDate';
|
|
996
998
|
calendars?: Maybe<Scalars['Int']['output']>;
|
|
999
|
+
disableFuture?: Maybe<Scalars['Boolean']['output']>;
|
|
997
1000
|
format?: Maybe<Scalars['String']['output']>;
|
|
998
1001
|
shortcuts?: Maybe<DateShortcuts>;
|
|
999
1002
|
};
|
|
@@ -2503,6 +2506,8 @@ export type TableResolvers<ContextType = any, ParentType extends ResolversParent
|
|
|
2503
2506
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2504
2507
|
};
|
|
2505
2508
|
export type TableCriteriaResolvers<ContextType = any, ParentType extends ResolversParentTypes['TableCriteria'] = ResolversParentTypes['TableCriteria']> = {
|
|
2509
|
+
component?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2510
|
+
config?: Resolver<Maybe<ResolversTypes['JSON']>, ParentType, ContextType>;
|
|
2506
2511
|
dataType?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2507
2512
|
date?: Resolver<Maybe<ResolversTypes['TableCriteriaDate']>, ParentType, ContextType>;
|
|
2508
2513
|
defaultValue?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
@@ -2518,6 +2523,7 @@ export type TableCriteriaResolvers<ContextType = any, ParentType extends Resolve
|
|
|
2518
2523
|
};
|
|
2519
2524
|
export type TableCriteriaDateResolvers<ContextType = any, ParentType extends ResolversParentTypes['TableCriteriaDate'] = ResolversParentTypes['TableCriteriaDate']> = {
|
|
2520
2525
|
calendars?: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
2526
|
+
disableFuture?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2521
2527
|
format?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2522
2528
|
shortcuts?: Resolver<Maybe<ResolversTypes['DateShortcuts']>, ParentType, ContextType>;
|
|
2523
2529
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|