Skip to content

Commit 83b1160

Browse files
authored
Merge branch 'main' into v1/feature/table-row-border-radius
2 parents f9c4ae4 + 8a930d2 commit 83b1160

File tree

192 files changed

+3365
-2662
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

192 files changed

+3365
-2662
lines changed

.github/workflows/azure-static-web-apps-delightful-beach-055ecb503.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- uses: actions/checkout@v5
2525

2626
- name: Use Node.js
27-
uses: actions/setup-node@v5
27+
uses: actions/setup-node@v6
2828
with:
2929
node-version-file: .nvmrc
3030
check-latest: true

.github/workflows/chromatic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
# pulls all commits (needed for chromatic to find baselines)
4646
fetch-depth: '0'
4747
- name: Use Node.js
48-
uses: actions/setup-node@v5
48+
uses: actions/setup-node@v6
4949
with:
5050
node-version-file: .nvmrc
5151
check-latest: true

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ jobs:
3434

3535
# Initializes the CodeQL tools for scanning.
3636
- name: Initialize CodeQL
37-
uses: github/codeql-action/init@v3
37+
uses: github/codeql-action/init@v4
3838
with:
3939
languages: ${{ matrix.language }}
4040

4141
- name: Perform CodeQL Analysis
42-
uses: github/codeql-action/analyze@v3
42+
uses: github/codeql-action/analyze@v4

.github/workflows/publish.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,15 @@ on:
1111
env:
1212
NODE_OPTIONS: --max_old_space_size=16384
1313

14+
permissions:
15+
id-token: write # Required for OIDC
16+
contents: read
17+
1418
jobs:
1519
build:
1620
# The type of runner that the job will run on
1721
runs-on: ubuntu-latest
1822

19-
# Environment variables available to all steps in the job to ensure provenance of the build
20-
permissions:
21-
contents: read
22-
id-token: write
23-
2423
# Steps represent a sequence of tasks that will be executed as part of the job
2524
steps:
2625
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
@@ -38,12 +37,14 @@ jobs:
3837
${{ runner.os }}-cache-
3938
4039
- name: Use Node.js
41-
uses: actions/setup-node@v5
40+
uses: actions/setup-node@v6
4241
with:
4342
node-version-file: .nvmrc
4443
check-latest: true
4544
cache: 'npm'
46-
45+
registry-url: 'https://registry.npmjs.org'
46+
- name: Update npm
47+
run: npm install -g npm@latest
4748
- run: npm -v
4849
- run: npm install
4950

@@ -60,3 +61,4 @@ jobs:
6061
run: npm run lerna:publish
6162
env:
6263
NPM_TOKEN: ${{ secrets.UMBRACO_PUBLISH_NPM_TOKEN}}
64+
NPM_CONFIG_PROVENANCE: true

.github/workflows/tests.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,17 @@ name: Tests
22

33
# Controls when the workflow will run
44
on:
5-
# Triggers the workflow on push or pull request events but only for the dev branch
5+
# Triggers the workflow on push or pull request events but only for the main and release branches
6+
push:
7+
branches:
8+
- main
9+
- release/*
10+
11+
# Triggers the workflow on push or pull request events but only for the main and release branches
612
pull_request:
7-
branches-ignore:
8-
- production
13+
branches:
14+
- main
15+
- release/*
916

1017
# Allows you to run this workflow manually from the Actions tab
1118
workflow_dispatch:
@@ -20,7 +27,7 @@ jobs:
2027
steps:
2128
- uses: actions/checkout@v5
2229
- name: Use Node.js
23-
uses: actions/setup-node@v5
30+
uses: actions/setup-node@v6
2431
with:
2532
node-version-file: .nvmrc
2633
check-latest: true
@@ -43,7 +50,7 @@ jobs:
4350
restore-keys: |
4451
${{ runner.os }}-cache-
4552
- name: Use Node.js
46-
uses: actions/setup-node@v5
53+
uses: actions/setup-node@v6
4754
with:
4855
node-version-file: .nvmrc
4956
check-latest: true

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,29 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.16.0](https://github.com/umbraco/Umbraco/compare/v1.16.0-rc.0...v1.16.0) (2025-10-17)
7+
8+
**Note:** Version bump only for package uui-monorepo
9+
10+
# [1.16.0-rc.0](https://github.com/umbraco/Umbraco/compare/v1.15.0...v1.16.0-rc.0) (2025-10-07)
11+
12+
### Bug Fixes
13+
14+
- Adjust indent to compensate border ([#1185](https://github.com/umbraco/Umbraco/issues/1185)) ([6a1f27e](https://github.com/umbraco/Umbraco/commit/6a1f27e450e4e09055f886de8534a6ef52f70238))
15+
- makes the beforetoggle event listener passive and move to constructor ([f817422](https://github.com/umbraco/Umbraco/commit/f8174229b808a464d4917579fecfe2af748eed20))
16+
- only exclude static parents if the previous element was no static (recalculate every time) ([4d46b8d](https://github.com/umbraco/Umbraco/commit/4d46b8d53a6b1149298b3040f561316f17f43000))
17+
- only get scroll parents on open actions ([97f895d](https://github.com/umbraco/Umbraco/commit/97f895dfb14854cf8ea0242894c8075c074d44ba))
18+
- reset scroll parents every time the method is called ([a20d69b](https://github.com/umbraco/Umbraco/commit/a20d69b3ece20717a7ef0e38a90a115e7cebbc6b))
19+
- wanted margin on uui-ref items slot ([#1175](https://github.com/umbraco/Umbraco/issues/1175)) ([6718d47](https://github.com/umbraco/Umbraco/commit/6718d47c8eb1235fee8d403cc1db71e05bc0a101))
20+
21+
### Features
22+
23+
- **uui-combobox:** Add open functionality with space bar ([#1170](https://github.com/umbraco/Umbraco/issues/1170)) ([db5207c](https://github.com/umbraco/Umbraco/commit/db5207cc72b639a8cce04515446b0c122afbeb1f))
24+
25+
### Reverts
26+
27+
- Revert "chore: runs eslint --fix and adjusts tests based on new typings" ([33a6d62](https://github.com/umbraco/Umbraco/commit/33a6d62f834a5a40a38fff00bd2ac5b0f2ec0c11))
28+
629
# [1.15.0](https://github.com/umbraco/Umbraco/compare/v1.15.0-rc.0...v1.15.0) (2025-08-25)
730

831
**Note:** Version bump only for package uui-monorepo

eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export default [
4343
languageOptions: {
4444
parserOptions: {
4545
project: './tsconfig.json',
46-
tsconfigRootDir: './',
46+
tsconfigRootDir: __dirname,
4747
},
4848
globals: globals.browser,
4949
},

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "node_modules/@lerna-lite/cli/schemas/lerna-schema.json",
33
"packages": ["packages/*"],
4-
"version": "1.15.0",
4+
"version": "1.16.0",
55
"preid": "rc",
66
"exact": true,
77
"noPush": true,

0 commit comments

Comments
 (0)