@heartlandone/vega-react 1.24.0 → 1.26.0

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.
@@ -28,6 +28,7 @@ export declare const VegaHeader: import("react").ForwardRefExoticComponent<JSX.V
28
28
  export declare const VegaIcon: import("react").ForwardRefExoticComponent<JSX.VegaIcon & Omit<import("react").HTMLAttributes<HTMLVegaIconElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaIconElement>>;
29
29
  export declare const VegaImageUploader: import("react").ForwardRefExoticComponent<JSX.VegaImageUploader & Omit<import("react").HTMLAttributes<HTMLVegaImageUploaderElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaImageUploaderElement>>;
30
30
  export declare const VegaInput: import("react").ForwardRefExoticComponent<JSX.VegaInput & Omit<import("react").HTMLAttributes<HTMLVegaInputElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaInputElement>>;
31
+ export declare const VegaInputCreditCard: import("react").ForwardRefExoticComponent<JSX.VegaInputCreditCard & Omit<import("react").HTMLAttributes<HTMLVegaInputCreditCardElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaInputCreditCardElement>>;
31
32
  export declare const VegaInputSelect: import("react").ForwardRefExoticComponent<JSX.VegaInputSelect & Omit<import("react").HTMLAttributes<HTMLVegaInputSelectElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaInputSelectElement>>;
32
33
  export declare const VegaItemToggle: import("react").ForwardRefExoticComponent<JSX.VegaItemToggle & Omit<import("react").HTMLAttributes<HTMLVegaItemToggleElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaItemToggleElement>>;
33
34
  export declare const VegaLoadingIndicator: import("react").ForwardRefExoticComponent<JSX.VegaLoadingIndicator & Omit<import("react").HTMLAttributes<HTMLVegaLoadingIndicatorElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaLoadingIndicatorElement>>;
@@ -44,6 +45,7 @@ export declare const VegaSidenavGroup: import("react").ForwardRefExoticComponent
44
45
  export declare const VegaSidenavLink: import("react").ForwardRefExoticComponent<JSX.VegaSidenavLink & Omit<import("react").HTMLAttributes<HTMLVegaSidenavLinkElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaSidenavLinkElement>>;
45
46
  export declare const VegaStepper: import("react").ForwardRefExoticComponent<JSX.VegaStepper & Omit<import("react").HTMLAttributes<HTMLVegaStepperElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaStepperElement>>;
46
47
  export declare const VegaTabGroup: import("react").ForwardRefExoticComponent<JSX.VegaTabGroup & Omit<import("react").HTMLAttributes<HTMLVegaTabGroupElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTabGroupElement>>;
48
+ export declare const VegaTabGroupPanel: import("react").ForwardRefExoticComponent<JSX.VegaTabGroupPanel & Omit<import("react").HTMLAttributes<HTMLVegaTabGroupPanelElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTabGroupPanelElement>>;
47
49
  export declare const VegaTable: import("react").ForwardRefExoticComponent<JSX.VegaTable & Omit<import("react").HTMLAttributes<HTMLVegaTableElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTableElement>>;
48
50
  export declare const VegaText: import("react").ForwardRefExoticComponent<JSX.VegaText & Omit<import("react").HTMLAttributes<HTMLVegaTextElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTextElement>>;
49
51
  export declare const VegaTextarea: import("react").ForwardRefExoticComponent<JSX.VegaTextarea & Omit<import("react").HTMLAttributes<HTMLVegaTextareaElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTextareaElement>>;
@@ -32,6 +32,7 @@ export const VegaHeader = /*@__PURE__*/ createReactComponent('vega-header');
32
32
  export const VegaIcon = /*@__PURE__*/ createReactComponent('vega-icon');
33
33
  export const VegaImageUploader = /*@__PURE__*/ createReactComponent('vega-image-uploader');
34
34
  export const VegaInput = /*@__PURE__*/ createReactComponent('vega-input');
35
+ export const VegaInputCreditCard = /*@__PURE__*/ createReactComponent('vega-input-credit-card');
35
36
  export const VegaInputSelect = /*@__PURE__*/ createReactComponent('vega-input-select');
36
37
  export const VegaItemToggle = /*@__PURE__*/ createReactComponent('vega-item-toggle');
37
38
  export const VegaLoadingIndicator = /*@__PURE__*/ createReactComponent('vega-loading-indicator');
@@ -48,6 +49,7 @@ export const VegaSidenavGroup = /*@__PURE__*/ createReactComponent('vega-sidenav
48
49
  export const VegaSidenavLink = /*@__PURE__*/ createReactComponent('vega-sidenav-link');
49
50
  export const VegaStepper = /*@__PURE__*/ createReactComponent('vega-stepper');
50
51
  export const VegaTabGroup = /*@__PURE__*/ createReactComponent('vega-tab-group');
52
+ export const VegaTabGroupPanel = /*@__PURE__*/ createReactComponent('vega-tab-group-panel');
51
53
  export const VegaTable = /*@__PURE__*/ createReactComponent('vega-table');
52
54
  export const VegaText = /*@__PURE__*/ createReactComponent('vega-text');
53
55
  export const VegaTextarea = /*@__PURE__*/ createReactComponent('vega-textarea');
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@heartlandone/vega-react",
3
3
  "sideEffects": false,
4
- "version": "1.24.0",
4
+ "version": "1.26.0",
5
5
  "description": "React specific wrapper for @heartlandone/vega",
6
6
  "scripts": {
7
7
  "build": "npm run clean && npm run compile",
@@ -37,7 +37,7 @@
37
37
  "typescript": "^4.0.0"
38
38
  },
39
39
  "dependencies": {
40
- "@heartlandone/vega": "1.24.0"
40
+ "@heartlandone/vega": "1.26.0"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "react": ">=16.7.0",