fix(dees-button): Fix reflect attribute for disabled property on dees-button component

This commit is contained in:
Philipp Kunz 2024-10-06 01:12:00 +02:00
parent 68992301ff
commit f5fad07038
3 changed files with 8 additions and 2 deletions

View File

@ -1,5 +1,10 @@
# Changelog # Changelog
## 2024-10-06 - 1.1.12 - fix(dees-button)
Fix reflect attribute for disabled property on dees-button component
- Added reflect: true to the 'disabled' property ensuring changes reflect in the DOM attribute.
## 2024-10-05 - 1.1.11 - fix(DeesStepper) ## 2024-10-05 - 1.1.11 - fix(DeesStepper)
Adjusted CSS properties in DeesStepper component Adjusted CSS properties in DeesStepper component

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@design.estate/dees-catalog', name: '@design.estate/dees-catalog',
version: '1.1.11', version: '1.1.12',
description: 'A library for building components and other projects' description: 'A library for building components and other projects'
} }

View File

@ -35,7 +35,8 @@ export class DeesButton extends DeesElement {
public eventDetailData: string; public eventDetailData: string;
@property({ @property({
type: Boolean type: Boolean,
reflect: true,
}) })
public disabled = false; public disabled = false;