@sebgroup/green-core 2.22.0 → 2.22.1

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.
@@ -1,6 +1,6 @@
1
1
  import "../../chunks/chunk.QU3DSPNU.js";
2
2
  export * from "./table.js";
3
- import * as Types from "./table.types";
3
+ import * as Types from "./table.types.js";
4
4
  export {
5
5
  Types
6
6
  };
@@ -1,6 +1,5 @@
1
1
  import { GdsElement } from '../../gds-element';
2
2
  import * as Types from './table.types';
3
- export * as Types from './table.types';
4
3
  /**
5
4
  * @element gds-table
6
5
  * @status beta
@@ -21,9 +21,8 @@ import {
21
21
  gdsCustomElement,
22
22
  html
23
23
  } from "../../utils/helpers/custom-element-scoping.js";
24
- import * as Table from "./table.imports";
25
- import * as Types from "./table.types";
26
- import * as Types2 from "./table.types";
24
+ import * as Table from "./table.imports.js";
25
+ import * as Types from "./table.types.js";
27
26
  let GdsTable = class extends GdsElement {
28
27
  constructor() {
29
28
  super(...arguments);
@@ -1085,6 +1084,5 @@ GdsTable = __decorateClass([
1085
1084
  })
1086
1085
  ], GdsTable);
1087
1086
  export {
1088
- GdsTable,
1089
- Types2 as Types
1087
+ GdsTable
1090
1088
  };