impaktapps-ui-builder 0.0.412-hj → 0.0.412-mtreemap.10
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/dist/impaktapps-ui-builder.es.js +1311 -1416
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +6 -6
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/dist/src/impaktapps-ui-builder/builder/build/buildBasicUiSchema.d.ts +1 -1
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/apiSection.d.ts +35 -2
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/card.d.ts +1 -1
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/coreSection.d.ts +15 -0
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/eventSection.d.ts +70 -121
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/graph.d.ts +1 -108
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/tableSection.d.ts +53 -102
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/validationSections.d.ts +17 -2
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/valueTab.d.ts +17 -2
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/wrapperSection.d.ts +1 -0
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildBasicUiSchema.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildHorizontalBarGraph.ts +7 -2
- package/src/impaktapps-ui-builder/builder/build/buildPieGraph.ts +13 -2
- package/src/impaktapps-ui-builder/builder/build/buildStackBarGraph.ts +6 -6
- package/src/impaktapps-ui-builder/builder/build/uischema/apiSection.ts +50 -27
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +46 -66
- package/src/impaktapps-ui-builder/builder/build/uischema/card.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/coreSection.ts +30 -47
- package/src/impaktapps-ui-builder/builder/build/uischema/dateInputField.ts +3 -13
- package/src/impaktapps-ui-builder/builder/build/uischema/emptyBox.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/eventSection.ts +78 -51
- package/src/impaktapps-ui-builder/builder/build/uischema/graph.ts +110 -109
- package/src/impaktapps-ui-builder/builder/build/uischema/multiSelect.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/refresh.ts +15 -11
- package/src/impaktapps-ui-builder/builder/build/uischema/selectInputField.ts +1 -6
- package/src/impaktapps-ui-builder/builder/build/uischema/tableSection.ts +85 -57
- package/src/impaktapps-ui-builder/builder/build/uischema/textInputField.ts +1 -6
- package/src/impaktapps-ui-builder/builder/build/uischema/validationSections.ts +12 -12
- package/src/impaktapps-ui-builder/builder/build/uischema/valueTab.ts +13 -13
- package/src/impaktapps-ui-builder/builder/build/uischema/wrapperSection.ts +1 -0
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/schema.ts +0 -2
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/uiSchema.ts +223 -165
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/schema.ts +1 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +496 -353
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/uiSchema.ts +427 -284
- package/src/impaktapps-ui-builder/builder/services/component.ts +3 -3
- package/src/impaktapps-ui-builder/builder/services/event.ts +10 -8
- package/src/impaktapps-ui-builder/builder/services/pageMaster.ts +1 -1
|
@@ -70,6 +70,24 @@ export declare const APISection: {
|
|
|
70
70
|
};
|
|
71
71
|
};
|
|
72
72
|
layout?: undefined;
|
|
73
|
+
} | {
|
|
74
|
+
type: string;
|
|
75
|
+
scope: string;
|
|
76
|
+
options: {
|
|
77
|
+
widget: string;
|
|
78
|
+
elementLabelProp?: undefined;
|
|
79
|
+
detail?: undefined;
|
|
80
|
+
};
|
|
81
|
+
config: {
|
|
82
|
+
layout: {
|
|
83
|
+
xs: number;
|
|
84
|
+
sm: number;
|
|
85
|
+
md: number;
|
|
86
|
+
lg: number;
|
|
87
|
+
};
|
|
88
|
+
main?: undefined;
|
|
89
|
+
};
|
|
90
|
+
layout?: undefined;
|
|
73
91
|
} | {
|
|
74
92
|
type: string;
|
|
75
93
|
scope: string;
|
|
@@ -78,7 +96,7 @@ export declare const APISection: {
|
|
|
78
96
|
elementLabelProp: string;
|
|
79
97
|
detail: {
|
|
80
98
|
type: string;
|
|
81
|
-
elements: {
|
|
99
|
+
elements: ({
|
|
82
100
|
type: string;
|
|
83
101
|
scope: string;
|
|
84
102
|
options: {
|
|
@@ -95,7 +113,22 @@ export declare const APISection: {
|
|
|
95
113
|
label: string;
|
|
96
114
|
};
|
|
97
115
|
};
|
|
98
|
-
}
|
|
116
|
+
} | {
|
|
117
|
+
type: string;
|
|
118
|
+
scope: string;
|
|
119
|
+
options: {
|
|
120
|
+
widget: string;
|
|
121
|
+
};
|
|
122
|
+
config: {
|
|
123
|
+
layout: {
|
|
124
|
+
xs: number;
|
|
125
|
+
sm: number;
|
|
126
|
+
md: number;
|
|
127
|
+
lg: number;
|
|
128
|
+
};
|
|
129
|
+
main?: undefined;
|
|
130
|
+
};
|
|
131
|
+
})[];
|
|
99
132
|
};
|
|
100
133
|
widget?: undefined;
|
|
101
134
|
};
|
|
@@ -108,6 +108,21 @@ export declare const CoreSection: {
|
|
|
108
108
|
errorMessage: string;
|
|
109
109
|
};
|
|
110
110
|
};
|
|
111
|
+
} | {
|
|
112
|
+
type: string;
|
|
113
|
+
scope: string;
|
|
114
|
+
config: {
|
|
115
|
+
layout: {
|
|
116
|
+
xs: number;
|
|
117
|
+
sm: number;
|
|
118
|
+
md: number;
|
|
119
|
+
lg: number;
|
|
120
|
+
};
|
|
121
|
+
main?: undefined;
|
|
122
|
+
};
|
|
123
|
+
options: {
|
|
124
|
+
widget: string;
|
|
125
|
+
};
|
|
111
126
|
})[];
|
|
112
127
|
};
|
|
113
128
|
widget?: undefined;
|
|
@@ -2,140 +2,89 @@ export declare const EventSection: {
|
|
|
2
2
|
type: string;
|
|
3
3
|
elements: {
|
|
4
4
|
type: string;
|
|
5
|
+
scope: string;
|
|
6
|
+
options: {
|
|
7
|
+
widget: string;
|
|
8
|
+
};
|
|
5
9
|
config: {
|
|
6
10
|
main: {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
+
headerIcons: {
|
|
12
|
+
elements: {
|
|
13
|
+
widget: {
|
|
14
|
+
type: string;
|
|
15
|
+
scope: string;
|
|
16
|
+
options: {
|
|
17
|
+
widget: string;
|
|
18
|
+
};
|
|
19
|
+
config: {
|
|
20
|
+
main: {
|
|
21
|
+
color: string;
|
|
22
|
+
onClick: string;
|
|
23
|
+
size: string;
|
|
24
|
+
icon: string;
|
|
25
|
+
iconLabel: string;
|
|
26
|
+
styleDefault: boolean;
|
|
27
|
+
};
|
|
28
|
+
style: {
|
|
29
|
+
mt: string;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
}[];
|
|
34
|
+
};
|
|
35
|
+
disableAction: boolean;
|
|
36
|
+
disableSelection: boolean;
|
|
37
|
+
enableDrag: boolean;
|
|
11
38
|
};
|
|
12
39
|
};
|
|
13
40
|
elements: ({
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
widget: string;
|
|
18
|
-
};
|
|
19
|
-
config: {
|
|
20
|
-
layout: number;
|
|
21
|
-
main: {
|
|
22
|
-
heading: string;
|
|
23
|
-
icon?: undefined;
|
|
24
|
-
styleDefault?: undefined;
|
|
25
|
-
size?: undefined;
|
|
26
|
-
onClick?: undefined;
|
|
27
|
-
tooltipMessage?: undefined;
|
|
28
|
-
disableAction?: undefined;
|
|
29
|
-
disableSelection?: undefined;
|
|
30
|
-
enableDrag?: undefined;
|
|
31
|
-
};
|
|
32
|
-
style: {
|
|
33
|
-
fontFamily: string;
|
|
34
|
-
fontWeight: string;
|
|
35
|
-
paddingLeft: string;
|
|
36
|
-
fontSize: string;
|
|
37
|
-
float?: undefined;
|
|
38
|
-
};
|
|
39
|
-
};
|
|
40
|
-
elements?: undefined;
|
|
41
|
+
accessorKey: string;
|
|
42
|
+
header: string;
|
|
43
|
+
widget?: undefined;
|
|
41
44
|
} | {
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
main: {
|
|
50
|
-
icon: string;
|
|
51
|
-
styleDefault: boolean;
|
|
52
|
-
size: string;
|
|
53
|
-
onClick: string;
|
|
54
|
-
tooltipMessage: string;
|
|
55
|
-
heading?: undefined;
|
|
56
|
-
disableAction?: undefined;
|
|
57
|
-
disableSelection?: undefined;
|
|
58
|
-
enableDrag?: undefined;
|
|
45
|
+
accessorKey: string;
|
|
46
|
+
header: string;
|
|
47
|
+
widget: {
|
|
48
|
+
type: string;
|
|
49
|
+
scope: string;
|
|
50
|
+
options: {
|
|
51
|
+
widget: string;
|
|
59
52
|
};
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
53
|
+
config: {
|
|
54
|
+
main: {
|
|
55
|
+
color: string;
|
|
56
|
+
size: string;
|
|
57
|
+
icon: string;
|
|
58
|
+
tooltipMessage: string;
|
|
59
|
+
onClick: string;
|
|
60
|
+
};
|
|
61
|
+
style: {
|
|
62
|
+
color: string;
|
|
63
|
+
};
|
|
66
64
|
};
|
|
65
|
+
accessorKeyName?: undefined;
|
|
67
66
|
};
|
|
68
|
-
elements?: undefined;
|
|
69
67
|
} | {
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
disableSelection: boolean;
|
|
79
|
-
enableDrag: boolean;
|
|
80
|
-
heading?: undefined;
|
|
81
|
-
icon?: undefined;
|
|
82
|
-
styleDefault?: undefined;
|
|
83
|
-
size?: undefined;
|
|
84
|
-
onClick?: undefined;
|
|
85
|
-
tooltipMessage?: undefined;
|
|
68
|
+
accessorKey: string;
|
|
69
|
+
header: string;
|
|
70
|
+
widget: {
|
|
71
|
+
type: string;
|
|
72
|
+
scope: string;
|
|
73
|
+
accessorKeyName: string;
|
|
74
|
+
options: {
|
|
75
|
+
widget: string;
|
|
86
76
|
};
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
} | {
|
|
95
|
-
accessorKey: string;
|
|
96
|
-
header: string;
|
|
97
|
-
widget: {
|
|
98
|
-
type: string;
|
|
99
|
-
scope: string;
|
|
100
|
-
options: {
|
|
101
|
-
widget: string;
|
|
102
|
-
};
|
|
103
|
-
config: {
|
|
104
|
-
main: {
|
|
105
|
-
color: string;
|
|
106
|
-
size: string;
|
|
107
|
-
icon: string;
|
|
108
|
-
tooltipMessage: string;
|
|
109
|
-
onClick: string;
|
|
110
|
-
};
|
|
111
|
-
style: {
|
|
112
|
-
color: string;
|
|
113
|
-
};
|
|
77
|
+
config: {
|
|
78
|
+
main: {
|
|
79
|
+
icon: string;
|
|
80
|
+
color: string;
|
|
81
|
+
tooltipMessage: string;
|
|
82
|
+
onClick: string;
|
|
83
|
+
size?: undefined;
|
|
114
84
|
};
|
|
115
|
-
|
|
85
|
+
style?: undefined;
|
|
116
86
|
};
|
|
117
|
-
}
|
|
118
|
-
accessorKey: string;
|
|
119
|
-
header: string;
|
|
120
|
-
widget: {
|
|
121
|
-
type: string;
|
|
122
|
-
scope: string;
|
|
123
|
-
accessorKeyName: string;
|
|
124
|
-
options: {
|
|
125
|
-
widget: string;
|
|
126
|
-
};
|
|
127
|
-
config: {
|
|
128
|
-
main: {
|
|
129
|
-
icon: string;
|
|
130
|
-
color: string;
|
|
131
|
-
tooltipMessage: string;
|
|
132
|
-
onClick: string;
|
|
133
|
-
size?: undefined;
|
|
134
|
-
};
|
|
135
|
-
style?: undefined;
|
|
136
|
-
};
|
|
137
|
-
};
|
|
138
|
-
})[];
|
|
87
|
+
};
|
|
139
88
|
})[];
|
|
140
89
|
}[];
|
|
141
90
|
};
|
|
@@ -5,65 +5,7 @@ export declare const BarGraph: {
|
|
|
5
5
|
widget: string;
|
|
6
6
|
};
|
|
7
7
|
config: {
|
|
8
|
-
main: {
|
|
9
|
-
header: string;
|
|
10
|
-
bottomLabel: string;
|
|
11
|
-
numTicks: number;
|
|
12
|
-
leftLabel: string;
|
|
13
|
-
axisLeft: boolean;
|
|
14
|
-
axisBottom: boolean;
|
|
15
|
-
hideTicks: boolean;
|
|
16
|
-
hideLeftAxisLine: boolean;
|
|
17
|
-
hideBottomAxisLine: boolean;
|
|
18
|
-
bottomAxisWidth: string;
|
|
19
|
-
legend: {
|
|
20
|
-
labelColor: string;
|
|
21
|
-
legendTitle: string;
|
|
22
|
-
direction: string;
|
|
23
|
-
align: string;
|
|
24
|
-
};
|
|
25
|
-
};
|
|
26
|
-
style: {
|
|
27
|
-
containerStyle: {
|
|
28
|
-
width: string;
|
|
29
|
-
height: number;
|
|
30
|
-
};
|
|
31
|
-
headerStyle: {};
|
|
32
|
-
tooltipStyle: {};
|
|
33
|
-
labelStyle: {
|
|
34
|
-
margin: {
|
|
35
|
-
left: number;
|
|
36
|
-
bottom: number;
|
|
37
|
-
};
|
|
38
|
-
leftLabelOffset: number;
|
|
39
|
-
bottomLabelOffset: number;
|
|
40
|
-
};
|
|
41
|
-
barStyle: {
|
|
42
|
-
color: {
|
|
43
|
-
firstBarColor: string;
|
|
44
|
-
secondBarColor: string;
|
|
45
|
-
};
|
|
46
|
-
};
|
|
47
|
-
legendStyle: {
|
|
48
|
-
legend: {
|
|
49
|
-
lineHeight: string;
|
|
50
|
-
fontSize: string;
|
|
51
|
-
fontFamily: string;
|
|
52
|
-
padding: string;
|
|
53
|
-
width: string;
|
|
54
|
-
display: string;
|
|
55
|
-
justifyContent: string;
|
|
56
|
-
border: string;
|
|
57
|
-
borderRadius: string;
|
|
58
|
-
marginRight: string;
|
|
59
|
-
};
|
|
60
|
-
legendTitle: {
|
|
61
|
-
fontSize: string;
|
|
62
|
-
marginBottom: string;
|
|
63
|
-
fontWeight: string;
|
|
64
|
-
};
|
|
65
|
-
};
|
|
66
|
-
};
|
|
8
|
+
main: {};
|
|
67
9
|
};
|
|
68
10
|
};
|
|
69
11
|
export declare const PieGraph: {
|
|
@@ -74,35 +16,7 @@ export declare const PieGraph: {
|
|
|
74
16
|
};
|
|
75
17
|
config: {
|
|
76
18
|
main: {
|
|
77
|
-
header: string;
|
|
78
19
|
type: string;
|
|
79
|
-
bottomLabel: string;
|
|
80
|
-
leftLabel: string;
|
|
81
|
-
axisLeft: boolean;
|
|
82
|
-
axisBottom: boolean;
|
|
83
|
-
legendAvailable: boolean;
|
|
84
|
-
legend: {
|
|
85
|
-
labelColor: string;
|
|
86
|
-
legendTitle: string;
|
|
87
|
-
direction: string;
|
|
88
|
-
align: string;
|
|
89
|
-
};
|
|
90
|
-
};
|
|
91
|
-
style: {
|
|
92
|
-
containerStyle: {
|
|
93
|
-
height: string;
|
|
94
|
-
};
|
|
95
|
-
headerStyle: {};
|
|
96
|
-
tooltipStyle: {
|
|
97
|
-
backgroundColor: string;
|
|
98
|
-
width: string;
|
|
99
|
-
};
|
|
100
|
-
labelStyle: {};
|
|
101
|
-
legendStyle: {
|
|
102
|
-
legend: {};
|
|
103
|
-
legendTitle: {};
|
|
104
|
-
};
|
|
105
|
-
pieStyle: {};
|
|
106
20
|
};
|
|
107
21
|
};
|
|
108
22
|
};
|
|
@@ -150,28 +64,7 @@ export declare const HorizontalBarGraph: {
|
|
|
150
64
|
};
|
|
151
65
|
config: {
|
|
152
66
|
main: {
|
|
153
|
-
header: string;
|
|
154
67
|
type: string;
|
|
155
|
-
bottomLabel: string;
|
|
156
|
-
leftLabel: string;
|
|
157
|
-
axisLeft: boolean;
|
|
158
|
-
axisBottom: boolean;
|
|
159
|
-
hideBottomTicks: boolean;
|
|
160
|
-
hideLeftTicks: boolean;
|
|
161
|
-
hideLeftAxisLine: boolean;
|
|
162
|
-
hideBottomAxisLine: boolean;
|
|
163
|
-
bottomAxisWidth: string;
|
|
164
|
-
};
|
|
165
|
-
style: {
|
|
166
|
-
containerStyle: {
|
|
167
|
-
width: string;
|
|
168
|
-
};
|
|
169
|
-
headerStyle: {};
|
|
170
|
-
tooltipStyle: {};
|
|
171
|
-
labelStyle: {};
|
|
172
|
-
barStyle: {
|
|
173
|
-
color: string;
|
|
174
|
-
};
|
|
175
68
|
};
|
|
176
69
|
};
|
|
177
70
|
};
|
|
@@ -2,116 +2,67 @@ export declare const TableSection: {
|
|
|
2
2
|
type: string;
|
|
3
3
|
elements: {
|
|
4
4
|
type: string;
|
|
5
|
+
scope: string;
|
|
6
|
+
options: {
|
|
7
|
+
widget: string;
|
|
8
|
+
};
|
|
5
9
|
config: {
|
|
6
|
-
main: {
|
|
7
|
-
|
|
8
|
-
|
|
10
|
+
main: {
|
|
11
|
+
headerIcons: {
|
|
12
|
+
elements: {
|
|
13
|
+
widget: {
|
|
14
|
+
type: string;
|
|
15
|
+
scope: string;
|
|
16
|
+
options: {
|
|
17
|
+
widget: string;
|
|
18
|
+
};
|
|
19
|
+
config: {
|
|
20
|
+
main: {
|
|
21
|
+
color: string;
|
|
22
|
+
onClick: string;
|
|
23
|
+
size: string;
|
|
24
|
+
icon: string;
|
|
25
|
+
iconLabel: string;
|
|
26
|
+
styleDefault: boolean;
|
|
27
|
+
};
|
|
28
|
+
style: {
|
|
29
|
+
mt: string;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
}[];
|
|
34
|
+
};
|
|
35
|
+
disableAction: boolean;
|
|
36
|
+
disableSelection: boolean;
|
|
37
|
+
enableDrag: boolean;
|
|
9
38
|
};
|
|
10
39
|
};
|
|
11
40
|
elements: ({
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
config: {
|
|
18
|
-
layout: number;
|
|
19
|
-
main: {
|
|
20
|
-
heading: string;
|
|
21
|
-
icon?: undefined;
|
|
22
|
-
styleDefault?: undefined;
|
|
23
|
-
size?: undefined;
|
|
24
|
-
onClick?: undefined;
|
|
25
|
-
tooltipMessage?: undefined;
|
|
26
|
-
disableAction?: undefined;
|
|
27
|
-
disableSelection?: undefined;
|
|
28
|
-
enableDrag?: undefined;
|
|
29
|
-
};
|
|
30
|
-
style: {
|
|
31
|
-
fontFamily: string;
|
|
32
|
-
fontWeight: string;
|
|
33
|
-
paddingLeft: string;
|
|
34
|
-
fontSize: string;
|
|
35
|
-
float?: undefined;
|
|
36
|
-
};
|
|
37
|
-
};
|
|
38
|
-
elements?: undefined;
|
|
41
|
+
accessorKey: string;
|
|
42
|
+
header: string;
|
|
43
|
+
field?: undefined;
|
|
44
|
+
flex?: undefined;
|
|
45
|
+
widget?: undefined;
|
|
39
46
|
} | {
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
icon: string;
|
|
49
|
-
styleDefault: boolean;
|
|
50
|
-
size: string;
|
|
51
|
-
onClick: string;
|
|
52
|
-
tooltipMessage: string;
|
|
53
|
-
heading?: undefined;
|
|
54
|
-
disableAction?: undefined;
|
|
55
|
-
disableSelection?: undefined;
|
|
56
|
-
enableDrag?: undefined;
|
|
57
|
-
};
|
|
58
|
-
style: {
|
|
59
|
-
float: string;
|
|
60
|
-
fontFamily?: undefined;
|
|
61
|
-
fontWeight?: undefined;
|
|
62
|
-
paddingLeft?: undefined;
|
|
63
|
-
fontSize?: undefined;
|
|
47
|
+
header: string;
|
|
48
|
+
field: string;
|
|
49
|
+
flex: number;
|
|
50
|
+
widget: {
|
|
51
|
+
type: string;
|
|
52
|
+
scope: string;
|
|
53
|
+
options: {
|
|
54
|
+
widget: string;
|
|
64
55
|
};
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
widget: string;
|
|
72
|
-
};
|
|
73
|
-
config: {
|
|
74
|
-
main: {
|
|
75
|
-
disableAction: boolean;
|
|
76
|
-
disableSelection: boolean;
|
|
77
|
-
enableDrag: boolean;
|
|
78
|
-
heading?: undefined;
|
|
79
|
-
icon?: undefined;
|
|
80
|
-
styleDefault?: undefined;
|
|
81
|
-
size?: undefined;
|
|
82
|
-
onClick?: undefined;
|
|
83
|
-
tooltipMessage?: undefined;
|
|
84
|
-
};
|
|
85
|
-
layout?: undefined;
|
|
86
|
-
style?: undefined;
|
|
87
|
-
};
|
|
88
|
-
elements: ({
|
|
89
|
-
accessorKey: string;
|
|
90
|
-
header: string;
|
|
91
|
-
field?: undefined;
|
|
92
|
-
flex?: undefined;
|
|
93
|
-
widget?: undefined;
|
|
94
|
-
} | {
|
|
95
|
-
header: string;
|
|
96
|
-
field: string;
|
|
97
|
-
flex: number;
|
|
98
|
-
widget: {
|
|
99
|
-
type: string;
|
|
100
|
-
scope: string;
|
|
101
|
-
options: {
|
|
102
|
-
widget: string;
|
|
103
|
-
};
|
|
104
|
-
config: {
|
|
105
|
-
main: {
|
|
106
|
-
icon: string;
|
|
107
|
-
color: string;
|
|
108
|
-
onClick: string;
|
|
109
|
-
tooltipMessage: string;
|
|
110
|
-
};
|
|
56
|
+
config: {
|
|
57
|
+
main: {
|
|
58
|
+
icon: string;
|
|
59
|
+
color: string;
|
|
60
|
+
onClick: string;
|
|
61
|
+
tooltipMessage: string;
|
|
111
62
|
};
|
|
112
63
|
};
|
|
113
|
-
|
|
114
|
-
|
|
64
|
+
};
|
|
65
|
+
accessorKey?: undefined;
|
|
115
66
|
})[];
|
|
116
67
|
}[];
|
|
117
68
|
};
|
|
@@ -8,7 +8,7 @@ export declare const ValidationSection: {
|
|
|
8
8
|
elementLabelProp: string;
|
|
9
9
|
detail: {
|
|
10
10
|
type: string;
|
|
11
|
-
elements: {
|
|
11
|
+
elements: ({
|
|
12
12
|
type: string;
|
|
13
13
|
scope: string;
|
|
14
14
|
options: {
|
|
@@ -25,7 +25,22 @@ export declare const ValidationSection: {
|
|
|
25
25
|
label: string;
|
|
26
26
|
};
|
|
27
27
|
};
|
|
28
|
-
}
|
|
28
|
+
} | {
|
|
29
|
+
type: string;
|
|
30
|
+
scope: string;
|
|
31
|
+
options: {
|
|
32
|
+
widget: string;
|
|
33
|
+
};
|
|
34
|
+
config: {
|
|
35
|
+
layout: {
|
|
36
|
+
xs: number;
|
|
37
|
+
sm: number;
|
|
38
|
+
md?: undefined;
|
|
39
|
+
lg?: undefined;
|
|
40
|
+
};
|
|
41
|
+
main?: undefined;
|
|
42
|
+
};
|
|
43
|
+
})[];
|
|
29
44
|
};
|
|
30
45
|
};
|
|
31
46
|
}[];
|
|
@@ -7,7 +7,7 @@ export declare const ValueTab: {
|
|
|
7
7
|
options: {
|
|
8
8
|
detail: {
|
|
9
9
|
type: string;
|
|
10
|
-
elements: {
|
|
10
|
+
elements: ({
|
|
11
11
|
type: string;
|
|
12
12
|
scope: string;
|
|
13
13
|
options: {
|
|
@@ -24,7 +24,22 @@ export declare const ValueTab: {
|
|
|
24
24
|
label: string;
|
|
25
25
|
};
|
|
26
26
|
};
|
|
27
|
-
}
|
|
27
|
+
} | {
|
|
28
|
+
type: string;
|
|
29
|
+
scope: string;
|
|
30
|
+
options: {
|
|
31
|
+
widget: string;
|
|
32
|
+
};
|
|
33
|
+
config: {
|
|
34
|
+
layout: {
|
|
35
|
+
xs: number;
|
|
36
|
+
sm: number;
|
|
37
|
+
md: number;
|
|
38
|
+
lg: number;
|
|
39
|
+
};
|
|
40
|
+
main?: undefined;
|
|
41
|
+
};
|
|
42
|
+
})[];
|
|
28
43
|
};
|
|
29
44
|
};
|
|
30
45
|
}[];
|