@akinon/ui-checkbox 0.3.0 → 0.4.0

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.
@@ -1,5 +1,6 @@
1
- import type { CheckboxProps as AntCheckboxProps } from 'antd';
2
1
  import * as React from 'react';
3
- export type CheckboxProps = AntCheckboxProps;
2
+ import type { CheckboxGroupProps, CheckboxProps } from './types';
4
3
  export declare const Checkbox: ({ children, ...restCheckboxProps }: CheckboxProps) => React.JSX.Element;
4
+ export declare const CheckboxGroup: React.FC<CheckboxGroupProps>;
5
+ export type * from './types';
5
6
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,IAAI,gBAAgB,EAAE,MAAM,MAAM,CAAC;AAE9D,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAG/B,MAAM,MAAM,aAAa,GAAG,gBAAgB,CAAC;AAE7C,eAAO,MAAM,QAAQ,uCAAwC,aAAa,sBAMzE,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.tsx"],"names":[],"mappings":"AAOA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,KAAK,EAAE,kBAAkB,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAEjE,eAAO,MAAM,QAAQ,uCAAwC,aAAa,sBAgCzE,CAAC;AAEF,eAAO,MAAM,aAAa,EAAwB,KAAK,CAAC,EAAE,CAAC,kBAAkB,CAAC,CAAC;AAE/E,mBAAmB,SAAS,CAAC"}
package/dist/cjs/index.js CHANGED
@@ -11,11 +11,31 @@ var __rest = (this && this.__rest) || function (s, e) {
11
11
  return t;
12
12
  };
13
13
  Object.defineProperty(exports, "__esModule", { value: true });
14
- exports.Checkbox = void 0;
14
+ exports.CheckboxGroup = exports.Checkbox = void 0;
15
+ const ui_theme_1 = require("@akinon/ui-theme");
16
+ const cssinjs_1 = require("@ant-design/cssinjs");
15
17
  const antd_1 = require("antd");
16
18
  const React = require("react");
17
19
  const Checkbox = (_a) => {
18
20
  var { children } = _a, restCheckboxProps = __rest(_a, ["children"]);
19
- return (React.createElement(antd_1.Checkbox, Object.assign({}, restCheckboxProps), children));
21
+ const { getPrefixCls, theme } = React.useContext(antd_1.ConfigProvider.ConfigContext);
22
+ const { token, hashId } = (0, ui_theme_1.useToken)();
23
+ const checkboxToken = token.Checkbox;
24
+ const useStyle = (0, cssinjs_1.useStyleRegister)({
25
+ token: token,
26
+ path: ['Checkbox'],
27
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
28
+ theme: theme
29
+ }, () => {
30
+ const prefixCls = `:where(.${hashId}).${getPrefixCls()}-checkbox`;
31
+ const prefixClsWithoutHash = `.${getPrefixCls()}-checkbox`;
32
+ return {
33
+ [`${prefixCls}-wrapper:has(${prefixClsWithoutHash}-checked)`]: {
34
+ color: checkboxToken.colorChecked
35
+ }
36
+ };
37
+ });
38
+ return useStyle(React.createElement(antd_1.Checkbox, Object.assign({}, restCheckboxProps), children));
20
39
  };
21
40
  exports.Checkbox = Checkbox;
41
+ exports.CheckboxGroup = antd_1.Checkbox.Group;
@@ -1,5 +1,6 @@
1
- import type { CheckboxProps as AntCheckboxProps } from 'antd';
2
1
  import * as React from 'react';
3
- export type CheckboxProps = AntCheckboxProps;
2
+ import type { CheckboxGroupProps, CheckboxProps } from './types';
4
3
  export declare const Checkbox: ({ children, ...restCheckboxProps }: CheckboxProps) => React.JSX.Element;
4
+ export declare const CheckboxGroup: React.FC<CheckboxGroupProps>;
5
+ export type * from './types';
5
6
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,IAAI,gBAAgB,EAAE,MAAM,MAAM,CAAC;AAE9D,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAG/B,MAAM,MAAM,aAAa,GAAG,gBAAgB,CAAC;AAE7C,eAAO,MAAM,QAAQ,uCAAwC,aAAa,sBAMzE,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.tsx"],"names":[],"mappings":"AAOA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,KAAK,EAAE,kBAAkB,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAEjE,eAAO,MAAM,QAAQ,uCAAwC,aAAa,sBAgCzE,CAAC;AAEF,eAAO,MAAM,aAAa,EAAwB,KAAK,CAAC,EAAE,CAAC,kBAAkB,CAAC,CAAC;AAE/E,mBAAmB,SAAS,CAAC"}
package/dist/esm/index.js CHANGED
@@ -9,9 +9,29 @@ var __rest = (this && this.__rest) || function (s, e) {
9
9
  }
10
10
  return t;
11
11
  };
12
- import { Checkbox as AntCheckbox } from 'antd';
12
+ import { useToken } from '@akinon/ui-theme';
13
+ import { useStyleRegister } from '@ant-design/cssinjs';
14
+ import { Checkbox as AntCheckbox, ConfigProvider } from 'antd';
13
15
  import * as React from 'react';
14
16
  export const Checkbox = (_a) => {
15
17
  var { children } = _a, restCheckboxProps = __rest(_a, ["children"]);
16
- return (React.createElement(AntCheckbox, Object.assign({}, restCheckboxProps), children));
18
+ const { getPrefixCls, theme } = React.useContext(ConfigProvider.ConfigContext);
19
+ const { token, hashId } = useToken();
20
+ const checkboxToken = token.Checkbox;
21
+ const useStyle = useStyleRegister({
22
+ token: token,
23
+ path: ['Checkbox'],
24
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
25
+ theme: theme
26
+ }, () => {
27
+ const prefixCls = `:where(.${hashId}).${getPrefixCls()}-checkbox`;
28
+ const prefixClsWithoutHash = `.${getPrefixCls()}-checkbox`;
29
+ return {
30
+ [`${prefixCls}-wrapper:has(${prefixClsWithoutHash}-checked)`]: {
31
+ color: checkboxToken.colorChecked
32
+ }
33
+ };
34
+ });
35
+ return useStyle(React.createElement(AntCheckbox, Object.assign({}, restCheckboxProps), children));
17
36
  };
37
+ export const CheckboxGroup = AntCheckbox.Group;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akinon/ui-checkbox",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "dist/esm/index.js",
@@ -9,16 +9,15 @@
9
9
  "dist"
10
10
  ],
11
11
  "dependencies": {
12
- "antd": "5.17.0"
12
+ "antd": "5.17.0",
13
+ "@akinon/ui-theme": "0.6.0"
13
14
  },
14
15
  "devDependencies": {
15
16
  "clean-package": "2.2.0",
16
17
  "copyfiles": "^2.4.1",
17
18
  "rimraf": "^5.0.5",
18
19
  "typescript": "^5.2.2",
19
- "@akinon/vite-config": "0.4.0",
20
- "@akinon/typescript-config": "0.2.0",
21
- "@akinon/eslint-config": "0.1.0"
20
+ "@akinon/typescript-config": "0.3.0"
22
21
  },
23
22
  "peerDependencies": {
24
23
  "react": ">=18",
@@ -40,10 +39,6 @@
40
39
  "build:commonjs": "tsc --module commonjs --outDir dist/cjs",
41
40
  "copy:files": "copyfiles -u 1 src/**/*.css dist/esm && copyfiles -u 1 src/**/*.css dist/cjs",
42
41
  "clean": "rimraf dist/",
43
- "lint": "eslint *.ts*",
44
- "test": "vitest run",
45
- "test:ui": "vitest --ui",
46
- "test:watch": "vitest watch",
47
42
  "typecheck": "tsc --noEmit"
48
43
  }
49
44
  }