@apexcura/ui-components 0.0.14-Beta266 → 0.0.14-Beta267
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/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +11 -0
- package/dist/index.mjs +10 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -139,4 +139,6 @@ declare const DoubleBarChart: (props: ElementType) => React$1.JSX.Element;
|
|
|
139
139
|
|
|
140
140
|
declare const BarChart: (props: ElementType) => React$1.JSX.Element;
|
|
141
141
|
|
|
142
|
-
|
|
142
|
+
declare const DivContainer: (props: ElementType) => React$1.JSX.Element;
|
|
143
|
+
|
|
144
|
+
export { AddMoreTable, BarChart, ButtonElement, CheckboxElement, CircleDonut, CkEditor, DatePickerElement, DateRangePickerElement, DivContainer, DoubleBarChart, DropDownGroup, FileUpload, HorizontalBarChart, Image, LineChart, MultipleSelectElement, Navbar, NumberElement, OtpElement, PasswordElement, RadioElement, SelectElement, SemiCircleDonut, Sidebar, SingleCheckbox, SingleSelectElement, SwitchElement, TableElement, TabsElement, TextElement, TextareaElement, Upload };
|
package/dist/index.d.ts
CHANGED
|
@@ -139,4 +139,6 @@ declare const DoubleBarChart: (props: ElementType) => React$1.JSX.Element;
|
|
|
139
139
|
|
|
140
140
|
declare const BarChart: (props: ElementType) => React$1.JSX.Element;
|
|
141
141
|
|
|
142
|
-
|
|
142
|
+
declare const DivContainer: (props: ElementType) => React$1.JSX.Element;
|
|
143
|
+
|
|
144
|
+
export { AddMoreTable, BarChart, ButtonElement, CheckboxElement, CircleDonut, CkEditor, DatePickerElement, DateRangePickerElement, DivContainer, DoubleBarChart, DropDownGroup, FileUpload, HorizontalBarChart, Image, LineChart, MultipleSelectElement, Navbar, NumberElement, OtpElement, PasswordElement, RadioElement, SelectElement, SemiCircleDonut, Sidebar, SingleCheckbox, SingleSelectElement, SwitchElement, TableElement, TabsElement, TextElement, TextareaElement, Upload };
|
package/dist/index.js
CHANGED
|
@@ -38,6 +38,7 @@ __export(src_exports, {
|
|
|
38
38
|
CkEditor: () => CkEditor,
|
|
39
39
|
DatePickerElement: () => DatePickerElement,
|
|
40
40
|
DateRangePickerElement: () => DateRangePickerElement,
|
|
41
|
+
DivContainer: () => DivContainer,
|
|
41
42
|
DoubleBarChart: () => DoubleBarChart,
|
|
42
43
|
DropDownGroup: () => DropDownGroup,
|
|
43
44
|
FileUpload: () => FileUpload,
|
|
@@ -1611,6 +1612,15 @@ var BarChart = (props) => {
|
|
|
1611
1612
|
};
|
|
1612
1613
|
return /* @__PURE__ */ import_react35.default.createElement("div", { className: props.className }, /* @__PURE__ */ import_react35.default.createElement("h1", { className: props.labelClassName }, props.label), /* @__PURE__ */ import_react35.default.createElement(import_react_chartjs_24.Bar, { data, options }));
|
|
1613
1614
|
};
|
|
1615
|
+
|
|
1616
|
+
// src/Components/DivContainer.tsx
|
|
1617
|
+
var import_react36 = __toESM(require("react"));
|
|
1618
|
+
var DivContainer = (props) => {
|
|
1619
|
+
const handleChange = () => {
|
|
1620
|
+
props.onChange && props.onChange(props);
|
|
1621
|
+
};
|
|
1622
|
+
return /* @__PURE__ */ import_react36.default.createElement("div", { className: props.className, onChange: handleChange }, props.label);
|
|
1623
|
+
};
|
|
1614
1624
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1615
1625
|
0 && (module.exports = {
|
|
1616
1626
|
AddMoreTable,
|
|
@@ -1621,6 +1631,7 @@ var BarChart = (props) => {
|
|
|
1621
1631
|
CkEditor,
|
|
1622
1632
|
DatePickerElement,
|
|
1623
1633
|
DateRangePickerElement,
|
|
1634
|
+
DivContainer,
|
|
1624
1635
|
DoubleBarChart,
|
|
1625
1636
|
DropDownGroup,
|
|
1626
1637
|
FileUpload,
|
package/dist/index.mjs
CHANGED
|
@@ -1569,6 +1569,15 @@ var BarChart = (props) => {
|
|
|
1569
1569
|
};
|
|
1570
1570
|
return /* @__PURE__ */ React35.createElement("div", { className: props.className }, /* @__PURE__ */ React35.createElement("h1", { className: props.labelClassName }, props.label), /* @__PURE__ */ React35.createElement(Bar2, { data, options }));
|
|
1571
1571
|
};
|
|
1572
|
+
|
|
1573
|
+
// src/Components/DivContainer.tsx
|
|
1574
|
+
import React36 from "react";
|
|
1575
|
+
var DivContainer = (props) => {
|
|
1576
|
+
const handleChange = () => {
|
|
1577
|
+
props.onChange && props.onChange(props);
|
|
1578
|
+
};
|
|
1579
|
+
return /* @__PURE__ */ React36.createElement("div", { className: props.className, onChange: handleChange }, props.label);
|
|
1580
|
+
};
|
|
1572
1581
|
export {
|
|
1573
1582
|
AddMoreTable,
|
|
1574
1583
|
BarChart,
|
|
@@ -1578,6 +1587,7 @@ export {
|
|
|
1578
1587
|
CkEditor,
|
|
1579
1588
|
DatePickerElement,
|
|
1580
1589
|
DateRangePickerElement,
|
|
1590
|
+
DivContainer,
|
|
1581
1591
|
DoubleBarChart,
|
|
1582
1592
|
DropDownGroup,
|
|
1583
1593
|
FileUpload,
|