@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.
- package/components/table/index.js +1 -1
- package/components/table/table.component.d.ts +0 -1
- package/components/table/table.component.js +3 -5
- package/custom-elements.json +2038 -2046
- package/gds-element.js +1 -1
- package/generated/react/index.d.ts +1 -1
- package/generated/react/index.js +1 -1
- package/package.json +1 -1
- package/utils/helpers/custom-element-scoping.js +1 -1
|
@@ -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
|
};
|