@synerise/ds-checkbox-tristate 0.2.75 → 0.2.77

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 CHANGED
@@ -3,6 +3,22 @@
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
+ ## [0.2.77](https://github.com/Synerise/synerise-design/compare/@synerise/ds-checkbox-tristate@0.2.76...@synerise/ds-checkbox-tristate@0.2.77) (2024-09-26)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-checkbox-tristate
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.2.76](https://github.com/Synerise/synerise-design/compare/@synerise/ds-checkbox-tristate@0.2.75...@synerise/ds-checkbox-tristate@0.2.76) (2024-09-17)
15
+
16
+ **Note:** Version bump only for package @synerise/ds-checkbox-tristate
17
+
18
+
19
+
20
+
21
+
6
22
  ## [0.2.75](https://github.com/Synerise/synerise-design/compare/@synerise/ds-checkbox-tristate@0.2.74...@synerise/ds-checkbox-tristate@0.2.75) (2024-09-13)
7
23
 
8
24
  **Note:** Version bump only for package @synerise/ds-checkbox-tristate
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import { CheckboxTristateProps } from './CheckboxTristate.types';
3
3
  export * from './CheckboxTristate.types';
4
4
  export declare function nextCheckedValues(checked: boolean | undefined, indeterminate: boolean): [boolean, boolean];
@@ -10,7 +10,7 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
10
10
 
11
11
  function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
12
12
 
13
- import * as React from 'react';
13
+ import React from 'react';
14
14
  import Checkbox from '@synerise/ds-checkbox';
15
15
  export * from './CheckboxTristate.types';
16
16
  export function nextCheckedValues(checked, indeterminate) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-checkbox-tristate",
3
- "version": "0.2.75",
3
+ "version": "0.2.77",
4
4
  "description": "Checkbox Tristate UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -29,7 +29,8 @@
29
29
  "prepublish": "npm run build",
30
30
  "test": "jest",
31
31
  "test:watch": "npm run test -- --watchAll",
32
- "types": "tsc --noEmit"
32
+ "types": "tsc --noEmit",
33
+ "upgrade:ds": "ncu -f \"@synerise/ds-*\" -u"
33
34
  },
34
35
  "sideEffects": [
35
36
  "dist/style/*",
@@ -37,13 +38,13 @@
37
38
  ],
38
39
  "types": "dist/index.d.ts",
39
40
  "dependencies": {
40
- "@synerise/ds-checkbox": "^0.12.7",
41
- "@synerise/ds-utils": "^0.29.2"
41
+ "@synerise/ds-checkbox": "^0.12.9",
42
+ "@synerise/ds-utils": "^0.29.4"
42
43
  },
43
44
  "peerDependencies": {
44
45
  "@synerise/ds-core": "*",
45
46
  "antd": "4.7.0",
46
47
  "react": ">=16.9.0 <= 17.0.2"
47
48
  },
48
- "gitHead": "6f3231e4a9e0720ffee61b748488cecd590da6e6"
49
+ "gitHead": "fc06bd0f13401a57329fb92985b735de33108dbc"
49
50
  }