@instructure/ui-checkbox 8.46.2-snapshot-5 → 8.46.2-snapshot-7
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 +1 -1
- package/es/Checkbox/CheckboxFacade/__new-tests__/CheckboxFacade.test.js +1 -1
- package/es/Checkbox/ToggleFacade/__new-tests__/ToggleFacade.test.js +1 -1
- package/es/Checkbox/__new-tests__/Checkbox.test.js +1 -1
- package/es/CheckboxGroup/__new-tests__/CheckboxGroup.test.js +1 -1
- package/lib/Checkbox/CheckboxFacade/__new-tests__/CheckboxFacade.test.js +1 -1
- package/lib/Checkbox/CheckboxFacade/index.js +2 -4
- package/lib/Checkbox/CheckboxFacade/props.js +2 -4
- package/lib/Checkbox/CheckboxFacade/styles.js +1 -2
- package/lib/Checkbox/CheckboxFacade/theme.js +1 -2
- package/lib/Checkbox/ToggleFacade/__new-tests__/ToggleFacade.test.js +1 -1
- package/lib/Checkbox/ToggleFacade/index.js +2 -4
- package/lib/Checkbox/ToggleFacade/props.js +2 -4
- package/lib/Checkbox/ToggleFacade/styles.js +1 -2
- package/lib/Checkbox/ToggleFacade/theme.js +1 -2
- package/lib/Checkbox/__new-tests__/Checkbox.test.js +1 -1
- package/lib/Checkbox/index.js +2 -4
- package/lib/Checkbox/props.js +2 -4
- package/lib/Checkbox/styles.js +1 -2
- package/lib/CheckboxGroup/__new-tests__/CheckboxGroup.test.js +1 -1
- package/lib/CheckboxGroup/index.js +2 -4
- package/lib/CheckboxGroup/props.js +2 -4
- package/package.json +22 -22
- package/src/Checkbox/CheckboxFacade/__new-tests__/CheckboxFacade.test.tsx +1 -1
- package/src/Checkbox/ToggleFacade/__new-tests__/ToggleFacade.test.tsx +1 -1
- package/src/Checkbox/__new-tests__/Checkbox.test.tsx +1 -1
- package/src/CheckboxGroup/__new-tests__/CheckboxGroup.test.tsx +1 -1
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/Checkbox/CheckboxFacade/__new-tests__/CheckboxFacade.test.d.ts +1 -1
- package/types/Checkbox/CheckboxFacade/__new-tests__/CheckboxFacade.test.d.ts.map +1 -1
- package/types/Checkbox/ToggleFacade/__new-tests__/ToggleFacade.test.d.ts +1 -1
- package/types/Checkbox/ToggleFacade/__new-tests__/ToggleFacade.test.d.ts.map +1 -1
- package/types/Checkbox/__new-tests__/Checkbox.test.d.ts +1 -1
- package/types/Checkbox/__new-tests__/Checkbox.test.d.ts.map +1 -1
- package/types/CheckboxGroup/__new-tests__/CheckboxGroup.test.d.ts +1 -1
- package/types/CheckboxGroup/__new-tests__/CheckboxGroup.test.d.ts.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
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
|
-
## [8.46.2-snapshot-
|
|
6
|
+
## [8.46.2-snapshot-7](https://github.com/instructure/instructure-ui/compare/v8.46.1...v8.46.2-snapshot-7) (2023-10-20)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
|
@@ -25,7 +25,7 @@ var _CheckboxFacade, _CheckboxFacade2;
|
|
|
25
25
|
|
|
26
26
|
import React from 'react';
|
|
27
27
|
import { render, screen } from '@testing-library/react';
|
|
28
|
-
import '@testing-library/jest-dom
|
|
28
|
+
import '@testing-library/jest-dom';
|
|
29
29
|
import { runAxeCheck } from '@instructure/ui-axe-check';
|
|
30
30
|
import { CheckboxFacade } from '../index';
|
|
31
31
|
const TEST_TEXT = 'test-text';
|
|
@@ -25,7 +25,7 @@ var _ToggleFacade, _ToggleFacade2;
|
|
|
25
25
|
|
|
26
26
|
import React from 'react';
|
|
27
27
|
import { render, screen } from '@testing-library/react';
|
|
28
|
-
import '@testing-library/jest-dom
|
|
28
|
+
import '@testing-library/jest-dom';
|
|
29
29
|
import { runAxeCheck } from '@instructure/ui-axe-check';
|
|
30
30
|
import { ToggleFacade } from '../index';
|
|
31
31
|
const TEST_TEXT = 'test-text';
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
import React from 'react';
|
|
26
26
|
import { fireEvent, render, screen, waitFor } from '@testing-library/react';
|
|
27
27
|
import userEvent from '@testing-library/user-event';
|
|
28
|
-
import '@testing-library/jest-dom
|
|
28
|
+
import '@testing-library/jest-dom';
|
|
29
29
|
import { runAxeCheck } from '@instructure/ui-axe-check';
|
|
30
30
|
import { Checkbox } from '../index';
|
|
31
31
|
const TEST_VALUE = 'test-value';
|
|
@@ -26,7 +26,7 @@ var _Checkbox, _Checkbox2;
|
|
|
26
26
|
import React from 'react';
|
|
27
27
|
import { fireEvent, render, screen, waitFor } from '@testing-library/react';
|
|
28
28
|
import userEvent from '@testing-library/user-event';
|
|
29
|
-
import '@testing-library/jest-dom
|
|
29
|
+
import '@testing-library/jest-dom';
|
|
30
30
|
import { runAxeCheck } from '@instructure/ui-axe-check';
|
|
31
31
|
import { CheckboxGroup } from '../index';
|
|
32
32
|
import { Checkbox } from '../../Checkbox';
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
4
|
var _react = _interopRequireDefault(require("react"));
|
|
5
5
|
var _react2 = require("@testing-library/react");
|
|
6
|
-
require("@testing-library/jest-dom
|
|
6
|
+
require("@testing-library/jest-dom");
|
|
7
7
|
var _runAxeCheck = require("@instructure/ui-axe-check/lib/runAxeCheck.js");
|
|
8
8
|
var _index = require("../index");
|
|
9
9
|
var _CheckboxFacade, _CheckboxFacade2;
|
|
@@ -43,7 +43,7 @@ parent: Checkbox
|
|
|
43
43
|
---
|
|
44
44
|
@tsProps
|
|
45
45
|
**/
|
|
46
|
-
let CheckboxFacade = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default), _dec(_class = (_class2 = class CheckboxFacade extends _react.Component {
|
|
46
|
+
let CheckboxFacade = exports.CheckboxFacade = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default), _dec(_class = (_class2 = class CheckboxFacade extends _react.Component {
|
|
47
47
|
constructor(...args) {
|
|
48
48
|
super(...args);
|
|
49
49
|
this.ref = null;
|
|
@@ -99,6 +99,4 @@ let CheckboxFacade = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.def
|
|
|
99
99
|
size: 'medium',
|
|
100
100
|
indeterminate: false
|
|
101
101
|
}, _class2)) || _class);
|
|
102
|
-
exports.
|
|
103
|
-
var _default = CheckboxFacade;
|
|
104
|
-
exports.default = _default;
|
|
102
|
+
var _default = exports.default = CheckboxFacade;
|
|
@@ -30,7 +30,7 @@ var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
|
30
30
|
* SOFTWARE.
|
|
31
31
|
*/
|
|
32
32
|
|
|
33
|
-
const propTypes = {
|
|
33
|
+
const propTypes = exports.propTypes = {
|
|
34
34
|
children: _propTypes.default.node.isRequired,
|
|
35
35
|
checked: _propTypes.default.bool,
|
|
36
36
|
focused: _propTypes.default.bool,
|
|
@@ -38,6 +38,4 @@ const propTypes = {
|
|
|
38
38
|
size: _propTypes.default.oneOf(['small', 'medium', 'large']),
|
|
39
39
|
indeterminate: _propTypes.default.bool
|
|
40
40
|
};
|
|
41
|
-
exports.
|
|
42
|
-
const allowedProps = ['children', 'checked', 'focused', 'hovered', 'size', 'indeterminate'];
|
|
43
|
-
exports.allowedProps = allowedProps;
|
|
41
|
+
const allowedProps = exports.allowedProps = ['children', 'checked', 'focused', 'hovered', 'size', 'indeterminate'];
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
4
|
var _react = _interopRequireDefault(require("react"));
|
|
5
5
|
var _react2 = require("@testing-library/react");
|
|
6
|
-
require("@testing-library/jest-dom
|
|
6
|
+
require("@testing-library/jest-dom");
|
|
7
7
|
var _runAxeCheck = require("@instructure/ui-axe-check/lib/runAxeCheck.js");
|
|
8
8
|
var _index = require("../index");
|
|
9
9
|
var _ToggleFacade, _ToggleFacade2;
|
|
@@ -43,7 +43,7 @@ parent: Checkbox
|
|
|
43
43
|
---
|
|
44
44
|
@tsProps
|
|
45
45
|
**/
|
|
46
|
-
let ToggleFacade = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default), _dec(_class = (_class2 = class ToggleFacade extends _react.Component {
|
|
46
|
+
let ToggleFacade = exports.ToggleFacade = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default), _dec(_class = (_class2 = class ToggleFacade extends _react.Component {
|
|
47
47
|
constructor(...args) {
|
|
48
48
|
super(...args);
|
|
49
49
|
this.ref = null;
|
|
@@ -105,6 +105,4 @@ let ToggleFacade = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.defau
|
|
|
105
105
|
readOnly: false,
|
|
106
106
|
labelPlacement: 'end'
|
|
107
107
|
}, _class2)) || _class);
|
|
108
|
-
exports.
|
|
109
|
-
var _default = ToggleFacade;
|
|
110
|
-
exports.default = _default;
|
|
108
|
+
var _default = exports.default = ToggleFacade;
|
|
@@ -30,7 +30,7 @@ var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
|
30
30
|
* SOFTWARE.
|
|
31
31
|
*/
|
|
32
32
|
|
|
33
|
-
const propTypes = {
|
|
33
|
+
const propTypes = exports.propTypes = {
|
|
34
34
|
children: _propTypes.default.node.isRequired,
|
|
35
35
|
checked: _propTypes.default.bool,
|
|
36
36
|
disabled: _propTypes.default.bool,
|
|
@@ -39,6 +39,4 @@ const propTypes = {
|
|
|
39
39
|
size: _propTypes.default.oneOf(['small', 'medium', 'large']),
|
|
40
40
|
labelPlacement: _propTypes.default.oneOf(['top', 'start', 'end'])
|
|
41
41
|
};
|
|
42
|
-
exports.
|
|
43
|
-
const allowedProps = ['children', 'checked', 'disabled', 'readOnly', 'focused', 'size', 'labelPlacement'];
|
|
44
|
-
exports.allowedProps = allowedProps;
|
|
42
|
+
const allowedProps = exports.allowedProps = ['children', 'checked', 'disabled', 'readOnly', 'focused', 'size', 'labelPlacement'];
|
|
@@ -4,7 +4,7 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
|
|
|
4
4
|
var _react = _interopRequireDefault(require("react"));
|
|
5
5
|
var _react2 = require("@testing-library/react");
|
|
6
6
|
var _userEvent = _interopRequireDefault(require("@testing-library/user-event"));
|
|
7
|
-
require("@testing-library/jest-dom
|
|
7
|
+
require("@testing-library/jest-dom");
|
|
8
8
|
var _runAxeCheck = require("@instructure/ui-axe-check/lib/runAxeCheck.js");
|
|
9
9
|
var _index = require("../index");
|
|
10
10
|
/*
|
package/lib/Checkbox/index.js
CHANGED
|
@@ -66,7 +66,7 @@ tags: toggle, switch
|
|
|
66
66
|
---
|
|
67
67
|
@tsProps
|
|
68
68
|
**/
|
|
69
|
-
let Checkbox = (_dec = (0, _withDeterministicId.withDeterministicId)(), _dec2 = (0, _emotion.withStyle)(_styles.default, null), _dec3 = (0, _testable.testable)(), _dec(_class = _dec2(_class = _dec3(_class = (_class2 = class Checkbox extends _react.Component {
|
|
69
|
+
let Checkbox = exports.Checkbox = (_dec = (0, _withDeterministicId.withDeterministicId)(), _dec2 = (0, _emotion.withStyle)(_styles.default, null), _dec3 = (0, _testable.testable)(), _dec(_class = _dec2(_class = _dec3(_class = (_class2 = class Checkbox extends _react.Component {
|
|
70
70
|
constructor(props) {
|
|
71
71
|
super(props);
|
|
72
72
|
this._defaultId = void 0;
|
|
@@ -255,6 +255,4 @@ let Checkbox = (_dec = (0, _withDeterministicId.withDeterministicId)(), _dec2 =
|
|
|
255
255
|
readOnly: false,
|
|
256
256
|
labelPlacement: 'end'
|
|
257
257
|
}, _class2)) || _class) || _class) || _class);
|
|
258
|
-
exports.
|
|
259
|
-
var _default = Checkbox;
|
|
260
|
-
exports.default = _default;
|
|
258
|
+
var _default = exports.default = Checkbox;
|
package/lib/Checkbox/props.js
CHANGED
|
@@ -32,7 +32,7 @@ var _controllable = require("@instructure/ui-prop-types/lib/controllable.js");
|
|
|
32
32
|
* SOFTWARE.
|
|
33
33
|
*/
|
|
34
34
|
|
|
35
|
-
const propTypes = {
|
|
35
|
+
const propTypes = exports.propTypes = {
|
|
36
36
|
label: _propTypes.default.node.isRequired,
|
|
37
37
|
id: _propTypes.default.string,
|
|
38
38
|
value: _propTypes.default.oneOfType([_propTypes.default.string, _propTypes.default.number]),
|
|
@@ -53,6 +53,4 @@ const propTypes = {
|
|
|
53
53
|
inline: _propTypes.default.bool,
|
|
54
54
|
labelPlacement: _propTypes.default.oneOf(['top', 'start', 'end'])
|
|
55
55
|
};
|
|
56
|
-
exports.
|
|
57
|
-
const allowedProps = ['label', 'id', 'value', 'messages', 'defaultChecked', 'checked', 'onChange', 'onKeyDown', 'onFocus', 'onBlur', 'onMouseOver', 'onMouseOut', 'disabled', 'readOnly', 'indeterminate', 'size', 'variant', 'inline', 'labelPlacement'];
|
|
58
|
-
exports.allowedProps = allowedProps;
|
|
56
|
+
const allowedProps = exports.allowedProps = ['label', 'id', 'value', 'messages', 'defaultChecked', 'checked', 'onChange', 'onKeyDown', 'onFocus', 'onBlur', 'onMouseOver', 'onMouseOut', 'disabled', 'readOnly', 'indeterminate', 'size', 'variant', 'inline', 'labelPlacement'];
|
package/lib/Checkbox/styles.js
CHANGED
|
@@ -4,7 +4,7 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
|
|
|
4
4
|
var _react = _interopRequireDefault(require("react"));
|
|
5
5
|
var _react2 = require("@testing-library/react");
|
|
6
6
|
var _userEvent = _interopRequireDefault(require("@testing-library/user-event"));
|
|
7
|
-
require("@testing-library/jest-dom
|
|
7
|
+
require("@testing-library/jest-dom");
|
|
8
8
|
var _runAxeCheck = require("@instructure/ui-axe-check/lib/runAxeCheck.js");
|
|
9
9
|
var _index = require("../index");
|
|
10
10
|
var _Checkbox3 = require("../../Checkbox");
|
|
@@ -45,7 +45,7 @@ category: components
|
|
|
45
45
|
---
|
|
46
46
|
@tsProps
|
|
47
47
|
**/
|
|
48
|
-
let CheckboxGroup = (_dec = (0, _withDeterministicId.withDeterministicId)(), _dec2 = (0, _testable.testable)(), _dec(_class = _dec2(_class = (_class2 = class CheckboxGroup extends _react.Component {
|
|
48
|
+
let CheckboxGroup = exports.CheckboxGroup = (_dec = (0, _withDeterministicId.withDeterministicId)(), _dec2 = (0, _testable.testable)(), _dec(_class = _dec2(_class = (_class2 = class CheckboxGroup extends _react.Component {
|
|
49
49
|
constructor(props) {
|
|
50
50
|
super(props);
|
|
51
51
|
this._messagesId = void 0;
|
|
@@ -128,6 +128,4 @@ let CheckboxGroup = (_dec = (0, _withDeterministicId.withDeterministicId)(), _de
|
|
|
128
128
|
layout: 'stacked',
|
|
129
129
|
children: null
|
|
130
130
|
}, _class2)) || _class) || _class);
|
|
131
|
-
exports.
|
|
132
|
-
var _default = CheckboxGroup;
|
|
133
|
-
exports.default = _default;
|
|
131
|
+
var _default = exports.default = CheckboxGroup;
|
|
@@ -34,7 +34,7 @@ var _Checkbox = require("../Checkbox");
|
|
|
34
34
|
* SOFTWARE.
|
|
35
35
|
*/
|
|
36
36
|
|
|
37
|
-
const propTypes = {
|
|
37
|
+
const propTypes = exports.propTypes = {
|
|
38
38
|
name: _propTypes.default.string.isRequired,
|
|
39
39
|
description: _propTypes.default.node.isRequired,
|
|
40
40
|
/**
|
|
@@ -65,6 +65,4 @@ const propTypes = {
|
|
|
65
65
|
size: _propTypes.default.oneOf(['small', 'medium', 'large']),
|
|
66
66
|
layout: _propTypes.default.oneOf(['stacked', 'columns', 'inline'])
|
|
67
67
|
};
|
|
68
|
-
exports.
|
|
69
|
-
const allowedProps = ['name', 'description', 'defaultValue', 'value', 'onChange', 'disabled', 'readOnly', 'messages', 'children', 'size', 'layout'];
|
|
70
|
-
exports.allowedProps = allowedProps;
|
|
68
|
+
const allowedProps = exports.allowedProps = ['name', 'description', 'defaultValue', 'value', 'onChange', 'disabled', 'readOnly', 'messages', 'children', 'size', 'layout'];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-checkbox",
|
|
3
|
-
"version": "8.46.2-snapshot-
|
|
3
|
+
"version": "8.46.2-snapshot-7",
|
|
4
4
|
"description": " styled HTML input type='checkbox' component.",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -23,32 +23,32 @@
|
|
|
23
23
|
},
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@babel/runtime": "^7.
|
|
27
|
-
"@instructure/console": "8.46.2-snapshot-
|
|
28
|
-
"@instructure/emotion": "8.46.2-snapshot-
|
|
29
|
-
"@instructure/shared-types": "8.46.2-snapshot-
|
|
30
|
-
"@instructure/ui-dom-utils": "8.46.2-snapshot-
|
|
31
|
-
"@instructure/ui-form-field": "8.46.2-snapshot-
|
|
32
|
-
"@instructure/ui-icons": "8.46.2-snapshot-
|
|
33
|
-
"@instructure/ui-prop-types": "8.46.2-snapshot-
|
|
34
|
-
"@instructure/ui-react-utils": "8.46.2-snapshot-
|
|
35
|
-
"@instructure/ui-svg-images": "8.46.2-snapshot-
|
|
36
|
-
"@instructure/ui-testable": "8.46.2-snapshot-
|
|
37
|
-
"@instructure/ui-utils": "8.46.2-snapshot-
|
|
38
|
-
"@instructure/ui-view": "8.46.2-snapshot-
|
|
39
|
-
"@instructure/uid": "8.46.2-snapshot-
|
|
26
|
+
"@babel/runtime": "^7.23.2",
|
|
27
|
+
"@instructure/console": "8.46.2-snapshot-7",
|
|
28
|
+
"@instructure/emotion": "8.46.2-snapshot-7",
|
|
29
|
+
"@instructure/shared-types": "8.46.2-snapshot-7",
|
|
30
|
+
"@instructure/ui-dom-utils": "8.46.2-snapshot-7",
|
|
31
|
+
"@instructure/ui-form-field": "8.46.2-snapshot-7",
|
|
32
|
+
"@instructure/ui-icons": "8.46.2-snapshot-7",
|
|
33
|
+
"@instructure/ui-prop-types": "8.46.2-snapshot-7",
|
|
34
|
+
"@instructure/ui-react-utils": "8.46.2-snapshot-7",
|
|
35
|
+
"@instructure/ui-svg-images": "8.46.2-snapshot-7",
|
|
36
|
+
"@instructure/ui-testable": "8.46.2-snapshot-7",
|
|
37
|
+
"@instructure/ui-utils": "8.46.2-snapshot-7",
|
|
38
|
+
"@instructure/ui-view": "8.46.2-snapshot-7",
|
|
39
|
+
"@instructure/uid": "8.46.2-snapshot-7",
|
|
40
40
|
"keycode": "^2.2.1",
|
|
41
41
|
"prop-types": "^15.8.1"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@instructure/ui-axe-check": "8.46.2-snapshot-
|
|
45
|
-
"@instructure/ui-babel-preset": "8.46.2-snapshot-
|
|
46
|
-
"@instructure/ui-color-utils": "8.46.2-snapshot-
|
|
47
|
-
"@instructure/ui-test-utils": "8.46.2-snapshot-
|
|
48
|
-
"@instructure/ui-themes": "8.46.2-snapshot-
|
|
49
|
-
"@testing-library/jest-dom": "^
|
|
44
|
+
"@instructure/ui-axe-check": "8.46.2-snapshot-7",
|
|
45
|
+
"@instructure/ui-babel-preset": "8.46.2-snapshot-7",
|
|
46
|
+
"@instructure/ui-color-utils": "8.46.2-snapshot-7",
|
|
47
|
+
"@instructure/ui-test-utils": "8.46.2-snapshot-7",
|
|
48
|
+
"@instructure/ui-themes": "8.46.2-snapshot-7",
|
|
49
|
+
"@testing-library/jest-dom": "^6.1.4",
|
|
50
50
|
"@testing-library/react": "^14.0.0",
|
|
51
|
-
"@testing-library/user-event": "^14.
|
|
51
|
+
"@testing-library/user-event": "^14.5.1"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
54
|
"react": ">=16.8 <=18"
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
|
|
25
25
|
import React from 'react'
|
|
26
26
|
import { render, screen } from '@testing-library/react'
|
|
27
|
-
import '@testing-library/jest-dom
|
|
27
|
+
import '@testing-library/jest-dom'
|
|
28
28
|
|
|
29
29
|
import { runAxeCheck } from '@instructure/ui-axe-check'
|
|
30
30
|
import { CheckboxFacade } from '../index'
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
|
|
25
25
|
import React from 'react'
|
|
26
26
|
import { render, screen } from '@testing-library/react'
|
|
27
|
-
import '@testing-library/jest-dom
|
|
27
|
+
import '@testing-library/jest-dom'
|
|
28
28
|
|
|
29
29
|
import { runAxeCheck } from '@instructure/ui-axe-check'
|
|
30
30
|
import { ToggleFacade } from '../index'
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
import React from 'react'
|
|
26
26
|
import { fireEvent, render, screen, waitFor } from '@testing-library/react'
|
|
27
27
|
import userEvent from '@testing-library/user-event'
|
|
28
|
-
import '@testing-library/jest-dom
|
|
28
|
+
import '@testing-library/jest-dom'
|
|
29
29
|
|
|
30
30
|
import { runAxeCheck } from '@instructure/ui-axe-check'
|
|
31
31
|
import { Checkbox } from '../index'
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
import React from 'react'
|
|
26
26
|
import { fireEvent, render, screen, waitFor } from '@testing-library/react'
|
|
27
27
|
import userEvent from '@testing-library/user-event'
|
|
28
|
-
import '@testing-library/jest-dom
|
|
28
|
+
import '@testing-library/jest-dom'
|
|
29
29
|
|
|
30
30
|
import { runAxeCheck } from '@instructure/ui-axe-check'
|
|
31
31
|
import { CheckboxGroup } from '../index'
|