Skip to content

Releases: DNNCommunity/dnn-elements

v0.25.0

06 Jan 02:49
848f6fa
Compare
Choose a tag to compare

dnn-elements 0.25.0

A total of 5 pull requests where merged in this release.

build

enhancement

  • #1242 Added support for dnn-richtext plugins. Thanks @valadas
  • #1241 Changed default order of checkboxes in dnn-permission-grid. Thanks @valadas

feature

  • #1239 Added prop to cusomize tri-state order of dnn-checkbox. Thanks @valadas

dependencies

v0.24.3

18 Dec 01:28
d678e4e
Compare
Choose a tag to compare

dnn-elements 0.24.3

A total of 6 pull requests where merged in this release.

build

bug

  • #1237 Fixed an issue where it was not possible to programmatically set the value for dnn-autocomplete. Thanks @valadas

dependencies

v0.24.2

16 Dec 19:20
e9b622b
Compare
Choose a tag to compare

dnn-elements 0.24.2

A total of 2 pull requests where merged in this release.

build

bug

  • #1223 Fixed a validation issue with dnn-select. Thanks @valadas

v0.24.2-beta.1

18 Nov 00:36
87dd101
Compare
Choose a tag to compare
v0.24.2-beta.1 Pre-release
Pre-release

dnn-elements 0.24.2

A total of 1 pull requests where merged in this release.

bug

  • #1223 Fixed a validation issue with dnn-select. Thanks @valadas

v0.24.1

26 Oct 06:35
7c3b8dd
Compare
Choose a tag to compare

dnn-elements 0.24.1

A total of 14 pull requests where merged in this release.

build

bug

  • #1217 Also handle NaN for label. Thanks @valadas
  • #1216 Additional fix the the label floating issue on 0. Thanks @valadas
  • #1215 Fixed an issue with 0 string float label. Thanks @valadas
  • #1213 Fixed an issue with input of negative numbers. Thanks @valadas
  • #1212 Fixed an issue that made dnn-input label cover 0. Thanks @valadas

enhancement

  • #1214 Added inputMode support to dnn-input. Thanks @valadas
  • #1211 Added autocomplete prop to dnn-select and dnn-autocomplete. Thanks @valadas

dependencies

v0.24.0

01 Oct 04:10
21753cb
Compare
Choose a tag to compare

dnn-elements 0.24.0

🚨!!! BREAKING CHANGES !!!🚨

dnn-label no longer supports a default slot for its label, It was wrong to have the label "inside" the checkbox. Instead use something like you would normally do in normal html:

<label>
  <dnn-checkbox />
  Your actual label
</label>

or

<label for="mything">My Label</label>
<dnn-checkbox id="mything" />

dnn-button type property will be reused in the future to indicate the form type of button such as submit or reset or button. It has been marked as deprecated but will still work in only this minor version. Replace your current usage with the appearance prop. For this version only formButtonType will be used to indicate the type of form button this is. In the next minor release, formButtonType will be dreprecated in favor of the new meaning of type.

In vscode "search all files" you can use this regex to find all usages <dnn-button(?:[\s\S]*?)\btype\s*=\s*"[^"]*"

Example before:

<dnn-button type="primary">Submit</dnn-button>

Example after:

<dnn-button appearance="primary" formButtonType="submit">Submit</dnn-button>

A total of 154 pull requests where merged in this release.

breaking

  • #1187 Changed label support for dnn-checkbox. Thanks @valadas
  • #1170 Implemented logic to perform form validation. Thanks @valadas

build

bug

  • #1191 Improved autocomplete behaviour. Thanks @valadas
  • #1185 Fixed an issue where label would cover text in dnn-autocomplete. Thanks @valadas
  • #1184 Fixed some css issues with dnn-textarea. Thanks @valadas
  • #1183 dnn-autocomplete, allow showing suggestions upon click. Thanks @valadas
  • #1182 Fixed display of invalid on bluring dnn-select. Thanks @valadas
  • #1179 Fixed some issues to reset custom validity. Thanks @valadas
  • #1172 Fixed an issue that caused label misalignement in dnn-fieldset. Thanks @valadas
  • #1158 Fixed an issue with usage of richtext in shadowRoot. Thanks @valadas
  • #1123 Fixed an invalid debounce property. Thanks @valadas
  • #1122 Fixed an issue that caused label to overlay prefix/suffix. Thanks @valadas
  • #1096 Fixed an issue that caused too few large bundles. Thanks @valadas
  • #998 Resolved issue with --color-text not applying to inactive tab text color. Thanks @david-poindexter
  • #996 Resolved typo in HTML example for dnn-tabs and added TSX example. Thanks @david-poindexter
  • #989 Fixed an EsLint issue. Thanks @valadas

enhancement

maintenance

dependencies

Read more

v0.23.3

08 Mar 19:59
9abe06a
Compare
Choose a tag to compare

dnn-elements 0.23.3

A total of 2 pull requests where merged in this release.

build

  • #956 Merged release/0.23.3 into main to release v0.23.3. Thanks @valadas

bug

  • #955 Fixed localization typings issue for image-cropper. Thanks @valadas

v0.23.2

14 Feb 09:06
0c4b6f1
Compare
Choose a tag to compare

dnn-elements 0.23.2

A total of 28 pull requests where merged in this release.

build

bug

  • #952 Fixed a casing issue on validation of allowed extensions. Thanks @valadas
  • #926 Fixed a localization fallback issue. Thanks @valadas

dependencies

v0.23.1

30 Nov 02:54
4ce4164
Compare
Choose a tag to compare

dnn-elements 0.23.1

A total of 2 pull requests where merged in this release.

build

enhancement

v0.23.1-beta.1

29 Nov 03:25
1dcefe2
Compare
Choose a tag to compare
v0.23.1-beta.1 Pre-release
Pre-release

dnn-elements 0.23.1

A total of 1 pull requests where merged in this release.

enhancement