Skip to content
This repository has been archived by the owner on Apr 11, 2024. It is now read-only.

fix(deps): update esta #688

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

fix(deps): update esta #688

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 19, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@sbb-esta/icons 0.1.46 -> 0.1.77 age adoption passing confidence
@sbb-esta/lyne-components 0.38.3 -> 0.49.0 age adoption passing confidence
@sbb-esta/lyne-design-tokens 0.3.5 -> 0.5.0 age adoption passing confidence

Release Notes

sbb-design-systems/sbb-icons (@​sbb-esta/icons)

v0.1.77

Compare Source

v0.1.76

Compare Source

v0.1.75

Compare Source

v0.1.74

Compare Source

v0.1.73

Compare Source

v0.1.72

Compare Source

v0.1.71

Compare Source

v0.1.70

Compare Source

v0.1.69

Compare Source

v0.1.68

Compare Source

v0.1.67

Compare Source

v0.1.66

Compare Source

v0.1.65

Compare Source

v0.1.64

Compare Source

v0.1.63

Compare Source

v0.1.62

Compare Source

v0.1.61

Compare Source

v0.1.60

Compare Source

v0.1.59

Compare Source

v0.1.58

Compare Source

v0.1.57

Compare Source

v0.1.56

Compare Source

v0.1.55

Compare Source

v0.1.54

Compare Source

v0.1.53

Compare Source

v0.1.52

Compare Source

v0.1.51

Compare Source

v0.1.50

Compare Source

v0.1.49

Compare Source

v0.1.48

Compare Source

v0.1.47

Compare Source

lyne-design-system/lyne-components (@​sbb-esta/lyne-components)

v0.49.0

Compare Source

⚠ BREAKING CHANGES
  • sbb-form-field: label property and attribute of <sbb-form-field> was removed. Use <label> tag inside <sbb-form-field> to provide the label information. E.g. <sbb-form-field label="Example">...</sbb-form-field> becomes <sbb-form-field><label>Example</label>...</sbb-form-field>
  • renamed component sbb-screenreader-only to sbb-screeen-reader-only.
  • sbb-calendar: The SbbDatepicker property selectedDate has been renamed to selected. This also applies to the attribute selected-date, which has been renamed to selected. Additionally the DateAdapter (and NativeDateAdapter) have been superficially refactored. An important change is that the month is now 1-based, instead of 0-based.
Features
  • implement experimental support for server side rendering (SSR) (#​2466) (3abcc68)
Bug Fixes
Code Refactoring
  • rename component name from sbb-screenreader-only to sbb-screeen-reader-only (#​2520) (6fbf085)
  • sbb-calendar: implement initial support for other date libraries (6d4e9c2)

v0.48.3

Compare Source

Bug Fixes
  • sbb-checkbox, sbb-toggle-check: enable attribute mutation after form reset (#​2505) (6bd8924)
  • sbb-header: fix header shadow on keyboard navigation (#​2508) (3eefbea)
  • sbb-navigation-section: ensure sbb-active initializes correctly (#​2493) (baede50)

v0.48.2

Compare Source

Bug Fixes

v0.48.1

Compare Source

Bug Fixes

v0.48.0

Compare Source

⚠ BREAKING CHANGES
  • sbb-navigation: The active property of <sbb-navigation-button>/<sbb-navigation-link> (former <sbb-navigation-action>) has been removed. Add the CSS class sbb-active to the corresponding button/link, to mark it as active. Additionally, whenever sbb-active class is set in navigation, the corresponding navigation section, if one is connected, automatically opens.
  • The action element refactoring brings a couple of breaking changes:
    • The following components have been split into two components. One with pure button and one with pure link behavior:
      • sbb-card-action: split in sbb-card-button and sbb-card-link
      • sbb-header-action: split in sbb-header-button and sbb-header-link
      • sbb-menu-action: split in sbb-menu-button and sbb-menu-link
      • sbb-navigation-action: split in sbb-navigation-button and sbb-navigation-link
    • The isStatic flag has been removed from buttons and links; since the static case was automatically detected when action elements were nested in other action elements, now you need to check for usage of nested buttons/links in other action elements and possibly fix them using the new static variants.
    • sbb-button: the variant property has been removed and for each value, a new component has been created (e.g. sbb-button, sbb-secondary-button, sbb-tertiary-button, sbb-transparent-button); each of them has been further divided considering the behavior:
      • If the component was used as a button (no href set), replace it with <sbb{-variant}-button>
      • If the component was used as a link (href set), replace it with <sbb{-variant}-button-link>
      • If the component was nested into another action element (isStatic set), replace it with <sbb{-variant}-button-static>
    • The usage of an icon-only sbb-button in a sbb-form-field is not supported anymore; a new component named sbb-mini-button has been created to handle this specific case
    • Check and replace any sbb-button in sbb-toast with the new sbb-transparent-button/sbb-transparent-button-link, since the variant is not automatically set anymore
    • sbb-link has been split into nine components, based on type and variant:
      • If sbb-link had an [href="..."], it migrates to <sbb{-variant}-link>:
        • <sbb-link href="..."> should be replaced with <sbb-block-link href="...">
        • <sbb-link href="..." variant="block"> should be replaced with <sbb-block-link href="...">
        • <sbb-link href="..." variant="inline" > should be replaced with <sbb-link href="...">
      • If sbb-link did not have an [href="..."], it migrates to <sbb{-variant}-link-button>
        • <sbb-link> should be replaced with <sbb-block-link-button>
        • <sbb-link variant="block"> should be replaced with <sbb-block-link-button>
        • <sbb-link variant="inline"> should be replaced with <sbb-link-button>
      • If sbb-link had an [is-static], it migrates to <sbb{-variant}-link-static>
        • <sbb-link is-static> should be replaced with <sbb-block-link-static>
        • <sbb-link is-static variant="block"> should be replaced with <sbb-block-link-static>
        • <sbb-link is-static variant="inline"> should be replaced with <sbb-link-static>
    • sbb-action-group now only accepts sbb-block-link | sbb-block-link-button besides any <sbb-button> variant
    • sbb-link-list now only accepts sbb-block-link | sbb-block-link-button
    • sbb-skiplink-list now only accepts sbb-block-link | sbb-block-link-button
    • sbb-toast now only accepts sbb-link | sbb-link-button | sbb-transparent-button | sbb-transparent-button-link
    • SASS mixin renamings:
      • link-variables SASS mixin renamed to block-link-variables,
      • link-variables--negative SASS mixin renamed to block-link-variables--negative,
      • link-variables--inline SASS mixin renamed to link-variables,
      • link-variables--inline-negative SASS mixin renamed to link-variables--negative
      • link-inline-consolidation SASS mixin renamed to link-consolidation,
      • link-inline SASS mixin renamed to link,
      • link-inline-negative SASS mixin renamed to link-negative
  • color: Removed 'default' suffix from color tokens (e.g. --sbb-color-iron-default => --sbb-color-iron and SbbColorIronDefault => SbbColorIron).
  • multiple: rename type TitleLevel to SbbTitleLevel
Features
Bug Fixes
  • fix imports of common styles (#​2475) (fda1960)
  • layout: apply max-width only for ultra screen size (#​2458) (cce71b2)
  • sbb-navigation: fix active and focus handling (#​2471) (ea81790)
  • sbb-radio-group, sbb-tab-group: avoid incorrect setup if component is invisible during init (#​2446) (1586137)
  • sbb-selection-panel: fix transition of border-width (#​2468) (8300b7f)
  • sbb-selection-panel: fix transition of border-width [second attempt] (#​2469) (942bf45)
  • sbb-status: fix text styling (#​2457) (292d316)
  • sbb-teaser: prevent overlapping chip if including long content (#​2450) (b78b3ce)
Documentation
Styles
  • color: remove 'default' suffix from color tokens (77454de)
Code Refactoring
  • sbb-navigation: improve active handling and focus (4f8f309)

v0.47.2

Compare Source

Bug Fixes

v0.47.1

Compare Source

Bug Fixes
  • sbb-status: add index export (03349f0)

v0.47.0

Compare Source

⚠ BREAKING CHANGES
  • sbb-image: property noBorderRadius has been replaced by borderRadius which can receive 'default', 'none' and 'round'.
Features
Bug Fixes
  • sbb-pearl-chain-time: use role paragraph for accessibility reasons (#​2424) (9009807)

v0.46.3

Compare Source

Bug Fixes
  • react-wrapper: avoid writing classname property on a component (#​2421) (1ee492e)
  • sbb-container: container causes interference with overlay components (#​2419) (099164c)

v0.46.2

Compare Source

Bug Fixes
  • sbb-map-container: adapt width starting from ultra breakpoint (#​2417) (3c55d0c)

v0.46.1

Compare Source

Bug Fixes
  • sbb-select: let promise of update cycle complete (5086cd6)

v0.46.0

Compare Source

⚠ BREAKING CHANGES
  • sbb-popover: Component sbb-tooltip has been renamed to sbb-popover. Component sbb-tooltip-trigger has been renamed to sbb-popover-trigger Attribute sbb-tooltip-close has been renamed to sbb-popover-close. Every CSS tooltip variable has been renamed from --sbb-tooltip-* to --sbb-popover-* (including trigger).
Bug Fixes
  • sbb-popover: rename tooltip to popover and fix accessibility bugs (#​2368) (70c1c07), closes #​2018
  • sbb-select: wait for shadow DOM readiness before setup when using nextjs (#​2409) (fbef967)
  • sbb-sticky-bar: remove unnecessary import to container (#​2406) (c935436)

v0.45.0

Compare Source

⚠ BREAKING CHANGES
  • sbb-alert: renamed willPresent event to willOpen and didPresent to didOpen.
Features
Bug Fixes

v0.44.1

Compare Source

Bug Fixes

v0.44.0

Compare Source

⚠ BREAKING CHANGES
  • sbb-teaser: The property isStacked has been removed in favor of alignment. Please see the documentation for further info. The description is not clamped to two lines anymore (responsibility of consumer). The slotted image has now a default width of 300px. The slot, formerly named description, has been replaced by the unnamed slot. Support of nested p elements dropped (invalid html).
  • The following components have been removed: sbb-timetable-barrier-free, sbb-timetable-park-and-rail, sbb-timetable-row-column-headers, sbb-timetable-row-day-change, sbb-timetable-row-header, sbb-timetable-transportation-number, sbb-timetable-transportation-time, timetable-travel-hints.
Features
Bug Fixes
Code Refactoring
  • remove unused components (e3b29eb)

v0.43.14

Compare Source

Bug Fixes

v0.43.13

Compare Source

Bug Fixes

v0.43.12

Compare Source

Bug Fixes

v0.43.11

Compare Source

Bug Fixes

v0.43.10

Compare Source

Bug Fixes

v0.43.9

Compare Source

Bug Fixes
  • improve SSR handling of React components with children (#​2306) (da0c1c5)
  • sbb-autocomplete: highlight option when options change (#​2317) (76affb1)
  • sbb-icon: fix preserving space during loading (#​2308) (2a01652)
  • sbb-map-container: add scrollbar background and divider line (#​2316) (4b0f765)

v0.43.8

Compare Source

Features
Bug Fixes

v0.43.7

Compare Source

Bug Fixes
  • sbb-journey-header: add non breaking space for screen readers (#​2304) (81a2c0a)

v0.43.6

Compare Source

Bug Fixes

v0.43.5

Compare Source

Bug Fixes
  • remove side effects entries from package.json (d45c2cb)

v0.43.4

Compare Source

Bug Fixes

v0.43.3

Compare Source

Bug Fixes
  • fix fake event detection (#​2291) (26e7803)
  • sbb-selection-panel: arrow navigation with radio-button-group with no content should select the radio-button (#​2255) (a3d5891)

v0.43.2

Compare Source

Miscellaneous Chores

v0.43.1

Compare Source

Bug Fixes

v0.43.0

Compare Source

v0.42.6

Compare Source

v0.42.5

Compare Source

v0.42.4

Compare Source

v0.42.3

Compare Source

v0.42.2

Compare Source

v0.42.1

Compare Source

v0.42.0

Compare Source

⚠ BREAKING CHANGES
  • sbb-dialog, sbb-menu, sbb-navigation, sbb-tooltip: - The property accessibilityLabel of the sbb-navigation was removed. As replacement, an aria-label can now directly be placed on the sbb-navigation element.
Bug Fixes
0.41.13 (2023-10-23)
Bug Fixes
0.41.12 (2023-10-20)
Bug Fixes
0.41.11 (2023-10-20)
Bug Fixes
0.41.10 (2023-10-19)
Bug Fixes
  • sbb-navigation, sbb-menu, sbb-dialog: screen readers readability (#​2092) (dbddfa8)
0.41.9 (2023-10-18)
Bug Fixes
0.41.8 (2023-10-17)
Bug Fixes
0.41.7 (2023-10-12)
Features
  • sbb-tag-group: allow other slotted elements than sbb-tags (#​2067) (2b86f98)
0.41.6 (2023-10-12)
Bug Fixes
  • sbb-journey-summary: remove obsolete dot after weekday (#​2068) (c7d6356)
0.41.5 (2023-10-11)
Documentation
0.41.4 (2023-10-09)
Bug Fixes
  • sbb-footer: use correct focus outline color in negative mode (#​2057) (5134baa)
Refactorings
0.41.3 (2023-10-05)
Bug Fixes
0.41.2 (2023-10-04)
Bug Fixes
  • sbb-calendar: fix wrong width when orientation changes in iOS (#​2044) (ccf2704)
0.41.1 (2023-10-04)
Bug Fixes

v0.41.13

Compare Source

v0.41.12

Compare Source

v0.41.11

Compare Source

v0.41.10

Compare Source

v0.41.9

Compare Source

v0.41.8

Compare Source

v0.41.7

Compare Source

v0.41.6

Compare Source

v0.41.5

Compare Source

v0.41.4

Compare Source

v0.41.3

Compare Source

v0.41.2

Compare Source

v0.41.1

Compare Source

v0.41.0

Compare Source

⚠ BREAKING CHANGES
  • sbb-header: - The spacing between the logo and the sbb-header-actions is now in responsibility of Lyne. Therefore consumers need to remove any manually added spacing. Lyne examples are updated.
Bug Fixes
0.40.22 (2023-10-03)
Bug Fixes
  • sbb-selection-panel: remove wrongly announced expanded state for nested radios and checkboxes (#​2040) (11105b3), closes #​2017
0.40.21 (2023-09-30)
Features

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate
Copy link
Contributor Author

renovate bot commented Jul 19, 2023

Branch automerge failure

This PR was configured for branch automerge. However, this is not possible, so it has been raised as a PR instead.


  • Branch has one or more failed status checks

@renovate renovate bot force-pushed the renovate/esta branch from 97f9ab1 to 2a0d520 Compare July 20, 2023 10:21
@renovate renovate bot changed the title fix(deps): update dependency @sbb-esta/lyne-components to v0.38.5 fix(deps): update dependency @sbb-esta/lyne-components to v0.38.6 Jul 20, 2023
@renovate renovate bot force-pushed the renovate/esta branch from 2a0d520 to 41ceab5 Compare July 24, 2023 03:10
@renovate renovate bot changed the title fix(deps): update dependency @sbb-esta/lyne-components to v0.38.6 fix(deps): update dependency @sbb-esta/lyne-components to v0.38.7 Jul 24, 2023
@renovate renovate bot force-pushed the renovate/esta branch 8 times, most recently from 1e13b35 to 59b92be Compare July 31, 2023 10:52
@renovate renovate bot changed the title fix(deps): update dependency @sbb-esta/lyne-components to v0.38.7 fix(deps): update dependency @sbb-esta/lyne-components to v0.38.8 Jul 31, 2023
@renovate renovate bot force-pushed the renovate/esta branch 3 times, most recently from 4929a29 to bece89e Compare August 3, 2023 16:38
@renovate renovate bot changed the title fix(deps): update dependency @sbb-esta/lyne-components to v0.38.8 fix(deps): update dependency @sbb-esta/lyne-components to v0.38.10 Aug 3, 2023
@renovate renovate bot force-pushed the renovate/esta branch 2 times, most recently from b6e4e08 to b24bb84 Compare August 7, 2023 11:41
@renovate renovate bot changed the title fix(deps): update dependency @sbb-esta/lyne-components to v0.38.10 fix(deps): update dependency @sbb-esta/lyne-components to v0.38.11 Aug 7, 2023
@renovate renovate bot force-pushed the renovate/esta branch 2 times, most recently from 75f15e9 to 52b0fcf Compare August 8, 2023 11:27
@renovate renovate bot changed the title fix(deps): update dependency @sbb-esta/lyne-components to v0.38.11 fix(deps): update dependency @sbb-esta/lyne-components to v0.39.0 Aug 8, 2023
@renovate renovate bot force-pushed the renovate/esta branch from 52b0fcf to 8be098f Compare August 8, 2023 14:13
@renovate renovate bot changed the title fix(deps): update dependency @sbb-esta/lyne-components to v0.39.0 fix(deps): update dependency @sbb-esta/lyne-components to v0.39.2 Aug 8, 2023
@renovate renovate bot force-pushed the renovate/esta branch 4 times, most recently from 21eadb5 to b6d3d22 Compare August 10, 2023 10:51
@renovate renovate bot force-pushed the renovate/esta branch 4 times, most recently from f530525 to 13fa558 Compare January 25, 2024 07:48
@renovate renovate bot force-pushed the renovate/esta branch 2 times, most recently from 5b224b1 to 7327fb1 Compare February 8, 2024 16:55
@renovate renovate bot force-pushed the renovate/esta branch 8 times, most recently from 80c3420 to 8bde488 Compare February 15, 2024 15:35
@renovate renovate bot force-pushed the renovate/esta branch 2 times, most recently from 01bc0b6 to e3738fe Compare March 11, 2024 10:34
@renovate renovate bot force-pushed the renovate/esta branch 4 times, most recently from 38a0454 to f7d1f71 Compare March 14, 2024 09:43
@renovate renovate bot force-pushed the renovate/esta branch 3 times, most recently from a19a17a to 67edef4 Compare March 25, 2024 12:14
@renovate renovate bot force-pushed the renovate/esta branch 4 times, most recently from 028c741 to 07ba9a6 Compare April 2, 2024 23:18
@renovate renovate bot force-pushed the renovate/esta branch from 07ba9a6 to 8d4a7f4 Compare April 4, 2024 17:49
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants