Skip to content

Commit dcdca9a

Browse files
Version Packages (next) (#2742)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 77707a0 commit dcdca9a

File tree

5 files changed

+51
-2
lines changed

5 files changed

+51
-2
lines changed

.changeset/pre.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,25 @@
1818
"chilly-gorillas-wonder",
1919
"chilly-scissors-remember",
2020
"clever-pugs-sing",
21+
"cuddly-worms-love",
2122
"dry-cheetahs-tap",
2223
"dry-melons-bake",
2324
"eleven-moons-hear",
2425
"five-elephants-travel",
2526
"flat-steaks-itch",
2627
"fluffy-lobsters-sin",
28+
"four-geckos-complain",
2729
"friendly-falcons-turn",
2830
"gold-worms-worry",
2931
"great-kiwis-compare",
3032
"grumpy-coins-sip",
3133
"heavy-chairs-repeat",
34+
"hip-comics-agree",
3235
"hip-spies-lick",
3336
"hip-weeks-happen",
3437
"hot-toys-compare",
3538
"itchy-geckos-protect",
39+
"large-adults-dance",
3640
"late-books-attack",
3741
"late-feet-attack",
3842
"lazy-icons-beg",
@@ -52,8 +56,11 @@
5256
"tall-sheep-provide",
5357
"tasty-pugs-sort",
5458
"thirty-lions-yawn",
59+
"tiny-jars-knock",
5560
"tiny-suits-smile",
61+
"wet-avocados-speak",
5662
"wise-emus-count",
63+
"witty-rabbits-collect",
5764
"yellow-moose-push"
5865
]
5966
}

packages/circuit-ui/CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
11
# @sumup-oss/circuit-ui
22

3+
## 9.0.0-next.4
4+
5+
### Major Changes
6+
7+
- [#2741](https://github.com/sumup-oss/circuit-ui/pull/2741) [`1251f90`](https://github.com/sumup-oss/circuit-ui/commit/1251f90a4befc09a6b62fdd0f57e4e7cb9356b66) Thanks [@connor-baer](https://github.com/connor-baer)! - Changed the `PlainDateRange` type from a tuple to an object with `start` and `end` properties. This affects the Calendar component's `selection` prop. Use the new `updatePlainDateRange` helper function to update a date range when a user selects a date.
8+
9+
- [#2731](https://github.com/sumup-oss/circuit-ui/pull/2731) [`a4b5d2c`](https://github.com/sumup-oss/circuit-ui/commit/a4b5d2c95abd93afe7da3aa877172782f4f52e48) Thanks [@sirineJ](https://github.com/sirineJ)! - Marked the `ColorInput` and `PhoneNumberInput` components as stable. Update the related imports:
10+
11+
```diff
12+
- import { ColorInput, type ColorInputProps } from '@sumup-oss/circuit-ui/experimental';
13+
+ import { ColorInput, type ColorInputProps } from '@sumup-oss/circuit-ui';
14+
```
15+
16+
```diff
17+
- import { PhoneNumberInput, type PhoneNumberInputProps } from '@sumup-oss/circuit-ui/experimental';
18+
+ import { PhoneNumberInput, type PhoneNumberInputProps } from '@sumup-oss/circuit-ui';
19+
```
20+
21+
- [#2677](https://github.com/sumup-oss/circuit-ui/pull/2677) [`4a2f1a6`](https://github.com/sumup-oss/circuit-ui/commit/4a2f1a6635c8d818d3774ff16b234141e5875285) Thanks [@connor-baer](https://github.com/connor-baer)! - Removed the legacy RangePicker, RangePickerController, SingleDayPicker, CalendarTag, and CalendarTagTwoStep components. Use the updated DateInput component instead.
22+
23+
- [#2645](https://github.com/sumup-oss/circuit-ui/pull/2645) [`4f11234`](https://github.com/sumup-oss/circuit-ui/commit/4f11234159c1aa25d12d3e7521371d4e1a2bb6b9) Thanks [@connor-baer](https://github.com/connor-baer)! - Rewrote the DateInput component and replaced the native date input with a custom implementation to improve its usability and accessibility. The component now requires additional localized label props.
24+
25+
- [#2743](https://github.com/sumup-oss/circuit-ui/pull/2743) [`12a201a`](https://github.com/sumup-oss/circuit-ui/commit/12a201a2f751e0b44265d12cd46232df14f55ecc) Thanks [@sirineJ](https://github.com/sirineJ)! - Marked the `Tooltip` and `Toggletip` components as stable. Update the related imports:
26+
27+
```diff
28+
- import { Tooltip, type TooltipProps, type TooltipReferenceProps } from '@sumup-oss/circuit-ui/experimental';
29+
+ import { Tooltip, type TooltipProps, type TooltipReferenceProps } from '@sumup-oss/circuit-ui';
30+
```
31+
32+
```diff
33+
- import { Toggletip, type ToggletipProps } from '@sumup-oss/circuit-ui/experimental';
34+
+ import { Toggletip, type ToggletipProps } from '@sumup-oss/circuit-ui';
35+
```
36+
337
## 9.0.0-next.3
438

539
### Patch Changes

packages/circuit-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sumup-oss/circuit-ui",
3-
"version": "9.0.0-next.3",
3+
"version": "9.0.0-next.4",
44
"description": "SumUp's React UI component library",
55
"type": "module",
66
"main": "./dist/index.js",

packages/eslint-plugin-circuit-ui/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @sumup-oss/eslint-plugin-circuit-ui
22

3+
## 5.0.0-next.5
4+
5+
### Minor Changes
6+
7+
- [#2743](https://github.com/sumup-oss/circuit-ui/pull/2743) [`12a201a`](https://github.com/sumup-oss/circuit-ui/commit/12a201a2f751e0b44265d12cd46232df14f55ecc) Thanks [@sirineJ](https://github.com/sirineJ)! - Updated the `component-lifecycle-imports` ESLint rule to flag imports of stable components Tooltip and Toggletip from `@sumup-oss/circuit-ui/experimental`.
8+
9+
- [#2731](https://github.com/sumup-oss/circuit-ui/pull/2731) [`a4b5d2c`](https://github.com/sumup-oss/circuit-ui/commit/a4b5d2c95abd93afe7da3aa877172782f4f52e48) Thanks [@sirineJ](https://github.com/sirineJ)! - Updated the `component-lifecycle-imports` ESLint rule to handle imports of `ColorInput` and `PhoneNumberInput` as experimental components.
10+
311
## 5.0.0-next.4
412

513
### Minor Changes

packages/eslint-plugin-circuit-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sumup-oss/eslint-plugin-circuit-ui",
3-
"version": "5.0.0-next.4",
3+
"version": "5.0.0-next.5",
44
"description": "ESLint rules to lint Circuit UI.",
55
"keywords": [
66
"sumup",

0 commit comments

Comments
 (0)