@instructure/ui-table 11.7.2-snapshot-52 → 11.7.2-snapshot-60

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,7 +3,7 @@
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.7.2-snapshot-52](https://github.com/instructure/instructure-ui/compare/v11.7.1...v11.7.2-snapshot-52) (2026-04-22)
6
+ ## [11.7.2-snapshot-60](https://github.com/instructure/instructure-ui/compare/v11.7.1...v11.7.2-snapshot-60) (2026-04-23)
7
7
 
8
8
 
9
9
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-table",
3
- "version": "11.7.2-snapshot-52",
3
+ "version": "11.7.2-snapshot-60",
4
4
  "description": "A styled HTML table component",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -15,25 +15,25 @@
15
15
  "license": "MIT",
16
16
  "dependencies": {
17
17
  "@babel/runtime": "^7.27.6",
18
- "@instructure/emotion": "11.7.2-snapshot-52",
19
- "@instructure/ui-a11y-content": "11.7.2-snapshot-52",
20
- "@instructure/ui-icons": "11.7.2-snapshot-52",
21
- "@instructure/console": "11.7.2-snapshot-52",
22
- "@instructure/shared-types": "11.7.2-snapshot-52",
23
- "@instructure/ui-react-utils": "11.7.2-snapshot-52",
24
- "@instructure/ui-simple-select": "11.7.2-snapshot-52",
25
- "@instructure/ui-utils": "11.7.2-snapshot-52",
26
- "@instructure/ui-view": "11.7.2-snapshot-52"
18
+ "@instructure/emotion": "11.7.2-snapshot-60",
19
+ "@instructure/shared-types": "11.7.2-snapshot-60",
20
+ "@instructure/ui-a11y-content": "11.7.2-snapshot-60",
21
+ "@instructure/ui-icons": "11.7.2-snapshot-60",
22
+ "@instructure/console": "11.7.2-snapshot-60",
23
+ "@instructure/ui-simple-select": "11.7.2-snapshot-60",
24
+ "@instructure/ui-react-utils": "11.7.2-snapshot-60",
25
+ "@instructure/ui-view": "11.7.2-snapshot-60",
26
+ "@instructure/ui-utils": "11.7.2-snapshot-60"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@testing-library/jest-dom": "^6.6.3",
30
30
  "@testing-library/react": "15.0.7",
31
31
  "@testing-library/user-event": "^14.6.1",
32
32
  "vitest": "^3.2.2",
33
- "@instructure/ui-babel-preset": "11.7.2-snapshot-52",
34
- "@instructure/ui-themes": "11.7.2-snapshot-52",
35
- "@instructure/ui-color-utils": "11.7.2-snapshot-52",
36
- "@instructure/ui-axe-check": "11.7.2-snapshot-52"
33
+ "@instructure/ui-babel-preset": "11.7.2-snapshot-60",
34
+ "@instructure/ui-axe-check": "11.7.2-snapshot-60",
35
+ "@instructure/ui-color-utils": "11.7.2-snapshot-60",
36
+ "@instructure/ui-themes": "11.7.2-snapshot-60"
37
37
  },
38
38
  "peerDependencies": {
39
39
  "react": ">=18 <=19"
@@ -34,7 +34,7 @@ import type { TableBodyStyle } from './props'
34
34
  * @return {Object} The final style object, which will be used in the component
35
35
  */
36
36
  const generateStyle = (
37
- componentTheme: NewComponentTypes['TableBody']
37
+ componentTheme: ReturnType<NewComponentTypes['TableBody']>
38
38
  ): TableBodyStyle => {
39
39
  return {
40
40
  body: {
@@ -35,7 +35,7 @@ import type { TableCellProps, TableCellStyle } from './props'
35
35
  * @return {Object} The final style object, which will be used in the component
36
36
  */
37
37
  const generateStyle = (
38
- componentTheme: NewComponentTypes['TableCell'],
38
+ componentTheme: ReturnType<NewComponentTypes['TableCell']>,
39
39
  props: TableCellProps
40
40
  ): TableCellStyle => {
41
41
  const { textAlign } = props
@@ -36,7 +36,7 @@ import type { TableColHeaderProps, TableColHeaderStyle } from './props'
36
36
  * @return {Object} The final style object, which will be used in the component
37
37
  */
38
38
  const generateStyle = (
39
- componentTheme: NewComponentTypes['TableColHeader'],
39
+ componentTheme: ReturnType<NewComponentTypes['TableColHeader']>,
40
40
  props: TableColHeaderProps,
41
41
  sharedTokens: SharedTokens
42
42
  ): TableColHeaderStyle => {
@@ -34,7 +34,7 @@ import type { TableHeadStyle } from './props'
34
34
  * @return {Object} The final style object, which will be used in the component
35
35
  */
36
36
  const generateStyle = (
37
- componentTheme: NewComponentTypes['TableHead']
37
+ componentTheme: ReturnType<NewComponentTypes['TableHead']>
38
38
  ): TableHeadStyle => {
39
39
  return {
40
40
  head: {
@@ -37,7 +37,7 @@ import type { TableRowProps, TableRowStyle } from './props'
37
37
  * @return {Object} The final style object, which will be used in the component
38
38
  */
39
39
  const generateStyle = (
40
- componentTheme: NewComponentTypes['TableRow'],
40
+ componentTheme: ReturnType<NewComponentTypes['TableRow']>,
41
41
  props: TableRowProps,
42
42
  _sharedTokens: SharedTokens,
43
43
  extraArgs: { isStacked: boolean; hover: boolean }
@@ -35,7 +35,7 @@ import type { TableRowHeaderProps, TableRowHeaderStyle } from './props'
35
35
  * @return {Object} The final style object, which will be used in the component
36
36
  */
37
37
  const generateStyle = (
38
- componentTheme: NewComponentTypes['TableRowHeader'],
38
+ componentTheme: ReturnType<NewComponentTypes['TableRowHeader']>,
39
39
  props: TableRowHeaderProps
40
40
  ): TableRowHeaderStyle => {
41
41
  const { textAlign } = props
@@ -36,7 +36,7 @@ import type { NewComponentTypes, SharedTokens } from '@instructure/ui-themes'
36
36
  * @return {Object} The final style object, which will be used in the component
37
37
  */
38
38
  const generateStyle = (
39
- componentTheme: NewComponentTypes['Table'],
39
+ componentTheme: ReturnType<NewComponentTypes['Table']>,
40
40
  props: TableProps,
41
41
  _sharedTokens: SharedTokens
42
42
  ): TableStyle => {