albinasoft-ui-package 1.0.9 → 1.0.11
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/CustomForm.js +1 -1
- package/package.json +2 -4
- package/src/assets/css/components.css +0 -5
- package/src/assets/css/dark.css +0 -2145
- package/src/assets/css/main.css +0 -26263
@@ -155,7 +155,7 @@ var CustomForm = function (_a) {
|
|
155
155
|
})));
|
156
156
|
}),
|
157
157
|
(showConfirmButton || showCancelButton) && (react_1.default.createElement("div", { className: "card-footer mt-3" },
|
158
|
-
react_1.default.createElement("div", { className: "form-actions mt-3" },
|
158
|
+
react_1.default.createElement("div", { className: "form-actions mt-3", style: { display: "flex", justifyContent: "flex-end", gap: "10px" } },
|
159
159
|
showCancelButton && (react_1.default.createElement(CustomButton_1.default, { label: cancelLabel, className: "btn btn-secondary", onClick: handleCancel || (function () { }) })),
|
160
160
|
showConfirmButton && (react_1.default.createElement(CustomButton_1.default, { label: confirmLabel, onClick: handleConfirm })))))));
|
161
161
|
};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "albinasoft-ui-package",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.11",
|
4
4
|
"main": "dist/index.js",
|
5
5
|
"types": "dist/index.d.ts",
|
6
6
|
"scripts": {
|
@@ -20,7 +20,6 @@
|
|
20
20
|
"devDependencies": {
|
21
21
|
"@types/react": "^19.0.1",
|
22
22
|
"@types/react-bootstrap": "^0.32.37",
|
23
|
-
"copyfiles": "^2.4.1",
|
24
23
|
"typescript": "^4.5.0"
|
25
24
|
},
|
26
25
|
"peerDependencies": {
|
@@ -28,8 +27,7 @@
|
|
28
27
|
"react-dom": "^18.0.0"
|
29
28
|
},
|
30
29
|
"files": [
|
31
|
-
"dist"
|
32
|
-
"src/assets/css/*.css"
|
30
|
+
"dist"
|
33
31
|
],
|
34
32
|
"publishConfig": {
|
35
33
|
"access": "public"
|