@docupace/ihub-config 1.1.21-admin.0 → 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.
@@ -34,7 +34,6 @@ interface ITable {
34
34
  expandable: Expandable
35
35
  totals: [TotalsItem!]
36
36
  config: JSON
37
- globalName: String
38
37
  }
39
38
 
40
39
  type TotalsItem {
@@ -58,13 +57,33 @@ type OrderBy {
58
57
 
59
58
  type TableSelection {
60
59
  enabled: Boolean
61
- label: String
62
- action: String
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!]
63
75
  disabledCondition: String
64
76
  visibilityCondition: String
65
77
  position: TablePinnedPosition
66
78
  }
67
79
 
80
+ type TableSelectionButton {
81
+ label: String!
82
+ action: String!
83
+ visibilityCondition: String
84
+ disabledCondition: String
85
+ }
86
+
68
87
  enum TablePinnedPosition {
69
88
  RIGHT
70
89
  LEFT
@@ -72,8 +91,6 @@ enum TablePinnedPosition {
72
91
 
73
92
  type Toolbar {
74
93
  columns: ToolbarColumns
75
- configureColumns: ToolbarColumns
76
- configureFilters: ToolbarColumns
77
94
  }
78
95
 
79
96
  type ToolbarColumns {
@@ -164,9 +164,8 @@ export type Breadcrumb = {
164
164
  __typename?: 'Breadcrumb';
165
165
  isLabelExpression?: Maybe<Scalars['Boolean']['output']>;
166
166
  isPathExpression?: Maybe<Scalars['Boolean']['output']>;
167
- label?: Maybe<Scalars['String']['output']>;
167
+ label: Scalars['String']['output'];
168
168
  path?: Maybe<Scalars['String']['output']>;
169
- valuePaths?: Maybe<Array<Scalars['String']['output']>>;
170
169
  };
171
170
  export type Card = ICard & IElement & IRowElement & {
172
171
  __typename?: 'Card';
@@ -1915,9 +1914,8 @@ export type BooleanFieldRuleResolvers<ContextType = any, ParentType extends Reso
1915
1914
  export type BreadcrumbResolvers<ContextType = any, ParentType extends ResolversParentTypes['Breadcrumb'] = ResolversParentTypes['Breadcrumb']> = {
1916
1915
  isLabelExpression?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
1917
1916
  isPathExpression?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
1918
- label?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
1917
+ label?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
1919
1918
  path?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
1920
- valuePaths?: Resolver<Maybe<Array<ResolversTypes['String']>>, ParentType, ContextType>;
1921
1919
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1922
1920
  };
1923
1921
  export type CardResolvers<ContextType = any, ParentType extends ResolversParentTypes['Card'] = ResolversParentTypes['Card']> = {