@kopexa/checkbox 1.0.7 → 1.0.9
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/checkbox-icon.js +1 -1
- package/dist/checkbox-icon.mjs +1 -1
- package/dist/checkbox.js +1 -1
- package/dist/checkbox.mjs +2 -2
- package/dist/{chunk-STJ7PQ25.mjs → chunk-3IHTOT3Y.mjs} +1 -1
- package/dist/{chunk-KKH6XBT3.mjs → chunk-MV6LHFDR.mjs} +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +2 -2
- package/package.json +3 -3
package/dist/checkbox-icon.js
CHANGED
|
@@ -27,7 +27,7 @@ module.exports = __toCommonJS(checkbox_icon_exports);
|
|
|
27
27
|
var import_icons = require("@kopexa/icons");
|
|
28
28
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
29
29
|
function CheckboxIcon(props) {
|
|
30
|
-
const { isIndeterminate, ...otherProps } = props;
|
|
30
|
+
const { isIndeterminate, isSelected: _, ...otherProps } = props;
|
|
31
31
|
const BaseIcon = isIndeterminate ? import_icons.MinusIcon : import_icons.CheckIcon;
|
|
32
32
|
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(BaseIcon, { ...otherProps });
|
|
33
33
|
}
|
package/dist/checkbox-icon.mjs
CHANGED
package/dist/checkbox.js
CHANGED
|
@@ -40,7 +40,7 @@ var CheckboxPrimitive = __toESM(require("@radix-ui/react-checkbox"));
|
|
|
40
40
|
var import_icons = require("@kopexa/icons");
|
|
41
41
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
42
42
|
function CheckboxIcon(props) {
|
|
43
|
-
const { isIndeterminate, ...otherProps } = props;
|
|
43
|
+
const { isIndeterminate, isSelected: _, ...otherProps } = props;
|
|
44
44
|
const BaseIcon = isIndeterminate ? import_icons.MinusIcon : import_icons.CheckIcon;
|
|
45
45
|
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(BaseIcon, { ...otherProps });
|
|
46
46
|
}
|
package/dist/checkbox.mjs
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
import { CheckIcon, MinusIcon } from "@kopexa/icons";
|
|
5
5
|
import { jsx } from "react/jsx-runtime";
|
|
6
6
|
function CheckboxIcon(props) {
|
|
7
|
-
const { isIndeterminate, ...otherProps } = props;
|
|
7
|
+
const { isIndeterminate, isSelected: _, ...otherProps } = props;
|
|
8
8
|
const BaseIcon = isIndeterminate ? MinusIcon : CheckIcon;
|
|
9
9
|
return /* @__PURE__ */ jsx(BaseIcon, { ...otherProps });
|
|
10
10
|
}
|
package/dist/index.js
CHANGED
|
@@ -42,7 +42,7 @@ var CheckboxPrimitive = __toESM(require("@radix-ui/react-checkbox"));
|
|
|
42
42
|
var import_icons = require("@kopexa/icons");
|
|
43
43
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
44
44
|
function CheckboxIcon(props) {
|
|
45
|
-
const { isIndeterminate, ...otherProps } = props;
|
|
45
|
+
const { isIndeterminate, isSelected: _, ...otherProps } = props;
|
|
46
46
|
const BaseIcon = isIndeterminate ? import_icons.MinusIcon : import_icons.CheckIcon;
|
|
47
47
|
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(BaseIcon, { ...otherProps });
|
|
48
48
|
}
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kopexa/checkbox",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"checkbox"
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
"motion": ">=12.23.6",
|
|
29
29
|
"react": ">=19.0.0-rc.0",
|
|
30
30
|
"react-dom": ">=19.0.0-rc.0",
|
|
31
|
-
"@kopexa/theme": "1.6.
|
|
31
|
+
"@kopexa/theme": "1.6.8"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@radix-ui/react-checkbox": "^1.3.2",
|
|
35
35
|
"@kopexa/react-utils": "2.0.6",
|
|
36
36
|
"@kopexa/shared-utils": "1.1.5",
|
|
37
|
-
"@kopexa/icons": "9.0.
|
|
37
|
+
"@kopexa/icons": "9.0.8"
|
|
38
38
|
},
|
|
39
39
|
"clean-package": "../../../clean-package.config.json",
|
|
40
40
|
"module": "dist/index.mjs",
|