@heartlandone/vega-react 2.0.0 → 2.1.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.
- package/dist/components.d.ts +1 -0
- package/dist/components.js +1 -0
- package/package.json +2 -3
package/dist/components.d.ts
CHANGED
|
@@ -55,6 +55,7 @@ export declare const VegaPopoverContentBox: import("react").ForwardRefExoticComp
|
|
|
55
55
|
export declare const VegaProgressTracker: import("react").ForwardRefExoticComponent<JSX.VegaProgressTracker & Omit<import("react").HTMLAttributes<HTMLVegaProgressTrackerElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaProgressTrackerElement>>;
|
|
56
56
|
export declare const VegaRadio: import("react").ForwardRefExoticComponent<JSX.VegaRadio & Omit<import("react").HTMLAttributes<HTMLVegaRadioElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaRadioElement>>;
|
|
57
57
|
export declare const VegaRadioGroup: import("react").ForwardRefExoticComponent<JSX.VegaRadioGroup & Omit<import("react").HTMLAttributes<HTMLVegaRadioGroupElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaRadioGroupElement>>;
|
|
58
|
+
export declare const VegaSectionTitle: import("react").ForwardRefExoticComponent<JSX.VegaSectionTitle & Omit<import("react").HTMLAttributes<HTMLVegaSectionTitleElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaSectionTitleElement>>;
|
|
58
59
|
export declare const VegaSlotContainer: import("react").ForwardRefExoticComponent<JSX.VegaSlotContainer & Omit<import("react").HTMLAttributes<HTMLVegaSlotContainerElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaSlotContainerElement>>;
|
|
59
60
|
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>>;
|
|
60
61
|
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>>;
|
package/dist/components.js
CHANGED
|
@@ -61,6 +61,7 @@ export const VegaPopoverContentBox = /*@__PURE__*/ createReactComponent('vega-po
|
|
|
61
61
|
export const VegaProgressTracker = /*@__PURE__*/ createReactComponent('vega-progress-tracker');
|
|
62
62
|
export const VegaRadio = /*@__PURE__*/ createReactComponent('vega-radio');
|
|
63
63
|
export const VegaRadioGroup = /*@__PURE__*/ createReactComponent('vega-radio-group');
|
|
64
|
+
export const VegaSectionTitle = /*@__PURE__*/ createReactComponent('vega-section-title');
|
|
64
65
|
export const VegaSlotContainer = /*@__PURE__*/ createReactComponent('vega-slot-container');
|
|
65
66
|
export const VegaStepper = /*@__PURE__*/ createReactComponent('vega-stepper');
|
|
66
67
|
export const VegaTabGroup = /*@__PURE__*/ createReactComponent('vega-tab-group');
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@heartlandone/vega-react",
|
|
3
3
|
"sideEffects": false,
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.1.0",
|
|
5
5
|
"description": "React specific wrapper for @heartlandone/vega",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"stencil-postbuild": "node ./src/scripts/stencil-post-build-script.js",
|
|
@@ -11,7 +11,6 @@
|
|
|
11
11
|
"tsc": "tsc -p .",
|
|
12
12
|
"rollup": "rollup -c",
|
|
13
13
|
"release": "npm run build",
|
|
14
|
-
"version": "npm run release",
|
|
15
14
|
"publish:patch": "node ../scripts/publish-version.js patch",
|
|
16
15
|
"publish:minor": "node ../scripts/publish-version.js minor",
|
|
17
16
|
"publish:major": "node ../scripts/publish-version.js major"
|
|
@@ -39,7 +38,7 @@
|
|
|
39
38
|
"typescript": "^4.0.0"
|
|
40
39
|
},
|
|
41
40
|
"dependencies": {
|
|
42
|
-
"@heartlandone/vega": "2.
|
|
41
|
+
"@heartlandone/vega": "2.1.0"
|
|
43
42
|
},
|
|
44
43
|
"peerDependencies": {
|
|
45
44
|
"react": ">=16.7.0",
|