@instructure/ui-grid 8.18.0 → 8.18.1-snapshot.2
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/LICENSE.md +27 -0
- package/es/Grid/index.js +14 -10
- package/es/Grid/theme.js +3 -3
- package/es/GridCol/index.js +10 -6
- package/es/GridCol/theme.js +3 -3
- package/es/GridRow/index.js +14 -10
- package/es/GridRow/theme.js +3 -3
- package/lib/Grid/index.js +14 -10
- package/lib/Grid/theme.js +3 -3
- package/lib/GridCol/index.js +10 -6
- package/lib/GridCol/theme.js +3 -3
- package/lib/GridRow/index.js +14 -10
- package/lib/GridRow/theme.js +3 -3
- package/package.json +14 -13
package/LICENSE.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: The MIT License (MIT)
|
|
3
|
+
category: Getting Started
|
|
4
|
+
order: 9
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# The MIT License (MIT)
|
|
8
|
+
|
|
9
|
+
Copyright (c) 2015 Instructure, Inc.
|
|
10
|
+
|
|
11
|
+
**Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
12
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
13
|
+
in the Software without restriction, including without limitation the rights
|
|
14
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
15
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
16
|
+
furnished to do so, subject to the following conditions.**
|
|
17
|
+
|
|
18
|
+
The above copyright notice and this permission notice shall be included in all
|
|
19
|
+
copies or substantial portions of the Software.
|
|
20
|
+
|
|
21
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
22
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
23
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
25
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
26
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
27
|
+
SOFTWARE.
|
package/es/Grid/index.js
CHANGED
|
@@ -55,18 +55,22 @@ let Grid = (_dec = withStyle(generateStyle, generateComponentTheme), _dec(_class
|
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
componentDidMount() {
|
|
58
|
-
|
|
58
|
+
var _this$props$makeStyle, _this$props;
|
|
59
|
+
|
|
60
|
+
(_this$props$makeStyle = (_this$props = this.props).makeStyles) === null || _this$props$makeStyle === void 0 ? void 0 : _this$props$makeStyle.call(_this$props);
|
|
59
61
|
}
|
|
60
62
|
|
|
61
63
|
componentDidUpdate() {
|
|
62
|
-
|
|
64
|
+
var _this$props$makeStyle2, _this$props2;
|
|
65
|
+
|
|
66
|
+
(_this$props$makeStyle2 = (_this$props2 = this.props).makeStyles) === null || _this$props$makeStyle2 === void 0 ? void 0 : _this$props$makeStyle2.call(_this$props2);
|
|
63
67
|
}
|
|
64
68
|
|
|
65
69
|
renderChildren() {
|
|
66
|
-
const _this$
|
|
67
|
-
styles = _this$
|
|
68
|
-
makeStyles = _this$
|
|
69
|
-
props = _objectWithoutProperties(_this$
|
|
70
|
+
const _this$props3 = this.props,
|
|
71
|
+
styles = _this$props3.styles,
|
|
72
|
+
makeStyles = _this$props3.makeStyles,
|
|
73
|
+
props = _objectWithoutProperties(_this$props3, _excluded);
|
|
70
74
|
|
|
71
75
|
const children = Children.toArray(this.props.children);
|
|
72
76
|
return children.map((child, index) => {
|
|
@@ -84,13 +88,13 @@ let Grid = (_dec = withStyle(generateStyle, generateComponentTheme), _dec(_class
|
|
|
84
88
|
}
|
|
85
89
|
|
|
86
90
|
render() {
|
|
87
|
-
const _this$
|
|
88
|
-
styles = _this$
|
|
89
|
-
restProps = _objectWithoutProperties(_this$
|
|
91
|
+
const _this$props4 = this.props,
|
|
92
|
+
styles = _this$props4.styles,
|
|
93
|
+
restProps = _objectWithoutProperties(_this$props4, _excluded2);
|
|
90
94
|
|
|
91
95
|
const props = omitProps(restProps, Grid.allowedProps);
|
|
92
96
|
return jsx("span", Object.assign({}, props, {
|
|
93
|
-
css: styles
|
|
97
|
+
css: styles === null || styles === void 0 ? void 0 : styles.grid,
|
|
94
98
|
ref: this.handleRef
|
|
95
99
|
}), this.renderChildren());
|
|
96
100
|
}
|
package/es/Grid/theme.js
CHANGED
|
@@ -31,9 +31,9 @@ const generateComponentTheme = theme => {
|
|
|
31
31
|
const spacing = theme.spacing,
|
|
32
32
|
media = theme.media;
|
|
33
33
|
const componentVariables = {
|
|
34
|
-
spacingSmall: spacing
|
|
35
|
-
spacingMedium: spacing
|
|
36
|
-
spacingLarge: spacing
|
|
34
|
+
spacingSmall: spacing === null || spacing === void 0 ? void 0 : spacing.small,
|
|
35
|
+
spacingMedium: spacing === null || spacing === void 0 ? void 0 : spacing.medium,
|
|
36
|
+
spacingLarge: spacing === null || spacing === void 0 ? void 0 : spacing.large,
|
|
37
37
|
...media
|
|
38
38
|
};
|
|
39
39
|
return { ...componentVariables
|
package/es/GridCol/index.js
CHANGED
|
@@ -55,21 +55,25 @@ let GridCol = (_dec = withStyle(generateStyle, generateComponentTheme), _dec(_cl
|
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
componentDidMount() {
|
|
58
|
-
|
|
58
|
+
var _this$props$makeStyle, _this$props;
|
|
59
|
+
|
|
60
|
+
(_this$props$makeStyle = (_this$props = this.props).makeStyles) === null || _this$props$makeStyle === void 0 ? void 0 : _this$props$makeStyle.call(_this$props);
|
|
59
61
|
}
|
|
60
62
|
|
|
61
63
|
componentDidUpdate() {
|
|
62
|
-
|
|
64
|
+
var _this$props$makeStyle2, _this$props2;
|
|
65
|
+
|
|
66
|
+
(_this$props$makeStyle2 = (_this$props2 = this.props).makeStyles) === null || _this$props$makeStyle2 === void 0 ? void 0 : _this$props$makeStyle2.call(_this$props2);
|
|
63
67
|
}
|
|
64
68
|
|
|
65
69
|
render() {
|
|
66
|
-
const _this$
|
|
67
|
-
children = _this$
|
|
68
|
-
styles = _this$
|
|
70
|
+
const _this$props3 = this.props,
|
|
71
|
+
children = _this$props3.children,
|
|
72
|
+
styles = _this$props3.styles;
|
|
69
73
|
const props = omitProps(this.props, GridCol.allowedProps);
|
|
70
74
|
return jsx("span", Object.assign({}, props, {
|
|
71
75
|
ref: this.handleRef,
|
|
72
|
-
css: styles
|
|
76
|
+
css: styles === null || styles === void 0 ? void 0 : styles.gridCol
|
|
73
77
|
}), children);
|
|
74
78
|
}
|
|
75
79
|
|
package/es/GridCol/theme.js
CHANGED
|
@@ -31,9 +31,9 @@ const generateComponentTheme = theme => {
|
|
|
31
31
|
const spacing = theme.spacing,
|
|
32
32
|
media = theme.media;
|
|
33
33
|
const componentVariables = {
|
|
34
|
-
spacingSmall: spacing
|
|
35
|
-
spacingMedium: spacing
|
|
36
|
-
spacingLarge: spacing
|
|
34
|
+
spacingSmall: spacing === null || spacing === void 0 ? void 0 : spacing.small,
|
|
35
|
+
spacingMedium: spacing === null || spacing === void 0 ? void 0 : spacing.medium,
|
|
36
|
+
spacingLarge: spacing === null || spacing === void 0 ? void 0 : spacing.large,
|
|
37
37
|
...media
|
|
38
38
|
};
|
|
39
39
|
return { ...componentVariables
|
package/es/GridRow/index.js
CHANGED
|
@@ -55,18 +55,22 @@ let GridRow = (_dec = withStyle(generateStyle, generateComponentTheme), _dec(_cl
|
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
componentDidMount() {
|
|
58
|
-
|
|
58
|
+
var _this$props$makeStyle, _this$props;
|
|
59
|
+
|
|
60
|
+
(_this$props$makeStyle = (_this$props = this.props).makeStyles) === null || _this$props$makeStyle === void 0 ? void 0 : _this$props$makeStyle.call(_this$props);
|
|
59
61
|
}
|
|
60
62
|
|
|
61
63
|
componentDidUpdate() {
|
|
62
|
-
|
|
64
|
+
var _this$props$makeStyle2, _this$props2;
|
|
65
|
+
|
|
66
|
+
(_this$props$makeStyle2 = (_this$props2 = this.props).makeStyles) === null || _this$props$makeStyle2 === void 0 ? void 0 : _this$props$makeStyle2.call(_this$props2);
|
|
63
67
|
}
|
|
64
68
|
|
|
65
69
|
renderChildren() {
|
|
66
|
-
const _this$
|
|
67
|
-
styles = _this$
|
|
68
|
-
makeStyles = _this$
|
|
69
|
-
props = _objectWithoutProperties(_this$
|
|
70
|
+
const _this$props3 = this.props,
|
|
71
|
+
styles = _this$props3.styles,
|
|
72
|
+
makeStyles = _this$props3.makeStyles,
|
|
73
|
+
props = _objectWithoutProperties(_this$props3, _excluded);
|
|
70
74
|
|
|
71
75
|
return Children.map(this.props.children, (child, index) => {
|
|
72
76
|
if (matchComponentTypes(child, [GridCol])) {
|
|
@@ -84,13 +88,13 @@ let GridRow = (_dec = withStyle(generateStyle, generateComponentTheme), _dec(_cl
|
|
|
84
88
|
}
|
|
85
89
|
|
|
86
90
|
render() {
|
|
87
|
-
const _this$
|
|
88
|
-
styles = _this$
|
|
89
|
-
restProps = _objectWithoutProperties(_this$
|
|
91
|
+
const _this$props4 = this.props,
|
|
92
|
+
styles = _this$props4.styles,
|
|
93
|
+
restProps = _objectWithoutProperties(_this$props4, _excluded2);
|
|
90
94
|
|
|
91
95
|
const props = omitProps(restProps, GridRow.allowedProps);
|
|
92
96
|
return jsx("span", Object.assign({}, props, {
|
|
93
|
-
css: styles
|
|
97
|
+
css: styles === null || styles === void 0 ? void 0 : styles.gridRow,
|
|
94
98
|
ref: this.handleRef
|
|
95
99
|
}), this.renderChildren());
|
|
96
100
|
}
|
package/es/GridRow/theme.js
CHANGED
|
@@ -31,9 +31,9 @@ const generateComponentTheme = theme => {
|
|
|
31
31
|
const spacing = theme.spacing,
|
|
32
32
|
media = theme.media;
|
|
33
33
|
const componentVariables = {
|
|
34
|
-
spacingSmall: spacing
|
|
35
|
-
spacingMedium: spacing
|
|
36
|
-
spacingLarge: spacing
|
|
34
|
+
spacingSmall: spacing === null || spacing === void 0 ? void 0 : spacing.small,
|
|
35
|
+
spacingMedium: spacing === null || spacing === void 0 ? void 0 : spacing.medium,
|
|
36
|
+
spacingLarge: spacing === null || spacing === void 0 ? void 0 : spacing.large,
|
|
37
37
|
...media
|
|
38
38
|
};
|
|
39
39
|
return { ...componentVariables
|
package/lib/Grid/index.js
CHANGED
|
@@ -68,18 +68,22 @@ let Grid = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default), _de
|
|
|
68
68
|
}
|
|
69
69
|
|
|
70
70
|
componentDidMount() {
|
|
71
|
-
|
|
71
|
+
var _this$props$makeStyle, _this$props;
|
|
72
|
+
|
|
73
|
+
(_this$props$makeStyle = (_this$props = this.props).makeStyles) === null || _this$props$makeStyle === void 0 ? void 0 : _this$props$makeStyle.call(_this$props);
|
|
72
74
|
}
|
|
73
75
|
|
|
74
76
|
componentDidUpdate() {
|
|
75
|
-
|
|
77
|
+
var _this$props$makeStyle2, _this$props2;
|
|
78
|
+
|
|
79
|
+
(_this$props$makeStyle2 = (_this$props2 = this.props).makeStyles) === null || _this$props$makeStyle2 === void 0 ? void 0 : _this$props$makeStyle2.call(_this$props2);
|
|
76
80
|
}
|
|
77
81
|
|
|
78
82
|
renderChildren() {
|
|
79
|
-
const _this$
|
|
80
|
-
styles = _this$
|
|
81
|
-
makeStyles = _this$
|
|
82
|
-
props = (0, _objectWithoutProperties2.default)(_this$
|
|
83
|
+
const _this$props3 = this.props,
|
|
84
|
+
styles = _this$props3.styles,
|
|
85
|
+
makeStyles = _this$props3.makeStyles,
|
|
86
|
+
props = (0, _objectWithoutProperties2.default)(_this$props3, _excluded);
|
|
83
87
|
|
|
84
88
|
const children = _react.Children.toArray(this.props.children);
|
|
85
89
|
|
|
@@ -98,12 +102,12 @@ let Grid = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default), _de
|
|
|
98
102
|
}
|
|
99
103
|
|
|
100
104
|
render() {
|
|
101
|
-
const _this$
|
|
102
|
-
styles = _this$
|
|
103
|
-
restProps = (0, _objectWithoutProperties2.default)(_this$
|
|
105
|
+
const _this$props4 = this.props,
|
|
106
|
+
styles = _this$props4.styles,
|
|
107
|
+
restProps = (0, _objectWithoutProperties2.default)(_this$props4, _excluded2);
|
|
104
108
|
const props = (0, _omitProps.omitProps)(restProps, Grid.allowedProps);
|
|
105
109
|
return (0, _emotion.jsx)("span", Object.assign({}, props, {
|
|
106
|
-
css: styles
|
|
110
|
+
css: styles === null || styles === void 0 ? void 0 : styles.grid,
|
|
107
111
|
ref: this.handleRef
|
|
108
112
|
}), this.renderChildren());
|
|
109
113
|
}
|
package/lib/Grid/theme.js
CHANGED
|
@@ -38,9 +38,9 @@ const generateComponentTheme = theme => {
|
|
|
38
38
|
const spacing = theme.spacing,
|
|
39
39
|
media = theme.media;
|
|
40
40
|
const componentVariables = {
|
|
41
|
-
spacingSmall: spacing
|
|
42
|
-
spacingMedium: spacing
|
|
43
|
-
spacingLarge: spacing
|
|
41
|
+
spacingSmall: spacing === null || spacing === void 0 ? void 0 : spacing.small,
|
|
42
|
+
spacingMedium: spacing === null || spacing === void 0 ? void 0 : spacing.medium,
|
|
43
|
+
spacingLarge: spacing === null || spacing === void 0 ? void 0 : spacing.large,
|
|
44
44
|
...media
|
|
45
45
|
};
|
|
46
46
|
return { ...componentVariables
|
package/lib/GridCol/index.js
CHANGED
|
@@ -44,21 +44,25 @@ let GridCol = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default),
|
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
componentDidMount() {
|
|
47
|
-
|
|
47
|
+
var _this$props$makeStyle, _this$props;
|
|
48
|
+
|
|
49
|
+
(_this$props$makeStyle = (_this$props = this.props).makeStyles) === null || _this$props$makeStyle === void 0 ? void 0 : _this$props$makeStyle.call(_this$props);
|
|
48
50
|
}
|
|
49
51
|
|
|
50
52
|
componentDidUpdate() {
|
|
51
|
-
|
|
53
|
+
var _this$props$makeStyle2, _this$props2;
|
|
54
|
+
|
|
55
|
+
(_this$props$makeStyle2 = (_this$props2 = this.props).makeStyles) === null || _this$props$makeStyle2 === void 0 ? void 0 : _this$props$makeStyle2.call(_this$props2);
|
|
52
56
|
}
|
|
53
57
|
|
|
54
58
|
render() {
|
|
55
|
-
const _this$
|
|
56
|
-
children = _this$
|
|
57
|
-
styles = _this$
|
|
59
|
+
const _this$props3 = this.props,
|
|
60
|
+
children = _this$props3.children,
|
|
61
|
+
styles = _this$props3.styles;
|
|
58
62
|
const props = (0, _omitProps.omitProps)(this.props, GridCol.allowedProps);
|
|
59
63
|
return (0, _emotion.jsx)("span", Object.assign({}, props, {
|
|
60
64
|
ref: this.handleRef,
|
|
61
|
-
css: styles
|
|
65
|
+
css: styles === null || styles === void 0 ? void 0 : styles.gridCol
|
|
62
66
|
}), children);
|
|
63
67
|
}
|
|
64
68
|
|
package/lib/GridCol/theme.js
CHANGED
|
@@ -38,9 +38,9 @@ const generateComponentTheme = theme => {
|
|
|
38
38
|
const spacing = theme.spacing,
|
|
39
39
|
media = theme.media;
|
|
40
40
|
const componentVariables = {
|
|
41
|
-
spacingSmall: spacing
|
|
42
|
-
spacingMedium: spacing
|
|
43
|
-
spacingLarge: spacing
|
|
41
|
+
spacingSmall: spacing === null || spacing === void 0 ? void 0 : spacing.small,
|
|
42
|
+
spacingMedium: spacing === null || spacing === void 0 ? void 0 : spacing.medium,
|
|
43
|
+
spacingLarge: spacing === null || spacing === void 0 ? void 0 : spacing.large,
|
|
44
44
|
...media
|
|
45
45
|
};
|
|
46
46
|
return { ...componentVariables
|
package/lib/GridRow/index.js
CHANGED
|
@@ -54,18 +54,22 @@ let GridRow = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default),
|
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
componentDidMount() {
|
|
57
|
-
|
|
57
|
+
var _this$props$makeStyle, _this$props;
|
|
58
|
+
|
|
59
|
+
(_this$props$makeStyle = (_this$props = this.props).makeStyles) === null || _this$props$makeStyle === void 0 ? void 0 : _this$props$makeStyle.call(_this$props);
|
|
58
60
|
}
|
|
59
61
|
|
|
60
62
|
componentDidUpdate() {
|
|
61
|
-
|
|
63
|
+
var _this$props$makeStyle2, _this$props2;
|
|
64
|
+
|
|
65
|
+
(_this$props$makeStyle2 = (_this$props2 = this.props).makeStyles) === null || _this$props$makeStyle2 === void 0 ? void 0 : _this$props$makeStyle2.call(_this$props2);
|
|
62
66
|
}
|
|
63
67
|
|
|
64
68
|
renderChildren() {
|
|
65
|
-
const _this$
|
|
66
|
-
styles = _this$
|
|
67
|
-
makeStyles = _this$
|
|
68
|
-
props = (0, _objectWithoutProperties2.default)(_this$
|
|
69
|
+
const _this$props3 = this.props,
|
|
70
|
+
styles = _this$props3.styles,
|
|
71
|
+
makeStyles = _this$props3.makeStyles,
|
|
72
|
+
props = (0, _objectWithoutProperties2.default)(_this$props3, _excluded);
|
|
69
73
|
return _react.Children.map(this.props.children, (child, index) => {
|
|
70
74
|
if ((0, _matchComponentTypes.matchComponentTypes)(child, [_GridCol.GridCol])) {
|
|
71
75
|
return (0, _safeCloneElement.safeCloneElement)(child, { ...(0, _pickProps.pickProps)(props, GridRow.allowedProps),
|
|
@@ -82,12 +86,12 @@ let GridRow = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default),
|
|
|
82
86
|
}
|
|
83
87
|
|
|
84
88
|
render() {
|
|
85
|
-
const _this$
|
|
86
|
-
styles = _this$
|
|
87
|
-
restProps = (0, _objectWithoutProperties2.default)(_this$
|
|
89
|
+
const _this$props4 = this.props,
|
|
90
|
+
styles = _this$props4.styles,
|
|
91
|
+
restProps = (0, _objectWithoutProperties2.default)(_this$props4, _excluded2);
|
|
88
92
|
const props = (0, _omitProps.omitProps)(restProps, GridRow.allowedProps);
|
|
89
93
|
return (0, _emotion.jsx)("span", Object.assign({}, props, {
|
|
90
|
-
css: styles
|
|
94
|
+
css: styles === null || styles === void 0 ? void 0 : styles.gridRow,
|
|
91
95
|
ref: this.handleRef
|
|
92
96
|
}), this.renderChildren());
|
|
93
97
|
}
|
package/lib/GridRow/theme.js
CHANGED
|
@@ -38,9 +38,9 @@ const generateComponentTheme = theme => {
|
|
|
38
38
|
const spacing = theme.spacing,
|
|
39
39
|
media = theme.media;
|
|
40
40
|
const componentVariables = {
|
|
41
|
-
spacingSmall: spacing
|
|
42
|
-
spacingMedium: spacing
|
|
43
|
-
spacingLarge: spacing
|
|
41
|
+
spacingSmall: spacing === null || spacing === void 0 ? void 0 : spacing.small,
|
|
42
|
+
spacingMedium: spacing === null || spacing === void 0 ? void 0 : spacing.medium,
|
|
43
|
+
spacingLarge: spacing === null || spacing === void 0 ? void 0 : spacing.large,
|
|
44
44
|
...media
|
|
45
45
|
};
|
|
46
46
|
return { ...componentVariables
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-grid",
|
|
3
|
-
"version": "8.18.
|
|
3
|
+
"version": "8.18.1-snapshot.2+ca4c1ff9d",
|
|
4
4
|
"description": "A Grid component.",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -24,20 +24,20 @@
|
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@babel/runtime": "^7.13.10",
|
|
27
|
-
"@instructure/emotion": "8.18.
|
|
28
|
-
"@instructure/shared-types": "8.18.
|
|
29
|
-
"@instructure/ui-a11y-content": "8.18.
|
|
30
|
-
"@instructure/ui-prop-types": "8.18.
|
|
31
|
-
"@instructure/ui-react-utils": "8.18.
|
|
32
|
-
"@instructure/ui-testable": "8.18.
|
|
33
|
-
"@instructure/ui-utils": "8.18.
|
|
27
|
+
"@instructure/emotion": "8.18.1-snapshot.2+ca4c1ff9d",
|
|
28
|
+
"@instructure/shared-types": "8.18.1-snapshot.2+ca4c1ff9d",
|
|
29
|
+
"@instructure/ui-a11y-content": "8.18.1-snapshot.2+ca4c1ff9d",
|
|
30
|
+
"@instructure/ui-prop-types": "8.18.1-snapshot.2+ca4c1ff9d",
|
|
31
|
+
"@instructure/ui-react-utils": "8.18.1-snapshot.2+ca4c1ff9d",
|
|
32
|
+
"@instructure/ui-testable": "8.18.1-snapshot.2+ca4c1ff9d",
|
|
33
|
+
"@instructure/ui-utils": "8.18.1-snapshot.2+ca4c1ff9d",
|
|
34
34
|
"prop-types": "^15"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@instructure/ui-babel-preset": "8.18.
|
|
38
|
-
"@instructure/ui-color-utils": "8.18.
|
|
39
|
-
"@instructure/ui-test-utils": "8.18.
|
|
40
|
-
"@instructure/ui-themes": "8.18.
|
|
37
|
+
"@instructure/ui-babel-preset": "8.18.1-snapshot.2+ca4c1ff9d",
|
|
38
|
+
"@instructure/ui-color-utils": "8.18.1-snapshot.2+ca4c1ff9d",
|
|
39
|
+
"@instructure/ui-test-utils": "8.18.1-snapshot.2+ca4c1ff9d",
|
|
40
|
+
"@instructure/ui-themes": "8.18.1-snapshot.2+ca4c1ff9d"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"react": ">=16.8 <=17"
|
|
@@ -45,5 +45,6 @@
|
|
|
45
45
|
"publishConfig": {
|
|
46
46
|
"access": "public"
|
|
47
47
|
},
|
|
48
|
-
"sideEffects": false
|
|
48
|
+
"sideEffects": false,
|
|
49
|
+
"gitHead": "ca4c1ff9d3985151ae0758fb596de41652dbb58b"
|
|
49
50
|
}
|