Skip to content

Commit a6a8f52

Browse files
authored
chore: Updated CHANGELOG, stories and stories metadata (#1745)
1 parent 3767d61 commit a6a8f52

File tree

5 files changed

+20
-15
lines changed

5 files changed

+20
-15
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@ 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-
## [6.1.0] - 2025-06-11
7+
## [6.1.0] - 2025-06-12
88
### Added
99
- Date Range Picker
1010

1111
### Changed
12+
- Updated the readonly styles of most form associated components across all themes to better signify when a component
13+
is in a readonly state.
1214
- #### File input
1315
- **Breaking change**: `igcChange` & `igcCancel` events detail now returns the underlying component `files` property.
1416
- #### Tooltip
@@ -27,6 +29,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2729
- Incorrect date rollover for in certain scenarios [#1710](https://github.com/IgniteUI/igniteui-webcomponents/issues/1710)
2830
- #### Combo
2931
- Case insensitive icon styles in themes [#1728](https://github.com/IgniteUI/igniteui-webcomponents/pull/1728)
32+
- #### Input
33+
- Replace border in fluent theme with a box-shadow [#1726](https://github.com/IgniteUI/igniteui-webcomponents/pull/1726)
34+
- Focused state background color in Indigo theme [#1732](https://github.com/IgniteUI/igniteui-webcomponents/pull/1732)
3035
- #### Textarea
3136
- Label height and component height override [#1715](https://github.com/IgniteUI/igniteui-webcomponents/pull/1715)
3237

scripts/_package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
"combo",
4444
"date input",
4545
"date picker",
46+
"date range picker",
4647
"dialog",
4748
"divider",
4849
"dropdown",
@@ -72,7 +73,7 @@
7273
],
7374
"customElements": "custom-elements.json",
7475
"dependencies": {
75-
"@floating-ui/dom": "^1.6.0",
76+
"@floating-ui/dom": "^1.7.0",
7677
"@lit-labs/virtualizer": "^2.1.0",
7778
"@lit/context": "^1.1.0",
7879
"lit": "^3.3.0"

stories/badge.stories.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ function renderTabs(args: IgcBadgeArgs) {
7171
return ['primary', 'info', 'success', 'warning', 'danger'].map(
7272
(variant, idx) => html`
7373
<igc-tab>
74-
<span>
74+
<span slot="label">
7575
${variant.toUpperCase()}
7676
<igc-badge
7777
variant=${variant as IgcBadgeArgs['variant']}

stories/input.stories.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ const metadata: Meta<IgcInputComponent> = {
3939
control: 'text',
4040
},
4141
type: {
42-
type: '"email" | "number" | "password" | "search" | "tel" | "text" | "url"',
42+
type: '"text" | "email" | "number" | "password" | "search" | "tel" | "url"',
4343
description: 'The type attribute of the control.',
44-
options: ['email', 'number', 'password', 'search', 'tel', 'text', 'url'],
44+
options: ['text', 'email', 'number', 'password', 'search', 'tel', 'url'],
4545
control: { type: 'select' },
4646
table: { defaultValue: { summary: 'text' } },
4747
},
@@ -164,7 +164,7 @@ interface IgcInputArgs {
164164
/** The value of the control. */
165165
value: string | Date;
166166
/** The type attribute of the control. */
167-
type: 'email' | 'number' | 'password' | 'search' | 'tel' | 'text' | 'url';
167+
type: 'text' | 'email' | 'number' | 'password' | 'search' | 'tel' | 'url';
168168
/**
169169
* The input mode attribute of the control.
170170
* See [relevant MDN article](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode)

stories/tooltip.stories.ts

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,9 @@ const metadata: Meta<IgcTooltipComponent> = {
4545
control: 'boolean',
4646
table: { defaultValue: { summary: 'false' } },
4747
},
48-
disableArrow: {
48+
withArrow: {
4949
type: 'boolean',
50-
description:
51-
'Whether to disable the rendering of the arrow indicator for the tooltip.',
50+
description: 'Whether to render an arrow indicator for the tooltip.',
5251
control: 'boolean',
5352
table: { defaultValue: { summary: 'false' } },
5453
},
@@ -77,7 +76,7 @@ const metadata: Meta<IgcTooltipComponent> = {
7776
'left-end',
7877
],
7978
control: { type: 'select' },
80-
table: { defaultValue: { summary: 'top' } },
79+
table: { defaultValue: { summary: 'bottom' } },
8180
},
8281
anchor: {
8382
type: 'Element | string',
@@ -130,9 +129,9 @@ const metadata: Meta<IgcTooltipComponent> = {
130129
},
131130
args: {
132131
open: false,
133-
disableArrow: false,
132+
withArrow: false,
134133
offset: 6,
135-
placement: 'top',
134+
placement: 'bottom',
136135
showTriggers: 'pointerenter',
137136
hideTriggers: 'pointerleave, click',
138137
showDelay: 200,
@@ -147,8 +146,8 @@ export default metadata;
147146
interface IgcTooltipArgs {
148147
/** Whether the tooltip is showing. */
149148
open: boolean;
150-
/** Whether to disable the rendering of the arrow indicator for the tooltip. */
151-
disableArrow: boolean;
149+
/** Whether to render an arrow indicator for the tooltip. */
150+
withArrow: boolean;
152151
/** The offset of the tooltip from the anchor in pixels. */
153152
offset: number;
154153
/** Where to place the floating element relative to the parent anchor element. */
@@ -203,7 +202,7 @@ export const Basic: Story = {
203202
204203
<igc-tooltip
205204
anchor="basic-tooltip"
206-
.disableArrow=${args.disableArrow}
205+
.withArrow=${args.withArrow}
207206
.offset=${args.offset}
208207
.hideDelay=${args.hideDelay}
209208
.showDelay=${args.showDelay}

0 commit comments

Comments
 (0)