@apexcura/ui-components 0.0.15-Beta76 → 0.0.15-Beta78
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.js +3 -2
- package/dist/index.mjs +3 -2
- package/package.json +3 -1
package/dist/index.js
CHANGED
|
@@ -1111,9 +1111,10 @@ var FileUpload = (props) => {
|
|
|
1111
1111
|
onSuccess("ok");
|
|
1112
1112
|
}, 0);
|
|
1113
1113
|
};
|
|
1114
|
-
return /* @__PURE__ */ import_react26.default.createElement("div",
|
|
1114
|
+
return /* @__PURE__ */ import_react26.default.createElement("div", { className: props.containerClassName }, /* @__PURE__ */ import_react26.default.createElement(
|
|
1115
1115
|
Dragger,
|
|
1116
1116
|
{
|
|
1117
|
+
className: props.className,
|
|
1117
1118
|
action: "",
|
|
1118
1119
|
accept: props.accept,
|
|
1119
1120
|
listType: "picture",
|
|
@@ -1683,7 +1684,7 @@ var ColorPickerElement = (props) => {
|
|
|
1683
1684
|
{
|
|
1684
1685
|
className: props.className,
|
|
1685
1686
|
showText: true,
|
|
1686
|
-
value: props.value,
|
|
1687
|
+
value: props.value && props.value,
|
|
1687
1688
|
onChange: onHandleChange
|
|
1688
1689
|
}
|
|
1689
1690
|
));
|
package/dist/index.mjs
CHANGED
|
@@ -1042,9 +1042,10 @@ var FileUpload = (props) => {
|
|
|
1042
1042
|
onSuccess("ok");
|
|
1043
1043
|
}, 0);
|
|
1044
1044
|
};
|
|
1045
|
-
return /* @__PURE__ */ React25.createElement("div",
|
|
1045
|
+
return /* @__PURE__ */ React25.createElement("div", { className: props.containerClassName }, /* @__PURE__ */ React25.createElement(
|
|
1046
1046
|
Dragger,
|
|
1047
1047
|
{
|
|
1048
|
+
className: props.className,
|
|
1048
1049
|
action: "",
|
|
1049
1050
|
accept: props.accept,
|
|
1050
1051
|
listType: "picture",
|
|
@@ -1638,7 +1639,7 @@ var ColorPickerElement = (props) => {
|
|
|
1638
1639
|
{
|
|
1639
1640
|
className: props.className,
|
|
1640
1641
|
showText: true,
|
|
1641
|
-
value: props.value,
|
|
1642
|
+
value: props.value && props.value,
|
|
1642
1643
|
onChange: onHandleChange
|
|
1643
1644
|
}
|
|
1644
1645
|
));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apexcura/ui-components",
|
|
3
|
-
"version": "0.0.15-
|
|
3
|
+
"version": "0.0.15-Beta78",
|
|
4
4
|
"description": "Apex cura React components library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"apex cura",
|
|
@@ -53,6 +53,8 @@
|
|
|
53
53
|
"node": ">=18.0.0"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
+
"@ckeditor/ckeditor5-build-classic": "^42.0.1",
|
|
57
|
+
"@ckeditor/ckeditor5-react": "^8.0.0",
|
|
56
58
|
"@tinymce/tinymce-react": "^5.0.1",
|
|
57
59
|
"chart.js": "^4.4.3",
|
|
58
60
|
"ckeditor4": "^4.24.0",
|