@instructure/ui-table 8.50.1-snapshot-0 → 8.50.1-snapshot-13
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/README.md +1 -1
- package/package.json +16 -16
- package/src/Table/README.md +5 -9
- package/tsconfig.build.tsbuildinfo +1 -1
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
|
-
## [8.50.1-snapshot-
|
6
|
+
## [8.50.1-snapshot-13](https://github.com/instructure/instructure-ui/compare/v8.50.0...v8.50.1-snapshot-13) (2023-12-07)
|
7
7
|
|
8
8
|
**Note:** Version bump only for package @instructure/ui-table
|
9
9
|
|
package/README.md
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@instructure/ui-table",
|
3
|
-
"version": "8.50.1-snapshot-
|
3
|
+
"version": "8.50.1-snapshot-13",
|
4
4
|
"description": "A styled HTML table component",
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
6
6
|
"module": "./es/index.js",
|
@@ -23,24 +23,24 @@
|
|
23
23
|
},
|
24
24
|
"license": "MIT",
|
25
25
|
"devDependencies": {
|
26
|
-
"@instructure/ui-babel-preset": "8.50.1-snapshot-
|
27
|
-
"@instructure/ui-color-utils": "8.50.1-snapshot-
|
28
|
-
"@instructure/ui-test-utils": "8.50.1-snapshot-
|
29
|
-
"@instructure/ui-themes": "8.50.1-snapshot-
|
26
|
+
"@instructure/ui-babel-preset": "8.50.1-snapshot-13",
|
27
|
+
"@instructure/ui-color-utils": "8.50.1-snapshot-13",
|
28
|
+
"@instructure/ui-test-utils": "8.50.1-snapshot-13",
|
29
|
+
"@instructure/ui-themes": "8.50.1-snapshot-13"
|
30
30
|
},
|
31
31
|
"dependencies": {
|
32
32
|
"@babel/runtime": "^7.23.2",
|
33
|
-
"@instructure/console": "8.50.1-snapshot-
|
34
|
-
"@instructure/emotion": "8.50.1-snapshot-
|
35
|
-
"@instructure/shared-types": "8.50.1-snapshot-
|
36
|
-
"@instructure/ui-a11y-content": "8.50.1-snapshot-
|
37
|
-
"@instructure/ui-icons": "8.50.1-snapshot-
|
38
|
-
"@instructure/ui-prop-types": "8.50.1-snapshot-
|
39
|
-
"@instructure/ui-react-utils": "8.50.1-snapshot-
|
40
|
-
"@instructure/ui-simple-select": "8.50.1-snapshot-
|
41
|
-
"@instructure/ui-testable": "8.50.1-snapshot-
|
42
|
-
"@instructure/ui-utils": "8.50.1-snapshot-
|
43
|
-
"@instructure/ui-view": "8.50.1-snapshot-
|
33
|
+
"@instructure/console": "8.50.1-snapshot-13",
|
34
|
+
"@instructure/emotion": "8.50.1-snapshot-13",
|
35
|
+
"@instructure/shared-types": "8.50.1-snapshot-13",
|
36
|
+
"@instructure/ui-a11y-content": "8.50.1-snapshot-13",
|
37
|
+
"@instructure/ui-icons": "8.50.1-snapshot-13",
|
38
|
+
"@instructure/ui-prop-types": "8.50.1-snapshot-13",
|
39
|
+
"@instructure/ui-react-utils": "8.50.1-snapshot-13",
|
40
|
+
"@instructure/ui-simple-select": "8.50.1-snapshot-13",
|
41
|
+
"@instructure/ui-testable": "8.50.1-snapshot-13",
|
42
|
+
"@instructure/ui-utils": "8.50.1-snapshot-13",
|
43
|
+
"@instructure/ui-view": "8.50.1-snapshot-13",
|
44
44
|
"prop-types": "^15.8.1"
|
45
45
|
},
|
46
46
|
"peerDependencies": {
|
package/src/Table/README.md
CHANGED
@@ -13,8 +13,7 @@ In stacked layout, column header is rendered in each cell, but not in row header
|
|
13
13
|
|
14
14
|
```javascript
|
15
15
|
---
|
16
|
-
|
17
|
-
render: false
|
16
|
+
type: example
|
18
17
|
---
|
19
18
|
class Example extends React.Component {
|
20
19
|
state = {
|
@@ -111,8 +110,7 @@ can be aligned differently.
|
|
111
110
|
|
112
111
|
```javascript
|
113
112
|
---
|
114
|
-
|
115
|
-
render: false
|
113
|
+
type: example
|
116
114
|
---
|
117
115
|
class Example extends React.Component {
|
118
116
|
render() {
|
@@ -246,8 +244,7 @@ By default, the options in the `Select` for sorting in stacked layout are genera
|
|
246
244
|
|
247
245
|
```javascript
|
248
246
|
---
|
249
|
-
|
250
|
-
render: false
|
247
|
+
type: example
|
251
248
|
---
|
252
249
|
class SortableTable extends React.Component {
|
253
250
|
constructor (props) {
|
@@ -543,8 +540,7 @@ that selection does not re-paginate or re-sort the table, and pagination does no
|
|
543
540
|
|
544
541
|
```javascript
|
545
542
|
---
|
546
|
-
|
547
|
-
render: false
|
543
|
+
type: example
|
548
544
|
---
|
549
545
|
class SelectableTable extends React.Component {
|
550
546
|
constructor(props) {
|
@@ -881,7 +877,7 @@ render(
|
|
881
877
|
|
882
878
|
```js
|
883
879
|
---
|
884
|
-
|
880
|
+
type: embed
|
885
881
|
---
|
886
882
|
<Guidelines>
|
887
883
|
<Figure recommendation="yes" title="Do">
|