@instructure/ui-table 8.10.1-snapshot.4 → 8.10.2-snapshot.22

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,10 @@
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.10.1](https://github.com/instructure/instructure-ui/compare/v8.10.0...v8.10.1) (2021-10-01)
7
+
8
+ **Note:** Version bump only for package @instructure/ui-table
9
+
6
10
  # [8.10.0](https://github.com/instructure/instructure-ui/compare/v8.9.1...v8.10.0) (2021-09-28)
7
11
 
8
12
  **Note:** Version bump only for package @instructure/ui-table
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-table",
3
- "version": "8.10.1-snapshot.4+6c5c9e653",
3
+ "version": "8.10.2-snapshot.22+b84160eff",
4
4
  "description": "A styled HTML table component",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "type": "commonjs",
@@ -24,24 +24,24 @@
24
24
  },
25
25
  "license": "MIT",
26
26
  "devDependencies": {
27
- "@instructure/ui-babel-preset": "8.10.1-snapshot.4+6c5c9e653",
28
- "@instructure/ui-color-utils": "8.10.1-snapshot.4+6c5c9e653",
29
- "@instructure/ui-test-utils": "8.10.1-snapshot.4+6c5c9e653",
30
- "@instructure/ui-themes": "8.10.1-snapshot.4+6c5c9e653"
27
+ "@instructure/ui-babel-preset": "8.10.2-snapshot.22+b84160eff",
28
+ "@instructure/ui-color-utils": "8.10.2-snapshot.22+b84160eff",
29
+ "@instructure/ui-test-utils": "8.10.2-snapshot.22+b84160eff",
30
+ "@instructure/ui-themes": "8.10.2-snapshot.22+b84160eff"
31
31
  },
32
32
  "dependencies": {
33
33
  "@babel/runtime": "^7.13.10",
34
- "@instructure/console": "8.10.1-snapshot.4+6c5c9e653",
35
- "@instructure/emotion": "8.10.1-snapshot.4+6c5c9e653",
36
- "@instructure/shared-types": "8.10.1-snapshot.4+6c5c9e653",
37
- "@instructure/ui-a11y-content": "8.10.1-snapshot.4+6c5c9e653",
38
- "@instructure/ui-icons": "8.10.1-snapshot.4+6c5c9e653",
39
- "@instructure/ui-prop-types": "8.10.1-snapshot.4+6c5c9e653",
40
- "@instructure/ui-react-utils": "8.10.1-snapshot.4+6c5c9e653",
41
- "@instructure/ui-simple-select": "8.10.1-snapshot.4+6c5c9e653",
42
- "@instructure/ui-testable": "8.10.1-snapshot.4+6c5c9e653",
43
- "@instructure/ui-utils": "8.10.1-snapshot.4+6c5c9e653",
44
- "@instructure/ui-view": "8.10.1-snapshot.4+6c5c9e653",
34
+ "@instructure/console": "8.10.2-snapshot.22+b84160eff",
35
+ "@instructure/emotion": "8.10.2-snapshot.22+b84160eff",
36
+ "@instructure/shared-types": "8.10.2-snapshot.22+b84160eff",
37
+ "@instructure/ui-a11y-content": "8.10.2-snapshot.22+b84160eff",
38
+ "@instructure/ui-icons": "8.10.2-snapshot.22+b84160eff",
39
+ "@instructure/ui-prop-types": "8.10.2-snapshot.22+b84160eff",
40
+ "@instructure/ui-react-utils": "8.10.2-snapshot.22+b84160eff",
41
+ "@instructure/ui-simple-select": "8.10.2-snapshot.22+b84160eff",
42
+ "@instructure/ui-testable": "8.10.2-snapshot.22+b84160eff",
43
+ "@instructure/ui-utils": "8.10.2-snapshot.22+b84160eff",
44
+ "@instructure/ui-view": "8.10.2-snapshot.22+b84160eff",
45
45
  "prop-types": "^15"
46
46
  },
47
47
  "peerDependencies": {
@@ -51,5 +51,5 @@
51
51
  "access": "public"
52
52
  },
53
53
  "sideEffects": false,
54
- "gitHead": "6c5c9e653f7ce3d239296f4ed19c5679fdddcd5b"
54
+ "gitHead": "b84160effefb01aeb94b754f0b7a64f8dad1b7f2"
55
55
  }
@@ -40,7 +40,7 @@ import type { PropValidators, TableTheme } from '@instructure/shared-types'
40
40
  type TableOwnProps = {
41
41
  caption: React.ReactNode
42
42
  margin?: Spacing
43
- elementRef?: (...args: any[]) => any
43
+ elementRef?: (element: Element | null) => void
44
44
  hover?: boolean
45
45
  layout?: 'auto' | 'fixed' | 'stacked'
46
46
  children?: React.ReactNode
@@ -18,7 +18,7 @@ declare class Table extends Component<TableProps> {
18
18
  static allowedProps: readonly (keyof {
19
19
  caption: import("react").ReactNode;
20
20
  margin?: import("@instructure/emotion/types/styleUtils/ThemeablePropValues").Spacing | undefined;
21
- elementRef?: ((...args: any[]) => any) | undefined;
21
+ elementRef?: ((element: Element | null) => void) | undefined;
22
22
  hover?: boolean | undefined;
23
23
  layout?: "auto" | "fixed" | "stacked" | undefined;
24
24
  children?: import("react").ReactNode;
@@ -26,7 +26,7 @@ declare class Table extends Component<TableProps> {
26
26
  static propTypes: import("@instructure/shared-types/types/UtilityTypes").PropValidators<keyof {
27
27
  caption: import("react").ReactNode;
28
28
  margin?: import("@instructure/emotion/types/styleUtils/ThemeablePropValues").Spacing | undefined;
29
- elementRef?: ((...args: any[]) => any) | undefined;
29
+ elementRef?: ((element: Element | null) => void) | undefined;
30
30
  hover?: boolean | undefined;
31
31
  layout?: "auto" | "fixed" | "stacked" | undefined;
32
32
  children?: import("react").ReactNode;
@@ -4,7 +4,7 @@ import type { PropValidators, TableTheme } from '@instructure/shared-types';
4
4
  declare type TableOwnProps = {
5
5
  caption: React.ReactNode;
6
6
  margin?: Spacing;
7
- elementRef?: (...args: any[]) => any;
7
+ elementRef?: (element: Element | null) => void;
8
8
  hover?: boolean;
9
9
  layout?: 'auto' | 'fixed' | 'stacked';
10
10
  children?: React.ReactNode;
@@ -1 +1 @@
1
- {"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../src/Table/props.ts"],"names":[],"mappings":"AAuBA,OAAO,KAAK,MAAM,OAAO,CAAA;AASzB,OAAO,KAAK,EACV,OAAO,EACP,cAAc,EACd,cAAc,EACf,MAAM,sBAAsB,CAAA;AAC7B,OAAO,KAAK,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,2BAA2B,CAAA;AAE3E,aAAK,aAAa,GAAG;IACnB,OAAO,EAAE,KAAK,CAAC,SAAS,CAAA;IACxB,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,UAAU,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAA;IACpC,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,MAAM,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,SAAS,CAAA;IACrC,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;CAC3B,CAAA;AAED,aAAK,QAAQ,GAAG,MAAM,aAAa,CAAA;AAEnC,aAAK,eAAe,GAAG,QAAQ,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAA;AAEhD,aAAK,UAAU,GAAG,aAAa,GAAG,cAAc,CAAC,UAAU,EAAE,UAAU,CAAC,CAAA;AAExE,aAAK,UAAU,GAAG,cAAc,CAAC,OAAO,CAAC,CAAA;AAEzC,QAAA,MAAM,SAAS,EAAE,cAAc,CAAC,QAAQ,CA8BvC,CAAA;AAED,QAAA,MAAM,YAAY,EAAE,eAOnB,CAAA;AAED,YAAY,EAAE,UAAU,EAAE,UAAU,EAAE,CAAA;AACtC,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,CAAA"}
1
+ {"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../src/Table/props.ts"],"names":[],"mappings":"AAuBA,OAAO,KAAK,MAAM,OAAO,CAAA;AASzB,OAAO,KAAK,EACV,OAAO,EACP,cAAc,EACd,cAAc,EACf,MAAM,sBAAsB,CAAA;AAC7B,OAAO,KAAK,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,2BAA2B,CAAA;AAE3E,aAAK,aAAa,GAAG;IACnB,OAAO,EAAE,KAAK,CAAC,SAAS,CAAA;IACxB,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,UAAU,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,KAAK,IAAI,CAAA;IAC9C,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,MAAM,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,SAAS,CAAA;IACrC,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;CAC3B,CAAA;AAED,aAAK,QAAQ,GAAG,MAAM,aAAa,CAAA;AAEnC,aAAK,eAAe,GAAG,QAAQ,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAA;AAEhD,aAAK,UAAU,GAAG,aAAa,GAAG,cAAc,CAAC,UAAU,EAAE,UAAU,CAAC,CAAA;AAExE,aAAK,UAAU,GAAG,cAAc,CAAC,OAAO,CAAC,CAAA;AAEzC,QAAA,MAAM,SAAS,EAAE,cAAc,CAAC,QAAQ,CA8BvC,CAAA;AAED,QAAA,MAAM,YAAY,EAAE,eAOnB,CAAA;AAED,YAAY,EAAE,UAAU,EAAE,UAAU,EAAE,CAAA;AACtC,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,CAAA"}