@instructure/ui-list 11.7.4-snapshot-14 → 11.7.4-snapshot-49

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 (54) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/LICENSE.md +1 -0
  3. package/es/InlineList/v1/InlineListItem/index.js +4 -4
  4. package/es/InlineList/v1/index.js +3 -3
  5. package/es/InlineList/v2/InlineListItem/index.js +3 -3
  6. package/es/InlineList/v2/index.js +3 -3
  7. package/es/List/v1/ListItem/index.js +4 -4
  8. package/es/List/v1/index.js +5 -5
  9. package/es/List/v2/ListItem/index.js +3 -3
  10. package/es/List/v2/index.js +4 -4
  11. package/es/exports/a.js +4 -3
  12. package/es/exports/b.js +4 -3
  13. package/lib/InlineList/v1/InlineListItem/index.js +4 -4
  14. package/lib/InlineList/v1/index.js +4 -4
  15. package/lib/InlineList/v2/InlineListItem/index.js +3 -3
  16. package/lib/InlineList/v2/index.js +4 -4
  17. package/lib/List/v1/ListItem/index.js +4 -4
  18. package/lib/List/v1/index.js +7 -7
  19. package/lib/List/v2/ListItem/index.js +3 -3
  20. package/lib/List/v2/index.js +6 -6
  21. package/lib/exports/a.js +7 -7
  22. package/lib/exports/b.js +7 -7
  23. package/package.json +10 -10
  24. package/src/InlineList/v1/InlineListItem/index.tsx +4 -3
  25. package/src/InlineList/v1/index.tsx +3 -2
  26. package/src/InlineList/v2/InlineListItem/index.tsx +3 -2
  27. package/src/InlineList/v2/index.tsx +3 -2
  28. package/src/List/v1/ListItem/index.tsx +4 -3
  29. package/src/List/v1/index.tsx +5 -4
  30. package/src/List/v2/ListItem/index.tsx +3 -2
  31. package/src/List/v2/index.tsx +4 -3
  32. package/src/exports/a.ts +3 -3
  33. package/src/exports/b.ts +3 -3
  34. package/tsconfig.build.tsbuildinfo +1 -1
  35. package/types/InlineList/v1/InlineListItem/index.d.ts +1 -0
  36. package/types/InlineList/v1/InlineListItem/index.d.ts.map +1 -1
  37. package/types/InlineList/v1/index.d.ts +2 -1
  38. package/types/InlineList/v1/index.d.ts.map +1 -1
  39. package/types/InlineList/v2/InlineListItem/index.d.ts +1 -0
  40. package/types/InlineList/v2/InlineListItem/index.d.ts.map +1 -1
  41. package/types/InlineList/v2/index.d.ts +2 -1
  42. package/types/InlineList/v2/index.d.ts.map +1 -1
  43. package/types/List/v1/ListItem/index.d.ts +1 -0
  44. package/types/List/v1/ListItem/index.d.ts.map +1 -1
  45. package/types/List/v1/index.d.ts +2 -1
  46. package/types/List/v1/index.d.ts.map +1 -1
  47. package/types/List/v2/ListItem/index.d.ts +1 -0
  48. package/types/List/v2/ListItem/index.d.ts.map +1 -1
  49. package/types/List/v2/index.d.ts +2 -1
  50. package/types/List/v2/index.d.ts.map +1 -1
  51. package/types/exports/a.d.ts +3 -3
  52. package/types/exports/a.d.ts.map +1 -1
  53. package/types/exports/b.d.ts +3 -3
  54. package/types/exports/b.d.ts.map +1 -1
@@ -29,10 +29,10 @@ import { passthroughProps } from '@instructure/ui-react-utils'
29
29
 
30
30
  import { withStyle } from '@instructure/emotion'
31
31
 
32
- import generateStyle from './styles'
33
- import generateComponentTheme from './theme'
32
+ import generateStyle from './styles.js'
33
+ import generateComponentTheme from './theme.js'
34
34
 
35
- import { allowedProps } from './props'
35
+ import { allowedProps } from './props.js'
36
36
  import type { ListItemProps } from './props'
37
37
 
38
38
  /**
@@ -43,6 +43,7 @@ id: List.Item
43
43
  **/
44
44
  @withStyle(generateStyle, generateComponentTheme)
45
45
  class ListItem extends Component<ListItemProps> {
46
+ static displayName = 'ListItem'
46
47
  static readonly componentId = 'List.Item'
47
48
 
48
49
  static allowedProps = allowedProps
@@ -27,14 +27,14 @@ import { Children, Component, ReactElement } from 'react'
27
27
  import { View } from '@instructure/ui-view/v11_6'
28
28
  import { passthroughProps, safeCloneElement } from '@instructure/ui-react-utils'
29
29
 
30
- import { ListItem } from './ListItem'
30
+ import { ListItem } from './ListItem/index.js'
31
31
 
32
32
  import { withStyle } from '@instructure/emotion'
33
33
 
34
- import generateStyle from './styles'
35
- import generateComponentTheme from './theme'
34
+ import generateStyle from './styles.js'
35
+ import generateComponentTheme from './theme.js'
36
36
 
37
- import { allowedProps } from './props'
37
+ import { allowedProps } from './props.js'
38
38
  import type { ListProps } from './props'
39
39
 
40
40
  /**
@@ -44,6 +44,7 @@ category: components
44
44
  **/
45
45
  @withStyle(generateStyle, generateComponentTheme)
46
46
  class List extends Component<ListProps> {
47
+ static displayName = 'List'
47
48
  static readonly componentId = 'List'
48
49
 
49
50
  static allowedProps = allowedProps
@@ -28,8 +28,8 @@ import { View } from '@instructure/ui-view/latest'
28
28
  import { passthroughProps } from '@instructure/ui-react-utils'
29
29
  import { withStyleNew } from '@instructure/emotion'
30
30
 
31
- import generateStyle from './styles'
32
- import { allowedProps } from './props'
31
+ import generateStyle from './styles.js'
32
+ import { allowedProps } from './props.js'
33
33
  import type { ListItemProps } from './props'
34
34
 
35
35
  /**
@@ -40,6 +40,7 @@ id: List.Item
40
40
  **/
41
41
  @withStyleNew(generateStyle)
42
42
  class ListItem extends Component<ListItemProps> {
43
+ static displayName = 'ListItem'
43
44
  static readonly componentId = 'List.Item'
44
45
 
45
46
  static allowedProps = allowedProps
@@ -28,9 +28,9 @@ import { View } from '@instructure/ui-view/latest'
28
28
  import { passthroughProps, safeCloneElement } from '@instructure/ui-react-utils'
29
29
  import { withStyleNew } from '@instructure/emotion'
30
30
 
31
- import { ListItem } from './ListItem'
32
- import generateStyle from './styles'
33
- import { allowedProps } from './props'
31
+ import { ListItem } from './ListItem/index.js'
32
+ import generateStyle from './styles.js'
33
+ import { allowedProps } from './props.js'
34
34
  import type { ListProps } from './props'
35
35
 
36
36
  /**
@@ -40,6 +40,7 @@ category: components
40
40
  **/
41
41
  @withStyleNew(generateStyle)
42
42
  class List extends Component<ListProps> {
43
+ static displayName = 'List'
43
44
  static readonly componentId = 'List'
44
45
 
45
46
  static allowedProps = allowedProps
package/src/exports/a.ts CHANGED
@@ -22,9 +22,9 @@
22
22
  * SOFTWARE.
23
23
  */
24
24
 
25
- export { InlineList } from '../InlineList/v1'
26
- export { List, ListItem } from '../List/v1'
27
- export { InlineListItem } from '../InlineList/v1/InlineListItem'
25
+ export { InlineList } from '../InlineList/v1/index.js'
26
+ export { List, ListItem } from '../List/v1/index.js'
27
+ export { InlineListItem } from '../InlineList/v1/InlineListItem/index.js'
28
28
 
29
29
  export type { InlineListProps } from '../InlineList/v1/props'
30
30
  export type { InlineListItemProps } from '../InlineList/v1/InlineListItem/props'
package/src/exports/b.ts CHANGED
@@ -22,9 +22,9 @@
22
22
  * SOFTWARE.
23
23
  */
24
24
 
25
- export { InlineList } from '../InlineList/v2'
26
- export { List, ListItem } from '../List/v2'
27
- export { InlineListItem } from '../InlineList/v2/InlineListItem'
25
+ export { InlineList } from '../InlineList/v2/index.js'
26
+ export { List, ListItem } from '../List/v2/index.js'
27
+ export { InlineListItem } from '../InlineList/v2/InlineListItem/index.js'
28
28
 
29
29
  export type { InlineListProps } from '../InlineList/v2/props'
30
30
  export type { InlineListItemProps } from '../InlineList/v2/InlineListItem/props'