@atlaskit/checkbox 12.4.2 → 12.4.3

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
@@ -1,5 +1,11 @@
1
1
  # @atlaskit/checkbox
2
2
 
3
+ ## 12.4.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
3
9
  ## 12.4.2
4
10
 
5
11
  ### Patch Changes
@@ -174,7 +174,7 @@ var Checkbox = /*#__PURE__*/(0, _react.memo)( /*#__PURE__*/(0, _react.forwardRef
174
174
  analyticsData: analyticsContext,
175
175
  componentName: 'checkbox',
176
176
  packageName: "@atlaskit/checkbox",
177
- packageVersion: "12.4.2"
177
+ packageVersion: "12.4.3"
178
178
  });
179
179
  var internalRef = (0, _react.useRef)(null);
180
180
  var mergedRefs = (0, _mergeRefs.default)([internalRef, ref]); // Use isChecked from the state if it is controlled
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/checkbox",
3
- "version": "12.4.2",
3
+ "version": "12.4.3",
4
4
  "sideEffects": false
5
5
  }
@@ -148,7 +148,7 @@ const Checkbox = /*#__PURE__*/memo( /*#__PURE__*/forwardRef(function Checkbox(pr
148
148
  analyticsData: analyticsContext,
149
149
  componentName: 'checkbox',
150
150
  packageName: "@atlaskit/checkbox",
151
- packageVersion: "12.4.2"
151
+ packageVersion: "12.4.3"
152
152
  });
153
153
  const internalRef = useRef(null);
154
154
  const mergedRefs = mergeRefs([internalRef, ref]); // Use isChecked from the state if it is controlled
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/checkbox",
3
- "version": "12.4.2",
3
+ "version": "12.4.3",
4
4
  "sideEffects": false
5
5
  }
@@ -159,7 +159,7 @@ var Checkbox = /*#__PURE__*/memo( /*#__PURE__*/forwardRef(function Checkbox(prop
159
159
  analyticsData: analyticsContext,
160
160
  componentName: 'checkbox',
161
161
  packageName: "@atlaskit/checkbox",
162
- packageVersion: "12.4.2"
162
+ packageVersion: "12.4.3"
163
163
  });
164
164
  var internalRef = useRef(null);
165
165
  var mergedRefs = mergeRefs([internalRef, ref]); // Use isChecked from the state if it is controlled
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/checkbox",
3
- "version": "12.4.2",
3
+ "version": "12.4.3",
4
4
  "sideEffects": false
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/checkbox",
3
- "version": "12.4.2",
3
+ "version": "12.4.3",
4
4
  "description": "A checkbox is an input control that allows a user to select one or more options from a number of choices.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -31,7 +31,7 @@
31
31
  "@atlaskit/ds-lib": "^2.1.0",
32
32
  "@atlaskit/icon": "^21.11.0",
33
33
  "@atlaskit/theme": "^12.2.0",
34
- "@atlaskit/tokens": "^0.11.0",
34
+ "@atlaskit/tokens": "^0.12.0",
35
35
  "@babel/runtime": "^7.0.0",
36
36
  "@emotion/react": "^11.7.1"
37
37
  },
@@ -39,9 +39,9 @@
39
39
  "react": "^16.8.0"
40
40
  },
41
41
  "devDependencies": {
42
- "@atlaskit/button": "^16.4.0",
42
+ "@atlaskit/button": "^16.5.0",
43
43
  "@atlaskit/docs": "*",
44
- "@atlaskit/form": "^8.7.0",
44
+ "@atlaskit/form": "^8.8.0",
45
45
  "@atlaskit/section-message": "^6.3.0",
46
46
  "@atlaskit/ssr": "*",
47
47
  "@atlaskit/toggle": "^12.5.0",
package/report.api.md CHANGED
@@ -1,12 +1,17 @@
1
+ <!-- API Report Version: 2.2 -->
2
+
1
3
  ## API Report File for "@atlaskit/checkbox"
2
4
 
3
- > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
5
+ > Do not edit this file. This report is auto-generated using [API Extractor](https://api-extractor.com/).
6
+ > [Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
7
+
8
+ ### Table of contents
4
9
 
5
- <!--
6
- Generated API Report version: 2.0
7
- -->
10
+ - [Main Entry Types](#main-entry-types)
8
11
 
9
- [Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
12
+ ### Main Entry Types
13
+
14
+ <!--SECTION START: Main Entry Types-->
10
15
 
11
16
  ```ts
12
17
  /// <reference types="react" />
@@ -24,7 +29,7 @@ const Checkbox: MemoExoticComponent<
24
29
  Omit<
25
30
  Omit<
26
31
  InputHTMLAttributes<HTMLInputElement>,
27
- 'disabled' | 'required' | 'checked' | 'css'
32
+ 'checked' | 'css' | 'disabled' | 'required'
28
33
  >,
29
34
  keyof OwnProps
30
35
  > &
@@ -50,7 +55,7 @@ export type CheckboxProps = Combine<
50
55
  * Because 'className' (which the css prop uses internally)
51
56
  * is still available, this should not break existing usage.
52
57
  */
53
- 'disabled' | 'required' | 'checked' | 'css'
58
+ 'checked' | 'css' | 'disabled' | 'required'
54
59
  >,
55
60
  OwnProps
56
61
  >;
@@ -80,7 +85,9 @@ type OwnProps = {
80
85
  };
81
86
 
82
87
  // @public (undocumented)
83
- type Size = 'small' | 'medium' | 'large' | 'xlarge';
88
+ type Size = 'large' | 'medium' | 'small' | 'xlarge';
84
89
 
85
90
  // (No @packageDocumentation comment for this package)
86
91
  ```
92
+
93
+ <!--SECTION END: Main Entry Types-->