Skip to content

Commit 0c5e842

Browse files
committed
Merge branch 'main' into chore/SD-1526-ts-refactor
# Conflicts: # pnpm-lock.yaml
2 parents 26b1fca + 6e6559a commit 0c5e842

File tree

21 files changed

+1180
-71
lines changed

21 files changed

+1180
-71
lines changed

.github/workflows/components.yml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,32 @@ jobs:
7676
with:
7777
node-version: 20
7878
cache: "pnpm"
79-
8079
- name: Cypress component tests
8180
uses: cypress-io/github-action@v6
8281
with:
8382
working-directory: packages/ripple-ui-forms
8483
install: false
8584
component: true
85+
Component-Maps:
86+
runs-on: ubuntu-latest
87+
steps:
88+
- name: Checkout
89+
uses: actions/checkout@v4
90+
- name: Install pnpm
91+
uses: pnpm/action-setup@v3
92+
env:
93+
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
94+
with:
95+
version: 10.10.0
96+
run_install: true
97+
- name: Install Node
98+
uses: actions/setup-node@v4
99+
with:
100+
node-version: 20
101+
cache: "pnpm"
102+
- name: Cypress component tests
103+
uses: cypress-io/github-action@v6
104+
with:
105+
working-directory: packages/ripple-ui-maps
106+
install: false
107+
component: true

.release-please-manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"packages/ripple-ui-core": "2.47.0",
3-
"packages/ripple-ui-forms": "2.47.0",
4-
"packages/ripple-ui-maps": "2.47.0",
2+
"packages/ripple-ui-core": "2.48.0",
3+
"packages/ripple-ui-forms": "2.48.0",
4+
"packages/ripple-ui-maps": "2.48.0",
55
"packages/eslint-config-ripple": "2.46.2",
66
"packages/stylelint-config-ripple": "2.46.2"
77
}

examples/vue-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"@cypress/vite-dev-server": "^5.0.5",
2424
"@cypress/vue": "^5.0.5",
2525
"@rushstack/eslint-patch": "^1.2.0",
26-
"@types/node": "^18.15.10",
26+
"@types/node": "catalog:",
2727
"@vitejs/plugin-vue": "5.0.4",
2828
"@vue/eslint-config-prettier": "^9.0.0",
2929
"@vue/eslint-config-typescript": "^11.0.2",

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"example": "wrap () { pnpm -F example-\"$*\" dev | cat; }; wrap",
1010
"storybook": "pnpm -F ripple-storybook start",
1111
"clean": "git clean -dfx && git reset --hard && pnpm",
12-
"build": "pnpm -F !docs -F !ripple-storybook -F !nuxt-app -F !vue-app -F !webcomponents build",
12+
"build": "pnpm -F !docs -F !ripple-storybook -F !nuxt -F !vue-app -F !webcomponents build",
1313
"build:ripple": "pnpm -F \"@dpc-sdp/ripple-ui-*\" build",
1414
"build:examples": "pnpm -F \"./examples/**\" build",
1515
"build:docs": "pnpm -F docs build",
@@ -22,6 +22,7 @@
2222
"test:unit-watch": "vitest watch",
2323
"test:components-core": "pnpm -F @dpc-sdp/ripple-ui-core test:components",
2424
"test:components-forms": "pnpm -F @dpc-sdp/ripple-ui-forms test:components",
25+
"test:components-maps": "pnpm -F @dpc-sdp/ripple-ui-maps test:components",
2526
"test:storybook": "pnpm -F ripple-storybook test",
2627
"test:storybook-ci": "pnpm -F ripple-storybook test:ci",
2728
"start:vue": "pnpm -F vue-app start",

packages/ripple-ui-core/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1303,6 +1303,19 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
13031303
* **@dpc-sdp/ripple-ui-core:** removed the unneeded 1px margin from the file icon ([f25b39e](https://github.com/dpc-sdp/ripple-framework/commit/f25b39ee9b586094a0e40d77b4cc565e99c68eaf))
13041304
* **@dpc-sdp/ripple-ui-core:** revert content prop ([c79b30c](https://github.com/dpc-sdp/ripple-framework/commit/c79b30cf5cc665113458c59884e27719bf561726))
13051305

1306+
## [2.48.0](https://github.com/dpc-sdp/ripple/compare/ripple-ui-core-v2.47.0...ripple-ui-core-v2.48.0) (2026-01-21)
1307+
1308+
1309+
### Features
1310+
1311+
* **@dpc-sdp/ripple-ui-core:** allow using any card in RplCardCarousel ([#1339](https://github.com/dpc-sdp/ripple/issues/1339)) ([a4034e5](https://github.com/dpc-sdp/ripple/commit/a4034e5bc8cb295c4ea525067a4c2b870b04d30a))
1312+
* **@dpc-sdp/ripple-ui-maps:** add centerActivePin prop ([#1338](https://github.com/dpc-sdp/ripple/issues/1338)) ([265f052](https://github.com/dpc-sdp/ripple/commit/265f052c4959b1174b13a2a99a5a0acf3e058eae))
1313+
1314+
1315+
### Miscellaneous
1316+
1317+
* **@dpc-sdp/ripple-ui-core:** :memo: add contributing guide for ripple ui core ([#1341](https://github.com/dpc-sdp/ripple/issues/1341)) ([84ba5e1](https://github.com/dpc-sdp/ripple/commit/84ba5e15169ff751948586ec45f4c09b986baefb))
1318+
13061319
## [2.47.0](https://github.com/dpc-sdp/ripple/compare/ripple-ui-core-v2.46.1...ripple-ui-core-v2.47.0) (2026-01-08)
13071320

13081321

0 commit comments

Comments
 (0)