@sbb-esta/lyne-react-dev 5.0.0-next-dev.1776866493 → 5.0.0-next-dev.1776873008
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/development/form-field.js +1 -1
- package/development/menu.js +1 -1
- package/development/sidebar.js +1 -1
- package/development/teaser-product.js +1 -1
- package/form-field.js +3 -3
- package/menu.js +3 -3
- package/package.json +2 -2
- package/sidebar.js +3 -3
- package/teaser-product.js +3 -3
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SbbError } from "./form-field/error/error.component.js";
|
|
2
2
|
import { SbbFormField } from "./form-field/form-field/form-field.component.js";
|
|
3
|
-
import { SbbFormFieldTextCounter } from "./form-field/form-field-text-counter/form-field-text-counter.component.js";
|
|
4
3
|
import { SbbFormFieldClear } from "./form-field/form-field-clear/form-field-clear.component.js";
|
|
4
|
+
import { SbbFormFieldTextCounter } from "./form-field/form-field-text-counter/form-field-text-counter.component.js";
|
|
5
5
|
import { SbbHint } from "./form-field/hint/hint.component.js";
|
|
6
6
|
export { SbbError, SbbFormField, SbbFormFieldClear, SbbFormFieldTextCounter, SbbHint };
|
package/development/menu.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SbbMenu } from "./menu/menu/menu.component.js";
|
|
2
1
|
import { SbbMenuButton } from "./menu/menu-button/menu-button.component.js";
|
|
2
|
+
import { SbbMenu } from "./menu/menu/menu.component.js";
|
|
3
3
|
import { SbbMenuLink } from "./menu/menu-link/menu-link.component.js";
|
|
4
4
|
export { SbbMenu, SbbMenuButton, SbbMenuLink };
|
package/development/sidebar.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { SbbSidebar } from "./sidebar/sidebar/sidebar.component.js";
|
|
2
1
|
import { SbbSidebarCloseButton } from "./sidebar/sidebar-close-button/sidebar-close-button.component.js";
|
|
2
|
+
import { SbbSidebar } from "./sidebar/sidebar/sidebar.component.js";
|
|
3
3
|
import { SbbSidebarContainer } from "./sidebar/sidebar-container/sidebar-container.component.js";
|
|
4
4
|
import { SbbSidebarContent } from "./sidebar/sidebar-content/sidebar-content.component.js";
|
|
5
5
|
import { SbbSidebarTitle } from "./sidebar/sidebar-title/sidebar-title.component.js";
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { SbbTeaserProductStatic } from "./teaser-product/teaser-product-static/teaser-product-static.component.js";
|
|
2
1
|
import { SbbTeaserProduct } from "./teaser-product/teaser-product/teaser-product.component.js";
|
|
2
|
+
import { SbbTeaserProductStatic } from "./teaser-product/teaser-product-static/teaser-product-static.component.js";
|
|
3
3
|
export { SbbTeaserProduct, SbbTeaserProductStatic };
|
package/form-field.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SbbError as e } from "./form-field/error/error.component.js";
|
|
2
2
|
import { SbbFormField as t } from "./form-field/form-field/form-field.component.js";
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
3
|
+
import { SbbFormFieldClear as n } from "./form-field/form-field-clear/form-field-clear.component.js";
|
|
4
|
+
import { SbbFormFieldTextCounter as r } from "./form-field/form-field-text-counter/form-field-text-counter.component.js";
|
|
5
5
|
import { SbbHint as i } from "./form-field/hint/hint.component.js";
|
|
6
|
-
export { e as SbbError, t as SbbFormField,
|
|
6
|
+
export { e as SbbError, t as SbbFormField, n as SbbFormFieldClear, r as SbbFormFieldTextCounter, i as SbbHint };
|
package/menu.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { SbbMenuButton as e } from "./menu/menu-button/menu-button.component.js";
|
|
2
|
+
import { SbbMenu as t } from "./menu/menu/menu.component.js";
|
|
3
3
|
import { SbbMenuLink as n } from "./menu/menu-link/menu-link.component.js";
|
|
4
|
-
export {
|
|
4
|
+
export { t as SbbMenu, e as SbbMenuButton, n as SbbMenuLink };
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sbb-esta/lyne-react-dev",
|
|
3
|
-
"version": "5.0.0-next-dev.
|
|
3
|
+
"version": "5.0.0-next-dev.1776873008",
|
|
4
4
|
"description": "Lyne Design System React Library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"design system",
|
|
7
7
|
"web components",
|
|
8
8
|
"lit",
|
|
9
9
|
"react",
|
|
10
|
-
"https://github.com/sbb-design-systems/lyne-components/commit/
|
|
10
|
+
"https://github.com/sbb-design-systems/lyne-components/commit/a2695dc961a589d11f8c471aaaeeb209b8f9b797"
|
|
11
11
|
],
|
|
12
12
|
"type": "module",
|
|
13
13
|
"exports": {
|
package/sidebar.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { SbbSidebarCloseButton as e } from "./sidebar/sidebar-close-button/sidebar-close-button.component.js";
|
|
2
|
+
import { SbbSidebar as t } from "./sidebar/sidebar/sidebar.component.js";
|
|
3
3
|
import { SbbSidebarContainer as n } from "./sidebar/sidebar-container/sidebar-container.component.js";
|
|
4
4
|
import { SbbSidebarContent as r } from "./sidebar/sidebar-content/sidebar-content.component.js";
|
|
5
5
|
import { SbbSidebarTitle as i } from "./sidebar/sidebar-title/sidebar-title.component.js";
|
|
6
|
-
export {
|
|
6
|
+
export { t as SbbSidebar, e as SbbSidebarCloseButton, n as SbbSidebarContainer, r as SbbSidebarContent, i as SbbSidebarTitle };
|
package/teaser-product.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
export {
|
|
1
|
+
import { SbbTeaserProduct as e } from "./teaser-product/teaser-product/teaser-product.component.js";
|
|
2
|
+
import { SbbTeaserProductStatic as t } from "./teaser-product/teaser-product-static/teaser-product-static.component.js";
|
|
3
|
+
export { e as SbbTeaserProduct, t as SbbTeaserProductStatic };
|