impaktapps-ui-builder 0.0.964 → 0.0.966

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.
@@ -25,8 +25,11 @@ declare const _default: {
25
25
  main: {
26
26
  url: string;
27
27
  heading?: undefined;
28
+ disableColumnFilter?: undefined;
28
29
  disableAction?: undefined;
29
30
  disableSelection?: undefined;
31
+ disableGlobalSearch?: undefined;
32
+ disableSorting?: undefined;
30
33
  };
31
34
  style: {
32
35
  imageStyle: {
@@ -95,8 +98,11 @@ declare const _default: {
95
98
  main: {
96
99
  heading: string;
97
100
  url?: undefined;
101
+ disableColumnFilter?: undefined;
98
102
  disableAction?: undefined;
99
103
  disableSelection?: undefined;
104
+ disableGlobalSearch?: undefined;
105
+ disableSorting?: undefined;
100
106
  };
101
107
  style: {
102
108
  objectFit: string;
@@ -144,8 +150,11 @@ declare const _default: {
144
150
  main: {
145
151
  heading: string;
146
152
  url?: undefined;
153
+ disableColumnFilter?: undefined;
147
154
  disableAction?: undefined;
148
155
  disableSelection?: undefined;
156
+ disableGlobalSearch?: undefined;
157
+ disableSorting?: undefined;
149
158
  };
150
159
  style: {
151
160
  objectFit: string;
@@ -193,8 +202,11 @@ declare const _default: {
193
202
  main: {
194
203
  heading: string;
195
204
  url?: undefined;
205
+ disableColumnFilter?: undefined;
196
206
  disableAction?: undefined;
197
207
  disableSelection?: undefined;
208
+ disableGlobalSearch?: undefined;
209
+ disableSorting?: undefined;
198
210
  };
199
211
  style: {
200
212
  objectFit: string;
@@ -296,8 +308,11 @@ declare const _default: {
296
308
  animation?: undefined;
297
309
  };
298
310
  main: {
311
+ disableColumnFilter: boolean;
299
312
  disableAction: boolean;
300
313
  disableSelection: boolean;
314
+ disableGlobalSearch: boolean;
315
+ disableSorting: boolean;
301
316
  url?: undefined;
302
317
  heading?: undefined;
303
318
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "0.0.964",
3
+ "version": "0.0.966",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -125,7 +125,7 @@ export default {
125
125
  scope: "#/properties/leaderBoard/properties/firstName",
126
126
  config: {
127
127
  main: {
128
- heading: "Satendra Raghav",
128
+ heading: "No data",
129
129
  },
130
130
  style: {
131
131
  objectFit: "cover",
@@ -154,7 +154,7 @@ export default {
154
154
  scope: "#/properties/leaderBoard/properties/secondName",
155
155
  config: {
156
156
  main: {
157
- heading: "Satendra Raghav",
157
+ heading: "No data",
158
158
  },
159
159
  style: {
160
160
  objectFit: "cover",
@@ -181,7 +181,7 @@ export default {
181
181
  scope: "#/properties/leaderBoard/properties/thirdName",
182
182
  config: {
183
183
  main: {
184
- heading: "Satendra Raghav",
184
+ heading: " ",
185
185
  },
186
186
  style: {
187
187
  objectFit: "cover",
@@ -348,8 +348,7 @@ export default {
348
348
  fontWeight: 900,
349
349
  background: "rgb(179, 198, 255)"
350
350
  },
351
- top: { xs: "300px", sm: "300px", md: "390px", lg: "390px" },
352
- // top:"390px",
351
+ top: { xs: "200px", sm: "300px", md: "390px", lg: "390px" },
353
352
  border: "2px solid rgb(179, 198, 255)",
354
353
  width: "95%",
355
354
  left: "2.5%",
@@ -358,9 +357,11 @@ export default {
358
357
  },
359
358
 
360
359
  main: {
360
+ disableColumnFilter:true,
361
361
  disableAction: true,
362
362
  disableSelection: true,
363
-
363
+ disableGlobalSearch:true,
364
+ disableSorting:true
364
365
  },
365
366
  },
366
367