From 40ddf2c2d2d3653f60cf2c4457a4a2ca6f2e868e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 29 Nov 2023 11:47:16 +0100 Subject: [PATCH] Version Packages (#2145) Co-authored-by: github-actions[bot] --- .changeset/grumpy-bags-give.md | 5 ----- .changeset/khaki-months-ring.md | 5 ----- .changeset/khaki-scissors-refuse.md | 5 ----- .changeset/nice-spoons-rush.md | 5 ----- .changeset/soft-melons-kiss.md | 5 ----- .changeset/soft-wombats-dress.md | 5 ----- .changeset/sweet-zebras-judge.md | 5 ----- .changeset/tender-cows-exercise.md | 5 ----- packages/singleton-manager/CHANGELOG.md | 6 ++++++ packages/singleton-manager/package.json | 2 +- packages/ui/CHANGELOG.md | 14 ++++++++++++++ packages/ui/package.json | 4 ++-- 12 files changed, 23 insertions(+), 43 deletions(-) delete mode 100644 .changeset/grumpy-bags-give.md delete mode 100644 .changeset/khaki-months-ring.md delete mode 100644 .changeset/khaki-scissors-refuse.md delete mode 100644 .changeset/nice-spoons-rush.md delete mode 100644 .changeset/soft-melons-kiss.md delete mode 100644 .changeset/soft-wombats-dress.md delete mode 100644 .changeset/sweet-zebras-judge.md delete mode 100644 .changeset/tender-cows-exercise.md diff --git a/.changeset/grumpy-bags-give.md b/.changeset/grumpy-bags-give.md deleted file mode 100644 index a39e1c21b2..0000000000 --- a/.changeset/grumpy-bags-give.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@lion/ui': patch ---- - -[localize] parseDate by default to 2000 instead of 1900 when date is below 49 diff --git a/.changeset/khaki-months-ring.md b/.changeset/khaki-months-ring.md deleted file mode 100644 index 0812d849f1..0000000000 --- a/.changeset/khaki-months-ring.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@lion/ui': patch ---- - -do not run disabled property reflection unless it was part of the changeset in LionSwitchButton diff --git a/.changeset/khaki-scissors-refuse.md b/.changeset/khaki-scissors-refuse.md deleted file mode 100644 index fc83b149d0..0000000000 --- a/.changeset/khaki-scissors-refuse.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@lion/ui': patch ---- - -Export isIOS and isMacSafari functions as part of browserDetection utility diff --git a/.changeset/nice-spoons-rush.md b/.changeset/nice-spoons-rush.md deleted file mode 100644 index 8cabaeaced..0000000000 --- a/.changeset/nice-spoons-rush.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@lion/ui': patch ---- - -Use traditional styleSheet on IOS for overlays diff --git a/.changeset/soft-melons-kiss.md b/.changeset/soft-melons-kiss.md deleted file mode 100644 index b463961535..0000000000 --- a/.changeset/soft-melons-kiss.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'singleton-manager': minor ---- - -add node/ssr support diff --git a/.changeset/soft-wombats-dress.md b/.changeset/soft-wombats-dress.md deleted file mode 100644 index 0110dd2822..0000000000 --- a/.changeset/soft-wombats-dress.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@lion/ui': patch ---- - -reuse uuid function from the core in LionButton and LionInputDatepicker diff --git a/.changeset/sweet-zebras-judge.md b/.changeset/sweet-zebras-judge.md deleted file mode 100644 index e4a18a919a..0000000000 --- a/.changeset/sweet-zebras-judge.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@lion/ui': patch ---- - -invoke parent class updated callback in LionCollapsible, LionDrawer and LionSwitchButton diff --git a/.changeset/tender-cows-exercise.md b/.changeset/tender-cows-exercise.md deleted file mode 100644 index 8c4efec620..0000000000 --- a/.changeset/tender-cows-exercise.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@lion/ui': patch ---- - -fix: DE locale typo for validation messages diff --git a/packages/singleton-manager/CHANGELOG.md b/packages/singleton-manager/CHANGELOG.md index 9af911531e..b3ae6a5a1c 100644 --- a/packages/singleton-manager/CHANGELOG.md +++ b/packages/singleton-manager/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 1.7.0 + +### Minor Changes + +- ef9b1e4c: add node/ssr support + ## 1.6.1 ### Patch Changes diff --git a/packages/singleton-manager/package.json b/packages/singleton-manager/package.json index 5b41152ba8..0b5be21562 100644 --- a/packages/singleton-manager/package.json +++ b/packages/singleton-manager/package.json @@ -1,6 +1,6 @@ { "name": "singleton-manager", - "version": "1.6.1", + "version": "1.7.0", "description": "Manage singletons across multiple major versions so they converge to a single instance", "license": "MIT", "author": "ing-bank", diff --git a/packages/ui/CHANGELOG.md b/packages/ui/CHANGELOG.md index bccc19fa1b..3bd65593aa 100644 --- a/packages/ui/CHANGELOG.md +++ b/packages/ui/CHANGELOG.md @@ -1,5 +1,19 @@ # @lion/ui +## 0.5.1 + +### Patch Changes + +- 9b5edf30: [localize] parseDate by default to 2000 instead of 1900 when date is below 49 +- bf782223: do not run disabled property reflection unless it was part of the changeset in LionSwitchButton +- 322b0652: Export isIOS and isMacSafari functions as part of browserDetection utility +- 322b0652: Use traditional styleSheet on IOS for overlays +- bf782223: reuse uuid function from the core in LionButton and LionInputDatepicker +- bf782223: invoke parent class updated callback in LionCollapsible, LionDrawer and LionSwitchButton +- cb25a603: fix: DE locale typo for validation messages +- Updated dependencies [ef9b1e4c] + - singleton-manager@1.7.0 + ## 0.5.0 ### Minor Changes diff --git a/packages/ui/package.json b/packages/ui/package.json index 97fcd5d9ec..6d7f77db99 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@lion/ui", - "version": "0.5.0", + "version": "0.5.1", "description": "A package of extendable web components", "license": "MIT", "author": "ing-bank", @@ -67,7 +67,7 @@ "awesome-phonenumber": "^4.0.0", "ibantools": "^2.2.0", "lit": "^2.4.0", - "singleton-manager": "^1.6.1" + "singleton-manager": "^1.7.0" }, "keywords": [ "design-system",