@synerise/ds-checkbox-tristate 1.1.30 → 1.1.32
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/CHANGELOG.md +8 -0
- package/dist/CheckboxTristate.d.ts +2 -2
- package/dist/CheckboxTristate.js +7 -12
- package/dist/CheckboxTristate.types.d.ts +1 -1
- package/dist/CheckboxTristate.types.js +1 -1
- package/dist/index.js +4 -14
- package/dist/modules.d.js +1 -1
- package/dist/modules.d.ts +0 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.1.32](https://github.com/Synerise/synerise-design/compare/@synerise/ds-checkbox-tristate@1.1.31...@synerise/ds-checkbox-tristate@1.1.32) (2026-04-01)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-checkbox-tristate
|
|
9
|
+
|
|
10
|
+
## [1.1.31](https://github.com/Synerise/synerise-design/compare/@synerise/ds-checkbox-tristate@1.1.30...@synerise/ds-checkbox-tristate@1.1.31) (2026-03-24)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @synerise/ds-checkbox-tristate
|
|
13
|
+
|
|
6
14
|
## [1.1.30](https://github.com/Synerise/synerise-design/compare/@synerise/ds-checkbox-tristate@1.1.29...@synerise/ds-checkbox-tristate@1.1.30) (2026-03-20)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @synerise/ds-checkbox-tristate
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import {
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { CheckboxTristateProps } from '@synerise/ds-checkbox';
|
|
3
3
|
/**
|
|
4
4
|
* @deprecated - use <Checkbox tristate /> from @synerise/ds-checkbox instead
|
|
5
5
|
*/
|
package/dist/CheckboxTristate.js
CHANGED
|
@@ -1,13 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
var CheckboxTristate = function CheckboxTristate(props) {
|
|
9
|
-
return /*#__PURE__*/React.createElement(Checkbox, _extends({
|
|
10
|
-
tristate: true
|
|
11
|
-
}, props));
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import Checkbox from "@synerise/ds-checkbox";
|
|
3
|
+
const CheckboxTristate = (props) => {
|
|
4
|
+
return /* @__PURE__ */ jsx(Checkbox, { tristate: true, ...props });
|
|
5
|
+
};
|
|
6
|
+
export {
|
|
7
|
+
CheckboxTristate as default
|
|
12
8
|
};
|
|
13
|
-
export default CheckboxTristate;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { CheckboxTristateChangeEvent as BaseCheckboxTristateChangeEvent, CheckboxTristateChangeEventTarget as BaseCheckboxTristateChangeEventTarget, CheckboxTristateProps as BaseCheckboxTristateProps } from '@synerise/ds-checkbox';
|
|
2
2
|
/**
|
|
3
3
|
* @deprecated import from @synerise/ds-checkbox
|
|
4
4
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
|
package/dist/index.js
CHANGED
|
@@ -1,14 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
/**
|
|
7
|
-
* @deprecated - use @synerise/ds-checkbox package instead
|
|
8
|
-
*/
|
|
9
|
-
export * from './CheckboxTristate.types';
|
|
10
|
-
|
|
11
|
-
/**
|
|
12
|
-
* @deprecated - use <Checkbox tristate /> from @synerise/ds-checkbox instead
|
|
13
|
-
*/
|
|
14
|
-
export { default } from './CheckboxTristate';
|
|
1
|
+
import { default as default2 } from "./CheckboxTristate.js";
|
|
2
|
+
export {
|
|
3
|
+
default2 as default
|
|
4
|
+
};
|
package/dist/modules.d.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import
|
|
1
|
+
import "@testing-library/jest-dom";
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-checkbox-tristate",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.32",
|
|
4
4
|
"description": "Checkbox Tristate UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"access": "public"
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
|
-
"build": "
|
|
23
|
+
"build": "vite build",
|
|
24
24
|
"build:css": "node ../../../scripts/style/less.js",
|
|
25
25
|
"build:js": "babel --delete-dir-on-start --root-mode upward src --out-dir dist --extensions '.js,.ts,.tsx'",
|
|
26
|
-
"build:watch": "
|
|
26
|
+
"build:watch": "vite build --watch",
|
|
27
27
|
"defs": "tsc --declaration --outDir dist/ --emitDeclarationOnly",
|
|
28
28
|
"pack:ci": "pnpm pack --pack-destination ../../storybook/storybook-static/static",
|
|
29
29
|
"prepublish": "pnpm run build",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
],
|
|
40
40
|
"types": "dist/index.d.ts",
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@synerise/ds-checkbox": "^1.2.
|
|
42
|
+
"@synerise/ds-checkbox": "^1.2.22"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"vitest": "4"
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"antd": "4.24.16",
|
|
50
50
|
"react": ">=16.9.0 <= 18.3.1"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "c2384982c3533a31eb5e5e0408f8dcecb2b0f399"
|
|
53
53
|
}
|