Skip to content

Commit 1ab5613

Browse files
authored
Merge pull request #193 from qualcomm/chore/angular-21
Upgrades Angular to v21.2 with dependency updates
2 parents 42d58e2 + 73a8aaf commit 1ab5613

54 files changed

Lines changed: 3653 additions & 7274 deletions

File tree

Some content is hidden

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
"stylelint-prettier": "^5.0.3",
103103
"syncpack": "14.0.0-alpha.32",
104104
"tailwindcss": "^4.1.17",
105-
"tsx": "^4.20.6",
105+
"tsx": "catalog:",
106106
"turbo": "^2.7.6",
107107
"typescript": "catalog:",
108108
"typescript-eslint": "catalog:",

packages/common/core/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @qualcomm-ui/core Changelog
22

3+
## 1.4.1 (2026/03/10)
4+
5+
### Bug Fixes
6+
7+
- [select]: use indexed loop with null check for select options iteration ([6ed1c90](https://github.com/qualcomm/qualcomm-ui/commit/6ed1c90))
8+
39
## 1.4.0 (2026/02/24)
410

511
### Features

packages/common/core/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@qualcomm-ui/core",
3-
"version": "1.4.0",
3+
"version": "1.4.1",
44
"description": "core components",
55
"author": "Ryan Bower",
66
"license": "BSD-3-Clause-Clear",
@@ -48,13 +48,13 @@
4848
"@qualcomm-ui/tsconfig": "catalog:",
4949
"@qualcomm-ui/utils": "workspace:^1.1.0",
5050
"@types/node": "~24.9.2",
51-
"@vitest/coverage-v8": "^4.0.8",
52-
"@vitest/ui": "^4.0.8",
53-
"esbuild": "^0.25.8",
51+
"@vitest/coverage-v8": "catalog:",
52+
"@vitest/ui": "catalog:",
53+
"esbuild": "catalog:",
5454
"shx": "^0.4.0",
55-
"tsx": "^4.20.6",
55+
"tsx": "catalog:",
5656
"typescript": "catalog:",
57-
"vitest": "^4.0.8"
57+
"vitest": "catalog:"
5858
},
5959
"peerDependencies": {
6060
"@internationalized/number": ">=3.6.4",

packages/common/core/src/select/select.machine.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -351,8 +351,11 @@ export const selectMachine: MachineConfig<SelectSchema> =
351351
return
352352
}
353353

354-
for (const option of selectEl.options) {
355-
option.selected = context.get("value").includes(option.value)
354+
for (let i = 0; i < selectEl.options.length; i++) {
355+
const option = selectEl.options.item(i)
356+
if (option) {
357+
option.selected = context.get("value").includes(option.value)
358+
}
356359
}
357360
},
358361

packages/common/dom/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@
4242
"@qualcomm-ui/tsconfig": "catalog:",
4343
"@qualcomm-ui/utils": "workspace:^1.1.0",
4444
"@types/node": "~24.9.2",
45-
"esbuild": "^0.25.8",
45+
"esbuild": "catalog:",
4646
"shx": "^0.4.0",
47-
"tsx": "^4.20.6",
47+
"tsx": "catalog:",
4848
"typescript": "catalog:"
4949
},
5050
"peerDependencies": {

packages/common/mdx-common/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@
3939
"@qualcomm-ui/esbuild": "catalog:",
4040
"@qualcomm-ui/tsconfig": "catalog:",
4141
"@qualcomm-ui/typedoc-common": "workspace:^1.0.3",
42-
"esbuild": "^0.25.8",
42+
"esbuild": "catalog:",
4343
"fuzzysort": "^3.0.1",
4444
"shx": "^0.4.0",
45-
"tsx": "^4.20.6",
46-
"vite": "npm:rolldown-vite@7.2.10"
45+
"tsx": "catalog:",
46+
"vite": "npm:rolldown-vite@7.3.1"
4747
},
4848
"peerDependencies": {
4949
"@qualcomm-ui/typedoc-common": "workspace:^1.0.3",

packages/common/mdx-vite/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"@shikijs/rehype": "^3.13.0",
5757
"@shikijs/transformers": "^3.13.0",
5858
"chalk": "^5.6.2",
59-
"chokidar": "^4.0.3",
59+
"chokidar": "^5.0.0",
6060
"cosmiconfig": "^9.0.0",
6161
"es-module-lexer": "^1.7.0",
6262
"glob": "catalog:",
@@ -99,11 +99,11 @@
9999
"@types/lodash-es": "catalog:",
100100
"@types/mdast": "^4.0.4",
101101
"@types/uuid": "^10.0.0",
102-
"@vitest/coverage-v8": "^4.0.8",
103-
"@vitest/ui": "^4.0.8",
102+
"@vitest/coverage-v8": "catalog:",
103+
"@vitest/ui": "catalog:",
104104
"cross-env": "^10.1.0",
105105
"dotenv": "^17.2.3",
106-
"esbuild": "^0.25.8",
106+
"esbuild": "catalog:",
107107
"hastscript": "^9.0.0",
108108
"lodash-es": "catalog:",
109109
"minimatch": "^10.2.4",
@@ -118,10 +118,10 @@
118118
"shx": "^0.4.0",
119119
"tailwindcss": "^4.1.17",
120120
"test": "^3.3.0",
121-
"tsx": "^4.20.6",
121+
"tsx": "catalog:",
122122
"typescript": "catalog:",
123-
"vite": "npm:rolldown-vite@7.2.10",
124-
"vitest": "^4.0.8",
123+
"vite": "npm:rolldown-vite@7.3.1",
124+
"vitest": "catalog:",
125125
"zod": "^4.1.13"
126126
},
127127
"peerDependencies": {

packages/common/node-utils/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@
4242
"@qualcomm-ui/tsconfig": "catalog:",
4343
"@types/node": "~24.9.2",
4444
"chalk": "^5.6.2",
45-
"chokidar": "^4.0.3",
46-
"esbuild": "^0.25.8",
45+
"chokidar": "^5.0.0",
46+
"esbuild": "catalog:",
4747
"glob": "catalog:",
4848
"pretty-ms": "^9.3.0",
4949
"shx": "^0.4.0",
50-
"tsx": "^4.20.6",
50+
"tsx": "catalog:",
5151
"typescript": "catalog:",
52-
"vitest": "^4.0.8"
52+
"vitest": "catalog:"
5353
}
5454
}

packages/common/qds-core/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @qualcomm-ui/qds-core Changelog
22

3+
## 1.20.1 (2026/03/10)
4+
5+
### Miscellaneous Chores
6+
7+
- **deps:** update dependencies [@qualcomm-ui/core]
8+
39
## 1.20.0 (2026/02/26)
410

511
### Features

packages/common/qds-core/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@qualcomm-ui/qds-core",
3-
"version": "1.20.0",
3+
"version": "1.20.1",
44
"description": "qds core components",
55
"author": "Ryan Bower",
66
"license": "BSD-3-Clause-Clear",
@@ -59,7 +59,7 @@
5959
"devDependencies": {
6060
"@figma/rest-api-spec": "^0.31.0",
6161
"@qualcomm-ui/cli": "catalog:",
62-
"@qualcomm-ui/core": "workspace:^1.4.0",
62+
"@qualcomm-ui/core": "workspace:^1.4.1",
6363
"@qualcomm-ui/css-utils": "catalog:",
6464
"@qualcomm-ui/esbuild": "catalog:",
6565
"@qualcomm-ui/tsconfig": "catalog:",
@@ -69,7 +69,7 @@
6969
"@types/node": "~24.9.2",
7070
"culori": "^4.0.1",
7171
"dotenv": "^17.2.3",
72-
"esbuild": "^0.25.8",
72+
"esbuild": "catalog:",
7373
"figma-api": "^2.0.2-beta",
7474
"json5": "^2.2.3",
7575
"lodash-es": "catalog:",
@@ -79,11 +79,11 @@
7979
"shx": "^0.4.0",
8080
"style-dictionary": "^5.1.1",
8181
"style-dictionary-utils": "~4.1.1",
82-
"tsx": "^4.20.6",
82+
"tsx": "catalog:",
8383
"typescript": "catalog:"
8484
},
8585
"peerDependencies": {
86-
"@qualcomm-ui/core": "workspace:^1.4.0",
86+
"@qualcomm-ui/core": "workspace:^1.4.1",
8787
"@qualcomm-ui/utils": "workspace:^1.1.0"
8888
}
8989
}

0 commit comments

Comments
 (0)