impaktapps-ui-builder 0.0.382-alpha.1000 → 0.0.382-alpha.1002

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.
@@ -9,17 +9,13 @@ declare const _default: {
9
9
  };
10
10
  style: {
11
11
  wrapperStyle: {
12
- minHeight: number;
13
- maxHeight: string;
14
- overflow: string;
12
+ display: string;
13
+ gap: string;
15
14
  };
16
15
  };
17
16
  wrapperStyle: {
18
17
  position: string;
19
18
  width: string;
20
- minHeight: number;
21
- maxHeight: string;
22
- overflow: string;
23
19
  };
24
20
  };
25
21
  elements: ({
@@ -78,6 +74,7 @@ declare const _default: {
78
74
  '@keyframes rotateAnimation'?: undefined;
79
75
  animation?: undefined;
80
76
  tableHeadstyle?: undefined;
77
+ margin?: undefined;
81
78
  };
82
79
  layout: number;
83
80
  };
@@ -124,6 +121,7 @@ declare const _default: {
124
121
  '@keyframes rotateAnimation'?: undefined;
125
122
  animation?: undefined;
126
123
  tableHeadstyle?: undefined;
124
+ margin?: undefined;
127
125
  };
128
126
  layout: number;
129
127
  containerStyle?: undefined;
@@ -171,6 +169,7 @@ declare const _default: {
171
169
  '@keyframes rotateAnimation'?: undefined;
172
170
  animation?: undefined;
173
171
  tableHeadstyle?: undefined;
172
+ margin?: undefined;
174
173
  };
175
174
  layout: number;
176
175
  containerStyle?: undefined;
@@ -237,6 +236,7 @@ declare const _default: {
237
236
  zIndex: number;
238
237
  fontWeight?: undefined;
239
238
  tableHeadstyle?: undefined;
239
+ margin?: undefined;
240
240
  };
241
241
  layout: number;
242
242
  containerStyle?: undefined;
@@ -258,7 +258,6 @@ declare const _default: {
258
258
  fontWeight: number;
259
259
  background: string;
260
260
  };
261
- position: string;
262
261
  top: {
263
262
  xs: string;
264
263
  sm: string;
@@ -268,9 +267,11 @@ declare const _default: {
268
267
  border: string;
269
268
  width: string;
270
269
  left: string;
270
+ margin: string;
271
271
  objectFit?: undefined;
272
272
  height?: undefined;
273
273
  borderRadius?: undefined;
274
+ position?: undefined;
274
275
  display?: undefined;
275
276
  justifyContent?: undefined;
276
277
  alignItems?: undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "0.0.382-alpha.1000",
3
+ "version": "0.0.382-alpha.1002",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -7,27 +7,17 @@ export default {
7
7
  label: "LeaderBoard",
8
8
  divider: true,
9
9
  },
10
- // style:{wrapperStyle:{
11
- // height: {xs:850,sm:1000}
12
- // }},
13
- // wrapperStyle: {
14
- // position: "relative",
15
- // width: "100%",
16
- // height: {xs:800,sm:1000}
17
- // }
18
10
  style: {
19
11
  wrapperStyle: {
20
- minHeight: 800,
21
- maxHeight: "none",
22
- overflow: "auto",
12
+ display: "flex",
13
+ gap: "10px",
14
+
23
15
  }
24
16
  },
25
17
  wrapperStyle: {
26
18
  position: "relative",
27
19
  width: "100%",
28
- minHeight: 800,
29
- maxHeight: "none",
30
- overflow: "auto",
20
+ // height: {xs:800,sm:1000}
31
21
  }
32
22
  },
33
23
  elements: [
@@ -353,12 +343,12 @@ export default {
353
343
  fontWeight: 900,
354
344
  background: "rgb(179, 198, 255)"
355
345
  },
356
- position: "absolute",
357
346
  top: { xs: "300px", sm: "300px", md: "390px", lg: "390px" },
358
347
  // top:"390px",
359
348
  border: "2px solid rgb(179, 198, 255)",
360
349
  width: "95%",
361
- left: "2.5%"
350
+ left: "2.5%",
351
+ margin: "auto"
362
352
 
363
353
  },
364
354