rapida-partner 1.15.0 → 1.16.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rapida-partner",
3
- "version": "1.15.0",
3
+ "version": "1.16.0",
4
4
  "main": "dist/index.js",
5
5
  "module": "index.ts",
6
6
  "files": [
@@ -3,6 +3,7 @@ import type { IDataChart } from "./data-chart.interface";
3
3
  import type { IDataDetail } from "./data-detail.interface";
4
4
  import type { IDataGrid } from "./data-grid.interface";
5
5
  import type { IDataTable } from "./data-table.interface";
6
+ import type { IFlowChart } from "./form-flowchart.interface";
6
7
  import type { IForm } from "./form.interface";
7
8
  import type { IDashboard } from "./layout-dashboard.interface";
8
9
  import type { IPanel } from "./layout-panel.interface";
@@ -28,6 +29,7 @@ export interface IProject {
28
29
  backend?: IBackend;
29
30
  modules?: IModule[];
30
31
  styles?: IStyle[];
32
+ flowChart: IFlowChart;
31
33
  }
32
34
 
33
35
  interface IFrontend {
@@ -0,0 +1,98 @@
1
+ {
2
+ "$id": "project-style-theme.ref.json",
3
+ "$schema": "http://json-schema.org/draft-07/schema#",
4
+ "type": "object",
5
+ "properties": {
6
+ "colors": {
7
+ "type": "object",
8
+ "properties": {
9
+ "primary": { "type": "string" },
10
+ "primaryContrast": { "type": "string" },
11
+ "secondary": { "type": "string" },
12
+ "secondaryContrast": { "type": "string" },
13
+ "tertiary": { "type": "string" },
14
+ "tertiaryContrast": { "type": "string" },
15
+ "quaternary": { "type": "string" },
16
+ "quaternaryContrast": { "type": "string" },
17
+ "background": { "type": "string" },
18
+ "error": { "type": "string" },
19
+ "success": { "type": "string" },
20
+ "warning": { "type": "string" },
21
+ "info": { "type": "string" }
22
+ }
23
+ },
24
+ "typography": {
25
+ "type": "object",
26
+ "properties": {
27
+ "fontFamily": { "type": "string" },
28
+ "fontSize": { "type": "string" }
29
+ }
30
+ },
31
+ "borders": {
32
+ "type": "object",
33
+ "properties": {
34
+ "radius": { "type": "string" }
35
+ }
36
+ },
37
+ "shadows": {
38
+ "type": "object",
39
+ "properties": {
40
+ "boxShadow": { "type": "string" }
41
+ }
42
+ },
43
+ "spacing": { "type": "string" },
44
+ "maxWidth": { "type": "string" },
45
+ "headerHeight": { "type": "string" },
46
+ "footerHeight": { "type": "string" },
47
+ "components": {
48
+ "type": "object",
49
+ "properties": {
50
+ "input": {
51
+ "type": "object",
52
+ "properties": {
53
+ "background": { "type": "string" },
54
+ "text": { "type": "string" },
55
+ "border": { "type": "string" },
56
+ "borderRadius": { "type": "string" },
57
+ "focusBorder": { "type": "string" },
58
+ "placeholder": { "type": "string" },
59
+ "width": { "type": "string" }
60
+ }
61
+ },
62
+ "button": {
63
+ "type": "object",
64
+ "properties": {
65
+ "background": { "type": "string" },
66
+ "text": { "type": "string" },
67
+ "border": { "type": "string" },
68
+ "borderRadius": { "type": "string" },
69
+ "hoverBackground": { "type": "string" },
70
+ "hoverText": { "type": "string" },
71
+ "hoverBorder": { "type": "string" },
72
+ "disabledBackground": { "type": "string" },
73
+ "disabledText": { "type": "string" },
74
+ "disabledBorder": { "type": "string" }
75
+ }
76
+ },
77
+ "label": {
78
+ "type": "object",
79
+ "properties": {
80
+ "text": { "type": "string" },
81
+ "fontSize": { "type": "string" },
82
+ "fontWeight": { "type": "string" }
83
+ }
84
+ },
85
+ "fieldset": {
86
+ "type": "object",
87
+ "properties": {
88
+ "border": { "type": "string" },
89
+ "borderRadius": { "type": "string" },
90
+ "legendText": { "type": "string" },
91
+ "legendFontSize": { "type": "string" },
92
+ "legendFontWeight": { "type": "string" }
93
+ }
94
+ }
95
+ }
96
+ }
97
+ }
98
+ }
@@ -0,0 +1,28 @@
1
+ {
2
+ "$id": "project-style.ref.json",
3
+ "$schema": "http://json-schema.org/draft-07/schema#",
4
+ "type": "object",
5
+ "properties": {
6
+ "themeName": {
7
+ "type": "string"
8
+ },
9
+ "overall": {
10
+ "$ref": "project-style-theme.ref.json"
11
+ },
12
+ "main": {
13
+ "$ref": "project-style-theme.ref.json"
14
+ },
15
+ "navBar": {
16
+ "$ref": "project-style-theme.ref.json"
17
+ },
18
+ "sideBar": {
19
+ "$ref": "project-style-theme.ref.json"
20
+ },
21
+ "footer": {
22
+ "$ref": "project-style-theme.ref.json"
23
+ }
24
+ },
25
+ "required": [
26
+ "themeName"
27
+ ]
28
+ }
@@ -38,6 +38,9 @@
38
38
  },
39
39
  "modules": {
40
40
  "$ref": "module.ref.json"
41
+ },
42
+ "flowChart": {
43
+ "$ref": "form-flowchart.ref.json"
41
44
  }
42
45
  },
43
46
  "required": ["id", "title", "description"]