@instructure/ui-table 10.8.1-snapshot-3 → 10.8.1-snapshot-6
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +5 -2
- package/es/index.js +7 -1
- package/lib/index.js +43 -1
- package/package.json +17 -17
- package/src/index.ts +6 -0
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/index.d.ts +6 -0
- package/types/index.d.ts.map +1 -1
package/CHANGELOG.md
CHANGED
@@ -3,9 +3,12 @@
|
|
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
|
-
## [10.8.1-snapshot-
|
6
|
+
## [10.8.1-snapshot-6](https://github.com/instructure/instructure-ui/compare/v10.8.0...v10.8.1-snapshot-6) (2024-12-12)
|
7
7
|
|
8
|
-
|
8
|
+
|
9
|
+
### Features
|
10
|
+
|
11
|
+
* **many:** make meta package export every component and type definition ([dee9abb](https://github.com/instructure/instructure-ui/commit/dee9abb9cbffa4abc9edf48fb7d8ad41fea385b4))
|
9
12
|
|
10
13
|
|
11
14
|
|
package/es/index.js
CHANGED
@@ -22,4 +22,10 @@
|
|
22
22
|
* SOFTWARE.
|
23
23
|
*/
|
24
24
|
export { Table } from './Table';
|
25
|
-
export { TableContext } from './Table/TableContext';
|
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';
|
package/lib/index.js
CHANGED
@@ -9,11 +9,53 @@ Object.defineProperty(exports, "Table", {
|
|
9
9
|
return _Table.Table;
|
10
10
|
}
|
11
11
|
});
|
12
|
+
Object.defineProperty(exports, "TableBody", {
|
13
|
+
enumerable: true,
|
14
|
+
get: function () {
|
15
|
+
return _Body.Body;
|
16
|
+
}
|
17
|
+
});
|
18
|
+
Object.defineProperty(exports, "TableCell", {
|
19
|
+
enumerable: true,
|
20
|
+
get: function () {
|
21
|
+
return _Cell.Cell;
|
22
|
+
}
|
23
|
+
});
|
24
|
+
Object.defineProperty(exports, "TableColHeader", {
|
25
|
+
enumerable: true,
|
26
|
+
get: function () {
|
27
|
+
return _ColHeader.ColHeader;
|
28
|
+
}
|
29
|
+
});
|
12
30
|
Object.defineProperty(exports, "TableContext", {
|
13
31
|
enumerable: true,
|
14
32
|
get: function () {
|
15
33
|
return _TableContext.TableContext;
|
16
34
|
}
|
17
35
|
});
|
36
|
+
Object.defineProperty(exports, "TableHead", {
|
37
|
+
enumerable: true,
|
38
|
+
get: function () {
|
39
|
+
return _Head.Head;
|
40
|
+
}
|
41
|
+
});
|
42
|
+
Object.defineProperty(exports, "TableRow", {
|
43
|
+
enumerable: true,
|
44
|
+
get: function () {
|
45
|
+
return _Row.Row;
|
46
|
+
}
|
47
|
+
});
|
48
|
+
Object.defineProperty(exports, "TableRowHeader", {
|
49
|
+
enumerable: true,
|
50
|
+
get: function () {
|
51
|
+
return _RowHeader.RowHeader;
|
52
|
+
}
|
53
|
+
});
|
18
54
|
var _Table = require("./Table");
|
19
|
-
var _TableContext = require("./Table/TableContext");
|
55
|
+
var _TableContext = require("./Table/TableContext");
|
56
|
+
var _Body = require("./Table/Body");
|
57
|
+
var _Cell = require("./Table/Cell");
|
58
|
+
var _ColHeader = require("./Table/ColHeader");
|
59
|
+
var _Head = require("./Table/Head");
|
60
|
+
var _Row = require("./Table/Row");
|
61
|
+
var _RowHeader = require("./Table/RowHeader");
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@instructure/ui-table",
|
3
|
-
"version": "10.8.1-snapshot-
|
3
|
+
"version": "10.8.1-snapshot-6",
|
4
4
|
"description": "A styled HTML table component",
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
6
6
|
"module": "./es/index.js",
|
@@ -23,11 +23,11 @@
|
|
23
23
|
},
|
24
24
|
"license": "MIT",
|
25
25
|
"devDependencies": {
|
26
|
-
"@instructure/ui-axe-check": "10.8.1-snapshot-
|
27
|
-
"@instructure/ui-babel-preset": "10.8.1-snapshot-
|
28
|
-
"@instructure/ui-color-utils": "10.8.1-snapshot-
|
29
|
-
"@instructure/ui-test-utils": "10.8.1-snapshot-
|
30
|
-
"@instructure/ui-themes": "10.8.1-snapshot-
|
26
|
+
"@instructure/ui-axe-check": "10.8.1-snapshot-6",
|
27
|
+
"@instructure/ui-babel-preset": "10.8.1-snapshot-6",
|
28
|
+
"@instructure/ui-color-utils": "10.8.1-snapshot-6",
|
29
|
+
"@instructure/ui-test-utils": "10.8.1-snapshot-6",
|
30
|
+
"@instructure/ui-themes": "10.8.1-snapshot-6",
|
31
31
|
"@testing-library/jest-dom": "^6.6.3",
|
32
32
|
"@testing-library/react": "^16.0.1",
|
33
33
|
"@testing-library/user-event": "^14.5.2",
|
@@ -35,17 +35,17 @@
|
|
35
35
|
},
|
36
36
|
"dependencies": {
|
37
37
|
"@babel/runtime": "^7.26.0",
|
38
|
-
"@instructure/console": "10.8.1-snapshot-
|
39
|
-
"@instructure/emotion": "10.8.1-snapshot-
|
40
|
-
"@instructure/shared-types": "10.8.1-snapshot-
|
41
|
-
"@instructure/ui-a11y-content": "10.8.1-snapshot-
|
42
|
-
"@instructure/ui-icons": "10.8.1-snapshot-
|
43
|
-
"@instructure/ui-prop-types": "10.8.1-snapshot-
|
44
|
-
"@instructure/ui-react-utils": "10.8.1-snapshot-
|
45
|
-
"@instructure/ui-simple-select": "10.8.1-snapshot-
|
46
|
-
"@instructure/ui-testable": "10.8.1-snapshot-
|
47
|
-
"@instructure/ui-utils": "10.8.1-snapshot-
|
48
|
-
"@instructure/ui-view": "10.8.1-snapshot-
|
38
|
+
"@instructure/console": "10.8.1-snapshot-6",
|
39
|
+
"@instructure/emotion": "10.8.1-snapshot-6",
|
40
|
+
"@instructure/shared-types": "10.8.1-snapshot-6",
|
41
|
+
"@instructure/ui-a11y-content": "10.8.1-snapshot-6",
|
42
|
+
"@instructure/ui-icons": "10.8.1-snapshot-6",
|
43
|
+
"@instructure/ui-prop-types": "10.8.1-snapshot-6",
|
44
|
+
"@instructure/ui-react-utils": "10.8.1-snapshot-6",
|
45
|
+
"@instructure/ui-simple-select": "10.8.1-snapshot-6",
|
46
|
+
"@instructure/ui-testable": "10.8.1-snapshot-6",
|
47
|
+
"@instructure/ui-utils": "10.8.1-snapshot-6",
|
48
|
+
"@instructure/ui-view": "10.8.1-snapshot-6",
|
49
49
|
"prop-types": "^15.8.1"
|
50
50
|
},
|
51
51
|
"peerDependencies": {
|
package/src/index.ts
CHANGED
@@ -23,6 +23,12 @@
|
|
23
23
|
*/
|
24
24
|
export { Table } from './Table'
|
25
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'
|
26
32
|
|
27
33
|
export type { TableProps } from './Table/props'
|
28
34
|
export type { TableBodyProps } from './Table/Body/props'
|