@instructure/ui-menu 8.11.2-snapshot.7 → 8.12.0
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 +4 -0
- package/es/Menu/MenuItem/index.js +8 -6
- package/es/Menu/index.js +0 -1
- package/es/package.json +1 -0
- package/lib/Menu/MenuItem/index.js +8 -6
- package/lib/Menu/index.js +0 -1
- package/package.json +21 -22
- package/src/Menu/MenuItem/index.tsx +14 -10
- package/src/Menu/index.tsx +0 -1
- package/types/Menu/MenuItem/index.d.ts +1 -1
- package/types/Menu/MenuItem/index.d.ts.map +1 -1
- package/types/Menu/index.d.ts.map +1 -1
- package/LICENSE.md +0 -27
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
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.12.0](https://github.com/instructure/instructure-ui/compare/v8.11.1...v8.12.0) (2021-11-17)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @instructure/ui-menu
|
|
9
|
+
|
|
6
10
|
## [8.11.1](https://github.com/instructure/instructure-ui/compare/v8.11.0...v8.11.1) (2021-10-19)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @instructure/ui-menu
|
|
@@ -49,11 +49,9 @@ let MenuItem = (_dec = withStyle(generateStyle, generateComponentTheme), _dec2 =
|
|
|
49
49
|
constructor(props) {
|
|
50
50
|
super();
|
|
51
51
|
this.ref = null;
|
|
52
|
-
this._node = null;
|
|
53
52
|
|
|
54
53
|
this.handleRef = el => {
|
|
55
54
|
this.ref = el;
|
|
56
|
-
this._node = el;
|
|
57
55
|
};
|
|
58
56
|
|
|
59
57
|
this.handleClick = e => {
|
|
@@ -95,7 +93,7 @@ let MenuItem = (_dec = withStyle(generateStyle, generateComponentTheme), _dec2 =
|
|
|
95
93
|
|
|
96
94
|
if (enterKey) {
|
|
97
95
|
// handle space key on keyUp for FF
|
|
98
|
-
findDOMNode(this.
|
|
96
|
+
findDOMNode(this.ref).click(); // eslint-disable-line react/no-find-dom-node
|
|
99
97
|
}
|
|
100
98
|
}
|
|
101
99
|
};
|
|
@@ -109,7 +107,7 @@ let MenuItem = (_dec = withStyle(generateStyle, generateComponentTheme), _dec2 =
|
|
|
109
107
|
e.stopPropagation();
|
|
110
108
|
|
|
111
109
|
if (spaceKey) {
|
|
112
|
-
findDOMNode(this.
|
|
110
|
+
findDOMNode(this.ref).click(); // eslint-disable-line react/no-find-dom-node
|
|
113
111
|
}
|
|
114
112
|
}
|
|
115
113
|
};
|
|
@@ -131,6 +129,10 @@ let MenuItem = (_dec = withStyle(generateStyle, generateComponentTheme), _dec2 =
|
|
|
131
129
|
this.labelId = uid('MenuItem__label');
|
|
132
130
|
}
|
|
133
131
|
|
|
132
|
+
get _node() {
|
|
133
|
+
return this.ref;
|
|
134
|
+
}
|
|
135
|
+
|
|
134
136
|
componentDidMount() {
|
|
135
137
|
this.props.makeStyles();
|
|
136
138
|
const context = this.context;
|
|
@@ -177,11 +179,11 @@ let MenuItem = (_dec = withStyle(generateStyle, generateComponentTheme), _dec2 =
|
|
|
177
179
|
}
|
|
178
180
|
|
|
179
181
|
get focused() {
|
|
180
|
-
return isActiveElement(this.
|
|
182
|
+
return isActiveElement(this.ref);
|
|
181
183
|
}
|
|
182
184
|
|
|
183
185
|
focus() {
|
|
184
|
-
findDOMNode(this.
|
|
186
|
+
findDOMNode(this.ref).focus(); // eslint-disable-line react/no-find-dom-node
|
|
185
187
|
}
|
|
186
188
|
|
|
187
189
|
renderContent() {
|
package/es/Menu/index.js
CHANGED
package/es/package.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"type":"module"}
|
|
@@ -51,11 +51,9 @@ let MenuItem = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default),
|
|
|
51
51
|
constructor(props) {
|
|
52
52
|
super();
|
|
53
53
|
this.ref = null;
|
|
54
|
-
this._node = null;
|
|
55
54
|
|
|
56
55
|
this.handleRef = el => {
|
|
57
56
|
this.ref = el;
|
|
58
|
-
this._node = el;
|
|
59
57
|
};
|
|
60
58
|
|
|
61
59
|
this.handleClick = e => {
|
|
@@ -97,7 +95,7 @@ let MenuItem = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default),
|
|
|
97
95
|
|
|
98
96
|
if (enterKey) {
|
|
99
97
|
// handle space key on keyUp for FF
|
|
100
|
-
(0, _findDOMNode.findDOMNode)(this.
|
|
98
|
+
(0, _findDOMNode.findDOMNode)(this.ref).click(); // eslint-disable-line react/no-find-dom-node
|
|
101
99
|
}
|
|
102
100
|
}
|
|
103
101
|
};
|
|
@@ -111,7 +109,7 @@ let MenuItem = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default),
|
|
|
111
109
|
e.stopPropagation();
|
|
112
110
|
|
|
113
111
|
if (spaceKey) {
|
|
114
|
-
(0, _findDOMNode.findDOMNode)(this.
|
|
112
|
+
(0, _findDOMNode.findDOMNode)(this.ref).click(); // eslint-disable-line react/no-find-dom-node
|
|
115
113
|
}
|
|
116
114
|
}
|
|
117
115
|
};
|
|
@@ -133,6 +131,10 @@ let MenuItem = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default),
|
|
|
133
131
|
this.labelId = (0, _uid.uid)('MenuItem__label');
|
|
134
132
|
}
|
|
135
133
|
|
|
134
|
+
get _node() {
|
|
135
|
+
return this.ref;
|
|
136
|
+
}
|
|
137
|
+
|
|
136
138
|
componentDidMount() {
|
|
137
139
|
this.props.makeStyles();
|
|
138
140
|
const context = this.context;
|
|
@@ -179,11 +181,11 @@ let MenuItem = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default),
|
|
|
179
181
|
}
|
|
180
182
|
|
|
181
183
|
get focused() {
|
|
182
|
-
return (0, _isActiveElement.isActiveElement)(this.
|
|
184
|
+
return (0, _isActiveElement.isActiveElement)(this.ref);
|
|
183
185
|
}
|
|
184
186
|
|
|
185
187
|
focus() {
|
|
186
|
-
(0, _findDOMNode.findDOMNode)(this.
|
|
188
|
+
(0, _findDOMNode.findDOMNode)(this.ref).focus(); // eslint-disable-line react/no-find-dom-node
|
|
187
189
|
}
|
|
188
190
|
|
|
189
191
|
renderContent() {
|
package/lib/Menu/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-menu",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.12.0",
|
|
4
4
|
"description": "A dropdown menu component",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -24,28 +24,28 @@
|
|
|
24
24
|
},
|
|
25
25
|
"license": "MIT",
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@instructure/ui-babel-preset": "8.
|
|
28
|
-
"@instructure/ui-color-utils": "8.
|
|
29
|
-
"@instructure/ui-test-locator": "8.
|
|
30
|
-
"@instructure/ui-test-queries": "8.
|
|
31
|
-
"@instructure/ui-test-utils": "8.
|
|
32
|
-
"@instructure/ui-themes": "8.
|
|
27
|
+
"@instructure/ui-babel-preset": "8.12.0",
|
|
28
|
+
"@instructure/ui-color-utils": "8.12.0",
|
|
29
|
+
"@instructure/ui-test-locator": "8.12.0",
|
|
30
|
+
"@instructure/ui-test-queries": "8.12.0",
|
|
31
|
+
"@instructure/ui-test-utils": "8.12.0",
|
|
32
|
+
"@instructure/ui-themes": "8.12.0"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@babel/runtime": "^7.13.10",
|
|
36
|
-
"@instructure/console": "8.
|
|
37
|
-
"@instructure/emotion": "8.
|
|
38
|
-
"@instructure/shared-types": "8.
|
|
39
|
-
"@instructure/ui-a11y-utils": "8.
|
|
40
|
-
"@instructure/ui-dom-utils": "8.
|
|
41
|
-
"@instructure/ui-icons": "8.
|
|
42
|
-
"@instructure/ui-popover": "8.
|
|
43
|
-
"@instructure/ui-position": "8.
|
|
44
|
-
"@instructure/ui-prop-types": "8.
|
|
45
|
-
"@instructure/ui-react-utils": "8.
|
|
46
|
-
"@instructure/ui-testable": "8.
|
|
47
|
-
"@instructure/ui-utils": "8.
|
|
48
|
-
"@instructure/uid": "8.
|
|
36
|
+
"@instructure/console": "8.12.0",
|
|
37
|
+
"@instructure/emotion": "8.12.0",
|
|
38
|
+
"@instructure/shared-types": "8.12.0",
|
|
39
|
+
"@instructure/ui-a11y-utils": "8.12.0",
|
|
40
|
+
"@instructure/ui-dom-utils": "8.12.0",
|
|
41
|
+
"@instructure/ui-icons": "8.12.0",
|
|
42
|
+
"@instructure/ui-popover": "8.12.0",
|
|
43
|
+
"@instructure/ui-position": "8.12.0",
|
|
44
|
+
"@instructure/ui-prop-types": "8.12.0",
|
|
45
|
+
"@instructure/ui-react-utils": "8.12.0",
|
|
46
|
+
"@instructure/ui-testable": "8.12.0",
|
|
47
|
+
"@instructure/ui-utils": "8.12.0",
|
|
48
|
+
"@instructure/uid": "8.12.0",
|
|
49
49
|
"keycode": "^2",
|
|
50
50
|
"prop-types": "^15"
|
|
51
51
|
},
|
|
@@ -55,6 +55,5 @@
|
|
|
55
55
|
"publishConfig": {
|
|
56
56
|
"access": "public"
|
|
57
57
|
},
|
|
58
|
-
"sideEffects": false
|
|
59
|
-
"gitHead": "2681e145ad469e1396536d3e9eed75a19995eb8a"
|
|
58
|
+
"sideEffects": false
|
|
60
59
|
}
|
|
@@ -78,12 +78,16 @@ class MenuItem extends Component<MenuItemProps> {
|
|
|
78
78
|
this.labelId = uid('MenuItem__label')
|
|
79
79
|
}
|
|
80
80
|
|
|
81
|
-
|
|
82
|
-
|
|
81
|
+
get _node() {
|
|
82
|
+
console.warn(
|
|
83
|
+
'_node property is deprecated and will be removed in v9, please use ref instead'
|
|
84
|
+
)
|
|
83
85
|
|
|
86
|
+
return this.ref
|
|
87
|
+
}
|
|
88
|
+
ref: Element | null = null
|
|
84
89
|
handleRef = (el: Element | null) => {
|
|
85
90
|
this.ref = el
|
|
86
|
-
this._node = el
|
|
87
91
|
}
|
|
88
92
|
|
|
89
93
|
componentDidMount() {
|
|
@@ -144,8 +148,8 @@ class MenuItem extends Component<MenuItemProps> {
|
|
|
144
148
|
|
|
145
149
|
if (enterKey) {
|
|
146
150
|
// handle space key on keyUp for FF
|
|
147
|
-
// @ts-expect-error ts-migrate(2339) FIXME: Property '
|
|
148
|
-
findDOMNode(this.
|
|
151
|
+
// @ts-expect-error ts-migrate(2339) FIXME: Property 'ref' does not exist on type 'MenuItem'... Remove this comment to see the full error message
|
|
152
|
+
findDOMNode(this.ref).click() // eslint-disable-line react/no-find-dom-node
|
|
149
153
|
}
|
|
150
154
|
}
|
|
151
155
|
}
|
|
@@ -160,8 +164,8 @@ class MenuItem extends Component<MenuItemProps> {
|
|
|
160
164
|
e.stopPropagation()
|
|
161
165
|
|
|
162
166
|
if (spaceKey) {
|
|
163
|
-
// @ts-expect-error ts-migrate(2339) FIXME: Property '
|
|
164
|
-
findDOMNode(this.
|
|
167
|
+
// @ts-expect-error ts-migrate(2339) FIXME: Property 'ref' does not exist on type 'MenuItem'... Remove this comment to see the full error message
|
|
168
|
+
findDOMNode(this.ref).click() // eslint-disable-line react/no-find-dom-node
|
|
165
169
|
}
|
|
166
170
|
}
|
|
167
171
|
}
|
|
@@ -200,12 +204,12 @@ class MenuItem extends Component<MenuItemProps> {
|
|
|
200
204
|
}
|
|
201
205
|
|
|
202
206
|
get focused() {
|
|
203
|
-
return isActiveElement(this.
|
|
207
|
+
return isActiveElement(this.ref)
|
|
204
208
|
}
|
|
205
209
|
|
|
206
210
|
focus() {
|
|
207
|
-
// @ts-expect-error ts-migrate(2339) FIXME: Property '
|
|
208
|
-
findDOMNode(this.
|
|
211
|
+
// @ts-expect-error ts-migrate(2339) FIXME: Property 'ref' does not exist on type 'MenuItem'... Remove this comment to see the full error message
|
|
212
|
+
findDOMNode(this.ref).focus() // eslint-disable-line react/no-find-dom-node
|
|
209
213
|
}
|
|
210
214
|
|
|
211
215
|
renderContent() {
|
package/src/Menu/index.tsx
CHANGED
|
@@ -525,7 +525,6 @@ class Menu extends Component<MenuProps> {
|
|
|
525
525
|
renderTrigger={safeCloneElement(trigger as ReactElement, {
|
|
526
526
|
// @ts-expect-error ts-migrate(7006) FIXME: Parameter 'el' implicitly has an 'any' type.
|
|
527
527
|
ref: (el) => {
|
|
528
|
-
this._trigger = el
|
|
529
528
|
this.ref = el
|
|
530
529
|
},
|
|
531
530
|
'aria-haspopup': true,
|
|
@@ -52,8 +52,8 @@ declare class MenuItem extends Component<MenuItemProps> {
|
|
|
52
52
|
removeMenuItem: () => void;
|
|
53
53
|
}>;
|
|
54
54
|
constructor(props: any);
|
|
55
|
+
get _node(): Element | null;
|
|
55
56
|
ref: Element | null;
|
|
56
|
-
_node: Element | null;
|
|
57
57
|
handleRef: (el: Element | null) => void;
|
|
58
58
|
componentDidMount(): void;
|
|
59
59
|
componentDidUpdate(): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/Menu/MenuItem/index.tsx"],"names":[],"mappings":"AAuBA,eAAe;AACf,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AASjC,OAAO,EAAa,GAAG,EAAE,MAAM,sBAAsB,CAAA;AAQrD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAE5C;;;;;GAKG;AACH,cAEM,QAAS,SAAQ,SAAS,CAAC,aAAa,CAAC;IAC7C,MAAM,CAAC,QAAQ,CAAC,WAAW,eAAc;IAEzC,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;OAAY;IAC5B,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;SAAe;IAClC,MAAM,CAAC,YAAY;;;;MAKT;IAEV,MAAM,CAAC,WAAW;;;OAAc;gBAGpB,KAAK,KAAA;IAcjB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/Menu/MenuItem/index.tsx"],"names":[],"mappings":"AAuBA,eAAe;AACf,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AASjC,OAAO,EAAa,GAAG,EAAE,MAAM,sBAAsB,CAAA;AAQrD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAE5C;;;;;GAKG;AACH,cAEM,QAAS,SAAQ,SAAS,CAAC,aAAa,CAAC;IAC7C,MAAM,CAAC,QAAQ,CAAC,WAAW,eAAc;IAEzC,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;OAAY;IAC5B,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;SAAe;IAClC,MAAM,CAAC,YAAY;;;;MAKT;IAEV,MAAM,CAAC,WAAW;;;OAAc;gBAGpB,KAAK,KAAA;IAcjB,IAAI,KAAK,mBAMR;IACD,GAAG,EAAE,OAAO,GAAG,IAAI,CAAO;IAC1B,SAAS,OAAQ,OAAO,GAAG,IAAI,UAE9B;IAED,iBAAiB;IAUjB,kBAAkB;IAKlB,oBAAoB;IASpB,WAAW,mBAqBV;IAGD,aAAa,mBAcZ;IAGD,WAAW,mBAaV;IAGD,eAAe,uBAMd;IAED,IAAI,WAAW,wEAEd;IAED,IAAI,IAAI,iEAWP;IAED,IAAI,QAAQ,QAKX;IAED,IAAI,OAAO,YAEV;IAED,KAAK;IAKL,aAAa;IAuBb,MAAM;CAmCP;AAED,eAAe,QAAQ,CAAA;AACvB,OAAO,EAAE,QAAQ,EAAE,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Menu/index.tsx"],"names":[],"mappings":"AAuBA,eAAe;AACf,OAAO,EAAY,SAAS,EAAE,YAAY,EAAE,MAAM,OAAO,CAAA;AAczD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AACrC,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC/C,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AACvD,OAAO,EAAa,GAAG,EAAE,MAAM,sBAAsB,CAAA;AAMrD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAExC;;;;GAIG;AACH,cAEM,IAAK,SAAQ,SAAS,CAAC,SAAS,CAAC;IACrC,MAAM,CAAC,QAAQ,CAAC,WAAW,UAAS;IAEpC,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAAY;IAC5B,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;SAAe;IAClC,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;MAmClB;IAED,MAAM,CAAC,IAAI,kBAAW;IACtB,MAAM,CAAC,KAAK,uBAAgB;IAC5B,MAAM,CAAC,SAAS,2BAAoB;IAEpC,KAAK;;MAAsB;IAC3B,SAAS,OAAO;IAChB,UAAU,UAAK;IACf,QAAQ,OAAO;IACf,QAAQ,OAAO;IACf,KAAK,EAAE,gBAAgB,GAAG,IAAI,CAAO;IACrC,QAAQ,SAAqB;IAC7B,cAAc,OAAO;IAErB,GAAG,EAAE,gBAAgB,GAAG,IAAI,CAAO;IAEnC,SAAS,OAAQ,gBAAgB,GAAG,IAAI,UAMvC;gBAGW,KAAK,KAAA;IAMjB,iBAAiB;IAMjB,kBAAkB,CAAC,SAAS,KAAA;IAK5B,MAAM,CAAC,WAAW;;;OAAc;IAGhC,gBAAgB,sBAGf;IAGD,cAAc,sBAMb;IAED,IAAI,SAAS,YAEZ;IAGD,gBAAgB,wBAEf;IAGD,oBAAoB,uBAMnB;IAED,sBAAsB,aAKrB;IAGD,YAAY,uBAIX;IAGD,iBAAiB,uBAuBhB;IAGD,oBAAoB,6DAQnB;IAED,mBAAmB,aAElB;IAED,kBAAkB,aAEjB;IAGD,uBAAuB,sCAKtB;IAGD,iBAAiB,uBAMhB;IAGD,mBAAmB,qCAIlB;IAGD,oBAAoB,2CAInB;IAGD,IAAI,uBAKH;IAGD,IAAI,uBAKH;IAED,KAAK;IAiBL,OAAO;IAQP,IAAI,YAAY,WAKf;IAGD,SAAS,CAAC,IAAI,KAAA;IAkBd,IAAI,KAAK,QAGR;IAED,cAAc;IA2Gd,UAAU;IAmCV,MAAM;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Menu/index.tsx"],"names":[],"mappings":"AAuBA,eAAe;AACf,OAAO,EAAY,SAAS,EAAE,YAAY,EAAE,MAAM,OAAO,CAAA;AAczD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AACrC,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC/C,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AACvD,OAAO,EAAa,GAAG,EAAE,MAAM,sBAAsB,CAAA;AAMrD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAExC;;;;GAIG;AACH,cAEM,IAAK,SAAQ,SAAS,CAAC,SAAS,CAAC;IACrC,MAAM,CAAC,QAAQ,CAAC,WAAW,UAAS;IAEpC,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAAY;IAC5B,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;SAAe;IAClC,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;MAmClB;IAED,MAAM,CAAC,IAAI,kBAAW;IACtB,MAAM,CAAC,KAAK,uBAAgB;IAC5B,MAAM,CAAC,SAAS,2BAAoB;IAEpC,KAAK;;MAAsB;IAC3B,SAAS,OAAO;IAChB,UAAU,UAAK;IACf,QAAQ,OAAO;IACf,QAAQ,OAAO;IACf,KAAK,EAAE,gBAAgB,GAAG,IAAI,CAAO;IACrC,QAAQ,SAAqB;IAC7B,cAAc,OAAO;IAErB,GAAG,EAAE,gBAAgB,GAAG,IAAI,CAAO;IAEnC,SAAS,OAAQ,gBAAgB,GAAG,IAAI,UAMvC;gBAGW,KAAK,KAAA;IAMjB,iBAAiB;IAMjB,kBAAkB,CAAC,SAAS,KAAA;IAK5B,MAAM,CAAC,WAAW;;;OAAc;IAGhC,gBAAgB,sBAGf;IAGD,cAAc,sBAMb;IAED,IAAI,SAAS,YAEZ;IAGD,gBAAgB,wBAEf;IAGD,oBAAoB,uBAMnB;IAED,sBAAsB,aAKrB;IAGD,YAAY,uBAIX;IAGD,iBAAiB,uBAuBhB;IAGD,oBAAoB,6DAQnB;IAED,mBAAmB,aAElB;IAED,kBAAkB,aAEjB;IAGD,uBAAuB,sCAKtB;IAGD,iBAAiB,uBAMhB;IAGD,mBAAmB,qCAIlB;IAGD,oBAAoB,2CAInB;IAGD,IAAI,uBAKH;IAGD,IAAI,uBAKH;IAED,KAAK;IAiBL,OAAO;IAQP,IAAI,YAAY,WAKf;IAGD,SAAS,CAAC,IAAI,KAAA;IAkBd,IAAI,KAAK,QAGR;IAED,cAAc;IA2Gd,UAAU;IAmCV,MAAM;CAiEP;AAED,eAAe,IAAI,CAAA;AACnB,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,aAAa,EAAE,iBAAiB,EAAE,CAAA"}
|
package/LICENSE.md
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
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.
|