@instructure/ui-checkbox 8.12.1-snapshot.44 → 8.12.1-snapshot.50
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/es/Checkbox/CheckboxFacade/index.js +2 -2
- package/es/Checkbox/ToggleFacade/index.js +2 -2
- package/lib/Checkbox/CheckboxFacade/index.js +3 -3
- package/lib/Checkbox/CheckboxFacade/props.js +1 -1
- package/lib/Checkbox/ToggleFacade/index.js +3 -3
- package/lib/Checkbox/ToggleFacade/props.js +1 -1
- package/lib/Checkbox/index.js +2 -1
- package/lib/Checkbox/props.js +1 -1
- package/lib/CheckboxGroup/index.js +1 -1
- package/lib/CheckboxGroup/props.js +1 -1
- package/lib/index.js +4 -4
- package/package.json +20 -20
|
@@ -39,8 +39,8 @@ parent: Checkbox
|
|
|
39
39
|
---
|
|
40
40
|
**/
|
|
41
41
|
let CheckboxFacade = (_dec = withStyle(generateStyle, generateComponentTheme), _dec(_class = (_temp = _class2 = class CheckboxFacade extends Component {
|
|
42
|
-
constructor(
|
|
43
|
-
super(...
|
|
42
|
+
constructor() {
|
|
43
|
+
super(...arguments);
|
|
44
44
|
this.ref = null;
|
|
45
45
|
|
|
46
46
|
this.handleRef = el => {
|
|
@@ -38,8 +38,8 @@ parent: Checkbox
|
|
|
38
38
|
---
|
|
39
39
|
**/
|
|
40
40
|
let ToggleFacade = (_dec = withStyle(generateStyle, generateComponentTheme), _dec(_class = (_temp = _class2 = class ToggleFacade extends Component {
|
|
41
|
-
constructor(
|
|
42
|
-
super(...
|
|
41
|
+
constructor() {
|
|
42
|
+
super(...arguments);
|
|
43
43
|
this.ref = null;
|
|
44
44
|
|
|
45
45
|
this.handleRef = el => {
|
|
@@ -5,7 +5,7 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", {
|
|
6
6
|
value: true
|
|
7
7
|
});
|
|
8
|
-
exports.
|
|
8
|
+
exports.default = exports.CheckboxFacade = void 0;
|
|
9
9
|
|
|
10
10
|
var _react = require("react");
|
|
11
11
|
|
|
@@ -29,8 +29,8 @@ parent: Checkbox
|
|
|
29
29
|
---
|
|
30
30
|
**/
|
|
31
31
|
let CheckboxFacade = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default), _dec(_class = (_temp = _class2 = class CheckboxFacade extends _react.Component {
|
|
32
|
-
constructor(
|
|
33
|
-
super(...
|
|
32
|
+
constructor() {
|
|
33
|
+
super(...arguments);
|
|
34
34
|
this.ref = null;
|
|
35
35
|
|
|
36
36
|
this.handleRef = el => {
|
|
@@ -5,7 +5,7 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", {
|
|
6
6
|
value: true
|
|
7
7
|
});
|
|
8
|
-
exports.
|
|
8
|
+
exports.propTypes = exports.allowedProps = void 0;
|
|
9
9
|
|
|
10
10
|
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", {
|
|
6
6
|
value: true
|
|
7
7
|
});
|
|
8
|
-
exports.
|
|
8
|
+
exports.default = exports.ToggleFacade = void 0;
|
|
9
9
|
|
|
10
10
|
var _react = require("react");
|
|
11
11
|
|
|
@@ -29,8 +29,8 @@ parent: Checkbox
|
|
|
29
29
|
---
|
|
30
30
|
**/
|
|
31
31
|
let ToggleFacade = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default), _dec(_class = (_temp = _class2 = class ToggleFacade extends _react.Component {
|
|
32
|
-
constructor(
|
|
33
|
-
super(...
|
|
32
|
+
constructor() {
|
|
33
|
+
super(...arguments);
|
|
34
34
|
this.ref = null;
|
|
35
35
|
|
|
36
36
|
this.handleRef = el => {
|
|
@@ -5,7 +5,7 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", {
|
|
6
6
|
value: true
|
|
7
7
|
});
|
|
8
|
-
exports.
|
|
8
|
+
exports.propTypes = exports.allowedProps = void 0;
|
|
9
9
|
|
|
10
10
|
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
11
11
|
|
package/lib/Checkbox/index.js
CHANGED
|
@@ -5,6 +5,7 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", {
|
|
6
6
|
value: true
|
|
7
7
|
});
|
|
8
|
+
exports.Checkbox = void 0;
|
|
8
9
|
Object.defineProperty(exports, "CheckboxFacade", {
|
|
9
10
|
enumerable: true,
|
|
10
11
|
get: function () {
|
|
@@ -17,7 +18,7 @@ Object.defineProperty(exports, "ToggleFacade", {
|
|
|
17
18
|
return _ToggleFacade.ToggleFacade;
|
|
18
19
|
}
|
|
19
20
|
});
|
|
20
|
-
exports.
|
|
21
|
+
exports.default = void 0;
|
|
21
22
|
|
|
22
23
|
var _react = require("react");
|
|
23
24
|
|
package/lib/Checkbox/props.js
CHANGED
|
@@ -5,7 +5,7 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", {
|
|
6
6
|
value: true
|
|
7
7
|
});
|
|
8
|
-
exports.
|
|
8
|
+
exports.propTypes = exports.allowedProps = void 0;
|
|
9
9
|
|
|
10
10
|
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@ var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWild
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", {
|
|
6
6
|
value: true
|
|
7
7
|
});
|
|
8
|
-
exports.
|
|
8
|
+
exports.default = exports.CheckboxGroup = void 0;
|
|
9
9
|
|
|
10
10
|
var _react = _interopRequireWildcard(require("react"));
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", {
|
|
6
6
|
value: true
|
|
7
7
|
});
|
|
8
|
-
exports.
|
|
8
|
+
exports.propTypes = exports.allowedProps = void 0;
|
|
9
9
|
|
|
10
10
|
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
11
11
|
|
package/lib/index.js
CHANGED
|
@@ -15,16 +15,16 @@ Object.defineProperty(exports, "CheckboxFacade", {
|
|
|
15
15
|
return _Checkbox.CheckboxFacade;
|
|
16
16
|
}
|
|
17
17
|
});
|
|
18
|
-
Object.defineProperty(exports, "
|
|
18
|
+
Object.defineProperty(exports, "CheckboxGroup", {
|
|
19
19
|
enumerable: true,
|
|
20
20
|
get: function () {
|
|
21
|
-
return
|
|
21
|
+
return _CheckboxGroup.CheckboxGroup;
|
|
22
22
|
}
|
|
23
23
|
});
|
|
24
|
-
Object.defineProperty(exports, "
|
|
24
|
+
Object.defineProperty(exports, "ToggleFacade", {
|
|
25
25
|
enumerable: true,
|
|
26
26
|
get: function () {
|
|
27
|
-
return
|
|
27
|
+
return _Checkbox.ToggleFacade;
|
|
28
28
|
}
|
|
29
29
|
});
|
|
30
30
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-checkbox",
|
|
3
|
-
"version": "8.12.1-snapshot.
|
|
3
|
+
"version": "8.12.1-snapshot.50+3786369ec",
|
|
4
4
|
"description": " styled HTML input type='checkbox' component.",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -25,28 +25,28 @@
|
|
|
25
25
|
"license": "MIT",
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@babel/runtime": "^7.13.10",
|
|
28
|
-
"@instructure/console": "8.12.1-snapshot.
|
|
29
|
-
"@instructure/emotion": "8.12.1-snapshot.
|
|
30
|
-
"@instructure/shared-types": "8.12.1-snapshot.
|
|
31
|
-
"@instructure/ui-dom-utils": "8.12.1-snapshot.
|
|
32
|
-
"@instructure/ui-form-field": "8.12.1-snapshot.
|
|
33
|
-
"@instructure/ui-icons": "8.12.1-snapshot.
|
|
34
|
-
"@instructure/ui-prop-types": "8.12.1-snapshot.
|
|
35
|
-
"@instructure/ui-react-utils": "8.12.1-snapshot.
|
|
36
|
-
"@instructure/ui-svg-images": "8.12.1-snapshot.
|
|
37
|
-
"@instructure/ui-testable": "8.12.1-snapshot.
|
|
38
|
-
"@instructure/ui-utils": "8.12.1-snapshot.
|
|
39
|
-
"@instructure/ui-view": "8.12.1-snapshot.
|
|
40
|
-
"@instructure/uid": "8.12.1-snapshot.
|
|
28
|
+
"@instructure/console": "8.12.1-snapshot.50+3786369ec",
|
|
29
|
+
"@instructure/emotion": "8.12.1-snapshot.50+3786369ec",
|
|
30
|
+
"@instructure/shared-types": "8.12.1-snapshot.50+3786369ec",
|
|
31
|
+
"@instructure/ui-dom-utils": "8.12.1-snapshot.50+3786369ec",
|
|
32
|
+
"@instructure/ui-form-field": "8.12.1-snapshot.50+3786369ec",
|
|
33
|
+
"@instructure/ui-icons": "8.12.1-snapshot.50+3786369ec",
|
|
34
|
+
"@instructure/ui-prop-types": "8.12.1-snapshot.50+3786369ec",
|
|
35
|
+
"@instructure/ui-react-utils": "8.12.1-snapshot.50+3786369ec",
|
|
36
|
+
"@instructure/ui-svg-images": "8.12.1-snapshot.50+3786369ec",
|
|
37
|
+
"@instructure/ui-testable": "8.12.1-snapshot.50+3786369ec",
|
|
38
|
+
"@instructure/ui-utils": "8.12.1-snapshot.50+3786369ec",
|
|
39
|
+
"@instructure/ui-view": "8.12.1-snapshot.50+3786369ec",
|
|
40
|
+
"@instructure/uid": "8.12.1-snapshot.50+3786369ec",
|
|
41
41
|
"keycode": "^2",
|
|
42
42
|
"prop-types": "^15"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@instructure/ui-babel-preset": "8.12.1-snapshot.
|
|
46
|
-
"@instructure/ui-color-utils": "8.12.1-snapshot.
|
|
47
|
-
"@instructure/ui-test-locator": "8.12.1-snapshot.
|
|
48
|
-
"@instructure/ui-test-utils": "8.12.1-snapshot.
|
|
49
|
-
"@instructure/ui-themes": "8.12.1-snapshot.
|
|
45
|
+
"@instructure/ui-babel-preset": "8.12.1-snapshot.50+3786369ec",
|
|
46
|
+
"@instructure/ui-color-utils": "8.12.1-snapshot.50+3786369ec",
|
|
47
|
+
"@instructure/ui-test-locator": "8.12.1-snapshot.50+3786369ec",
|
|
48
|
+
"@instructure/ui-test-utils": "8.12.1-snapshot.50+3786369ec",
|
|
49
|
+
"@instructure/ui-themes": "8.12.1-snapshot.50+3786369ec"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"react": ">=16.8 <=17"
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"access": "public"
|
|
56
56
|
},
|
|
57
57
|
"sideEffects": false,
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "3786369ec892bc0f716844828cc2729447adb8be"
|
|
59
59
|
}
|