Skip to content

Releases: DNNCommunity/dnn-elements

v0.26.0

14 Jan 04:22
3630ca5
Compare
Choose a tag to compare

dnn-elements 0.26.0

☢️Minor breaking change ☢️
Some css variables names were change to harmonize them and avoid confusion between similar components. Please read the pull request details below if you use custom colors using dnn input elements!

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

bug

  • #1252 Fixed some issues with css-variables of inputs. Thanks @valadas

v0.26.0-beta.1

14 Jan 03:07
a30b5e2
Compare
Choose a tag to compare
v0.26.0-beta.1 Pre-release
Pre-release

dnn-elements 0.26.0

☢️Minor breaking change ☢️
Some css variables names were change to harmonize them and avoid confusion between similar components. Please read the pull request details below if you use custom colors using dnn input elements!

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

bug

  • #1252 Fixed some issues with css-variables of inputs. Thanks @valadas

v0.25.1

12 Jan 20:35
cd00866
Compare
Choose a tag to compare

dnn-elements 0.25.1

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

build

enhancement

  • #1249 Updated hard-coded CSS variables in index.html to match those in DNN 10. Thanks @david-poindexter
  • #1247 Updated border and background color for dnn-dropzone for compatibility with DNN 10. Thanks @david-poindexter

v0.25.1-beta.1

12 Jan 06:10
6ad4cc7
Compare
Choose a tag to compare
v0.25.1-beta.1 Pre-release
Pre-release

dnn-elements 0.25.1

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

enhancement

  • #1249 Updated hard-coded CSS variables in index.html to match those in DNN 10. Thanks @david-poindexter
  • #1247 Updated border and background color for dnn-dropzone for compatibility with DNN 10. Thanks @david-poindexter

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