valadas / Eraware_Dnn_Templates

Dnn templates
Other
19 stars 7 forks source link

Bump @dnncommunity/dnn-elements from 0.23.3 to 0.24.1 in /Eraware_Dnn_Spa_Ef_Di_Stencil/module.web #753

Open dependabot[bot] opened 1 week ago

dependabot[bot] commented 1 week ago

Bumps @dnncommunity/dnn-elements from 0.23.3 to 0.24.1.

Release notes

Sourced from @​dnncommunity/dnn-elements's releases.

v0.24.1

dnn-elements 0.24.1

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

build

bug

enhancement

dependencies

v0.24.0

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:

... (truncated)

Commits
  • 7c3b8dd Merge pull request #1218 from DNNCommunity/release/0.24.1
  • 4228538 Merge pull request #1217 from valadas/NaN-label
  • c5e6b92 Also handle NaN for label
  • 0d9ae21 Merge pull request #1216 from valadas/empty-string-label-no-float
  • b566c1c Another correction
  • 4eec435 Fixed an issue where label would not float with empty string
  • 46f4ba7 Merge pull request #1215 from valadas/0-string
  • 6c9a762 Use coercion operation instead of hardly type ===
  • eeb35b1 Fixed an issue with 0 string float label
  • e666349 Merge pull request #1214 from valadas/inputmode
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)