@instructure/ui-simple-select 8.14.1-snapshot.6 → 8.14.1-snapshot.63

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.
Files changed (35) hide show
  1. package/es/SimpleSelect/Group/index.js +2 -3
  2. package/es/SimpleSelect/Group/props.js +0 -7
  3. package/es/SimpleSelect/Option/index.js +2 -2
  4. package/es/SimpleSelect/Option/props.js +0 -23
  5. package/es/SimpleSelect/SimpleSelectLocator.js +3 -1
  6. package/es/SimpleSelect/index.js +74 -68
  7. package/es/SimpleSelect/props.js +0 -130
  8. package/lib/SimpleSelect/Group/index.js +2 -3
  9. package/lib/SimpleSelect/Group/props.js +0 -7
  10. package/lib/SimpleSelect/Option/index.js +2 -2
  11. package/lib/SimpleSelect/Option/props.js +0 -23
  12. package/lib/SimpleSelect/SimpleSelectLocator.js +2 -0
  13. package/lib/SimpleSelect/index.js +73 -70
  14. package/lib/SimpleSelect/props.js +0 -130
  15. package/package.json +15 -15
  16. package/src/SimpleSelect/Group/index.tsx +3 -4
  17. package/src/SimpleSelect/Group/props.ts +10 -8
  18. package/src/SimpleSelect/Option/index.tsx +2 -2
  19. package/src/SimpleSelect/Option/props.ts +35 -21
  20. package/src/SimpleSelect/index.tsx +92 -111
  21. package/src/SimpleSelect/props.ts +147 -94
  22. package/tsconfig.build.tsbuildinfo +1 -1
  23. package/types/SimpleSelect/Group/index.d.ts +4 -5
  24. package/types/SimpleSelect/Group/index.d.ts.map +1 -1
  25. package/types/SimpleSelect/Group/props.d.ts +7 -1
  26. package/types/SimpleSelect/Group/props.d.ts.map +1 -1
  27. package/types/SimpleSelect/Option/index.d.ts +7 -7
  28. package/types/SimpleSelect/Option/index.d.ts.map +1 -1
  29. package/types/SimpleSelect/Option/props.d.ts +30 -4
  30. package/types/SimpleSelect/Option/props.d.ts.map +1 -1
  31. package/types/SimpleSelect/SimpleSelectLocator.d.ts +4 -4
  32. package/types/SimpleSelect/index.d.ts +45 -61
  33. package/types/SimpleSelect/index.d.ts.map +1 -1
  34. package/types/SimpleSelect/props.d.ts +127 -16
  35. package/types/SimpleSelect/props.d.ts.map +1 -1
@@ -5,20 +5,19 @@ import type { SimpleSelectGroupProps } from './props';
5
5
  parent: SimpleSelect
6
6
  id: SimpleSelect.Group
7
7
  ---
8
+ @tsProps
8
9
  **/
9
10
  declare class Group extends Component<SimpleSelectGroupProps> {
10
11
  static readonly componentId = "SimpleSelect.Group";
11
12
  static allowedProps: readonly (keyof {
12
- renderLabel: import("react").ReactNode | ((...args: any[]) => any);
13
+ renderLabel: import("react").ReactNode | (() => import("react").ReactNode);
13
14
  children?: import("react").ReactNode;
14
15
  })[];
15
16
  static propTypes: import("@instructure/shared-types/types/UtilityTypes").PropValidators<keyof {
16
- renderLabel: import("react").ReactNode | ((...args: any[]) => any);
17
+ renderLabel: import("react").ReactNode | (() => import("react").ReactNode);
17
18
  children?: import("react").ReactNode;
18
19
  }>;
19
- static defaultProps: {
20
- children: null;
21
- };
20
+ static defaultProps: {};
22
21
  render(): null;
23
22
  }
24
23
  export default Group;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/SimpleSelect/Group/index.tsx"],"names":[],"mappings":"AAwBA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAEjC,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,SAAS,CAAA;AAGrD;;;;;GAKG;AACH,cAAM,KAAM,SAAQ,SAAS,CAAC,sBAAsB,CAAC;IACnD,MAAM,CAAC,QAAQ,CAAC,WAAW,wBAAuB;IAClD,MAAM,CAAC,YAAY;;;SAAe;IAClC,MAAM,CAAC,SAAS;;;OAAY;IAE5B,MAAM,CAAC,YAAY;;MAElB;IAGD,MAAM;CAKP;AAED,eAAe,KAAK,CAAA;AACpB,OAAO,EAAE,KAAK,EAAE,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/SimpleSelect/Group/index.tsx"],"names":[],"mappings":"AAwBA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAEjC,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,SAAS,CAAA;AAGrD;;;;;;GAMG;AACH,cAAM,KAAM,SAAQ,SAAS,CAAC,sBAAsB,CAAC;IACnD,MAAM,CAAC,QAAQ,CAAC,WAAW,wBAAuB;IAElD,MAAM,CAAC,YAAY;;;SAAe;IAClC,MAAM,CAAC,SAAS;;;OAAY;IAC5B,MAAM,CAAC,YAAY,KAAK;IAGxB,MAAM;CAKP;AAED,eAAe,KAAK,CAAA;AACpB,OAAO,EAAE,KAAK,EAAE,CAAA"}
@@ -1,7 +1,13 @@
1
1
  import React from 'react';
2
2
  import type { OtherHTMLAttributes, PropValidators } from '@instructure/shared-types';
3
3
  declare type SimpleSelectGroupOwnProps = {
4
- renderLabel: React.ReactNode | ((...args: any[]) => any);
4
+ /**
5
+ * The label associated with the group options.
6
+ */
7
+ renderLabel: React.ReactNode | (() => React.ReactNode);
8
+ /**
9
+ * Children of type `<SimpleSelect.Option />` that will be considered part of the group.
10
+ */
5
11
  children?: React.ReactNode;
6
12
  };
7
13
  declare type PropKeys = keyof SimpleSelectGroupOwnProps;
@@ -1 +1 @@
1
- {"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../../src/SimpleSelect/Group/props.ts"],"names":[],"mappings":"AAuBA,OAAO,KAAK,MAAM,OAAO,CAAA;AAOzB,OAAO,KAAK,EACV,mBAAmB,EACnB,cAAc,EACf,MAAM,2BAA2B,CAAA;AAElC,aAAK,yBAAyB,GAAG;IAC/B,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;AACD,aAAK,QAAQ,GAAG,MAAM,yBAAyB,CAAA;AAE/C,aAAK,eAAe,GAAG,QAAQ,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAA;AAEhD,aAAK,sBAAsB,GAAG,yBAAyB,GACrD,mBAAmB,CAAC,yBAAyB,CAAC,CAAA;AAEhD,QAAA,MAAM,SAAS,EAAE,cAAc,CAAC,QAAQ,CASvC,CAAA;AAED,QAAA,MAAM,YAAY,EAAE,eAA6C,CAAA;AAEjE,YAAY,EAAE,sBAAsB,EAAE,CAAA;AACtC,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,CAAA"}
1
+ {"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../../src/SimpleSelect/Group/props.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,MAAM,OAAO,CAAA;AAOzB,OAAO,KAAK,EACV,mBAAmB,EACnB,cAAc,EACf,MAAM,2BAA2B,CAAA;AAElC,aAAK,yBAAyB,GAAG;IAC/B;;OAEG;IACH,WAAW,EAAE,KAAK,CAAC,SAAS,GAAG,CAAC,MAAM,KAAK,CAAC,SAAS,CAAC,CAAA;IACtD;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;CAC3B,CAAA;AAED,aAAK,QAAQ,GAAG,MAAM,yBAAyB,CAAA;AAE/C,aAAK,eAAe,GAAG,QAAQ,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAA;AAEhD,aAAK,sBAAsB,GAAG,yBAAyB,GACrD,mBAAmB,CAAC,yBAAyB,CAAC,CAAA;AAEhD,QAAA,MAAM,SAAS,EAAE,cAAc,CAAC,QAAQ,CAGvC,CAAA;AAED,QAAA,MAAM,YAAY,EAAE,eAA6C,CAAA;AAEjE,YAAY,EAAE,sBAAsB,EAAE,CAAA;AACtC,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,CAAA"}
@@ -5,6 +5,7 @@ import type { SimpleSelectOptionProps } from './props';
5
5
  parent: SimpleSelect
6
6
  id: SimpleSelect.Option
7
7
  ---
8
+ @tsProps
8
9
  **/
9
10
  declare class Option extends Component<SimpleSelectOptionProps> {
10
11
  static readonly componentId = "SimpleSelect.Option";
@@ -12,21 +13,20 @@ declare class Option extends Component<SimpleSelectOptionProps> {
12
13
  id: string;
13
14
  value: string | number;
14
15
  isDisabled?: boolean | undefined;
15
- renderBeforeLabel?: import("react").ReactNode | ((...args: any[]) => any);
16
- renderAfterLabel?: import("react").ReactNode | ((...args: any[]) => any);
17
- children?: import("react").ReactNode;
16
+ children?: string | undefined;
17
+ renderBeforeLabel?: import("./props").RenderSimpleSelectOptionLabel;
18
+ renderAfterLabel?: import("./props").RenderSimpleSelectOptionLabel;
18
19
  })[];
19
20
  static propTypes: import("@instructure/shared-types/types/UtilityTypes").PropValidators<keyof {
20
21
  id: string;
21
22
  value: string | number;
22
23
  isDisabled?: boolean | undefined;
23
- renderBeforeLabel?: import("react").ReactNode | ((...args: any[]) => any);
24
- renderAfterLabel?: import("react").ReactNode | ((...args: any[]) => any);
25
- children?: import("react").ReactNode;
24
+ children?: string | undefined;
25
+ renderBeforeLabel?: import("./props").RenderSimpleSelectOptionLabel;
26
+ renderAfterLabel?: import("./props").RenderSimpleSelectOptionLabel;
26
27
  }>;
27
28
  static defaultProps: {
28
29
  isDisabled: boolean;
29
- children: null;
30
30
  };
31
31
  render(): null;
32
32
  }
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/SimpleSelect/Option/index.tsx"],"names":[],"mappings":"AAwBA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AACjC,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,SAAS,CAAA;AAGtD;;;;;GAKG;AACH,cAAM,MAAO,SAAQ,SAAS,CAAC,uBAAuB,CAAC;IACrD,MAAM,CAAC,QAAQ,CAAC,WAAW,yBAAwB;IAEnD,MAAM,CAAC,YAAY;;;;;;;SAAe;IAClC,MAAM,CAAC,SAAS;;;;;;;OAAY;IAC5B,MAAM,CAAC,YAAY;;;MAGlB;IAGD,MAAM;CAKP;AAED,eAAe,MAAM,CAAA;AACrB,OAAO,EAAE,MAAM,EAAE,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/SimpleSelect/Option/index.tsx"],"names":[],"mappings":"AAwBA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AACjC,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,SAAS,CAAA;AAGtD;;;;;;GAMG;AACH,cAAM,MAAO,SAAQ,SAAS,CAAC,uBAAuB,CAAC;IACrD,MAAM,CAAC,QAAQ,CAAC,WAAW,yBAAwB;IAEnD,MAAM,CAAC,YAAY;;;;;;;SAAe;IAClC,MAAM,CAAC,SAAS;;;;;;;OAAY;IAC5B,MAAM,CAAC,YAAY;;MAElB;IAGD,MAAM;CAKP;AAED,eAAe,MAAM,CAAA;AACrB,OAAO,EAAE,MAAM,EAAE,CAAA"}
@@ -1,18 +1,44 @@
1
1
  import React from 'react';
2
2
  import type { OtherHTMLAttributes, PropValidators } from '@instructure/shared-types';
3
+ declare type OptionProps = {
4
+ id: SimpleSelectOptionOwnProps['id'];
5
+ isDisabled: SimpleSelectOptionOwnProps['isDisabled'];
6
+ isSelected: boolean;
7
+ isHighlighted: boolean;
8
+ children: SimpleSelectOptionOwnProps['children'];
9
+ };
10
+ declare type RenderSimpleSelectOptionLabel = React.ReactNode | ((args: OptionProps) => React.ReactNode);
3
11
  declare type SimpleSelectOptionOwnProps = {
12
+ /**
13
+ * The id for the option.
14
+ */
4
15
  id: string;
16
+ /**
17
+ * The value for the option.
18
+ */
5
19
  value: string | number;
20
+ /**
21
+ * Whether or not this option is disabled.
22
+ */
6
23
  isDisabled?: boolean;
7
- renderBeforeLabel?: React.ReactNode | ((...args: any[]) => any);
8
- renderAfterLabel?: React.ReactNode | ((...args: any[]) => any);
9
- children?: React.ReactNode;
24
+ /**
25
+ * Content to display as the option label.
26
+ */
27
+ children?: string;
28
+ /**
29
+ * Content to display before the option label, such as an icon.
30
+ */
31
+ renderBeforeLabel?: RenderSimpleSelectOptionLabel;
32
+ /**
33
+ * Content to display after the option label, such as an icon.
34
+ */
35
+ renderAfterLabel?: RenderSimpleSelectOptionLabel;
10
36
  };
11
37
  declare type PropKeys = keyof SimpleSelectOptionOwnProps;
12
38
  declare type AllowedPropKeys = Readonly<Array<PropKeys>>;
13
39
  declare type SimpleSelectOptionProps = SimpleSelectOptionOwnProps & OtherHTMLAttributes<SimpleSelectOptionOwnProps>;
14
40
  declare const propTypes: PropValidators<PropKeys>;
15
41
  declare const allowedProps: AllowedPropKeys;
16
- export type { SimpleSelectOptionProps };
42
+ export type { SimpleSelectOptionProps, RenderSimpleSelectOptionLabel };
17
43
  export { propTypes, allowedProps };
18
44
  //# sourceMappingURL=props.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../../src/SimpleSelect/Option/props.ts"],"names":[],"mappings":"AAuBA,OAAO,KAAK,MAAM,OAAO,CAAA;AAGzB,OAAO,KAAK,EACV,mBAAmB,EACnB,cAAc,EACf,MAAM,2BAA2B,CAAA;AAElC,aAAK,0BAA0B,GAAG;IAChC,EAAE,EAAE,MAAM,CAAA;IACV,KAAK,EAAE,MAAM,GAAG,MAAM,CAAA;IACtB,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;AACD,aAAK,QAAQ,GAAG,MAAM,0BAA0B,CAAA;AAEhD,aAAK,eAAe,GAAG,QAAQ,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAA;AAEhD,aAAK,uBAAuB,GAAG,0BAA0B,GACvD,mBAAmB,CAAC,0BAA0B,CAAC,CAAA;AAEjD,QAAA,MAAM,SAAS,EAAE,cAAc,CAAC,QAAQ,CAyBvC,CAAA;AAED,QAAA,MAAM,YAAY,EAAE,eAOnB,CAAA;AAED,YAAY,EAAE,uBAAuB,EAAE,CAAA;AACvC,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,CAAA"}
1
+ {"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../../src/SimpleSelect/Option/props.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,MAAM,OAAO,CAAA;AAGzB,OAAO,KAAK,EACV,mBAAmB,EACnB,cAAc,EACf,MAAM,2BAA2B,CAAA;AAElC,aAAK,WAAW,GAAG;IACjB,EAAE,EAAE,0BAA0B,CAAC,IAAI,CAAC,CAAA;IACpC,UAAU,EAAE,0BAA0B,CAAC,YAAY,CAAC,CAAA;IACpD,UAAU,EAAE,OAAO,CAAA;IACnB,aAAa,EAAE,OAAO,CAAA;IACtB,QAAQ,EAAE,0BAA0B,CAAC,UAAU,CAAC,CAAA;CACjD,CAAA;AAED,aAAK,6BAA6B,GAC9B,KAAK,CAAC,SAAS,GACf,CAAC,CAAC,IAAI,EAAE,WAAW,KAAK,KAAK,CAAC,SAAS,CAAC,CAAA;AAE5C,aAAK,0BAA0B,GAAG;IAChC;;OAEG;IACH,EAAE,EAAE,MAAM,CAAA;IACV;;OAEG;IACH,KAAK,EAAE,MAAM,GAAG,MAAM,CAAA;IACtB;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB;;OAEG;IACH,iBAAiB,CAAC,EAAE,6BAA6B,CAAA;IACjD;;OAEG;IACH,gBAAgB,CAAC,EAAE,6BAA6B,CAAA;CACjD,CAAA;AAED,aAAK,QAAQ,GAAG,MAAM,0BAA0B,CAAA;AAEhD,aAAK,eAAe,GAAG,QAAQ,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAA;AAEhD,aAAK,uBAAuB,GAAG,0BAA0B,GACvD,mBAAmB,CAAC,0BAA0B,CAAC,CAAA;AAEjD,QAAA,MAAM,SAAS,EAAE,cAAc,CAAC,QAAQ,CAOvC,CAAA;AAED,QAAA,MAAM,YAAY,EAAE,eAOnB,CAAA;AAED,YAAY,EAAE,uBAAuB,EAAE,6BAA6B,EAAE,CAAA;AACtE,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,CAAA"}
@@ -39,7 +39,7 @@ export declare const SimpleSelectLocator: {
39
39
  debug: (maxLength?: number | undefined, options?: {
40
40
  highlight: boolean;
41
41
  } | undefined) => void;
42
- accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
42
+ accessible: (options?: Record<string, unknown> | undefined) => Promise<true | Error>;
43
43
  getTextContent: () => string | null;
44
44
  getParentNode: () => ParentNode | null;
45
45
  parent: () => ParentNode | null;
@@ -181,7 +181,7 @@ export declare const SimpleSelectLocator: {
181
181
  debug: (maxLength?: number | undefined, options?: {
182
182
  highlight: boolean;
183
183
  } | undefined) => void;
184
- accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
184
+ accessible: (options?: Record<string, unknown> | undefined) => Promise<true | Error>;
185
185
  getTextContent: () => string | null;
186
186
  getParentNode: () => ParentNode | null;
187
187
  parent: () => ParentNode | null;
@@ -323,7 +323,7 @@ export declare const SimpleSelectLocator: {
323
323
  debug: (maxLength?: number | undefined, options?: {
324
324
  highlight: boolean;
325
325
  } | undefined) => void;
326
- accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
326
+ accessible: (options?: Record<string, unknown> | undefined) => Promise<true | Error>;
327
327
  getTextContent: () => string | null;
328
328
  getParentNode: () => ParentNode | null;
329
329
  parent: () => ParentNode | null;
@@ -465,7 +465,7 @@ export declare const SimpleSelectLocator: {
465
465
  debug: (maxLength?: number | undefined, options?: {
466
466
  highlight: boolean;
467
467
  } | undefined) => void;
468
- accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
468
+ accessible: (options?: Record<string, unknown> | undefined) => Promise<true | Error>;
469
469
  getTextContent: () => string | null;
470
470
  getParentNode: () => ParentNode | null;
471
471
  parent: () => ParentNode | null;
@@ -1,22 +1,28 @@
1
1
  import React, { Component } from 'react';
2
+ import { Select } from '@instructure/ui-select';
2
3
  import type { SelectProps } from '@instructure/ui-select';
3
4
  import { Option } from './Option';
5
+ import type { SimpleSelectOptionProps } from './Option/props';
4
6
  import { Group } from './Group';
7
+ import type { SimpleSelectGroupProps } from './Group/props';
5
8
  import type { SimpleSelectProps } from './props';
9
+ import { SimpleSelectState } from './props';
10
+ declare type OptionChild = React.ComponentElement<SimpleSelectOptionProps, Option>;
11
+ declare type GroupChild = React.ComponentElement<SimpleSelectGroupProps, Group>;
12
+ declare type GetOption = <F extends 'id' | 'value'>(field: F, value?: SimpleSelectOptionProps[F]) => OptionChild | undefined;
6
13
  /**
7
14
  ---
8
15
  category: components
9
16
  tags: form, field, dropdown
10
17
  ---
18
+ @tsProps
11
19
  **/
12
- declare class SimpleSelect extends Component<SimpleSelectProps> {
20
+ declare class SimpleSelect extends Component<SimpleSelectProps, SimpleSelectState> {
13
21
  static readonly componentId = "SimpleSelect";
14
22
  static Option: typeof Option;
15
23
  static Group: typeof Group;
16
- static allowedProps: readonly (keyof {
17
- renderLabel: React.ReactNode | ((...args: any[]) => any);
18
- value?: string | number | undefined;
19
- defaultValue?: string | undefined;
24
+ static allowedProps: readonly ("children" | "value" | "defaultValue" | "onChange" | keyof {
25
+ renderLabel: React.ReactNode | (() => React.ReactNode);
20
26
  id?: string | undefined;
21
27
  size?: "small" | "medium" | "large" | undefined;
22
28
  assistiveText?: string | undefined;
@@ -31,22 +37,15 @@ declare class SimpleSelect extends Component<SimpleSelectProps> {
31
37
  placement?: import("@instructure/ui-position").PlacementPropValues | undefined;
32
38
  constrain?: import("@instructure/ui-position").PositionConstraint | undefined;
33
39
  mountNode?: import("@instructure/ui-position").PositionMountNode | undefined;
34
- onChange?: ((...args: any[]) => any) | undefined;
35
- onFocus?: ((...args: any[]) => any) | undefined;
36
- onBlur?: ((...args: any[]) => any) | undefined;
37
- onShowOptions?: ((...args: any[]) => any) | undefined;
38
- onHideOptions?: ((...args: any[]) => any) | undefined;
39
- inputRef?: ((...args: any[]) => any) | undefined;
40
- listRef?: ((...args: any[]) => any) | undefined;
41
- renderEmptyOption?: React.ReactNode | ((...args: any[]) => any);
42
- renderBeforeInput?: React.ReactNode | ((...args: any[]) => any);
43
- renderAfterInput?: React.ReactNode | ((...args: any[]) => any);
44
- children?: React.ReactNode;
45
- })[];
46
- static propTypes: import("@instructure/shared-types/types/UtilityTypes").PropValidators<keyof {
47
- renderLabel: React.ReactNode | ((...args: any[]) => any);
48
- value?: string | number | undefined;
49
- defaultValue?: string | undefined;
40
+ inputRef?: ((inputElement: HTMLInputElement | null) => void) | undefined;
41
+ listRef?: ((listElement: HTMLUListElement | null) => void) | undefined;
42
+ renderBeforeInput?: React.ReactNode | (() => React.ReactNode);
43
+ renderAfterInput?: React.ReactNode | (() => React.ReactNode);
44
+ onFocus?: ((event: React.FocusEvent<HTMLInputElement, Element>) => void) | undefined;
45
+ onBlur?: ((event: React.FocusEvent<HTMLInputElement, Element>) => void) | undefined;
46
+ } | "onShowOptions" | "onHideOptions" | "renderEmptyOption")[];
47
+ static propTypes: import("@instructure/shared-types/types/UtilityTypes").PropValidators<"children" | "value" | "defaultValue" | "onChange" | keyof {
48
+ renderLabel: React.ReactNode | (() => React.ReactNode);
50
49
  id?: string | undefined;
51
50
  size?: "small" | "medium" | "large" | undefined;
52
51
  assistiveText?: string | undefined;
@@ -61,62 +60,47 @@ declare class SimpleSelect extends Component<SimpleSelectProps> {
61
60
  placement?: import("@instructure/ui-position").PlacementPropValues | undefined;
62
61
  constrain?: import("@instructure/ui-position").PositionConstraint | undefined;
63
62
  mountNode?: import("@instructure/ui-position").PositionMountNode | undefined;
64
- onChange?: ((...args: any[]) => any) | undefined;
65
- onFocus?: ((...args: any[]) => any) | undefined;
66
- onBlur?: ((...args: any[]) => any) | undefined;
67
- onShowOptions?: ((...args: any[]) => any) | undefined;
68
- onHideOptions?: ((...args: any[]) => any) | undefined;
69
- inputRef?: ((...args: any[]) => any) | undefined;
70
- listRef?: ((...args: any[]) => any) | undefined;
71
- renderEmptyOption?: React.ReactNode | ((...args: any[]) => any);
72
- renderBeforeInput?: React.ReactNode | ((...args: any[]) => any);
73
- renderAfterInput?: React.ReactNode | ((...args: any[]) => any);
74
- children?: React.ReactNode;
75
- }>;
63
+ inputRef?: ((inputElement: HTMLInputElement | null) => void) | undefined;
64
+ listRef?: ((listElement: HTMLUListElement | null) => void) | undefined;
65
+ renderBeforeInput?: React.ReactNode | (() => React.ReactNode);
66
+ renderAfterInput?: React.ReactNode | (() => React.ReactNode);
67
+ onFocus?: ((event: React.FocusEvent<HTMLInputElement, Element>) => void) | undefined;
68
+ onBlur?: ((event: React.FocusEvent<HTMLInputElement, Element>) => void) | undefined;
69
+ } | "onShowOptions" | "onHideOptions" | "renderEmptyOption">;
76
70
  static defaultProps: {
77
71
  size: string;
78
- placeholder: null;
79
72
  isRequired: boolean;
80
73
  isInline: boolean;
81
74
  visibleOptionsCount: number;
82
75
  placement: string;
83
76
  constrain: string;
84
- onChange: (event: any, data: any) => void;
85
- onFocus: (event: any) => void;
86
- onBlur: (event: any) => void;
87
- onShowOptions: (event: any) => void;
88
- onHideOptions: (event: any) => void;
89
- inputRef: (node: any) => void;
90
- listRef: (node: any) => void;
91
77
  renderEmptyOption: string;
92
- renderBeforeInput: null;
93
- renderAfterInput: null;
94
- children: null;
95
78
  };
96
- ref: Element | null;
97
- constructor(props: any);
98
- _emptyOptionId: string;
99
- get _select(): Element | null;
79
+ ref: Select | null;
80
+ private readonly _emptyOptionId;
81
+ constructor(props: SimpleSelectProps);
82
+ get _select(): Select | null;
83
+ get childrenArray(): (OptionChild | GroupChild)[];
100
84
  focus(): void;
101
- get focused(): any;
102
- get id(): string | null;
85
+ get focused(): boolean;
86
+ get id(): string | undefined;
103
87
  get isControlled(): boolean;
104
88
  get interaction(): import("@instructure/ui-react-utils").InteractionType;
105
- componentDidUpdate(prevProps: any): void;
106
- getInitialOption(props: any): {} | null;
107
- getOptionLabelById(id: any): any;
108
- getOptionByIndex(index: any): {} | null;
109
- getOption(field: any, value: any): {} | null;
110
- handleRef: (node: any) => void;
111
- handleBlur: (event: any) => void;
89
+ componentDidUpdate(prevProps: SimpleSelectProps): void;
90
+ getInitialOption(props: SimpleSelectProps): OptionChild | undefined;
91
+ getOptionLabelById(id: string): string | undefined;
92
+ getFirstOption(): OptionChild | undefined;
93
+ getOption: GetOption;
94
+ handleRef: (node: Select) => void;
95
+ handleBlur: SelectProps['onBlur'];
112
96
  handleShowOptions: SelectProps['onRequestShowOptions'];
113
97
  handleHideOptions: SelectProps['onRequestHideOptions'];
114
98
  handleHighlightOption: SelectProps['onRequestHighlightOption'];
115
99
  handleSelectOption: SelectProps['onRequestSelectOption'];
116
- renderChildren(): JSX.Element | (React.ReactChild | React.ReactFragment | React.ReactPortal)[];
117
- renderEmptyOption(): JSX.Element;
118
- renderOption(option: any): JSX.Element;
119
- renderGroup(group: any): JSX.Element;
100
+ renderChildren(): OptionChild | (OptionChild | GroupChild)[];
101
+ renderEmptyOption(): OptionChild;
102
+ renderOption(option: OptionChild): OptionChild;
103
+ renderGroup(group: GroupChild): GroupChild;
120
104
  render(): JSX.Element;
121
105
  }
122
106
  export { SimpleSelect };
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/SimpleSelect/index.tsx"],"names":[],"mappings":"AAwBA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAY,MAAM,OAAO,CAAA;AAYlD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAA;AAEzD,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAA;AACjC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAE/B,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAA;AAGhD;;;;;GAKG;AACH,cACM,YAAa,SAAQ,SAAS,CAAC,iBAAiB,CAAC;IACrD,MAAM,CAAC,QAAQ,CAAC,WAAW,kBAAiB;IAE5C,MAAM,CAAC,MAAM,gBAAS;IACtB,MAAM,CAAC,KAAK,eAAQ;IAEpB,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SAAe;IAClC,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAAY;IAE5B,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;;;;;MA0BlB;IAED,GAAG,EAAE,OAAO,GAAG,IAAI,CAAO;gBAGd,KAAK,KAAA;IAejB,cAAc,SAA4B;IAE1C,IAAI,OAAO,mBAMV;IAED,KAAK;IAKL,IAAI,OAAO,QAGV;IAED,IAAI,EAAE,kBAEL;IAED,IAAI,YAAY,YAEf;IAED,IAAI,WAAW,0DAEd;IAGD,kBAAkB,CAAC,SAAS,KAAA;IAiB5B,gBAAgB,CAAC,KAAK,KAAA;IAatB,kBAAkB,CAAC,EAAE,KAAA;IAOrB,gBAAgB,CAAC,KAAK,KAAA;IAqBtB,SAAS,CAAC,KAAK,KAAA,EAAE,KAAK,KAAA;IA6BtB,SAAS,sBAER;IAGD,UAAU,uBAIT;IAED,iBAAiB,EAAE,WAAW,CAAC,sBAAsB,CAAC,CAIrD;IAED,iBAAiB,EAAE,WAAW,CAAC,sBAAsB,CAAC,CAarD;IAED,qBAAqB,EAAE,WAAW,CAAC,0BAA0B,CAAC,CAgB7D;IAED,kBAAkB,EAAE,WAAW,CAAC,uBAAuB,CAAC,CA8BvD;IAED,cAAc;IAmBd,iBAAiB;IAajB,YAAY,CAAC,MAAM,KAAA;IAgDnB,WAAW,CAAC,KAAK,KAAA;IAajB,MAAM;CAuEP;AAED,OAAO,EAAE,YAAY,EAAE,CAAA;AACvB,eAAe,YAAY,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/SimpleSelect/index.tsx"],"names":[],"mappings":"AAwBA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAY,MAAM,OAAO,CAAA;AAWlD,OAAO,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAA;AAC/C,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAA;AAEzD,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAA;AACjC,OAAO,KAAK,EACV,uBAAuB,EAExB,MAAM,gBAAgB,CAAA;AAEvB,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAC/B,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,eAAe,CAAA;AAE3D,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAA;AAChD,OAAO,EAA2B,iBAAiB,EAAE,MAAM,SAAS,CAAA;AAEpE,aAAK,WAAW,GAAG,KAAK,CAAC,gBAAgB,CAAC,uBAAuB,EAAE,MAAM,CAAC,CAAA;AAC1E,aAAK,UAAU,GAAG,KAAK,CAAC,gBAAgB,CAAC,sBAAsB,EAAE,KAAK,CAAC,CAAA;AAEvE,aAAK,SAAS,GAAG,CAAC,CAAC,SAAS,IAAI,GAAG,OAAO,EACxC,KAAK,EAAE,CAAC,EACR,KAAK,CAAC,EAAE,uBAAuB,CAAC,CAAC,CAAC,KAC/B,WAAW,GAAG,SAAS,CAAA;AAE5B;;;;;;GAMG;AACH,cACM,YAAa,SAAQ,SAAS,CAAC,iBAAiB,EAAE,iBAAiB,CAAC;IACxE,MAAM,CAAC,QAAQ,CAAC,WAAW,kBAAiB;IAE5C,MAAM,CAAC,MAAM,gBAAS;IACtB,MAAM,CAAC,KAAK,eAAQ;IAEpB,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;;;mEAAe;IAClC,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;iEAAY;IAE5B,MAAM,CAAC,YAAY;;;;;;;;MAQlB;IAED,GAAG,EAAE,MAAM,GAAG,IAAI,CAAO;IAEzB,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAA;gBAEnB,KAAK,EAAE,iBAAiB;IAepC,IAAI,OAAO,kBAMV;IAED,IAAI,aAAa,iCAIhB;IAED,KAAK;IAIL,IAAI,OAAO,YAEV;IAED,IAAI,EAAE,uBAEL;IAED,IAAI,YAAY,YAEf;IAED,IAAI,WAAW,0DAEd;IAED,kBAAkB,CAAC,SAAS,EAAE,iBAAiB;IAc/C,gBAAgB,CAAC,KAAK,EAAE,iBAAiB;IAYzC,kBAAkB,CAAC,EAAE,EAAE,MAAM;IAK7B,cAAc;IAsBd,SAAS,EAAE,SAAS,CAwBnB;IAED,SAAS,SAAU,MAAM,UAExB;IAED,UAAU,EAAE,WAAW,CAAC,QAAQ,CAAC,CAKhC;IAED,iBAAiB,EAAE,WAAW,CAAC,sBAAsB,CAAC,CAKrD;IAED,iBAAiB,EAAE,WAAW,CAAC,sBAAsB,CAAC,CAYrD;IAED,qBAAqB,EAAE,WAAW,CAAC,0BAA0B,CAAC,CAc7D;IAED,kBAAkB,EAAE,WAAW,CAAC,uBAAuB,CAAC,CA8BvD;IAED,cAAc;IAkBd,iBAAiB;IAYjB,YAAY,CAAC,MAAM,EAAE,WAAW;IA2ChC,WAAW,CAAC,KAAK,EAAE,UAAU;IAe7B,MAAM;CAoEP;AAED,OAAO,EAAE,YAAY,EAAE,CAAA;AACvB,eAAe,YAAY,CAAA"}
@@ -1,42 +1,153 @@
1
1
  import React, { InputHTMLAttributes } from 'react';
2
2
  import type { FormMessage } from '@instructure/ui-form-field';
3
- import type { OtherHTMLAttributes, PropValidators } from '@instructure/shared-types';
3
+ import type { OtherHTMLAttributes, PickPropsWithExceptions, PropValidators } from '@instructure/shared-types';
4
4
  import type { PlacementPropValues, PositionConstraint, PositionMountNode } from '@instructure/ui-position';
5
- declare type SimpleSelectOwnProps = {
6
- renderLabel: React.ReactNode | ((...args: any[]) => any);
5
+ import type { SelectOwnProps } from '@instructure/ui-select';
6
+ declare type SimpleSelectOwnProps = PropsPassedToSelect & {
7
+ /**
8
+ * The value corresponding to the value of the selected option. If defined,
9
+ * the component will act controlled and will not manage its own state.
10
+ */
7
11
  value?: string | number;
12
+ /**
13
+ * The value of the option to select by default, when uncontrolled.
14
+ */
8
15
  defaultValue?: string;
16
+ /**
17
+ * Callback fired when a new option is selected.
18
+ */
19
+ onChange?: (event: React.SyntheticEvent, data: {
20
+ value?: string | number;
21
+ id?: string;
22
+ }) => void;
23
+ /**
24
+ * Callback fired when the options list is shown.
25
+ */
26
+ onShowOptions?: (event: React.SyntheticEvent) => void;
27
+ /**
28
+ * Callback fired when the options list is hidden.
29
+ */
30
+ onHideOptions?: (event: React.SyntheticEvent) => void;
31
+ /**
32
+ * Content to display in the list when no options are available.
33
+ */
34
+ renderEmptyOption?: React.ReactNode | (() => React.ReactNode);
35
+ /**
36
+ * Children of type `<SimpleSelect.Option />` or `<SimpleSelect.Group />`.
37
+ */
38
+ children?: React.ReactNode;
39
+ };
40
+ declare type PropsPassedToSelect = {
41
+ /**
42
+ * The form field label.
43
+ */
44
+ renderLabel: React.ReactNode | (() => React.ReactNode);
45
+ /**
46
+ * The id of the text input. One is generated if not supplied.
47
+ */
9
48
  id?: string;
49
+ /**
50
+ * The size of the text input.
51
+ */
10
52
  size?: 'small' | 'medium' | 'large';
53
+ /**
54
+ * Additional helpful text to provide to screen readers about the operation
55
+ * of the component. Provided via aria-describedby.
56
+ */
11
57
  assistiveText?: string;
58
+ /**
59
+ * Html placeholder text to display when the input has no value. This should
60
+ * be hint text, not a label replacement.
61
+ */
12
62
  placeholder?: string;
63
+ /**
64
+ * Specifies if interaction with the input is enabled, disabled, or readonly.
65
+ * When "disabled", the input changes visibly to indicate that it cannot
66
+ * receive user interactions. When "readonly" the input still cannot receive
67
+ * user interactions but it keeps the same styles as if it were enabled.
68
+ */
13
69
  interaction?: 'enabled' | 'disabled' | 'readonly';
70
+ /**
71
+ * Whether or not the text input is required.
72
+ */
14
73
  isRequired?: boolean;
74
+ /**
75
+ * Whether the input is rendered inline with other elements or if it
76
+ * is rendered as a block level element.
77
+ */
15
78
  isInline?: boolean;
79
+ /**
80
+ * The width of the text input.
81
+ */
16
82
  width?: string;
83
+ /**
84
+ * The max width the options list can be before option text wraps. If not
85
+ * set, the list will only display as wide as the text input.
86
+ */
17
87
  optionsMaxWidth?: string;
88
+ /**
89
+ * The number of options that should be visible before having to scroll.
90
+ */
18
91
  visibleOptionsCount?: number;
92
+ /**
93
+ * Displays messages and validation for the input. It should be an array of
94
+ * objects with the following shape:
95
+ * `{
96
+ * text: ReactNode,
97
+ * type: One of: ['error', 'hint', 'success', 'screenreader-only']
98
+ * }`
99
+ */
19
100
  messages?: FormMessage[];
101
+ /**
102
+ * The placement of the options list.
103
+ */
20
104
  placement?: PlacementPropValues;
105
+ /**
106
+ * The parent in which to constrain the placement.
107
+ */
21
108
  constrain?: PositionConstraint;
109
+ /**
110
+ * An element or a function returning an element to use mount the options
111
+ * list to in the DOM (defaults to `document.body`)
112
+ */
22
113
  mountNode?: PositionMountNode;
23
- onChange?: (...args: any[]) => any;
24
- onFocus?: (...args: any[]) => any;
25
- onBlur?: (...args: any[]) => any;
26
- onShowOptions?: (...args: any[]) => any;
27
- onHideOptions?: (...args: any[]) => any;
28
- inputRef?: (...args: any[]) => any;
29
- listRef?: (...args: any[]) => any;
30
- renderEmptyOption?: React.ReactNode | ((...args: any[]) => any);
31
- renderBeforeInput?: React.ReactNode | ((...args: any[]) => any);
32
- renderAfterInput?: React.ReactNode | ((...args: any[]) => any);
33
- children?: React.ReactNode;
114
+ /**
115
+ * A ref to the html `input` element.
116
+ */
117
+ inputRef?: (inputElement: HTMLInputElement | null) => void;
118
+ /**
119
+ * A ref to the html `ul` element.
120
+ */
121
+ listRef?: (listElement: HTMLUListElement | null) => void;
122
+ /**
123
+ * Content to display before the text input. This will commonly be an icon.
124
+ */
125
+ renderBeforeInput?: React.ReactNode | (() => React.ReactNode);
126
+ /**
127
+ * Content to display after the text input. This content will replace the
128
+ * default arrow icons.
129
+ */
130
+ renderAfterInput?: React.ReactNode | (() => React.ReactNode);
131
+ /**
132
+ * Callback fired when text input receives focus.
133
+ */
134
+ onFocus?: (event: React.FocusEvent<HTMLInputElement>) => void;
135
+ /**
136
+ * Callback fired when text input loses focus.
137
+ */
138
+ onBlur?: (event: React.FocusEvent<HTMLInputElement>) => void;
34
139
  };
35
140
  declare type PropKeys = keyof SimpleSelectOwnProps;
36
141
  declare type AllowedPropKeys = Readonly<Array<PropKeys>>;
37
- declare type SimpleSelectProps = SimpleSelectOwnProps & OtherHTMLAttributes<SimpleSelectOwnProps, InputHTMLAttributes<SimpleSelectOwnProps>>;
142
+ declare type SimpleSelectProps = PickPropsWithExceptions<SelectOwnProps, keyof PropsPassedToSelect | 'children' | 'onRequestShowOptions' | 'onRequestHideOptions' | 'onRequestHighlightOption' | 'onRequestSelectOption' | 'inputValue' | 'isShowingOptions'> & SimpleSelectOwnProps & OtherHTMLAttributes<SimpleSelectOwnProps, InputHTMLAttributes<SimpleSelectOwnProps>>;
143
+ declare type SimpleSelectState = {
144
+ inputValue?: string;
145
+ isShowingOptions: boolean;
146
+ highlightedOptionId?: string;
147
+ selectedOptionId?: string;
148
+ };
38
149
  declare const propTypes: PropValidators<PropKeys>;
39
150
  declare const allowedProps: AllowedPropKeys;
40
- export type { SimpleSelectProps };
151
+ export type { SimpleSelectProps, SimpleSelectState };
41
152
  export { propTypes, allowedProps };
42
153
  //# sourceMappingURL=props.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../src/SimpleSelect/props.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,EAAE,EAAE,mBAAmB,EAAE,MAAM,OAAO,CAAA;AAUlD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAA;AAC7D,OAAO,KAAK,EACV,mBAAmB,EACnB,cAAc,EACf,MAAM,2BAA2B,CAAA;AAClC,OAAO,KAAK,EACV,mBAAmB,EACnB,kBAAkB,EAClB,iBAAiB,EAClB,MAAM,0BAA0B,CAAA;AAEjC,aAAK,oBAAoB,GAAG;IAC1B,WAAW,EAAE,KAAK,CAAC,SAAS,GAAG,CAAC,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAC,CAAA;IACxD,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACvB,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAA;IACnC,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,WAAW,CAAC,EAAE,SAAS,GAAG,UAAU,GAAG,UAAU,CAAA;IACjD,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,mBAAmB,CAAC,EAAE,MAAM,CAAA;IAC5B,QAAQ,CAAC,EAAE,WAAW,EAAE,CAAA;IACxB,SAAS,CAAC,EAAE,mBAAmB,CAAA;IAC/B,SAAS,CAAC,EAAE,kBAAkB,CAAA;IAC9B,SAAS,CAAC,EAAE,iBAAiB,CAAA;IAC7B,QAAQ,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAA;IAClC,OAAO,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAA;IACjC,MAAM,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAA;IAChC,aAAa,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAA;IACvC,aAAa,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAA;IACvC,QAAQ,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAA;IAClC,OAAO,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAA;IACjC,iBAAiB,CAAC,EAAE,KAAK,CAAC,SAAS,GAAG,CAAC,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAC,CAAA;IAC/D,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,CACjB,oBAAoB,EACpB,mBAAmB,CAAC,oBAAoB,CAAC,CAC1C,CAAA;AAEH,QAAA,MAAM,SAAS,EAAE,cAAc,CAAC,QAAQ,CAqIvC,CAAA;AAED,QAAA,MAAM,YAAY,EAAE,eA6BnB,CAAA;AAED,YAAY,EAAE,iBAAiB,EAAE,CAAA;AACjC,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,CAAA"}
1
+ {"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../src/SimpleSelect/props.ts"],"names":[],"mappings":"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"}