impaktapps-ui-builder 0.0.101-alpha.218 → 0.0.101-alpha.219
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.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/coreSection.ts +1 -60
- package/src/impaktapps-ui-builder/builder/build/uischema/validationSections.ts +0 -52
- package/src/impaktapps-ui-builder/builder/build/uischema/valueTab.ts +0 -50
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/schema.ts +0 -3
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/uiSchema.ts +0 -174
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +0 -81
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/uiSchema.ts +0 -58
- package/src/impaktapps-ui-builder/runtime/services/service.ts +0 -107
|
@@ -96,112 +96,6 @@ export default (funcParams: funcParamsProps) => {
|
|
|
96
96
|
window.dispatchEvent(event)
|
|
97
97
|
const theme = funcParams?.store?.theme?.myTheme;
|
|
98
98
|
uiSchema.elements.push(
|
|
99
|
-
|
|
100
|
-
// {
|
|
101
|
-
// type: "HorizontalLayout",
|
|
102
|
-
// config: {
|
|
103
|
-
// main: {
|
|
104
|
-
// direction: "row",
|
|
105
|
-
// },
|
|
106
|
-
// style: {
|
|
107
|
-
// flexDirection: "row",
|
|
108
|
-
// position: "absolute",
|
|
109
|
-
// bottom: 0,
|
|
110
|
-
// height: "fit-content",
|
|
111
|
-
// overflow: "hidden",
|
|
112
|
-
// zIndex: 1000,
|
|
113
|
-
// width: "inherit",
|
|
114
|
-
// },
|
|
115
|
-
// },
|
|
116
|
-
// elements: [
|
|
117
|
-
// {
|
|
118
|
-
// type: "Control",
|
|
119
|
-
// scope: "#/properties/FooterText",
|
|
120
|
-
// options: {
|
|
121
|
-
// widget: "Box",
|
|
122
|
-
// },
|
|
123
|
-
// config: {
|
|
124
|
-
// main: {
|
|
125
|
-
// heading: "Copywriter@ACT21.IO",
|
|
126
|
-
// },
|
|
127
|
-
// style: {
|
|
128
|
-
// color: theme?.palette?.text?.disabled || "#AFAFAF",
|
|
129
|
-
// fontSize: "12px",
|
|
130
|
-
// textAlign: "center",
|
|
131
|
-
// lineHeight: 2,
|
|
132
|
-
// width: "fit-content",
|
|
133
|
-
// left: "50%",
|
|
134
|
-
// position: "relative",
|
|
135
|
-
// margin: 0,
|
|
136
|
-
// flexGrow: 1,
|
|
137
|
-
// height: 0,
|
|
138
|
-
// transform: "translate(-50%, 0%)",
|
|
139
|
-
// },
|
|
140
|
-
// },
|
|
141
|
-
// },
|
|
142
|
-
// {
|
|
143
|
-
// type: "Control",
|
|
144
|
-
// scope: "#/properties/FooterBackIcon",
|
|
145
|
-
// options: {
|
|
146
|
-
// widget: "Box",
|
|
147
|
-
// },
|
|
148
|
-
// config: {
|
|
149
|
-
// main: {
|
|
150
|
-
// iconName: "PrevIcon",
|
|
151
|
-
// onClick: "backHandler",
|
|
152
|
-
// width: "fit-content",
|
|
153
|
-
// },
|
|
154
|
-
// style: {
|
|
155
|
-
// fill: theme?.palette?.primary?.main,
|
|
156
|
-
// width: 20,
|
|
157
|
-
// height: 0,
|
|
158
|
-
// // margin: 0,
|
|
159
|
-
// top: 0,
|
|
160
|
-
// right: { xs: "12px", sm: "84px" },
|
|
161
|
-
// position: "absolute",
|
|
162
|
-
// fontSize: "12px",
|
|
163
|
-
// cursor: "pointer",
|
|
164
|
-
// ":hover": {
|
|
165
|
-
// fill: theme?.palette?.primary?.dark,
|
|
166
|
-
// },
|
|
167
|
-
// marginRight: "13px",
|
|
168
|
-
// },
|
|
169
|
-
// },
|
|
170
|
-
// },
|
|
171
|
-
// {
|
|
172
|
-
// type: "Control",
|
|
173
|
-
// scope: "#/properties/FooterBackHandlerText",
|
|
174
|
-
// options: {
|
|
175
|
-
// widget: "Box",
|
|
176
|
-
// },
|
|
177
|
-
// config: {
|
|
178
|
-
// main: {
|
|
179
|
-
// heading: "Previous Page",
|
|
180
|
-
// onClick: "backHandler",
|
|
181
|
-
// },
|
|
182
|
-
// style: {
|
|
183
|
-
// display: { xs: "none", sm: "flex" },
|
|
184
|
-
// textAlign: "left",
|
|
185
|
-
// lineHeight: 1,
|
|
186
|
-
// height: 0,
|
|
187
|
-
// width: "fit-content",
|
|
188
|
-
// color: theme?.palette?.primary?.main,
|
|
189
|
-
// fontSize: "14px",
|
|
190
|
-
// cursor: "pointer",
|
|
191
|
-
// marginLeft: "2px",
|
|
192
|
-
|
|
193
|
-
// top: 3,
|
|
194
|
-
// right: "12px",
|
|
195
|
-
// position: "absolute",
|
|
196
|
-
// ":hover": {
|
|
197
|
-
// color: theme?.palette?.primary?.dark,
|
|
198
|
-
// },
|
|
199
|
-
// marginRight: "4px",
|
|
200
|
-
// },
|
|
201
|
-
// },
|
|
202
|
-
// },
|
|
203
|
-
// ],
|
|
204
|
-
// }
|
|
205
99
|
{
|
|
206
100
|
type: "HorizontalLayout",
|
|
207
101
|
config: {
|
|
@@ -260,7 +154,6 @@ export default (funcParams: funcParamsProps) => {
|
|
|
260
154
|
fill: theme?.palette?.primary?.main,
|
|
261
155
|
width: 20,
|
|
262
156
|
height: 0,
|
|
263
|
-
// margin: 0,
|
|
264
157
|
top: 0,
|
|
265
158
|
right: { xs: "12px", sm: "84px" },
|
|
266
159
|
position: "absolute",
|