@kartverket/geonorge-web-components 0.2.8 → 0.2.11
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/BodyText.js +1 -1
- package/BodyText.js.map +1 -1
- package/BreadcrumbList.js +1 -1
- package/BreadcrumbList.js.map +1 -1
- package/ContentContainer.js +2 -0
- package/ContentContainer.js.map +1 -0
- package/DownloadItem.js +1 -1
- package/DownloadItem.js.map +1 -1
- package/GeonorgeFooter.js +1 -1
- package/GeonorgeFooter.js.map +1 -1
- package/HeadingText.js +1 -1
- package/HeadingText.js.map +1 -1
- package/MainMenu.js +1 -1
- package/MainMenu.js.map +1 -1
- package/MainNavigation.js +1 -1
- package/MainNavigation.js.map +1 -1
- package/MainSearchField.js +1 -1
- package/MainSearchField.js.map +1 -1
- package/MapItem.js +1 -1
- package/MapItem.js.map +1 -1
- package/NavigationTabHeading.js +1 -1
- package/NavigationTabHeading.js.map +1 -1
- package/NavigationTabs.js +1 -1
- package/NavigationTabs.js.map +1 -1
- package/StandardButton.js +1 -1
- package/StandardButton.js.map +1 -1
- package/content-container.d.ts +8 -0
- package/index.d.ts +17 -15
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/init.d.ts +1 -1
- package/init.js +1 -1
- package/init.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
5
|
-
export * from
|
|
6
|
-
export * from
|
|
7
|
-
export * from
|
|
8
|
-
export * from
|
|
9
|
-
export * from
|
|
10
|
-
export * from
|
|
11
|
-
export * from
|
|
12
|
-
export * from
|
|
13
|
-
export * from
|
|
14
|
-
export * from
|
|
15
|
-
export * from
|
|
1
|
+
export * from "./init";
|
|
2
|
+
export * from "./custom-elements/body-text/body-text";
|
|
3
|
+
export * from "./custom-elements/breadcrumb-list/breadcrumb-list";
|
|
4
|
+
export * from "./custom-elements/content-container/content-container";
|
|
5
|
+
export * from "./custom-elements/data-table/data-table";
|
|
6
|
+
export * from "./custom-elements/geonorge-footer/geonorge-footer";
|
|
7
|
+
export * from "./custom-elements/heading-text/heading-text";
|
|
8
|
+
export * from "./custom-elements/main-navigation/main-navigation";
|
|
9
|
+
export * from "./custom-elements/main-navigation/main-search-field/main-search-field";
|
|
10
|
+
export * from "./custom-elements/main-navigation/search-type-selector/search-type-selector";
|
|
11
|
+
export * from "./custom-elements/main-navigation/download-items/download-items";
|
|
12
|
+
export * from "./custom-elements/main-navigation/map-items/map-items";
|
|
13
|
+
export * from "./custom-elements/main-navigation/main-menu/main-menu";
|
|
14
|
+
export * from "./custom-elements/navigation-tabs/navigation-tabs";
|
|
15
|
+
export * from "./custom-elements/navigation-tabs/navigation-tab-heading/navigation-tab-heading";
|
|
16
|
+
export * from "./custom-elements/navigation-tabs/navigation-tab-content/navigation-tab-content";
|
|
17
|
+
export * from "./custom-elements/standard-button/standard-button";
|