armtek-uikit-react 1.0.272 → 1.0.273
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/lib/cjs/_virtual/index10.cjs +2 -2
- package/lib/cjs/_virtual/index11.cjs +2 -2
- package/lib/cjs/_virtual/index9.cjs +2 -2
- package/lib/cjs/node_modules/is-bigint/index.cjs +1 -1
- package/lib/cjs/node_modules/is-symbol/index.cjs +1 -1
- package/lib/cjs/node_modules/is-weakset/index.cjs +1 -1
- package/lib/cjs/ui/Form/Checkbox/Checkbox.cjs +2 -2
- package/lib/esm/_virtual/index10.js +2 -2
- package/lib/esm/_virtual/index11.js +2 -2
- package/lib/esm/_virtual/index9.js +2 -2
- package/lib/esm/node_modules/is-bigint/index.js +1 -1
- package/lib/esm/node_modules/is-symbol/index.js +1 -1
- package/lib/esm/node_modules/is-weakset/index.js +1 -1
- package/lib/esm/ui/Form/Checkbox/Checkbox.js +2 -2
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const index = require("../../_virtual/
|
|
3
|
+
const index = require("../../_virtual/index10.cjs");
|
|
4
4
|
const index$1 = require("../has-bigints/index.cjs");
|
|
5
5
|
var hasRequiredIsBigint;
|
|
6
6
|
function requireIsBigint() {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const index = require("../../_virtual/
|
|
3
|
+
const index = require("../../_virtual/index9.cjs");
|
|
4
4
|
const index$2 = require("../call-bound/index.cjs");
|
|
5
5
|
const index$1 = require("../has-symbols/index.cjs");
|
|
6
6
|
const index$3 = require("../safe-regex-test/index.cjs");
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const index = require("../../_virtual/
|
|
3
|
+
const index = require("../../_virtual/index11.cjs");
|
|
4
4
|
const index$1 = require("../get-intrinsic/index.cjs");
|
|
5
5
|
const index$2 = require("../call-bound/index.cjs");
|
|
6
6
|
var hasRequiredIsWeakset;
|
|
@@ -31,9 +31,9 @@ const Checkbox = (props) => {
|
|
|
31
31
|
"arm-checkbox__label_disabled": !!inputProps.disabled,
|
|
32
32
|
"arm-checkbox_error": !!error,
|
|
33
33
|
"arm-radio__label": props.type === "radio"
|
|
34
|
-
}), children: /* @__PURE__ */ jsxRuntime.jsx("input", { ...inputProps, className: clsx("arm-checkbox__input", {
|
|
34
|
+
}), children: /* @__PURE__ */ jsxRuntime.jsx("input", { "data-testid": "checkbox_input", ...inputProps, className: clsx("arm-checkbox__input", {
|
|
35
35
|
"arm-checkbox__input_checked": !!inputProps.checked
|
|
36
|
-
}), onChange: handleChange,
|
|
36
|
+
}), onChange: handleChange, type: props.type || "checkbox" }) }),
|
|
37
37
|
label && /* @__PURE__ */ jsxRuntime.jsx("span", { onClick: () => {
|
|
38
38
|
var _a;
|
|
39
39
|
return (_a = labelRef.current) == null ? void 0 : _a.click();
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __module as isSymbol } from "../../_virtual/
|
|
1
|
+
import { __module as isSymbol } from "../../_virtual/index9.js";
|
|
2
2
|
import { __require as requireCallBound } from "../call-bound/index.js";
|
|
3
3
|
import { __require as requireHasSymbols } from "../has-symbols/index.js";
|
|
4
4
|
import { __require as requireSafeRegexTest } from "../safe-regex-test/index.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __module as isWeakset } from "../../_virtual/
|
|
1
|
+
import { __module as isWeakset } from "../../_virtual/index11.js";
|
|
2
2
|
import { __require as requireGetIntrinsic } from "../get-intrinsic/index.js";
|
|
3
3
|
import { __require as requireCallBound } from "../call-bound/index.js";
|
|
4
4
|
var hasRequiredIsWeakset;
|
|
@@ -29,9 +29,9 @@ const Checkbox = (props) => {
|
|
|
29
29
|
"arm-checkbox__label_disabled": !!inputProps.disabled,
|
|
30
30
|
"arm-checkbox_error": !!error,
|
|
31
31
|
"arm-radio__label": props.type === "radio"
|
|
32
|
-
}), children: /* @__PURE__ */ jsx("input", { ...inputProps, className: clsx("arm-checkbox__input", {
|
|
32
|
+
}), children: /* @__PURE__ */ jsx("input", { "data-testid": "checkbox_input", ...inputProps, className: clsx("arm-checkbox__input", {
|
|
33
33
|
"arm-checkbox__input_checked": !!inputProps.checked
|
|
34
|
-
}), onChange: handleChange,
|
|
34
|
+
}), onChange: handleChange, type: props.type || "checkbox" }) }),
|
|
35
35
|
label && /* @__PURE__ */ jsx("span", { onClick: () => {
|
|
36
36
|
var _a;
|
|
37
37
|
return (_a = labelRef.current) == null ? void 0 : _a.click();
|