@instructure/ui-table 11.4.0 → 11.4.1-snapshot-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 CHANGED
@@ -3,6 +3,14 @@
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
+ ## [11.4.1-snapshot-0](https://github.com/instructure/instructure-ui/compare/v11.4.0...v11.4.1-snapshot-0) (2026-02-02)
7
+
8
+ **Note:** Version bump only for package @instructure/ui-table
9
+
10
+
11
+
12
+
13
+
6
14
  # [11.4.0](https://github.com/instructure/instructure-ui/compare/v11.3.0...v11.4.0) (2026-01-20)
7
15
 
8
16
  **Note:** Version bump only for package @instructure/ui-table
@@ -27,11 +27,10 @@ import { Component, Children, isValidElement } from 'react';
27
27
  import { safeCloneElement, omitProps } from '@instructure/ui-react-utils';
28
28
  import { View } from '@instructure/ui-view';
29
29
  import { withStyle } from '@instructure/emotion';
30
- import generateStyle from './styles';
31
- import generateComponentTheme from './theme';
32
- import { allowedProps } from './props';
33
- import TableContext from '../TableContext';
34
-
30
+ import generateStyle from "./styles.js";
31
+ import generateComponentTheme from "./theme.js";
32
+ import { allowedProps } from "./props.js";
33
+ import TableContext from "../TableContext.js";
35
34
  /**
36
35
  ---
37
36
  parent: Table
@@ -27,11 +27,10 @@ import { Component } from 'react';
27
27
  import { omitProps, callRenderProp } from '@instructure/ui-react-utils';
28
28
  import { View } from '@instructure/ui-view';
29
29
  import { withStyle } from '@instructure/emotion';
30
- import generateStyle from './styles';
31
- import generateComponentTheme from './theme';
32
- import { allowedProps } from './props';
33
- import TableContext from '../TableContext';
34
-
30
+ import generateStyle from "./styles.js";
31
+ import generateComponentTheme from "./theme.js";
32
+ import { allowedProps } from "./props.js";
33
+ import TableContext from "../TableContext.js";
35
34
  /**
36
35
  ---
37
36
  parent: Table
@@ -27,10 +27,9 @@ import { Component } from 'react';
27
27
  import { omitProps, callRenderProp } from '@instructure/ui-react-utils';
28
28
  import { IconMiniArrowUpLine, IconMiniArrowDownLine, IconMiniArrowDoubleLine } from '@instructure/ui-icons';
29
29
  import { withStyle } from '@instructure/emotion';
30
- import generateStyle from './styles';
31
- import generateComponentTheme from './theme';
32
- import { allowedProps } from './props';
33
-
30
+ import generateStyle from "./styles.js";
31
+ import generateComponentTheme from "./theme.js";
32
+ import { allowedProps } from "./props.js";
34
33
  /**
35
34
  ---
36
35
  parent: Table
@@ -31,11 +31,10 @@ import { ScreenReaderContent } from '@instructure/ui-a11y-content';
31
31
  import { IconCheckLine } from '@instructure/ui-icons';
32
32
  import { warn } from '@instructure/console';
33
33
  import { withStyle } from '@instructure/emotion';
34
- import generateStyle from './styles';
35
- import generateComponentTheme from './theme';
36
- import { allowedProps } from './props';
37
- import TableContext from '../TableContext';
38
-
34
+ import generateStyle from "./styles.js";
35
+ import generateComponentTheme from "./theme.js";
36
+ import { allowedProps } from "./props.js";
37
+ import TableContext from "../TableContext.js";
39
38
  /**
40
39
  ---
41
40
  parent: Table
@@ -27,11 +27,10 @@ import { Component, Children, isValidElement } from 'react';
27
27
  import { omitProps, safeCloneElement } from '@instructure/ui-react-utils';
28
28
  import { View } from '@instructure/ui-view';
29
29
  import { withStyle } from '@instructure/emotion';
30
- import generateStyle from './styles';
31
- import generateComponentTheme from './theme';
32
- import { allowedProps } from './props';
33
- import TableContext from '../TableContext';
34
-
30
+ import generateStyle from "./styles.js";
31
+ import generateComponentTheme from "./theme.js";
32
+ import { allowedProps } from "./props.js";
33
+ import TableContext from "../TableContext.js";
35
34
  /**
36
35
  ---
37
36
  parent: Table
@@ -27,11 +27,10 @@ import { Component } from 'react';
27
27
  import { omitProps, callRenderProp } from '@instructure/ui-react-utils';
28
28
  import { View } from '@instructure/ui-view';
29
29
  import { withStyle } from '@instructure/emotion';
30
- import generateStyle from './styles';
31
- import generateComponentTheme from './theme';
32
- import { allowedProps } from './props';
33
- import TableContext from '../TableContext';
34
-
30
+ import generateStyle from "./styles.js";
31
+ import generateComponentTheme from "./theme.js";
32
+ import { allowedProps } from "./props.js";
33
+ import TableContext from "../TableContext.js";
35
34
  /**
36
35
  ---
37
36
  parent: Table
package/es/Table/index.js CHANGED
@@ -29,16 +29,16 @@ import { safeCloneElement, omitProps } from '@instructure/ui-react-utils';
29
29
  import { View } from '@instructure/ui-view';
30
30
  import { ScreenReaderContent } from '@instructure/ui-a11y-content';
31
31
  import { withStyle } from '@instructure/emotion';
32
- import generateStyle from './styles';
33
- import generateComponentTheme from './theme';
34
- import { Head } from './Head';
35
- import { Body } from './Body';
36
- import { Row } from './Row';
37
- import { ColHeader } from './ColHeader';
38
- import { RowHeader } from './RowHeader';
39
- import { Cell } from './Cell';
40
- import { allowedProps } from './props';
41
- import TableContext from './TableContext';
32
+ import generateStyle from "./styles.js";
33
+ import generateComponentTheme from "./theme.js";
34
+ import { Head } from "./Head/index.js";
35
+ import { Body } from "./Body/index.js";
36
+ import { Row } from "./Row/index.js";
37
+ import { ColHeader } from "./ColHeader/index.js";
38
+ import { RowHeader } from "./RowHeader/index.js";
39
+ import { Cell } from "./Cell/index.js";
40
+ import { allowedProps } from "./props.js";
41
+ import TableContext from "./TableContext.js";
42
42
  import { error } from '@instructure/console';
43
43
 
44
44
  /**
package/es/index.js CHANGED
@@ -21,11 +21,11 @@
21
21
  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
22
  * SOFTWARE.
23
23
  */
24
- export { Table } from './Table';
25
- export { TableContext } from './Table/TableContext';
26
- export { Body as TableBody } from './Table/Body';
27
- export { Cell as TableCell } from './Table/Cell';
28
- export { ColHeader as TableColHeader } from './Table/ColHeader';
29
- export { Head as TableHead } from './Table/Head';
30
- export { Row as TableRow } from './Table/Row';
31
- export { RowHeader as TableRowHeader } from './Table/RowHeader';
24
+ export { Table } from "./Table/index.js";
25
+ export { TableContext } from "./Table/TableContext.js";
26
+ export { Body as TableBody } from "./Table/Body/index.js";
27
+ export { Cell as TableCell } from "./Table/Cell/index.js";
28
+ export { ColHeader as TableColHeader } from "./Table/ColHeader/index.js";
29
+ export { Head as TableHead } from "./Table/Head/index.js";
30
+ export { Row as TableRow } from "./Table/Row/index.js";
31
+ export { RowHeader as TableRowHeader } from "./Table/RowHeader/index.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-table",
3
- "version": "11.4.0",
3
+ "version": "11.4.1-snapshot-0",
4
4
  "description": "A styled HTML table component",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -13,27 +13,27 @@
13
13
  "homepage": "https://instructure.github.io/instructure-ui/",
14
14
  "bugs": "https://github.com/instructure/instructure-ui/issues",
15
15
  "license": "MIT",
16
+ "dependencies": {
17
+ "@babel/runtime": "^7.27.6",
18
+ "@instructure/console": "11.4.1-snapshot-0",
19
+ "@instructure/ui-a11y-content": "11.4.1-snapshot-0",
20
+ "@instructure/shared-types": "11.4.1-snapshot-0",
21
+ "@instructure/emotion": "11.4.1-snapshot-0",
22
+ "@instructure/ui-icons": "11.4.1-snapshot-0",
23
+ "@instructure/ui-react-utils": "11.4.1-snapshot-0",
24
+ "@instructure/ui-simple-select": "11.4.1-snapshot-0",
25
+ "@instructure/ui-utils": "11.4.1-snapshot-0",
26
+ "@instructure/ui-view": "11.4.1-snapshot-0"
27
+ },
16
28
  "devDependencies": {
17
29
  "@testing-library/jest-dom": "^6.6.3",
18
30
  "@testing-library/react": "15.0.7",
19
31
  "@testing-library/user-event": "^14.6.1",
20
32
  "vitest": "^3.2.2",
21
- "@instructure/ui-axe-check": "11.4.0",
22
- "@instructure/ui-babel-preset": "11.4.0",
23
- "@instructure/ui-themes": "11.4.0",
24
- "@instructure/ui-color-utils": "11.4.0"
25
- },
26
- "dependencies": {
27
- "@babel/runtime": "^7.27.6",
28
- "@instructure/emotion": "11.4.0",
29
- "@instructure/console": "11.4.0",
30
- "@instructure/shared-types": "11.4.0",
31
- "@instructure/ui-a11y-content": "11.4.0",
32
- "@instructure/ui-icons": "11.4.0",
33
- "@instructure/ui-react-utils": "11.4.0",
34
- "@instructure/ui-simple-select": "11.4.0",
35
- "@instructure/ui-utils": "11.4.0",
36
- "@instructure/ui-view": "11.4.0"
33
+ "@instructure/ui-axe-check": "11.4.1-snapshot-0",
34
+ "@instructure/ui-themes": "11.4.1-snapshot-0",
35
+ "@instructure/ui-babel-preset": "11.4.1-snapshot-0",
36
+ "@instructure/ui-color-utils": "11.4.1-snapshot-0"
37
37
  },
38
38
  "peerDependencies": {
39
39
  "react": ">=18 <=19"
@@ -42,6 +42,19 @@
42
42
  "access": "public"
43
43
  },
44
44
  "sideEffects": false,
45
+ "exports": {
46
+ ".": {
47
+ "types": "./types/index.d.ts",
48
+ "import": "./es/index.js",
49
+ "require": "./lib/index.js",
50
+ "default": "./es/index.js"
51
+ },
52
+ "./lib/*": "./lib/*",
53
+ "./es/*": "./es/*",
54
+ "./types/*": "./types/*",
55
+ "./package.json": "./package.json",
56
+ "./src/*": "./src/*"
57
+ },
45
58
  "scripts": {
46
59
  "lint": "ui-scripts lint",
47
60
  "lint:fix": "ui-scripts lint --fix",