impaktapps-ui-builder 1.0.81-fileInput.0 → 1.0.81-fileInput.1

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": "1.0.81-fileInput.0",
3
+ "version": "1.0.81-fileInput.1",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -554,10 +554,11 @@ export const buildPropertiesSection = function (type: String) {
554
554
  break;
555
555
  case "FileInput":
556
556
  uiSchema.elements = [
557
- getSelectField("variant", "Variant", [
558
- { label: "Input", value: "input" },
559
- { label: "Button", value: "button" }
560
- ]),
557
+ getRadioInputField("variant", "Variant", ["input", "button"]),
558
+ // getSelectField("variant", "Variant", [
559
+ // { label: "Input", value: "input" },
560
+ // { label: "Button", value: "button" }
561
+ // ]),
561
562
  emptyBox("FileInput1", { xs: 6, sm: 6, md: 8, lg: 9 }),
562
563
  ]
563
564
  break;