@appcorp/app-corp-vista 0.0.97 → 0.0.98

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.0.97",
3
+ "version": "0.0.98",
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",
@@ -5,6 +5,7 @@ import { VistaSelectV1Props } from "../type/vista-select-type";
5
5
  import { VistaComboboxV1Props } from "../type/vista-combobox-type";
6
6
  import { VistaVerticalDividerV4Props } from "../type/vista-vertical-divider-type";
7
7
  import { VistaCheckboxV1Props, VistaCheckboxV2Props, VistaCheckboxV3Props } from "../type/vista-checkbox-type";
8
+ import { VistaRadioV1Props } from "../type/vista-radio-type";
8
9
  export declare enum VISTA_FORM_ELEMENTS {
9
10
  CHECKBOX_V1 = "CHECKBOX_V1",
10
11
  CHECKBOX_V2 = "CHECKBOX_V2",
@@ -22,7 +23,7 @@ export declare const formSchema: {
22
23
  CHECKBOX_V3: (props: VistaCheckboxV3Props) => React.JSX.Element;
23
24
  COMBOBOX_V1: (props: VistaComboboxV1Props) => React.JSX.Element;
24
25
  DIVIDER_V4: (props: VistaVerticalDividerV4Props) => React.JSX.Element;
25
- RADIO_V1: (props: any) => React.JSX.Element;
26
+ RADIO_V1: (props: VistaRadioV1Props) => React.JSX.Element;
26
27
  SELECT_V1: (props: VistaSelectV1Props) => React.JSX.Element;
27
28
  TEXT_AREA_V1: (props: VistaTextAreaV1Props) => React.JSX.Element;
28
29
  TEXT_INPUT_V1: (props: VistaTextInputV1Props) => React.JSX.Element;
@@ -25,6 +25,7 @@ var vista_vertical_divider_v4_1 = require("../molecules/vista-vertical-divider-v
25
25
  var vista_checkbox_v1_1 = require("../molecules/vista-checkbox-v1/vista-checkbox-v1");
26
26
  var vista_checkbox_v2_1 = require("../molecules/vista-checkbox-v2/vista-checkbox-v2");
27
27
  var vista_checkbox_v3_1 = require("../molecules/vista-checkbox-v3/vista-checkbox-v3");
28
+ var vista_radio_v1_1 = require("../molecules/vista-radio-v1/vista-radio-v1");
28
29
  var VISTA_FORM_ELEMENTS;
29
30
  (function (VISTA_FORM_ELEMENTS) {
30
31
  VISTA_FORM_ELEMENTS["CHECKBOX_V1"] = "CHECKBOX_V1";
@@ -43,7 +44,7 @@ exports.formSchema = (_a = {},
43
44
  _a[VISTA_FORM_ELEMENTS.CHECKBOX_V3] = function (props) { return react_1.default.createElement(vista_checkbox_v3_1.VistaCheckboxV3, __assign({}, props)); },
44
45
  _a[VISTA_FORM_ELEMENTS.COMBOBOX_V1] = function (props) { return react_1.default.createElement(vista_combobox_v1_1.VistaComboboxV1, __assign({}, props)); },
45
46
  _a[VISTA_FORM_ELEMENTS.DIVIDER_V4] = function (props) { return react_1.default.createElement(vista_vertical_divider_v4_1.VistaVerticalDividerV4, __assign({}, props)); },
46
- _a[VISTA_FORM_ELEMENTS.RADIO_V1] = function (props) { return react_1.default.createElement("p", __assign({}, props), "Radio"); },
47
+ _a[VISTA_FORM_ELEMENTS.RADIO_V1] = function (props) { return react_1.default.createElement(vista_radio_v1_1.VistaRadioV1, __assign({}, props)); },
47
48
  _a[VISTA_FORM_ELEMENTS.SELECT_V1] = function (props) { return react_1.default.createElement(vista_select_v1_1.VistaSelectV1, __assign({}, props)); },
48
49
  _a[VISTA_FORM_ELEMENTS.TEXT_AREA_V1] = function (props) { return react_1.default.createElement(vista_text_area_v1_1.VistaTextAreaV1, __assign({}, props)); },
49
50
  _a[VISTA_FORM_ELEMENTS.TEXT_INPUT_V1] = function (props) { return react_1.default.createElement(vista_text_input_v1_1.VistaTextInputV1, __assign({}, props)); },