@instructure/ui-select 8.10.3-snapshot.9 → 8.11.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/package.json +23 -24
- package/src/Select/Group/props.ts +6 -2
- package/src/Select/Option/props.ts +6 -2
- package/src/Select/index.tsx +0 -1
- package/src/Select/props.ts +9 -3
- package/types/Select/Group/props.d.ts +2 -2
- package/types/Select/Group/props.d.ts.map +1 -1
- package/types/Select/Option/props.d.ts +2 -2
- package/types/Select/Option/props.d.ts.map +1 -1
- package/types/Select/index.d.ts +2 -2
- package/types/Select/index.d.ts.map +1 -1
- package/types/Select/props.d.ts +3 -3
- package/types/Select/props.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.11.0](https://github.com/instructure/instructure-ui/compare/v8.10.2...v8.11.0) (2021-10-15)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @instructure/ui-select
|
|
9
|
+
|
|
6
10
|
## [8.10.2](https://github.com/instructure/instructure-ui/compare/v8.10.1...v8.10.2) (2021-10-01)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @instructure/ui-select
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-select",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.11.0",
|
|
4
4
|
"description": "A component for select and autocomplete behavior.",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -24,30 +24,30 @@
|
|
|
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-utils": "8.
|
|
31
|
-
"@instructure/ui-themes": "8.
|
|
27
|
+
"@instructure/ui-babel-preset": "8.11.0",
|
|
28
|
+
"@instructure/ui-color-utils": "8.11.0",
|
|
29
|
+
"@instructure/ui-test-locator": "8.11.0",
|
|
30
|
+
"@instructure/ui-test-utils": "8.11.0",
|
|
31
|
+
"@instructure/ui-themes": "8.11.0"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@babel/runtime": "^7.13.10",
|
|
35
|
-
"@instructure/emotion": "8.
|
|
36
|
-
"@instructure/shared-types": "8.
|
|
37
|
-
"@instructure/ui-dom-utils": "8.
|
|
38
|
-
"@instructure/ui-form-field": "8.
|
|
39
|
-
"@instructure/ui-icons": "8.
|
|
40
|
-
"@instructure/ui-options": "8.
|
|
41
|
-
"@instructure/ui-popover": "8.
|
|
42
|
-
"@instructure/ui-position": "8.
|
|
43
|
-
"@instructure/ui-prop-types": "8.
|
|
44
|
-
"@instructure/ui-react-utils": "8.
|
|
45
|
-
"@instructure/ui-selectable": "8.
|
|
46
|
-
"@instructure/ui-testable": "8.
|
|
47
|
-
"@instructure/ui-text-input": "8.
|
|
48
|
-
"@instructure/ui-utils": "8.
|
|
49
|
-
"@instructure/ui-view": "8.
|
|
50
|
-
"@instructure/uid": "8.
|
|
35
|
+
"@instructure/emotion": "8.11.0",
|
|
36
|
+
"@instructure/shared-types": "8.11.0",
|
|
37
|
+
"@instructure/ui-dom-utils": "8.11.0",
|
|
38
|
+
"@instructure/ui-form-field": "8.11.0",
|
|
39
|
+
"@instructure/ui-icons": "8.11.0",
|
|
40
|
+
"@instructure/ui-options": "8.11.0",
|
|
41
|
+
"@instructure/ui-popover": "8.11.0",
|
|
42
|
+
"@instructure/ui-position": "8.11.0",
|
|
43
|
+
"@instructure/ui-prop-types": "8.11.0",
|
|
44
|
+
"@instructure/ui-react-utils": "8.11.0",
|
|
45
|
+
"@instructure/ui-selectable": "8.11.0",
|
|
46
|
+
"@instructure/ui-testable": "8.11.0",
|
|
47
|
+
"@instructure/ui-text-input": "8.11.0",
|
|
48
|
+
"@instructure/ui-utils": "8.11.0",
|
|
49
|
+
"@instructure/ui-view": "8.11.0",
|
|
50
|
+
"@instructure/uid": "8.11.0",
|
|
51
51
|
"prop-types": "^15"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
@@ -56,6 +56,5 @@
|
|
|
56
56
|
"publishConfig": {
|
|
57
57
|
"access": "public"
|
|
58
58
|
},
|
|
59
|
-
"sideEffects": false
|
|
60
|
-
"gitHead": "47592ffa9fed565a9df0677c77e6d890d5e964ea"
|
|
59
|
+
"sideEffects": false
|
|
61
60
|
}
|
|
@@ -27,7 +27,10 @@ import PropTypes from 'prop-types'
|
|
|
27
27
|
import { Children as ChildrenPropTypes } from '@instructure/ui-prop-types'
|
|
28
28
|
import { Option } from '../Option'
|
|
29
29
|
|
|
30
|
-
import type {
|
|
30
|
+
import type {
|
|
31
|
+
OtherHTMLAttributes,
|
|
32
|
+
PropValidators
|
|
33
|
+
} from '@instructure/shared-types'
|
|
31
34
|
|
|
32
35
|
type SelectGroupOwnProps = {
|
|
33
36
|
renderLabel: React.ReactNode | ((...args: any[]) => any)
|
|
@@ -38,7 +41,8 @@ type PropKeys = keyof SelectGroupOwnProps
|
|
|
38
41
|
|
|
39
42
|
type AllowedPropKeys = Readonly<Array<PropKeys>>
|
|
40
43
|
|
|
41
|
-
type SelectGroupProps = SelectGroupOwnProps
|
|
44
|
+
type SelectGroupProps = SelectGroupOwnProps &
|
|
45
|
+
OtherHTMLAttributes<SelectGroupOwnProps>
|
|
42
46
|
|
|
43
47
|
const propTypes: PropValidators<PropKeys> = {
|
|
44
48
|
/**
|
|
@@ -24,7 +24,10 @@
|
|
|
24
24
|
import React from 'react'
|
|
25
25
|
import PropTypes from 'prop-types'
|
|
26
26
|
|
|
27
|
-
import type {
|
|
27
|
+
import type {
|
|
28
|
+
OtherHTMLAttributes,
|
|
29
|
+
PropValidators
|
|
30
|
+
} from '@instructure/shared-types'
|
|
28
31
|
|
|
29
32
|
type SelectOptionOwnProps = {
|
|
30
33
|
id: string
|
|
@@ -40,7 +43,8 @@ type PropKeys = keyof SelectOptionOwnProps
|
|
|
40
43
|
|
|
41
44
|
type AllowedPropKeys = Readonly<Array<PropKeys>>
|
|
42
45
|
|
|
43
|
-
type SelectOptionProps = SelectOptionOwnProps
|
|
46
|
+
type SelectOptionProps = SelectOptionOwnProps &
|
|
47
|
+
OtherHTMLAttributes<SelectOptionOwnProps>
|
|
44
48
|
|
|
45
49
|
const propTypes: PropValidators<PropKeys> = {
|
|
46
50
|
/**
|
package/src/Select/index.tsx
CHANGED
|
@@ -431,7 +431,6 @@ class Select extends Component<SelectProps> {
|
|
|
431
431
|
// a wrapping listitem will be created by Options
|
|
432
432
|
groupChildren.push(
|
|
433
433
|
<Options
|
|
434
|
-
// @ts-expect-error ts-migrate(2769) FIXME: No overload matches this call.
|
|
435
434
|
id={id}
|
|
436
435
|
as="ul"
|
|
437
436
|
role="group"
|
package/src/Select/props.ts
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
* SOFTWARE.
|
|
23
23
|
*/
|
|
24
24
|
|
|
25
|
-
import React from 'react'
|
|
25
|
+
import React, { InputHTMLAttributes } from 'react'
|
|
26
26
|
import PropTypes from 'prop-types'
|
|
27
27
|
|
|
28
28
|
import { Children as ChildrenPropTypes } from '@instructure/ui-prop-types'
|
|
@@ -32,7 +32,11 @@ import { PositionPropTypes } from '@instructure/ui-position'
|
|
|
32
32
|
import { Group } from './Group'
|
|
33
33
|
import { Option } from './Option'
|
|
34
34
|
|
|
35
|
-
import type {
|
|
35
|
+
import type {
|
|
36
|
+
OtherHTMLAttributes,
|
|
37
|
+
PropValidators,
|
|
38
|
+
SelectTheme
|
|
39
|
+
} from '@instructure/shared-types'
|
|
36
40
|
import type { FormMessage } from '@instructure/ui-form-field'
|
|
37
41
|
import type { WithStyleProps, ComponentStyle } from '@instructure/emotion'
|
|
38
42
|
import type {
|
|
@@ -79,7 +83,9 @@ type PropKeys = keyof SelectOwnProps
|
|
|
79
83
|
|
|
80
84
|
type AllowedPropKeys = Readonly<Array<PropKeys>>
|
|
81
85
|
|
|
82
|
-
type SelectProps = SelectOwnProps &
|
|
86
|
+
type SelectProps = SelectOwnProps &
|
|
87
|
+
WithStyleProps<SelectTheme, SelectStyle> &
|
|
88
|
+
OtherHTMLAttributes<SelectOwnProps, InputHTMLAttributes<SelectOwnProps>>
|
|
83
89
|
|
|
84
90
|
type SelectStyle = ComponentStyle<'select' | 'icon' | 'assistiveText'>
|
|
85
91
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type { PropValidators } from '@instructure/shared-types';
|
|
2
|
+
import type { OtherHTMLAttributes, PropValidators } from '@instructure/shared-types';
|
|
3
3
|
declare type SelectGroupOwnProps = {
|
|
4
4
|
renderLabel: React.ReactNode | ((...args: any[]) => any);
|
|
5
5
|
children?: React.ReactNode;
|
|
6
6
|
};
|
|
7
7
|
declare type PropKeys = keyof SelectGroupOwnProps;
|
|
8
8
|
declare type AllowedPropKeys = Readonly<Array<PropKeys>>;
|
|
9
|
-
declare type SelectGroupProps = SelectGroupOwnProps
|
|
9
|
+
declare type SelectGroupProps = SelectGroupOwnProps & OtherHTMLAttributes<SelectGroupOwnProps>;
|
|
10
10
|
declare const propTypes: PropValidators<PropKeys>;
|
|
11
11
|
declare const allowedProps: AllowedPropKeys;
|
|
12
12
|
export type { SelectGroupProps };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../../src/Select/Group/props.ts"],"names":[],"mappings":"AAuBA,OAAO,KAAK,MAAM,OAAO,CAAA;AAMzB,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../../src/Select/Group/props.ts"],"names":[],"mappings":"AAuBA,OAAO,KAAK,MAAM,OAAO,CAAA;AAMzB,OAAO,KAAK,EACV,mBAAmB,EACnB,cAAc,EACf,MAAM,2BAA2B,CAAA;AAElC,aAAK,mBAAmB,GAAG;IACzB,WAAW,EAAE,KAAK,CAAC,SAAS,GAAG,CAAC,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAC,CAAA;IACxD,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;CAC3B,CAAA;AAED,aAAK,QAAQ,GAAG,MAAM,mBAAmB,CAAA;AAEzC,aAAK,eAAe,GAAG,QAAQ,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAA;AAEhD,aAAK,gBAAgB,GAAG,mBAAmB,GACzC,mBAAmB,CAAC,mBAAmB,CAAC,CAAA;AAE1C,QAAA,MAAM,SAAS,EAAE,cAAc,CAAC,QAAQ,CASvC,CAAA;AAED,QAAA,MAAM,YAAY,EAAE,eAA6C,CAAA;AAEjE,YAAY,EAAE,gBAAgB,EAAE,CAAA;AAChC,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,CAAA"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type { PropValidators } from '@instructure/shared-types';
|
|
2
|
+
import type { OtherHTMLAttributes, PropValidators } from '@instructure/shared-types';
|
|
3
3
|
declare type SelectOptionOwnProps = {
|
|
4
4
|
id: string;
|
|
5
5
|
isHighlighted?: boolean;
|
|
@@ -11,7 +11,7 @@ declare type SelectOptionOwnProps = {
|
|
|
11
11
|
};
|
|
12
12
|
declare type PropKeys = keyof SelectOptionOwnProps;
|
|
13
13
|
declare type AllowedPropKeys = Readonly<Array<PropKeys>>;
|
|
14
|
-
declare type SelectOptionProps = SelectOptionOwnProps
|
|
14
|
+
declare type SelectOptionProps = SelectOptionOwnProps & OtherHTMLAttributes<SelectOptionOwnProps>;
|
|
15
15
|
declare const propTypes: PropValidators<PropKeys>;
|
|
16
16
|
declare const allowedProps: AllowedPropKeys;
|
|
17
17
|
export type { SelectOptionProps };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../../src/Select/Option/props.ts"],"names":[],"mappings":"AAuBA,OAAO,KAAK,MAAM,OAAO,CAAA;AAGzB,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../../src/Select/Option/props.ts"],"names":[],"mappings":"AAuBA,OAAO,KAAK,MAAM,OAAO,CAAA;AAGzB,OAAO,KAAK,EACV,mBAAmB,EACnB,cAAc,EACf,MAAM,2BAA2B,CAAA;AAElC,aAAK,oBAAoB,GAAG;IAC1B,EAAE,EAAE,MAAM,CAAA;IACV,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,iBAAiB,CAAC,EAAE,KAAK,CAAC,SAAS,GAAG,CAAC,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAC,CAAA;IAC/D,gBAAgB,CAAC,EAAE,KAAK,CAAC,SAAS,GAAG,CAAC,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAC,CAAA;IAC9D,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;CAC3B,CAAA;AAED,aAAK,QAAQ,GAAG,MAAM,oBAAoB,CAAA;AAE1C,aAAK,eAAe,GAAG,QAAQ,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAA;AAEhD,aAAK,iBAAiB,GAAG,oBAAoB,GAC3C,mBAAmB,CAAC,oBAAoB,CAAC,CAAA;AAE3C,QAAA,MAAM,SAAS,EAAE,cAAc,CAAC,QAAQ,CA6BvC,CAAA;AAED,QAAA,MAAM,YAAY,EAAE,eAQnB,CAAA;AAED,YAAY,EAAE,iBAAiB,EAAE,CAAA;AACjC,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,CAAA"}
|
package/types/Select/index.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ declare class Select extends Component<SelectProps> {
|
|
|
20
20
|
size?: "small" | "medium" | "large" | undefined;
|
|
21
21
|
assistiveText?: string | undefined;
|
|
22
22
|
placeholder?: string | undefined;
|
|
23
|
-
interaction?: "
|
|
23
|
+
interaction?: "disabled" | "enabled" | "readonly" | undefined;
|
|
24
24
|
isRequired?: boolean | undefined;
|
|
25
25
|
isInline?: boolean | undefined;
|
|
26
26
|
width?: string | undefined;
|
|
@@ -53,7 +53,7 @@ declare class Select extends Component<SelectProps> {
|
|
|
53
53
|
size?: "small" | "medium" | "large" | undefined;
|
|
54
54
|
assistiveText?: string | undefined;
|
|
55
55
|
placeholder?: string | undefined;
|
|
56
|
-
interaction?: "
|
|
56
|
+
interaction?: "disabled" | "enabled" | "readonly" | undefined;
|
|
57
57
|
isRequired?: boolean | undefined;
|
|
58
58
|
isInline?: boolean | undefined;
|
|
59
59
|
width?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Select/index.tsx"],"names":[],"mappings":"AAwBA,eAAe;AACf,OAAO,EAAY,SAAS,EAAE,MAAM,OAAO,CAAA;AAyB3C,OAAO,EAAa,GAAG,EAAE,MAAM,sBAAsB,CAAA;AAKrD,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAC/B,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAA;AACjC,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA;AAG1C;;;;;GAKG;AACH,cAEM,MAAO,SAAQ,SAAS,CAAC,WAAW,CAAC;IACzC,MAAM,CAAC,QAAQ,CAAC,WAAW,YAAW;IAEtC,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SAAe;IAClC,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAAY;IAE5B,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;;;;MAgClB;IAED,MAAM,CAAC,MAAM,gBAAS;IACtB,MAAM,CAAC,KAAK,eAAQ;IAEpB,GAAG,EAAE,OAAO,GAAG,IAAI,CAAO;IAE1B,iBAAiB;IAIjB,kBAAkB;IAOlB,KAAK;;MAEJ;IAED,UAAU,SAAgB;IAC1B,SAAS,SAA8B;IACvC,MAAM,OAAO;IACb,eAAe,YAAY;IAC3B,KAAK,OAAO;IAEZ,UAAU,UAAK;IAEf,aAAa,SAAK;IAElB,KAAK;IAKL,IAAI,OAAO,SAEV;IAED,IAAI,EAAE,WAEL;IAED,IAAI,KAAK,cAGR;IAED,IAAI,WAAW,0DAEd;IAED,IAAI,mBAAmB,SAyBtB;IAED,IAAI,gBAAgB,QA8BnB;IAGD,cAAc,sBAUb;IAGD,aAAa,sBASZ;IAGD,uBAAuB,sBAEtB;IAGD,cAAc,CAAC,EAAE,KAAA;IA0BjB,eAAe,CAAC,KAAK,KAAA,EAAE,EAAE,KAAA;IAQzB,gBAAgB;;;0CA4BC,KAAK;;;;;;uCAkCiB,KAAK;;;;;;;;;;;IAa5C,YAAY,CAAC,MAAM,KAAA,EAAE,IAAI,KAAA;IAwDzB,WAAW,CAAC,KAAK,KAAA,EAAE,IAAI,KAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Select/index.tsx"],"names":[],"mappings":"AAwBA,eAAe;AACf,OAAO,EAAY,SAAS,EAAE,MAAM,OAAO,CAAA;AAyB3C,OAAO,EAAa,GAAG,EAAE,MAAM,sBAAsB,CAAA;AAKrD,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAC/B,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAA;AACjC,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA;AAG1C;;;;;GAKG;AACH,cAEM,MAAO,SAAQ,SAAS,CAAC,WAAW,CAAC;IACzC,MAAM,CAAC,QAAQ,CAAC,WAAW,YAAW;IAEtC,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SAAe;IAClC,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAAY;IAE5B,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;;;;MAgClB;IAED,MAAM,CAAC,MAAM,gBAAS;IACtB,MAAM,CAAC,KAAK,eAAQ;IAEpB,GAAG,EAAE,OAAO,GAAG,IAAI,CAAO;IAE1B,iBAAiB;IAIjB,kBAAkB;IAOlB,KAAK;;MAEJ;IAED,UAAU,SAAgB;IAC1B,SAAS,SAA8B;IACvC,MAAM,OAAO;IACb,eAAe,YAAY;IAC3B,KAAK,OAAO;IAEZ,UAAU,UAAK;IAEf,aAAa,SAAK;IAElB,KAAK;IAKL,IAAI,OAAO,SAEV;IAED,IAAI,EAAE,WAEL;IAED,IAAI,KAAK,cAGR;IAED,IAAI,WAAW,0DAEd;IAED,IAAI,mBAAmB,SAyBtB;IAED,IAAI,gBAAgB,QA8BnB;IAGD,cAAc,sBAUb;IAGD,aAAa,sBASZ;IAGD,uBAAuB,sBAEtB;IAGD,cAAc,CAAC,EAAE,KAAA;IA0BjB,eAAe,CAAC,KAAK,KAAA,EAAE,EAAE,KAAA;IAQzB,gBAAgB;;;0CA4BC,KAAK;;;;;;uCAkCiB,KAAK;;;;;;;;;;;IAa5C,YAAY,CAAC,MAAM,KAAA,EAAE,IAAI,KAAA;IAwDzB,WAAW,CAAC,KAAK,KAAA,EAAE,IAAI,KAAA;IAyCvB,UAAU,CAAC,IAAI,KAAA;IA6Df,UAAU;IAcV,WAAW,CAAC,IAAI,KAAA;IAyEhB,MAAM;CAwDP;AAED,eAAe,MAAM,CAAA;AACrB,OAAO,EAAE,MAAM,EAAE,CAAA"}
|
package/types/Select/props.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { PropValidators, SelectTheme } from '@instructure/shared-types';
|
|
1
|
+
import React, { InputHTMLAttributes } from 'react';
|
|
2
|
+
import type { OtherHTMLAttributes, PropValidators, SelectTheme } from '@instructure/shared-types';
|
|
3
3
|
import type { FormMessage } from '@instructure/ui-form-field';
|
|
4
4
|
import type { WithStyleProps, ComponentStyle } from '@instructure/emotion';
|
|
5
5
|
import type { PlacementPropValues, PositionConstraint, PositionMountNode } from '@instructure/ui-position';
|
|
@@ -38,7 +38,7 @@ declare type SelectOwnProps = {
|
|
|
38
38
|
};
|
|
39
39
|
declare type PropKeys = keyof SelectOwnProps;
|
|
40
40
|
declare type AllowedPropKeys = Readonly<Array<PropKeys>>;
|
|
41
|
-
declare type SelectProps = SelectOwnProps & WithStyleProps<SelectTheme, SelectStyle
|
|
41
|
+
declare type SelectProps = SelectOwnProps & WithStyleProps<SelectTheme, SelectStyle> & OtherHTMLAttributes<SelectOwnProps, InputHTMLAttributes<SelectOwnProps>>;
|
|
42
42
|
declare type SelectStyle = ComponentStyle<'select' | 'icon' | 'assistiveText'>;
|
|
43
43
|
declare const propTypes: PropValidators<PropKeys>;
|
|
44
44
|
declare const allowedProps: AllowedPropKeys;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../src/Select/props.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,MAAM,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../src/Select/props.ts"],"names":[],"mappings":"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"}
|
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.
|