impaktapps-ui-builder 0.0.323 → 0.0.324

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": "impaktapps-ui-builder",
3
- "version": "0.0.323",
3
+ "version": "0.0.324",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -17,16 +17,13 @@ const InputSlider = {
17
17
  min: 0,
18
18
  label: "Slider"
19
19
  },
20
- style: {
21
-
22
- // fontWeight:300
23
- }
20
+
24
21
  },
25
22
  };
26
23
  export const buildInputSlider = (config, componentScope) => {
27
24
  const inputSlider: any = _.cloneDeep(InputSlider);
28
25
  inputSlider.scope = componentScope;
29
- inputSlider.config.main.heading = config.label
26
+ inputSlider.config.main.label = config.label
30
27
  if (config.layout) {
31
28
  inputSlider.config.layout = createLayoutFormat(config.layout)
32
29
  }