@instructure/ui-list 8.13.1-snapshot.10 → 8.13.1-snapshot.22

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 (57) hide show
  1. package/es/InlineList/InlineListItem/InlineListItemLocator.js +2 -1
  2. package/es/InlineList/InlineListItem/index.js +19 -15
  3. package/es/InlineList/InlineListItem/props.js +0 -24
  4. package/es/InlineList/InlineListLocator.js +2 -1
  5. package/es/InlineList/__examples__/InlineList.examples.js +1 -1
  6. package/es/InlineList/index.js +1 -2
  7. package/es/InlineList/props.js +0 -17
  8. package/es/List/ListItem/index.js +19 -15
  9. package/es/List/ListItem/props.js +0 -24
  10. package/es/List/ListLocator.js +4 -2
  11. package/es/List/__examples__/List.examples.js +1 -1
  12. package/es/List/index.js +16 -13
  13. package/es/List/props.js +0 -25
  14. package/lib/InlineList/InlineListItem/InlineListItemLocator.js +1 -0
  15. package/lib/InlineList/InlineListItem/index.js +19 -15
  16. package/lib/InlineList/InlineListItem/props.js +0 -24
  17. package/lib/InlineList/InlineListLocator.js +1 -0
  18. package/lib/InlineList/__examples__/InlineList.examples.js +1 -1
  19. package/lib/InlineList/index.js +1 -2
  20. package/lib/InlineList/props.js +0 -17
  21. package/lib/List/ListItem/index.js +19 -15
  22. package/lib/List/ListItem/props.js +0 -24
  23. package/lib/List/ListLocator.js +3 -1
  24. package/lib/List/__examples__/List.examples.js +1 -1
  25. package/lib/List/index.js +16 -13
  26. package/lib/List/props.js +0 -25
  27. package/package.json +14 -14
  28. package/src/InlineList/InlineListItem/index.tsx +5 -9
  29. package/src/InlineList/InlineListItem/props.ts +20 -20
  30. package/src/InlineList/__examples__/InlineList.examples.tsx +3 -4
  31. package/src/InlineList/index.tsx +1 -3
  32. package/src/InlineList/props.ts +16 -15
  33. package/src/List/ListItem/index.tsx +5 -9
  34. package/src/List/ListItem/props.ts +20 -20
  35. package/src/List/__examples__/List.examples.tsx +4 -5
  36. package/src/List/index.tsx +5 -10
  37. package/src/List/props.ts +20 -20
  38. package/types/InlineList/InlineListItem/index.d.ts +4 -4
  39. package/types/InlineList/InlineListItem/index.d.ts.map +1 -1
  40. package/types/InlineList/InlineListItem/props.d.ts +20 -1
  41. package/types/InlineList/InlineListItem/props.d.ts.map +1 -1
  42. package/types/InlineList/__examples__/InlineList.examples.d.ts +3 -2
  43. package/types/InlineList/__examples__/InlineList.examples.d.ts.map +1 -1
  44. package/types/InlineList/index.d.ts +1 -2
  45. package/types/InlineList/index.d.ts.map +1 -1
  46. package/types/InlineList/props.d.ts +14 -0
  47. package/types/InlineList/props.d.ts.map +1 -1
  48. package/types/List/ListItem/index.d.ts +4 -4
  49. package/types/List/ListItem/index.d.ts.map +1 -1
  50. package/types/List/ListItem/props.d.ts +20 -1
  51. package/types/List/ListItem/props.d.ts.map +1 -1
  52. package/types/List/__examples__/List.examples.d.ts +3 -2
  53. package/types/List/__examples__/List.examples.d.ts.map +1 -1
  54. package/types/List/index.d.ts +2 -3
  55. package/types/List/index.d.ts.map +1 -1
  56. package/types/List/props.d.ts +20 -0
  57. package/types/List/props.d.ts.map +1 -1
package/src/List/props.ts CHANGED
@@ -42,12 +42,29 @@ import type {
42
42
  } from '@instructure/shared-types'
43
43
 
44
44
  type ListOwnProps = {
45
+ /**
46
+ * Only accepts `<List.Item>` as a child
47
+ */
45
48
  children?: React.ReactNode // TODO: oneOf([ListItem])
46
49
  as?: 'ul' | 'ol'
50
+ /**
51
+ * One of: none, dashed, solid
52
+ */
47
53
  delimiter?: 'none' | 'dashed' | 'solid'
54
+ /**
55
+ * When set, renders the List Items without a list style type.
56
+ */
48
57
  isUnstyled?: boolean
58
+ /**
59
+ * Valid values are `0`, `none`, `auto`, `xxx-small`, `xx-small`, `x-small`,
60
+ * `small`, `medium`, `large`, `x-large`, `xx-large`. Apply these values via
61
+ * familiar CSS-like shorthand. For example: `margin="small auto large"`.
62
+ */
49
63
  margin?: Spacing
50
64
  size?: 'small' | 'medium' | 'large'
65
+ /**
66
+ * Sets the margin separating each ListItem.
67
+ */
51
68
  itemSpacing?:
52
69
  | 'none'
53
70
  | 'xxx-small'
@@ -58,6 +75,9 @@ type ListOwnProps = {
58
75
  | 'large'
59
76
  | 'x-large'
60
77
  | 'xx-large'
78
+ /**
79
+ * provides a reference to the underlying html root element
80
+ */
61
81
  elementRef?: (element: Element | null) => void
62
82
  }
63
83
 
@@ -72,29 +92,12 @@ type ListProps = ListOwnProps &
72
92
  type ListStyle = ComponentStyle<'list'>
73
93
 
74
94
  const propTypes: PropValidators<PropKeys> = {
75
- /**
76
- * Only accepts `<List.Item>` as a child
77
- */
78
95
  children: ChildrenPropTypes.oneOf([ListItem]),
79
96
  as: PropTypes.oneOf(['ul', 'ol']),
80
- /**
81
- * One of: none, dashed, solid
82
- */
83
97
  delimiter: PropTypes.oneOf(['none', 'dashed', 'solid']),
84
- /**
85
- * When set, renders the List Items without a list style type.
86
- */
87
98
  isUnstyled: PropTypes.bool,
88
- /**
89
- * Valid values are `0`, `none`, `auto`, `xxx-small`, `xx-small`, `x-small`,
90
- * `small`, `medium`, `large`, `x-large`, `xx-large`. Apply these values via
91
- * familiar CSS-like shorthand. For example: `margin="small auto large"`.
92
- */
93
99
  margin: ThemeablePropTypes.spacing,
94
100
  size: PropTypes.oneOf(['small', 'medium', 'large']),
95
- /**
96
- * Sets the margin separating each ListItem.
97
- */
98
101
  itemSpacing: PropTypes.oneOf([
99
102
  'none',
100
103
  'xxx-small',
@@ -106,9 +109,6 @@ const propTypes: PropValidators<PropKeys> = {
106
109
  'x-large',
107
110
  'xx-large'
108
111
  ]),
109
- /**
110
- * provides a reference to the underlying html root element
111
- */
112
112
  elementRef: PropTypes.func
113
113
  }
114
114
 
@@ -7,11 +7,12 @@ import type { InlineListItemProps } from './props';
7
7
  parent: InlineList
8
8
  id: InlineList.Item
9
9
  ---
10
+ @tsProps
10
11
  **/
11
12
  declare class InlineListItem extends Component<InlineListItemProps> {
12
13
  static readonly componentId = "InlineList.Item";
13
14
  static propTypes: import("@instructure/shared-types/types/UtilityTypes").PropValidators<keyof {
14
- children: import("react").ReactNode | ((...args: any[]) => import("react").ReactNode);
15
+ children: import("react").ReactNode | (() => import("react").ReactNode);
15
16
  delimiter?: "none" | "pipe" | "slash" | "arrow" | undefined;
16
17
  size?: "small" | "medium" | "large" | undefined;
17
18
  margin?: import("@instructure/emotion/types/styleUtils/ThemeablePropValues").Spacing | undefined;
@@ -20,7 +21,7 @@ declare class InlineListItem extends Component<InlineListItemProps> {
20
21
  elementRef?: ((element: Element | null) => void) | undefined;
21
22
  }>;
22
23
  static allowedProps: readonly (keyof {
23
- children: import("react").ReactNode | ((...args: any[]) => import("react").ReactNode);
24
+ children: import("react").ReactNode | (() => import("react").ReactNode);
24
25
  delimiter?: "none" | "pipe" | "slash" | "arrow" | undefined;
25
26
  size?: "small" | "medium" | "large" | undefined;
26
27
  margin?: import("@instructure/emotion/types/styleUtils/ThemeablePropValues").Spacing | undefined;
@@ -33,12 +34,11 @@ declare class InlineListItem extends Component<InlineListItemProps> {
33
34
  spacing: string;
34
35
  delimiter: string;
35
36
  size: string;
36
- elementRef: (el: any) => void;
37
37
  };
38
38
  ref: Element | null;
39
39
  handleRef: (el: Element | null) => void;
40
40
  componentDidMount(): void;
41
- componentDidUpdate(prevProps: any, prevState: any, snapshot: any): void;
41
+ componentDidUpdate(): void;
42
42
  render(): jsx.JSX.Element;
43
43
  }
44
44
  export default InlineListItem;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/InlineList/InlineListItem/index.tsx"],"names":[],"mappings":"AAuBA,eAAe;AACf,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAMjC,OAAO,EAAa,GAAG,EAAE,MAAM,sBAAsB,CAAA;AAMrD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAA;AAElD;;;;;GAKG;AACH,cAEM,cAAe,SAAQ,SAAS,CAAC,mBAAmB,CAAC;IACzD,MAAM,CAAC,QAAQ,CAAC,WAAW,qBAAoB;IAE/C,MAAM,CAAC,SAAS;;;;;;;;OAAY;IAC5B,MAAM,CAAC,YAAY;;;;;;;;SAAe;IAClC,MAAM,CAAC,YAAY;;;;;;MAOlB;IAED,GAAG,EAAE,OAAO,GAAG,IAAI,CAAO;IAE1B,SAAS,OAAQ,OAAO,GAAG,IAAI,UAQ9B;IAED,iBAAiB;IAMjB,kBAAkB,CAAC,SAAS,KAAA,EAAE,SAAS,KAAA,EAAE,QAAQ,KAAA;IAKjD,MAAM;CA6BP;AAED,eAAe,cAAc,CAAA;AAC7B,OAAO,EAAE,cAAc,EAAE,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/InlineList/InlineListItem/index.tsx"],"names":[],"mappings":"AAuBA,eAAe;AACf,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAMjC,OAAO,EAAa,GAAG,EAAE,MAAM,sBAAsB,CAAA;AAMrD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAA;AAElD;;;;;;GAMG;AACH,cAEM,cAAe,SAAQ,SAAS,CAAC,mBAAmB,CAAC;IACzD,MAAM,CAAC,QAAQ,CAAC,WAAW,qBAAoB;IAE/C,MAAM,CAAC,SAAS;;;;;;;;OAAY;IAC5B,MAAM,CAAC,YAAY;;;;;;;;SAAe;IAClC,MAAM,CAAC,YAAY;;;;;MAKlB;IAED,GAAG,EAAE,OAAO,GAAG,IAAI,CAAO;IAE1B,SAAS,OAAQ,OAAO,GAAG,IAAI,UAQ9B;IAED,iBAAiB;IAIjB,kBAAkB;IAIlB,MAAM;CA6BP;AAED,eAAe,cAAc,CAAA;AAC7B,OAAO,EAAE,cAAc,EAAE,CAAA"}
@@ -2,12 +2,31 @@ import React from 'react';
2
2
  import type { Spacing, WithStyleProps, ComponentStyle } from '@instructure/emotion';
3
3
  import type { PropValidators, InlineListItemTheme, OtherHTMLAttributes } from '@instructure/shared-types';
4
4
  declare type InlineListItemOwnProps = {
5
- children: React.ReactNode | ((...args: any[]) => React.ReactNode);
5
+ children: React.ReactNode | (() => React.ReactNode);
6
+ /**
7
+ * Inherits delimiter from the parent InlineList component
8
+ */
6
9
  delimiter?: 'none' | 'pipe' | 'slash' | 'arrow';
7
10
  size?: 'small' | 'medium' | 'large';
11
+ /**
12
+ * Valid values are `0`, `none`, `auto`, `xxx-small`, `xx-small`, `x-small`,
13
+ * `small`, `medium`, `large`, `x-large`, `xx-large`. Apply these values via
14
+ * familiar CSS-like shorthand. For example: `margin="small auto large"`.
15
+ */
8
16
  margin?: Spacing;
17
+ /**
18
+ * Valid values are `0`, `none`, `xxx-small`, `xx-small`, `x-small`,
19
+ * `small`, `medium`, `large`, `x-large`, `xx-large`. Apply these values via
20
+ * familiar CSS-like shorthand. For example: `padding="small x-large large"`.
21
+ */
9
22
  padding?: Spacing;
23
+ /**
24
+ * Inherits itemSpacing from the parent InlineList component
25
+ */
10
26
  spacing?: 'none' | 'xxx-small' | 'xx-small' | 'x-small' | 'small' | 'medium' | 'large' | 'x-large' | 'xx-large';
27
+ /**
28
+ * provides a reference to the underlying html root element
29
+ */
11
30
  elementRef?: (element: Element | null) => void;
12
31
  };
13
32
  declare type PropKeys = keyof InlineListItemOwnProps;
@@ -1 +1 @@
1
- {"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../../src/InlineList/InlineListItem/props.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,MAAM,OAAO,CAAA;AAKzB,OAAO,KAAK,EACV,OAAO,EACP,cAAc,EACd,cAAc,EACf,MAAM,sBAAsB,CAAA;AAC7B,OAAO,KAAK,EACV,cAAc,EACd,mBAAmB,EACnB,mBAAmB,EACpB,MAAM,2BAA2B,CAAA;AAElC,aAAK,sBAAsB,GAAG;IAC5B,QAAQ,EAAE,KAAK,CAAC,SAAS,GAAG,CAAC,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,KAAK,CAAC,SAAS,CAAC,CAAA;IACjE,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,OAAO,CAAA;IAC/C,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAA;IACnC,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,OAAO,CAAC,EACJ,MAAM,GACN,WAAW,GACX,UAAU,GACV,SAAS,GACT,OAAO,GACP,QAAQ,GACR,OAAO,GACP,SAAS,GACT,UAAU,CAAA;IACd,UAAU,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,KAAK,IAAI,CAAA;CAC/C,CAAA;AAED,aAAK,QAAQ,GAAG,MAAM,sBAAsB,CAAA;AAE5C,aAAK,eAAe,GAAG,QAAQ,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAA;AAEhD,aAAK,mBAAmB,GAAG,sBAAsB,GAC/C,cAAc,CAAC,mBAAmB,EAAE,mBAAmB,CAAC,GACxD,mBAAmB,CAAC,sBAAsB,CAAC,CAAA;AAE7C,aAAK,mBAAmB,GAAG,cAAc,CAAC,gBAAgB,GAAG,WAAW,CAAC,CAAA;AAEzE,QAAA,MAAM,SAAS,EAAE,cAAc,CAAC,QAAQ,CAqCvC,CAAA;AAED,QAAA,MAAM,YAAY,EAAE,eAQnB,CAAA;AAED,YAAY,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,CAAA;AACxD,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,CAAA"}
1
+ {"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../../src/InlineList/InlineListItem/props.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,MAAM,OAAO,CAAA;AAKzB,OAAO,KAAK,EACV,OAAO,EACP,cAAc,EACd,cAAc,EACf,MAAM,sBAAsB,CAAA;AAC7B,OAAO,KAAK,EACV,cAAc,EACd,mBAAmB,EACnB,mBAAmB,EACpB,MAAM,2BAA2B,CAAA;AAElC,aAAK,sBAAsB,GAAG;IAC5B,QAAQ,EAAE,KAAK,CAAC,SAAS,GAAG,CAAC,MAAM,KAAK,CAAC,SAAS,CAAC,CAAA;IACnD;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,OAAO,CAAA;IAC/C,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAA;IACnC;;;;OAIG;IACH,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB;;;;OAIG;IACH,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB;;OAEG;IACH,OAAO,CAAC,EACJ,MAAM,GACN,WAAW,GACX,UAAU,GACV,SAAS,GACT,OAAO,GACP,QAAQ,GACR,OAAO,GACP,SAAS,GACT,UAAU,CAAA;IACd;;OAEG;IACH,UAAU,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,KAAK,IAAI,CAAA;CAC/C,CAAA;AAED,aAAK,QAAQ,GAAG,MAAM,sBAAsB,CAAA;AAE5C,aAAK,eAAe,GAAG,QAAQ,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAA;AAEhD,aAAK,mBAAmB,GAAG,sBAAsB,GAC/C,cAAc,CAAC,mBAAmB,EAAE,mBAAmB,CAAC,GACxD,mBAAmB,CAAC,sBAAsB,CAAC,CAAA;AAE7C,aAAK,mBAAmB,GAAG,cAAc,CAAC,gBAAgB,GAAG,WAAW,CAAC,CAAA;AAEzE,QAAA,MAAM,SAAS,EAAE,cAAc,CAAC,QAAQ,CAkBvC,CAAA;AAED,QAAA,MAAM,YAAY,EAAE,eAQnB,CAAA;AAED,YAAY,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,CAAA;AACxD,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,CAAA"}
@@ -1,10 +1,11 @@
1
1
  /// <reference types="react" />
2
+ import { InlineListProps } from '../props';
2
3
  declare const _default: {
3
4
  sectionProp: string;
4
- getComponentProps: (props: any) => {
5
+ getComponentProps: () => {
5
6
  children: JSX.Element[];
6
7
  };
7
- filter: (props: any) => boolean;
8
+ filter: (props: InlineListProps) => boolean;
8
9
  };
9
10
  export default _default;
10
11
  //# sourceMappingURL=InlineList.examples.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"InlineList.examples.d.ts","sourceRoot":"","sources":["../../../src/InlineList/__examples__/InlineList.examples.tsx"],"names":[],"mappings":";;;;;;;;AA0BA,wBAoBC"}
1
+ {"version":3,"file":"InlineList.examples.d.ts","sourceRoot":"","sources":["../../../src/InlineList/__examples__/InlineList.examples.tsx"],"names":[],"mappings":";AAyBA,OAAO,EAAE,eAAe,EAAE,MAAM,UAAU,CAAA;;;;;;oBAaxB,eAAe;;AAXjC,wBAkBC"}
@@ -5,6 +5,7 @@ import type { InlineListProps } from './props';
5
5
  ---
6
6
  category: components
7
7
  ---
8
+ @tsProps
8
9
  **/
9
10
  declare class InlineList extends Component<InlineListProps> {
10
11
  static propTypes: import("@instructure/shared-types/types/UtilityTypes").PropValidators<keyof {
@@ -26,9 +27,7 @@ declare class InlineList extends Component<InlineListProps> {
26
27
  elementRef?: ((element: Element | null) => void) | undefined;
27
28
  })[];
28
29
  static defaultProps: {
29
- children: null;
30
30
  itemSpacing: string;
31
- elementRef: (el: any) => void;
32
31
  as: string;
33
32
  margin: string;
34
33
  delimiter: string;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/InlineList/index.tsx"],"names":[],"mappings":"AAuBA,OAAO,KAAK,EAAE,EAAY,SAAS,EAAgB,MAAM,OAAO,CAAA;AAMhE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAGjD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,SAAS,CAAA;AAE9C;;;;GAIG;AACH,cACM,UAAW,SAAQ,SAAS,CAAC,eAAe,CAAC;IACjD,MAAM,CAAC,SAAS;;;;;;;;OAAY;IAC5B,MAAM,CAAC,YAAY;;;;;;;;SAAe;IAClC,MAAM,CAAC,YAAY;;;;;;;;MASlB;IAED,MAAM,CAAC,IAAI,wBAAiB;IAE5B,GAAG,EAAE,OAAO,GAAG,IAAI,CAAO;IAE1B,SAAS,OAAQ,OAAO,GAAG,IAAI,UAQ9B;IAED,cAAc;IAYd,MAAM;CAgBP;AAED,eAAe,UAAU,CAAA;AACzB,OAAO,EAAE,UAAU,EAAE,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/InlineList/index.tsx"],"names":[],"mappings":"AAuBA,OAAO,KAAK,EAAE,EAAY,SAAS,EAAgB,MAAM,OAAO,CAAA;AAMhE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AAGjD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,SAAS,CAAA;AAE9C;;;;;GAKG;AACH,cACM,UAAW,SAAQ,SAAS,CAAC,eAAe,CAAC;IACjD,MAAM,CAAC,SAAS;;;;;;;;OAAY;IAC5B,MAAM,CAAC,YAAY;;;;;;;;SAAe;IAClC,MAAM,CAAC,YAAY;;;;;;MAMlB;IAED,MAAM,CAAC,IAAI,wBAAiB;IAE5B,GAAG,EAAE,OAAO,GAAG,IAAI,CAAO;IAE1B,SAAS,OAAQ,OAAO,GAAG,IAAI,UAQ9B;IAED,cAAc;IAYd,MAAM;CAgBP;AAED,eAAe,UAAU,CAAA;AACzB,OAAO,EAAE,UAAU,EAAE,CAAA"}
@@ -2,12 +2,26 @@ import React from 'react';
2
2
  import type { Spacing } from '@instructure/emotion';
3
3
  import type { OtherHTMLAttributes, PropValidators } from '@instructure/shared-types';
4
4
  declare type InlineListOwnProps = {
5
+ /**
6
+ * Only accepts `<InlineList.Item>` as a child
7
+ */
5
8
  children?: React.ReactNode;
6
9
  as?: 'ul' | 'ol';
10
+ /**
11
+ * Valid values are `0`, `none`, `auto`, `xxx-small`, `xx-small`, `x-small`,
12
+ * `small`, `medium`, `large`, `x-large`, `xx-large`. Apply these values via
13
+ * familiar CSS-like shorthand. For example: `margin="small auto large"`.
14
+ */
7
15
  margin?: Spacing;
8
16
  size?: 'small' | 'medium' | 'large';
9
17
  delimiter?: 'none' | 'pipe' | 'slash' | 'arrow';
18
+ /**
19
+ * Sets the margin separating each ListItem.
20
+ */
10
21
  itemSpacing?: 'none' | 'xxx-small' | 'xx-small' | 'x-small' | 'small' | 'medium' | 'large' | 'x-large' | 'xx-large';
22
+ /**
23
+ * provides a reference to the underlying html root element
24
+ */
11
25
  elementRef?: (element: Element | null) => void;
12
26
  };
13
27
  declare type PropKeys = keyof InlineListOwnProps;
@@ -1 +1 @@
1
- {"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../src/InlineList/props.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,MAAM,OAAO,CAAA;AAOzB,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,sBAAsB,CAAA;AACnD,OAAO,KAAK,EACV,mBAAmB,EACnB,cAAc,EACf,MAAM,2BAA2B,CAAA;AAElC,aAAK,kBAAkB,GAAG;IACxB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC1B,EAAE,CAAC,EAAE,IAAI,GAAG,IAAI,CAAA;IAChB,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAA;IACnC,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,OAAO,CAAA;IAC/C,WAAW,CAAC,EACR,MAAM,GACN,WAAW,GACX,UAAU,GACV,SAAS,GACT,OAAO,GACP,QAAQ,GACR,OAAO,GACP,SAAS,GACT,UAAU,CAAA;IACd,UAAU,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,KAAK,IAAI,CAAA;CAC/C,CAAA;AAED,aAAK,QAAQ,GAAG,MAAM,kBAAkB,CAAA;AAExC,aAAK,eAAe,GAAG,QAAQ,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAA;AAEhD,aAAK,eAAe,GAAG,kBAAkB,GACvC,mBAAmB,CAAC,kBAAkB,CAAC,CAAA;AAEzC,QAAA,MAAM,SAAS,EAAE,cAAc,CAAC,QAAQ,CAgCvC,CAAA;AAED,QAAA,MAAM,YAAY,EAAE,eAQnB,CAAA;AAED,YAAY,EAAE,eAAe,EAAE,CAAA;AAC/B,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,CAAA"}
1
+ {"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../src/InlineList/props.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,MAAM,OAAO,CAAA;AAOzB,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,sBAAsB,CAAA;AACnD,OAAO,KAAK,EACV,mBAAmB,EACnB,cAAc,EACf,MAAM,2BAA2B,CAAA;AAElC,aAAK,kBAAkB,GAAG;IACxB;;OAEG;IAEH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC1B,EAAE,CAAC,EAAE,IAAI,GAAG,IAAI,CAAA;IAChB;;;;OAIG;IACH,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAA;IACnC,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,OAAO,CAAA;IAC/C;;OAEG;IACH,WAAW,CAAC,EACR,MAAM,GACN,WAAW,GACX,UAAU,GACV,SAAS,GACT,OAAO,GACP,QAAQ,GACR,OAAO,GACP,SAAS,GACT,UAAU,CAAA;IACd;;OAEG;IACH,UAAU,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,KAAK,IAAI,CAAA;CAC/C,CAAA;AAED,aAAK,QAAQ,GAAG,MAAM,kBAAkB,CAAA;AAExC,aAAK,eAAe,GAAG,QAAQ,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAA;AAEhD,aAAK,eAAe,GAAG,kBAAkB,GACvC,mBAAmB,CAAC,kBAAkB,CAAC,CAAA;AAEzC,QAAA,MAAM,SAAS,EAAE,cAAc,CAAC,QAAQ,CAkBvC,CAAA;AAED,QAAA,MAAM,YAAY,EAAE,eAQnB,CAAA;AAED,YAAY,EAAE,eAAe,EAAE,CAAA;AAC/B,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,CAAA"}
@@ -7,11 +7,12 @@ import type { ListItemProps } from './props';
7
7
  parent: List
8
8
  id: List.Item
9
9
  ---
10
+ @tsProps
10
11
  **/
11
12
  declare class ListItem extends Component<ListItemProps> {
12
13
  static readonly componentId = "List.Item";
13
14
  static propTypes: import("@instructure/shared-types/types/UtilityTypes").PropValidators<keyof {
14
- children: import("react").ReactNode | ((...args: any[]) => import("react").ReactNode);
15
+ children: import("react").ReactNode | (() => import("react").ReactNode);
15
16
  delimiter?: "none" | "dashed" | "solid" | undefined;
16
17
  size?: "small" | "medium" | "large" | undefined;
17
18
  margin?: import("@instructure/emotion/types/styleUtils/ThemeablePropValues").Spacing | undefined;
@@ -20,7 +21,7 @@ declare class ListItem extends Component<ListItemProps> {
20
21
  elementRef?: ((element: Element | null) => void) | undefined;
21
22
  }>;
22
23
  static allowedProps: readonly (keyof {
23
- children: import("react").ReactNode | ((...args: any[]) => import("react").ReactNode);
24
+ children: import("react").ReactNode | (() => import("react").ReactNode);
24
25
  delimiter?: "none" | "dashed" | "solid" | undefined;
25
26
  size?: "small" | "medium" | "large" | undefined;
26
27
  margin?: import("@instructure/emotion/types/styleUtils/ThemeablePropValues").Spacing | undefined;
@@ -33,12 +34,11 @@ declare class ListItem extends Component<ListItemProps> {
33
34
  spacing: string;
34
35
  delimiter: string;
35
36
  size: string;
36
- elementRef: (el: any) => void;
37
37
  };
38
38
  ref: Element | null;
39
39
  handleRef: (el: Element | null) => void;
40
40
  componentDidMount(): void;
41
- componentDidUpdate(prevProps: any, prevState: any, snapshot: any): void;
41
+ componentDidUpdate(): void;
42
42
  render(): jsx.JSX.Element;
43
43
  }
44
44
  export default ListItem;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/List/ListItem/index.tsx"],"names":[],"mappings":"AAwBA,eAAe;AACf,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAMjC,OAAO,EAAa,GAAG,EAAE,MAAM,sBAAsB,CAAA;AAMrD,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;;;;;;MAOlB;IAED,GAAG,EAAE,OAAO,GAAG,IAAI,CAAO;IAE1B,SAAS,OAAQ,OAAO,GAAG,IAAI,UAQ9B;IAED,iBAAiB;IAMjB,kBAAkB,CAAC,SAAS,KAAA,EAAE,SAAS,KAAA,EAAE,QAAQ,KAAA;IAKjD,MAAM;CA2BP;AAED,eAAe,QAAQ,CAAA;AACvB,OAAO,EAAE,QAAQ,EAAE,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/List/ListItem/index.tsx"],"names":[],"mappings":"AAwBA,eAAe;AACf,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAMjC,OAAO,EAAa,GAAG,EAAE,MAAM,sBAAsB,CAAA;AAMrD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAE5C;;;;;;GAMG;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;;;;;MAKlB;IAED,GAAG,EAAE,OAAO,GAAG,IAAI,CAAO;IAE1B,SAAS,OAAQ,OAAO,GAAG,IAAI,UAQ9B;IAED,iBAAiB;IAIjB,kBAAkB;IAIlB,MAAM;CA2BP;AAED,eAAe,QAAQ,CAAA;AACvB,OAAO,EAAE,QAAQ,EAAE,CAAA"}
@@ -2,12 +2,31 @@ import React from 'react';
2
2
  import type { Spacing, WithStyleProps, ComponentStyle } from '@instructure/emotion';
3
3
  import type { PropValidators, ListItemTheme, OtherHTMLAttributes } from '@instructure/shared-types';
4
4
  declare type ListItemOwnProps = {
5
- children: React.ReactNode | ((...args: any[]) => React.ReactNode);
5
+ children: React.ReactNode | (() => React.ReactNode);
6
+ /**
7
+ * Inherits delimiter from the parent List component.
8
+ */
6
9
  delimiter?: 'none' | 'dashed' | 'solid';
7
10
  size?: 'small' | 'medium' | 'large';
11
+ /**
12
+ * Valid values are `0`, `none`, `auto`, `xxx-small`, `xx-small`, `x-small`,
13
+ * `small`, `medium`, `large`, `x-large`, `xx-large`. Apply these values via
14
+ * familiar CSS-like shorthand. For example: `margin="small auto large"`.
15
+ */
8
16
  margin?: Spacing;
17
+ /**
18
+ * Valid values are `0`, `none`, `xxx-small`, `xx-small`, `x-small`,
19
+ * `small`, `medium`, `large`, `x-large`, `xx-large`. Apply these values via
20
+ * familiar CSS-like shorthand. For example: `padding="small x-large large"`.
21
+ */
9
22
  padding?: Spacing;
23
+ /**
24
+ * Inherits itemSpacing from the parent List component
25
+ */
10
26
  spacing?: 'none' | 'xxx-small' | 'xx-small' | 'x-small' | 'small' | 'medium' | 'large' | 'x-large' | 'xx-large';
27
+ /**
28
+ * provides a reference to the underlying html root element
29
+ */
11
30
  elementRef?: (element: Element | null) => void;
12
31
  };
13
32
  declare type PropKeys = keyof ListItemOwnProps;
@@ -1 +1 @@
1
- {"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../../src/List/ListItem/props.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,MAAM,OAAO,CAAA;AAKzB,OAAO,KAAK,EACV,OAAO,EACP,cAAc,EACd,cAAc,EACf,MAAM,sBAAsB,CAAA;AAC7B,OAAO,KAAK,EACV,cAAc,EACd,aAAa,EACb,mBAAmB,EACpB,MAAM,2BAA2B,CAAA;AAElC,aAAK,gBAAgB,GAAG;IACtB,QAAQ,EAAE,KAAK,CAAC,SAAS,GAAG,CAAC,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,KAAK,CAAC,SAAS,CAAC,CAAA;IACjE,SAAS,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,OAAO,CAAA;IACvC,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAA;IACnC,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,OAAO,CAAC,EACJ,MAAM,GACN,WAAW,GACX,UAAU,GACV,SAAS,GACT,OAAO,GACP,QAAQ,GACR,OAAO,GACP,SAAS,GACT,UAAU,CAAA;IACd,UAAU,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,KAAK,IAAI,CAAA;CAC/C,CAAA;AAED,aAAK,QAAQ,GAAG,MAAM,gBAAgB,CAAA;AAEtC,aAAK,eAAe,GAAG,QAAQ,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAA;AAEhD,aAAK,aAAa,GAAG,gBAAgB,GACnC,cAAc,CAAC,aAAa,EAAE,aAAa,CAAC,GAC5C,mBAAmB,CAAC,gBAAgB,CAAC,CAAA;AAEvC,aAAK,aAAa,GAAG,cAAc,CAAC,UAAU,CAAC,CAAA;AAE/C,QAAA,MAAM,SAAS,EAAE,cAAc,CAAC,QAAQ,CAqCvC,CAAA;AAED,QAAA,MAAM,YAAY,EAAE,eAQnB,CAAA;AAED,YAAY,EAAE,aAAa,EAAE,aAAa,EAAE,CAAA;AAC5C,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,CAAA"}
1
+ {"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../../src/List/ListItem/props.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,MAAM,OAAO,CAAA;AAKzB,OAAO,KAAK,EACV,OAAO,EACP,cAAc,EACd,cAAc,EACf,MAAM,sBAAsB,CAAA;AAC7B,OAAO,KAAK,EACV,cAAc,EACd,aAAa,EACb,mBAAmB,EACpB,MAAM,2BAA2B,CAAA;AAElC,aAAK,gBAAgB,GAAG;IACtB,QAAQ,EAAE,KAAK,CAAC,SAAS,GAAG,CAAC,MAAM,KAAK,CAAC,SAAS,CAAC,CAAA;IACnD;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,OAAO,CAAA;IACvC,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAA;IACnC;;;;OAIG;IACH,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB;;;;OAIG;IACH,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB;;OAEG;IACH,OAAO,CAAC,EACJ,MAAM,GACN,WAAW,GACX,UAAU,GACV,SAAS,GACT,OAAO,GACP,QAAQ,GACR,OAAO,GACP,SAAS,GACT,UAAU,CAAA;IACd;;OAEG;IACH,UAAU,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,KAAK,IAAI,CAAA;CAC/C,CAAA;AAED,aAAK,QAAQ,GAAG,MAAM,gBAAgB,CAAA;AAEtC,aAAK,eAAe,GAAG,QAAQ,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAA;AAEhD,aAAK,aAAa,GAAG,gBAAgB,GACnC,cAAc,CAAC,aAAa,EAAE,aAAa,CAAC,GAC5C,mBAAmB,CAAC,gBAAgB,CAAC,CAAA;AAEvC,aAAK,aAAa,GAAG,cAAc,CAAC,UAAU,CAAC,CAAA;AAE/C,QAAA,MAAM,SAAS,EAAE,cAAc,CAAC,QAAQ,CAkBvC,CAAA;AAED,QAAA,MAAM,YAAY,EAAE,eAQnB,CAAA;AAED,YAAY,EAAE,aAAa,EAAE,aAAa,EAAE,CAAA;AAC5C,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,CAAA"}
@@ -1,10 +1,11 @@
1
1
  /// <reference types="react" />
2
+ import { ListProps } from '../props';
2
3
  declare const _default: {
3
4
  sectionProp: string;
4
- getComponentProps: (props: any) => {
5
+ getComponentProps: () => {
5
6
  children: JSX.Element[];
6
7
  };
7
- filter: (props: any) => boolean;
8
+ filter: (props: ListProps) => boolean;
8
9
  };
9
10
  export default _default;
10
11
  //# sourceMappingURL=List.examples.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"List.examples.d.ts","sourceRoot":"","sources":["../../../src/List/__examples__/List.examples.tsx"],"names":[],"mappings":";;;;;;;;AA0BA,wBAmBC"}
1
+ {"version":3,"file":"List.examples.d.ts","sourceRoot":"","sources":["../../../src/List/__examples__/List.examples.tsx"],"names":[],"mappings":";AAyBA,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAA;;;;;;oBAalB,SAAS;;AAX3B,wBAiBC"}
@@ -7,6 +7,7 @@ import type { ListProps } from './props';
7
7
  ---
8
8
  category: components
9
9
  ---
10
+ @tsProps
10
11
  **/
11
12
  declare class List extends Component<ListProps> {
12
13
  static readonly componentId = "List";
@@ -31,19 +32,17 @@ declare class List extends Component<ListProps> {
31
32
  elementRef?: ((element: Element | null) => void) | undefined;
32
33
  })[];
33
34
  static defaultProps: {
34
- children: null;
35
35
  as: string;
36
36
  delimiter: string;
37
37
  isUnstyled: boolean;
38
38
  size: string;
39
39
  itemSpacing: string;
40
- elementRef: (el: any) => void;
41
40
  };
42
41
  static Item: typeof ListItem;
43
42
  ref: Element | null;
44
43
  handleRef: (el: Element | null) => void;
45
44
  componentDidMount(): void;
46
- componentDidUpdate(prevProps: any, prevState: any, snapshot: any): void;
45
+ componentDidUpdate(): void;
47
46
  renderChildren(): ReactElement<any, string | import("react").JSXElementConstructor<any>>[] | null | undefined;
48
47
  render(): jsx.JSX.Element;
49
48
  }
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/List/index.tsx"],"names":[],"mappings":"AAwBA,eAAe;AACf,OAAO,EAAY,SAAS,EAAE,YAAY,EAAE,MAAM,OAAO,CAAA;AAMzD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AAErC,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;;;;;;;;MASlB;IAED,MAAM,CAAC,IAAI,kBAAW;IAEtB,GAAG,EAAE,OAAO,GAAG,IAAI,CAAO;IAE1B,SAAS,OAAQ,OAAO,GAAG,IAAI,UAQ9B;IAED,iBAAiB;IAMjB,kBAAkB,CAAC,SAAS,KAAA,EAAE,SAAS,KAAA,EAAE,QAAQ,KAAA;IAKjD,cAAc;IAad,MAAM;CAgBP;AAED,eAAe,IAAI,CAAA;AACnB,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/List/index.tsx"],"names":[],"mappings":"AAwBA,eAAe;AACf,OAAO,EAAY,SAAS,EAAE,YAAY,EAAE,MAAM,OAAO,CAAA;AAMzD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AAErC,OAAO,EAAa,GAAG,EAAE,MAAM,sBAAsB,CAAA;AAMrD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAExC;;;;;GAKG;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;;;;;;MAMlB;IAED,MAAM,CAAC,IAAI,kBAAW;IAEtB,GAAG,EAAE,OAAO,GAAG,IAAI,CAAO;IAE1B,SAAS,OAAQ,OAAO,GAAG,IAAI,UAQ9B;IAED,iBAAiB;IAIjB,kBAAkB;IAIlB,cAAc;IAad,MAAM;CAgBP;AAED,eAAe,IAAI,CAAA;AACnB,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,CAAA"}
@@ -2,13 +2,33 @@ import React from 'react';
2
2
  import type { Spacing, WithStyleProps, ComponentStyle } from '@instructure/emotion';
3
3
  import type { PropValidators, ListTheme, OtherHTMLAttributes } from '@instructure/shared-types';
4
4
  declare type ListOwnProps = {
5
+ /**
6
+ * Only accepts `<List.Item>` as a child
7
+ */
5
8
  children?: React.ReactNode;
6
9
  as?: 'ul' | 'ol';
10
+ /**
11
+ * One of: none, dashed, solid
12
+ */
7
13
  delimiter?: 'none' | 'dashed' | 'solid';
14
+ /**
15
+ * When set, renders the List Items without a list style type.
16
+ */
8
17
  isUnstyled?: boolean;
18
+ /**
19
+ * Valid values are `0`, `none`, `auto`, `xxx-small`, `xx-small`, `x-small`,
20
+ * `small`, `medium`, `large`, `x-large`, `xx-large`. Apply these values via
21
+ * familiar CSS-like shorthand. For example: `margin="small auto large"`.
22
+ */
9
23
  margin?: Spacing;
10
24
  size?: 'small' | 'medium' | 'large';
25
+ /**
26
+ * Sets the margin separating each ListItem.
27
+ */
11
28
  itemSpacing?: 'none' | 'xxx-small' | 'xx-small' | 'x-small' | 'small' | 'medium' | 'large' | 'x-large' | 'xx-large';
29
+ /**
30
+ * provides a reference to the underlying html root element
31
+ */
12
32
  elementRef?: (element: Element | null) => void;
13
33
  };
14
34
  declare type PropKeys = keyof ListOwnProps;
@@ -1 +1 @@
1
- {"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../src/List/props.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,MAAM,OAAO,CAAA;AAQzB,OAAO,KAAK,EACV,OAAO,EACP,cAAc,EACd,cAAc,EACf,MAAM,sBAAsB,CAAA;AAC7B,OAAO,KAAK,EACV,cAAc,EACd,SAAS,EACT,mBAAmB,EACpB,MAAM,2BAA2B,CAAA;AAElC,aAAK,YAAY,GAAG;IAClB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC1B,EAAE,CAAC,EAAE,IAAI,GAAG,IAAI,CAAA;IAChB,SAAS,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,OAAO,CAAA;IACvC,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAA;IACnC,WAAW,CAAC,EACR,MAAM,GACN,WAAW,GACX,UAAU,GACV,SAAS,GACT,OAAO,GACP,QAAQ,GACR,OAAO,GACP,SAAS,GACT,UAAU,CAAA;IACd,UAAU,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,KAAK,IAAI,CAAA;CAC/C,CAAA;AAED,aAAK,QAAQ,GAAG,MAAM,YAAY,CAAA;AAElC,aAAK,eAAe,GAAG,QAAQ,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAA;AAEhD,aAAK,SAAS,GAAG,YAAY,GAC3B,cAAc,CAAC,SAAS,EAAE,SAAS,CAAC,GACpC,mBAAmB,CAAC,YAAY,CAAC,CAAA;AAEnC,aAAK,SAAS,GAAG,cAAc,CAAC,MAAM,CAAC,CAAA;AAEvC,QAAA,MAAM,SAAS,EAAE,cAAc,CAAC,QAAQ,CAuCvC,CAAA;AAED,QAAA,MAAM,YAAY,EAAE,eASnB,CAAA;AAED,YAAY,EAAE,SAAS,EAAE,SAAS,EAAE,CAAA;AACpC,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,CAAA"}
1
+ {"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../src/List/props.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,MAAM,OAAO,CAAA;AAQzB,OAAO,KAAK,EACV,OAAO,EACP,cAAc,EACd,cAAc,EACf,MAAM,sBAAsB,CAAA;AAC7B,OAAO,KAAK,EACV,cAAc,EACd,SAAS,EACT,mBAAmB,EACpB,MAAM,2BAA2B,CAAA;AAElC,aAAK,YAAY,GAAG;IAClB;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC1B,EAAE,CAAC,EAAE,IAAI,GAAG,IAAI,CAAA;IAChB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,OAAO,CAAA;IACvC;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB;;;;OAIG;IACH,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAA;IACnC;;OAEG;IACH,WAAW,CAAC,EACR,MAAM,GACN,WAAW,GACX,UAAU,GACV,SAAS,GACT,OAAO,GACP,QAAQ,GACR,OAAO,GACP,SAAS,GACT,UAAU,CAAA;IACd;;OAEG;IACH,UAAU,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,KAAK,IAAI,CAAA;CAC/C,CAAA;AAED,aAAK,QAAQ,GAAG,MAAM,YAAY,CAAA;AAElC,aAAK,eAAe,GAAG,QAAQ,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAA;AAEhD,aAAK,SAAS,GAAG,YAAY,GAC3B,cAAc,CAAC,SAAS,EAAE,SAAS,CAAC,GACpC,mBAAmB,CAAC,YAAY,CAAC,CAAA;AAEnC,aAAK,SAAS,GAAG,cAAc,CAAC,MAAM,CAAC,CAAA;AAEvC,QAAA,MAAM,SAAS,EAAE,cAAc,CAAC,QAAQ,CAmBvC,CAAA;AAED,QAAA,MAAM,YAAY,EAAE,eASnB,CAAA;AAED,YAAY,EAAE,SAAS,EAAE,SAAS,EAAE,CAAA;AACpC,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,CAAA"}