Skip to content

Commit a130854

Browse files
authored
Merge branch 'master' into mtsvyatkova/feat-1379-tile-manager
2 parents bcf6365 + f592128 commit a130854

File tree

8 files changed

+20
-11
lines changed

8 files changed

+20
-11
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [5.2.3] - 2025-02-13
8+
### Fixed
9+
- #### Chip
10+
- Disabled state in Bootstrap [#1573](https://github.com/IgniteUI/igniteui-webcomponents/pull/1573)
11+
712
## [5.2.2] - 2025-02-12
813
### Fixed
914
- #### Combo
@@ -689,6 +694,7 @@ Initial release of Ignite UI Web Components
689694
- Ripple component
690695
- Switch component
691696

697+
[5.2.3]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.2.2...5.2.3
692698
[5.2.2]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.2.1...5.2.2
693699
[5.2.1]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.2.0...5.2.1
694700
[5.2.0]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.1.2...5.2.0

biome.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@
2929
"noStaticOnlyClass": "off"
3030
},
3131
"correctness": {
32+
"noUnusedVariables": "error",
33+
"noUnusedFunctionParameters": "error",
34+
"noUnusedImports": "error",
35+
"noUnusedPrivateClassMembers": "error",
3236
"useImportExtensions": {
3337
"options": {
3438
"suggestedExtensions": {

scripts/build-stories.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ class StoriesBuilder {
120120
const isArray = (type) => type.includes('[]');
121121
const isGeneric = (type) => type.match(/<.*>/);
122122

123-
const t = type.split('|').map((t) => {
123+
type.split('|').map((t) => {
124124
const part = t.trim().replace(/'/g, '"');
125125
if (
126126
part &&
@@ -348,7 +348,7 @@ class StoriesBuilder {
348348

349349
try {
350350
data = await readFile(file, 'utf8');
351-
} catch (e) {
351+
} catch {
352352
return;
353353
}
354354

scripts/build-typedoc.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import path from 'node:path';
22
import { create } from 'browser-sync';
33
import watch from 'node-watch';
44
import { Application } from 'typedoc';
5+
import report from './report.mjs';
56

67
const browserSync = create();
78
const ROOT = path.join.bind(null, path.resolve('./'));
@@ -137,4 +138,9 @@ async function main() {
137138
}
138139
}
139140

140-
main().catch(console.error);
141+
try {
142+
await main();
143+
} catch (e) {
144+
report.error(e);
145+
process.exit(1);
146+
}

src/components/icon/icon.spec.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,8 +262,6 @@ describe('Icon broadcast service', () => {
262262
const broadcast1 = new IconsStateBroadcast(collections, references);
263263
const broadcast2 = new IconsStateBroadcast(collections, references);
264264
// 1 global one, initialized when you get the icon registry first time.
265-
const iconReg = getIconRegistry();
266-
// total - 3 services now.
267265

268266
// a peer is requesting a state sync
269267
channel.postMessage({ actionType: ActionType.SyncState });

stories/dialog.stories.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,6 @@ const closeDialog = (id: string) =>
9191
(document.getElementById(id) as IgcDialogComponent).hide();
9292

9393
const authMethods = ['Basic', 'Bearer', 'Digest', 'OAuth'];
94-
const authSelected = (ev: CustomEvent) => {
95-
(ev.target as HTMLElement).querySelector('igc-input')!.value =
96-
ev.detail.value;
97-
};
9894

9995
const Template = ({
10096
keepOpenOnEscape,

stories/textarea.stories.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ function getInput(event: CustomEvent<string>) {
326326
}
327327

328328
export const Validation: Story = {
329-
play: async (args) => {
329+
play: async () => {
330330
setMaxChars();
331331
},
332332
render: () => html`

stories/tree.stories.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ const addChildren = (
9393
const log = () => {
9494
const item = document.getElementById('parent2');
9595
item?.parentElement?.removeChild(item);
96-
const tree = document.getElementById('tree') as IgcTreeComponent;
9796
};
9897

9998
const log1 = () => {

0 commit comments

Comments
 (0)