@spectrum-web-components/table 1.12.0-testing.20260223092154 → 2.0.0-next.20260512072922

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.
Files changed (2) hide show
  1. package/package.json +5 -5
  2. package/src/Table.d.ts +1 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spectrum-web-components/table",
3
- "version": "1.12.0-testing.20260223092154",
3
+ "version": "2.0.0-next.20260512072922",
4
4
  "description": "Web component implementation of a Spectrum design Table",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Adobe",
@@ -120,10 +120,10 @@
120
120
  "dependencies": {
121
121
  "@lit-labs/observers": "2.0.2",
122
122
  "@lit-labs/virtualizer": "2.0.12",
123
- "@spectrum-web-components/base": "1.12.0-testing.20260223092154",
124
- "@spectrum-web-components/checkbox": "1.12.0-testing.20260223092154",
125
- "@spectrum-web-components/icon": "1.12.0-testing.20260223092154",
126
- "@spectrum-web-components/icons-ui": "1.12.0-testing.20260223092154"
123
+ "@spectrum-web-components/base": "2.0.0-next.20260512072922",
124
+ "@spectrum-web-components/checkbox": "2.0.0-next.20260512072922",
125
+ "@spectrum-web-components/icon": "2.0.0-next.20260512072922",
126
+ "@spectrum-web-components/icons-ui": "2.0.0-next.20260512072922"
127
127
  },
128
128
  "keywords": [
129
129
  "design-system",
package/src/Table.d.ts CHANGED
@@ -21,10 +21,7 @@ export declare enum RowType {
21
21
  export interface TableItem extends Record<string, unknown> {
22
22
  _$rowType$?: RowType;
23
23
  }
24
- declare const Table_base: typeof SpectrumElement & {
25
- new (...args: any[]): import("@spectrum-web-components/base").SizedElementInterface;
26
- prototype: import("@spectrum-web-components/base").SizedElementInterface;
27
- } & import("@spectrum-web-components/core/mixins/sized-mixin.js").SizedElementConstructor;
24
+ declare const Table_base: typeof SpectrumElement & import("@spectrum-web-components/base").Constructor<import("@spectrum-web-components/base").SizedElementInterface> & import("@spectrum-web-components/base").SizedElementConstructor;
28
25
  /**
29
26
  * @element sp-table
30
27
  *