@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.
- package/CHANGELOG.md +1 -1
- package/LICENSE.md +1 -0
- package/es/InlineList/v1/InlineListItem/index.js +4 -4
- package/es/InlineList/v1/index.js +3 -3
- package/es/InlineList/v2/InlineListItem/index.js +3 -3
- package/es/InlineList/v2/index.js +3 -3
- package/es/List/v1/ListItem/index.js +4 -4
- package/es/List/v1/index.js +5 -5
- package/es/List/v2/ListItem/index.js +3 -3
- package/es/List/v2/index.js +4 -4
- package/es/exports/a.js +4 -3
- package/es/exports/b.js +4 -3
- package/lib/InlineList/v1/InlineListItem/index.js +4 -4
- package/lib/InlineList/v1/index.js +4 -4
- package/lib/InlineList/v2/InlineListItem/index.js +3 -3
- package/lib/InlineList/v2/index.js +4 -4
- package/lib/List/v1/ListItem/index.js +4 -4
- package/lib/List/v1/index.js +7 -7
- package/lib/List/v2/ListItem/index.js +3 -3
- package/lib/List/v2/index.js +6 -6
- package/lib/exports/a.js +7 -7
- package/lib/exports/b.js +7 -7
- package/package.json +10 -10
- package/src/InlineList/v1/InlineListItem/index.tsx +4 -3
- package/src/InlineList/v1/index.tsx +3 -2
- package/src/InlineList/v2/InlineListItem/index.tsx +3 -2
- package/src/InlineList/v2/index.tsx +3 -2
- package/src/List/v1/ListItem/index.tsx +4 -3
- package/src/List/v1/index.tsx +5 -4
- package/src/List/v2/ListItem/index.tsx +3 -2
- package/src/List/v2/index.tsx +4 -3
- package/src/exports/a.ts +3 -3
- package/src/exports/b.ts +3 -3
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/InlineList/v1/InlineListItem/index.d.ts +1 -0
- package/types/InlineList/v1/InlineListItem/index.d.ts.map +1 -1
- package/types/InlineList/v1/index.d.ts +2 -1
- package/types/InlineList/v1/index.d.ts.map +1 -1
- package/types/InlineList/v2/InlineListItem/index.d.ts +1 -0
- package/types/InlineList/v2/InlineListItem/index.d.ts.map +1 -1
- package/types/InlineList/v2/index.d.ts +2 -1
- package/types/InlineList/v2/index.d.ts.map +1 -1
- package/types/List/v1/ListItem/index.d.ts +1 -0
- package/types/List/v1/ListItem/index.d.ts.map +1 -1
- package/types/List/v1/index.d.ts +2 -1
- package/types/List/v1/index.d.ts.map +1 -1
- package/types/List/v2/ListItem/index.d.ts +1 -0
- package/types/List/v2/ListItem/index.d.ts.map +1 -1
- package/types/List/v2/index.d.ts +2 -1
- package/types/List/v2/index.d.ts.map +1 -1
- package/types/exports/a.d.ts +3 -3
- package/types/exports/a.d.ts.map +1 -1
- package/types/exports/b.d.ts +3 -3
- 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
|
package/src/List/v1/index.tsx
CHANGED
|
@@ -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
|
package/src/List/v2/index.tsx
CHANGED
|
@@ -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'
|