@heartlandone/vega-react 1.43.0 → 1.44.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 +7 -0
- package/dist/components.js +7 -0
- package/package.json +2 -2
package/dist/components.d.ts
CHANGED
|
@@ -57,6 +57,13 @@ export declare const VegaStepper: import("react").ForwardRefExoticComponent<JSX.
|
|
|
57
57
|
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>>;
|
|
58
58
|
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>>;
|
|
59
59
|
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>>;
|
|
60
|
+
export declare const VegaTableBody: import("react").ForwardRefExoticComponent<JSX.VegaTableBody & Omit<import("react").HTMLAttributes<HTMLVegaTableBodyElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTableBodyElement>>;
|
|
61
|
+
export declare const VegaTableCell: import("react").ForwardRefExoticComponent<JSX.VegaTableCell & Omit<import("react").HTMLAttributes<HTMLVegaTableCellElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTableCellElement>>;
|
|
62
|
+
export declare const VegaTableExpandRow: import("react").ForwardRefExoticComponent<JSX.VegaTableExpandRow & Omit<import("react").HTMLAttributes<HTMLVegaTableExpandRowElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTableExpandRowElement>>;
|
|
63
|
+
export declare const VegaTableHead: import("react").ForwardRefExoticComponent<JSX.VegaTableHead & Omit<import("react").HTMLAttributes<HTMLVegaTableHeadElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTableHeadElement>>;
|
|
64
|
+
export declare const VegaTableHeadCell: import("react").ForwardRefExoticComponent<JSX.VegaTableHeadCell & Omit<import("react").HTMLAttributes<HTMLVegaTableHeadCellElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTableHeadCellElement>>;
|
|
65
|
+
export declare const VegaTableHeadRow: import("react").ForwardRefExoticComponent<JSX.VegaTableHeadRow & Omit<import("react").HTMLAttributes<HTMLVegaTableHeadRowElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTableHeadRowElement>>;
|
|
66
|
+
export declare const VegaTableRow: import("react").ForwardRefExoticComponent<JSX.VegaTableRow & Omit<import("react").HTMLAttributes<HTMLVegaTableRowElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTableRowElement>>;
|
|
60
67
|
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>>;
|
|
61
68
|
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>>;
|
|
62
69
|
export declare const VegaTimePicker: import("react").ForwardRefExoticComponent<JSX.VegaTimePicker & Omit<import("react").HTMLAttributes<HTMLVegaTimePickerElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLVegaTimePickerElement>>;
|
package/dist/components.js
CHANGED
|
@@ -61,6 +61,13 @@ export const VegaStepper = /*@__PURE__*/ createReactComponent('vega-stepper');
|
|
|
61
61
|
export const VegaTabGroup = /*@__PURE__*/ createReactComponent('vega-tab-group');
|
|
62
62
|
export const VegaTabGroupPanel = /*@__PURE__*/ createReactComponent('vega-tab-group-panel');
|
|
63
63
|
export const VegaTable = /*@__PURE__*/ createReactComponent('vega-table');
|
|
64
|
+
export const VegaTableBody = /*@__PURE__*/ createReactComponent('vega-table-body');
|
|
65
|
+
export const VegaTableCell = /*@__PURE__*/ createReactComponent('vega-table-cell');
|
|
66
|
+
export const VegaTableExpandRow = /*@__PURE__*/ createReactComponent('vega-table-expand-row');
|
|
67
|
+
export const VegaTableHead = /*@__PURE__*/ createReactComponent('vega-table-head');
|
|
68
|
+
export const VegaTableHeadCell = /*@__PURE__*/ createReactComponent('vega-table-head-cell');
|
|
69
|
+
export const VegaTableHeadRow = /*@__PURE__*/ createReactComponent('vega-table-head-row');
|
|
70
|
+
export const VegaTableRow = /*@__PURE__*/ createReactComponent('vega-table-row');
|
|
64
71
|
export const VegaText = /*@__PURE__*/ createReactComponent('vega-text');
|
|
65
72
|
export const VegaTextarea = /*@__PURE__*/ createReactComponent('vega-textarea');
|
|
66
73
|
export const VegaTimePicker = /*@__PURE__*/ createReactComponent('vega-time-picker');
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@heartlandone/vega-react",
|
|
3
3
|
"sideEffects": false,
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.44.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",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"typescript": "^4.0.0"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@heartlandone/vega": "1.
|
|
41
|
+
"@heartlandone/vega": "1.44.0"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"react": ">=16.7.0",
|