@kopexa/mapped-controls 0.0.2 → 0.0.4
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.
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
import { jsx } from "react/jsx-runtime";
|
|
5
5
|
var MappedControls = (props) => {
|
|
6
6
|
const { className, children, ...rest } = props;
|
|
7
|
-
const styles = "mapped-controls-root";
|
|
7
|
+
const styles = "mapped-controls-root" + (className ? ` ${className}` : "");
|
|
8
8
|
return /* @__PURE__ */ jsx("div", { className: styles, ...rest, children });
|
|
9
9
|
};
|
|
10
10
|
|
package/dist/index.js
CHANGED
|
@@ -75,7 +75,7 @@ function StandardRow(props) {
|
|
|
75
75
|
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
76
76
|
var MappedControls = (props) => {
|
|
77
77
|
const { className, children, ...rest } = props;
|
|
78
|
-
const styles = "mapped-controls-root";
|
|
78
|
+
const styles = "mapped-controls-root" + (className ? ` ${className}` : "");
|
|
79
79
|
return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("div", { className: styles, ...rest, children });
|
|
80
80
|
};
|
|
81
81
|
// Annotate the CommonJS export names for ESM import in node:
|
package/dist/index.mjs
CHANGED
package/dist/mapped-controls.js
CHANGED
|
@@ -27,7 +27,7 @@ module.exports = __toCommonJS(mapped_controls_exports);
|
|
|
27
27
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
28
|
var MappedControls = (props) => {
|
|
29
29
|
const { className, children, ...rest } = props;
|
|
30
|
-
const styles = "mapped-controls-root";
|
|
30
|
+
const styles = "mapped-controls-root" + (className ? ` ${className}` : "");
|
|
31
31
|
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className: styles, ...rest, children });
|
|
32
32
|
};
|
|
33
33
|
// Annotate the CommonJS export names for ESM import in node:
|
package/dist/mapped-controls.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kopexa/mapped-controls",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "A Block to maintain control to control mapping",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mapped-controls"
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
"react": ">=19.0.0-rc.0",
|
|
29
29
|
"react-dom": ">=19.0.0-rc.0",
|
|
30
30
|
"motion": ">=12.23.6",
|
|
31
|
-
"@kopexa/theme": "1.7.
|
|
31
|
+
"@kopexa/theme": "1.7.6"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@kopexa/shared-utils": "1.1.
|
|
35
|
-
"@kopexa/react-utils": "2.0.
|
|
36
|
-
"@kopexa/chip": "3.0.
|
|
34
|
+
"@kopexa/shared-utils": "1.1.7",
|
|
35
|
+
"@kopexa/react-utils": "2.0.8",
|
|
36
|
+
"@kopexa/chip": "3.0.9"
|
|
37
37
|
},
|
|
38
38
|
"clean-package": "../../../clean-package.config.json",
|
|
39
39
|
"module": "dist/index.mjs",
|