@appcorp/app-corp-vista 0.1.59 → 0.1.60

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": "@appcorp/app-corp-vista",
3
- "version": "0.1.59",
3
+ "version": "0.1.60",
4
4
  "scripts": {
5
5
  "build": "yarn clean && yarn build:ts && cp package.json lib && cp README.md lib",
6
6
  "build:next": "next build",
@@ -6,6 +6,7 @@ import { VistaRadioV1Props } from "./vista-radio-type";
6
6
  import { VistaCheckboxV1Props } from "./vista-checkbox-type";
7
7
  import { VistaVerticalDividerV4Props } from "./vista-vertical-divider-type";
8
8
  import { VistaSelectV1Props } from "./vista-select-type";
9
+ import { VistaUploadV1Props } from "./vista-upload-type";
9
10
  interface Base {
10
11
  enabled: boolean;
11
12
  order: number;
@@ -24,13 +25,16 @@ interface TextInputV1 extends VistaTextInputV1Props, Base {
24
25
  }
25
26
  interface SelectV1 extends VistaSelectV1Props, Base {
26
27
  }
28
+ interface UploadV1 extends VistaUploadV1Props, Base {
29
+ }
27
30
  export interface VistaFormElements {
28
31
  [VISTA_FORM_ELEMENTS.BUTTON_V1]?: ButtonV1[];
29
32
  [VISTA_FORM_ELEMENTS.CHECKBOX_V1]?: CheckboxV1[];
30
33
  [VISTA_FORM_ELEMENTS.DIVIDER_V4]?: DividerV4[];
31
34
  [VISTA_FORM_ELEMENTS.RADIO_V1]?: RadioV1[];
35
+ [VISTA_FORM_ELEMENTS.SELECT_V1]?: SelectV1[];
32
36
  [VISTA_FORM_ELEMENTS.TEXT_AREA_V1]?: TextAreaV1[];
33
37
  [VISTA_FORM_ELEMENTS.TEXT_INPUT_V1]?: TextInputV1[];
34
- [VISTA_FORM_ELEMENTS.SELECT_V1]?: SelectV1[];
38
+ [VISTA_FORM_ELEMENTS.UPLOAD_V1]?: UploadV1[];
35
39
  }
36
40
  export {};