@docupace/ihub-config 1.0.7 → 1.0.8

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 (36) hide show
  1. package/README.md +82 -82
  2. package/dist/model/graphs/config/common.graphql +7 -7
  3. package/dist/model/graphs/config/fields.graphql +338 -338
  4. package/dist/model/graphs/config/menu.graphql +46 -46
  5. package/dist/model/graphs/config/mutation.graphql +30 -30
  6. package/dist/model/graphs/config/page.graphql +228 -228
  7. package/dist/model/graphs/config/panel.graphql +30 -30
  8. package/dist/model/graphs/config/query.graphql +55 -55
  9. package/dist/model/graphs/config/selectOptions.graphql +47 -47
  10. package/dist/model/graphs/config/table.graphql +144 -136
  11. package/dist/model/graphs/config/tests.graphql +16 -16
  12. package/dist/model/graphs/config/theme.graphql +41 -41
  13. package/dist/model/graphs/config/ui-components.graphql +10 -10
  14. package/dist/model/graphs/domains/scalars.graphql +3 -3
  15. package/dist/model/graphs/filter.graphql +5 -5
  16. package/dist/model/graphs/schema.graphql +7 -7
  17. package/dist/types/graphql.d.ts +62 -6
  18. package/dist/types/graphql.d.ts.map +1 -1
  19. package/dist/types/graphql.js +10 -0
  20. package/dist/types/graphql.js.map +1 -1
  21. package/model/graphs/config/common.graphql +7 -7
  22. package/model/graphs/config/fields.graphql +338 -338
  23. package/model/graphs/config/menu.graphql +46 -46
  24. package/model/graphs/config/mutation.graphql +30 -30
  25. package/model/graphs/config/page.graphql +228 -228
  26. package/model/graphs/config/panel.graphql +30 -30
  27. package/model/graphs/config/query.graphql +55 -55
  28. package/model/graphs/config/selectOptions.graphql +47 -47
  29. package/model/graphs/config/table.graphql +144 -136
  30. package/model/graphs/config/tests.graphql +16 -16
  31. package/model/graphs/config/theme.graphql +41 -41
  32. package/model/graphs/config/ui-components.graphql +10 -10
  33. package/model/graphs/domains/scalars.graphql +3 -3
  34. package/model/graphs/filter.graphql +5 -5
  35. package/model/graphs/schema.graphql +7 -7
  36. package/package.json +75 -74
@@ -1,3 +1,8 @@
1
+ export var ActionButtonVariant;
2
+ (function (ActionButtonVariant) {
3
+ ActionButtonVariant["Dropdown"] = "DROPDOWN";
4
+ ActionButtonVariant["Inline"] = "INLINE";
5
+ })(ActionButtonVariant || (ActionButtonVariant = {}));
1
6
  export var FieldValueType;
2
7
  (function (FieldValueType) {
3
8
  FieldValueType["Float"] = "Float";
@@ -8,4 +13,9 @@ export var OrderType;
8
13
  OrderType["Asc"] = "ASC";
9
14
  OrderType["Desc"] = "DESC";
10
15
  })(OrderType || (OrderType = {}));
16
+ export var TableFilterVariant;
17
+ (function (TableFilterVariant) {
18
+ TableFilterVariant["Modal"] = "MODAL";
19
+ TableFilterVariant["Sidebar"] = "SIDEBAR";
20
+ })(TableFilterVariant || (TableFilterVariant = {}));
11
21
  //# sourceMappingURL=graphql.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"graphql.js","sourceRoot":"","sources":["../../src/types/graphql.ts"],"names":[],"mappings":"AAmYA,MAAM,CAAN,IAAY,cAGX;AAHD,WAAY,cAAc;IACxB,iCAAe,CAAA;IACf,6BAAW,CAAA;AACb,CAAC,EAHW,cAAc,KAAd,cAAc,QAGzB;AAyQD,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB"}
1
+ {"version":3,"file":"graphql.js","sourceRoot":"","sources":["../../src/types/graphql.ts"],"names":[],"mappings":"AAsCA,MAAM,CAAN,IAAY,mBAGX;AAHD,WAAY,mBAAmB;IAC7B,4CAAqB,CAAA;IACrB,wCAAiB,CAAA;AACnB,CAAC,EAHW,mBAAmB,KAAnB,mBAAmB,QAG9B;AAsWD,MAAM,CAAN,IAAY,cAGX;AAHD,WAAY,cAAc;IACxB,iCAAe,CAAA;IACf,6BAAW,CAAA;AACb,CAAC,EAHW,cAAc,KAAd,cAAc,QAGzB;AAkRD,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;AA+UD,MAAM,CAAN,IAAY,kBAGX;AAHD,WAAY,kBAAkB;IAC5B,qCAAe,CAAA;IACf,yCAAmB,CAAA;AACrB,CAAC,EAHW,kBAAkB,KAAlB,kBAAkB,QAG7B"}
@@ -1,8 +1,8 @@
1
- interface IElement {
2
- name: String
3
- }
4
-
5
- interface IRowElement implements IElement {
6
- cols: Int
7
- name: String
1
+ interface IElement {
2
+ name: String
3
+ }
4
+
5
+ interface IRowElement implements IElement {
6
+ cols: Int
7
+ name: String
8
8
  }