Releases: DNNCommunity/dnn-elements
v0.25.0
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
dependencies
- #1236 Bump typescript from 5.6.3 to 5.7.2. Thanks @dependabot[bot]
v0.24.3
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
- #1231 Bumped nuke to v9.0.3. Thanks @valadas
- #1228 Bump puppeteer from 22.15.0 to 23.9.0. Thanks @dependabot[bot]
- #1227 Bump eslint-plugin-storybook from 0.10.2 to 0.11.1. Thanks @dependabot[bot]
- #1226 Bump @stencil-community/eslint-plugin from 0.8.0 to 0.9.0. Thanks @dependabot[bot]
v0.24.2
v0.24.2-beta.1
v0.24.1
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
- #1210 Bump typescript from 5.6.2 to 5.6.3. Thanks @dependabot[bot]
- #1209 Bump @chromatic-com/storybook from 2.0.2 to 3.1.0. Thanks @dependabot[bot]
- #1208 Bumped nuke to v8.1.2. Thanks @valadas
- #1205 Bump @stencil/core from 4.21.0 to 4.22.2. Thanks @dependabot[bot]
- #1204 Bump eslint-plugin-storybook from 0.8.0 to 0.10.1. Thanks @dependabot[bot]
- #1195 Bump typescript from 5.5.4 to 5.6.2. Thanks @dependabot[bot]
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:
<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
- #1189 Allows toggle to be wrapped in label. Thanks @valadas
- #1177 Added some more css-variables. Thanks @valadas
- #1121 Re-organized bundles. Thanks @valadas
- #1119 Added programmatic support to focus or blur elements. Thanks @valadas
- #1116 Added
focus
andblur
logic todnn-autocomplete
. Thanks @valadas - #1093 Updated to utilize
focus-visible
styles instead offocus
. Thanks @david-poindexter - #1091 Implemented
Usage
documentation fordnn-sort-icon
. Thanks @david-poindexter - #1043 Fixed display of dnn-input validation messages. Thanks @valadas
- #1042 Implemented Usage documentation for dnn-toggle. Thanks @david-poindexter
- #1041 Added event to expose File object in dnn-image-cropper. Thanks @valadas
- #1040 Initial implementation of autocomplete component. Thanks @david-poindexter
- #1039 Added examples for usage of files/pictures in forms. Thanks @valadas
- #1038 Implemented usage documentation for
dnn-collapsible
. Thanks @david-poindexter - #1037 Implemented usage documentation for
dnn-chevron
. Thanks @david-poindexter - #1036 Implemented usage documentation for
dnn-checkbox
. Thanks @david-poindexter - #1020 Implemented dnn-textarea input field. Thanks @valadas
- #1019 Improved validation support of dnn-select. Thanks @valadas
- #1017 Updated dnn-select to use dnn-fieldset. Thanks @valadas
- #1016 Migrated dnn-color-input and dnn-input in new dnn-fieldset. Thanks @valadas
- #1015 Implemented usage documentation for dnn-button. Thanks @david-poindexter
- #1008 Implemented dnn-fieldset component. Thanks @valadas
- #1007 Implemented Usage documentation for dnn-tabs. Thanks @david-poindexter
- #993 Made dnn-richtext form aware. Thanks @valadas
- #991 Made most input elements form aware. Thanks @valadas
- #965 Implemented form example. Thanks @valadas
maintenance
- #1169 Bumped Nuke to 8.1.0. Thanks @valadas
- #1162 Properly updated storybook using their tooling. Thanks @valadas
- #1148 Migrated eslint plugins syntax. Thanks @valadas
- #1147 Migrated parserOptions to the new languageOptions. Thanks @valadas
- #1146 Converted eslint config to modern way. Thanks @valadas
- #1090 Update security URL. Thanks @bdukes
dependencies
- #1167 Bump @chromatic-com/storybook from 1.9.0 to 2.0.2. Thanks @dependabot[bot]
- #1164 Bump @stencil/core from 4.20.0 to 4.21.0. Thanks @dependabot[bot]
- #1159 Bump axios from 1.7.3 to 1.7.7. Thanks @dependabot[bot]
- #1154 Bump @storybook/addon-essentials from 8.2.8 to 8.2.9. Thanks @dependabot[bot]
- #1153 Bump storybook from 8.2.8 to 8.2.9. Thanks @dependabot[bot]
- #1152 Bump @storybook/web-components-webpack5 from 8.2.8 to 8.2.9. Thanks @dependabot[bot]
- #1151 Bump @storybook/blocks from 8.2.8 to 8.2.9. Thanks @dependabot[bot]
- #1144 Bump @storybook/addon-essentials from 8.2.5 to 8.2.8. Thanks @dependabot[bot]
- #1143 Bump @stencil/core from 4.19.2 to 4.20.0. Thanks @dependabot[bot]
- #1142 Bump lerna from 8.1.7 to 8.1.8. Thanks @dependabot[bot]
- #1141 Bump lit from 3.1.4 to 3.2.0. Thanks @dependabot[bot]
- #1140 Bump @typescript-eslint/parser from 7.18.0 to 8.0.1. Thanks @dependabot[bot]
- #1139 Bump @typescript-eslint/eslint-plugin from 7.18.0 to 8.0.1. Thanks @dependabot[bot]
- #1138 Bump @babel/preset-env from 7.24.8 to 7.25.3. Thanks @dependabot[bot]
- #1137 Bump @storybook/addon-interactions from 8.2.5 to 8.2.8. Thanks @dependabot[bot]
- #1136 Bump @storybook/addon-links from 8.2.7 to 8.2.8. Thanks @dependabot[bot]
- #1135 Bump @storybook/blocks from 8.2.5 to 8.2.8. Thanks @dependabot[bot]
- #1133 Bump @storybook/react from 8.2.5 to 8.2.8. Thanks @dependabot[bot]
- #1132 Bump @storybook/react-webpack5 from 8.2.5 to 8.2.8. Thanks @dependabot[bot]
- #1131 Bump @storybook/web-components-webpack5 from 8.2.7 to 8.2.8. Thanks @dependabot[bot]
- #1130 Bump @storybook/addon-a11y from 8.2.5 to 8.2.8. Thanks @dependabot[bot]
- #1129 Bump @types/node from 20.14.11 to 22.2.0. Thanks @dependabot[bot]
- #1127 Bump @stencil-community/eslint-plugin from 0.7.2 to 0.8.0. Thanks @dependabot[bot]
- #1126 Bump @storybook/addon-links from 8.2.5 to 8.2.7. Thanks @dependabot[bot]
- #1125 Bump typescript from 5.5.3 to 5.5.4. Thanks @dependabot[bot]
- #1124 Bump @storybook/web-components-webpack5 from 8.2.5 to 8.2.7. Thanks @dependabot[bot]
- #1115 Bump lerna from 8.1.3 to 8.1.7. Thanks @dependabot[bot]
- #1114 Bump @babel/preset-env from 7.24.7 to 7.24.8. Thanks @dependabot[bot]
- #1113 Bump @storybook/addon-a11y from 8.1.9 to 8.2.5. Thanks @dependabot[bot]
- #1112 Bump eslint-plugin-react from 7.34.3 to 7.35.0. Thanks @dependabot[bot]
- #1111 Bump @chromatic-com/storybook from 1.5.0 to 1.6.1. Thanks @dependabot[bot]
- #1110 Bump @storybook/addon-interactions from 8.1.11 to 8.2.5. Thanks @dependabot[bot]
- #1108 Bump @storybook/react-webpack5 from 8.1.9 to 8.2.5. Thanks @dependabot[bot]
- #1107 Bump @storybook/addon-links from 8.1.9 to 8.2.5. Thanks @dependabot[bot]
- #1106 Bump @typescript-eslint/parser from 7.14.1 to 7.16.1. Thanks @dependabot[bot]
- #1105 Bump @storybook/web-components-webpack5 from 8.1.9 to 8.2.5. Thanks @dependabot[bot]
- #1104 Bump @stencil/core from 4.19.1 to 4.19.2. Thanks @dependabot[bot]
- #1103 Bump typescript from 5.4.5 to 5.5.3. Thanks @dependabot[bot]
- #1102 Bump puppeteer from 21.11.0 to 22.13.1. Thanks @dependabot[bot]
- #1101 Bump @typescript-eslint/eslint-plugin from 7.13.0 to 7.16.1. Thanks @dependabot[bot]
- #1099 Bump @storybook/addon-essentials from 8.1.9 to 8.2.5. Thanks @dependabot[bot]
- #1098 Bump @storybook/web-components from 8.1.9 to 8.2.5. Thanks @dependabot[bot]
- #1097 Bump @types/node from 20.14.2 to 20.14.11. Thanks @dependabot[bot]
- #1089 Bump @storybook/addon-interactions from 8.1.9 to 8.1.11. Thanks @dependabot[bot]
- #1088 Bump @stencil/core from 4.18.3 to 4.19.1. Thanks @dependabot[bot]
- #1087 Bump eslint-plugin-react from 7.34.2 to 7.34.3. Thanks @dependabot[bot]
- #1086 Bump @typescript-eslint/parser from 7.13.0 to 7.14.1. Thanks @dependabot[bot]
- #1085 Bump @storybook/blocks from 8.1.9 to 8.1.11. Thanks @dependabot[bot]
- #1083 Bump lerna from 8.1.2 to 8.1.3. Thanks @dependabot[bot]
- #1082 Bump @babel/preset-typescript from 7.23.3 to 7.24.7. Thanks @dependabot[bot]
- #1081 Bump @typescript-eslint/parser from 6.21.0 to 7.13.0. Thanks @dependabot[bot]
- #1080 Bump jodit from 4.0.18 to 4.2.27. Thanks @dependabot[bot]
- #1079 Bump storybook from 7.6.17 to 8.1.9. Thanks @dependabot[bot]
- #1078 Bump @stencil/sass from 3.0.11 to 3.0.12. Thanks @dependabot[bot]
- #1077 Bump @storybook/addon-interactions from 7.6.17 to 8.1.9. Thanks @dependabot[bot]
- #1076 Bump @storybook/addon-essentials from 7.6.17 to 8.1.9. Thanks @dependabot[bot]
- #1075 Bump @storybook/react from 7.6.17 to 8.1.9. Thanks @dependabot[bot]
- #1073 Bump @storybook/react-webpack5 from 7.6.17 to 8.1.9. Thanks @dependabot[bot]
- #1072 Bump @types/react from 18.2.73 to 18.3.3. Thanks @dependabot[bot]
- #1071 Bump @types/node from 20.11.24 to 20.14.2. Thanks @dependabot[bot]
- #1070 Bump @stencil/core from 4.12.4 to 4.18.3. Thanks @dependabot[bot]
- #1069 Bump @typescript-eslint/eslint-plugin from 6.21.0 to 7.13.0. Thanks @dependabot[bot]
- #1068 Bump typescript from 5.2.2 to 5.4.5. Thanks @dependabot[bot]
- #1066 Bump @storybook/blocks from 7.6.17 to 8.1.9. Thanks @de...
v0.23.3
v0.23.2
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
- #951 Bump eslint from 7.32.0 to 8.56.0. Thanks @dependabot[bot]
- #950 Bump @typescript-eslint/eslint-plugin from 6.13.0 to 7.0.1. Thanks @dependabot[bot]
- #949 Bump @storybook/addon-links from 7.5.3 to 7.6.15. Thanks @dependabot[bot]
- #948 Bump @typescript-eslint/parser from 4.33.0 to 7.0.1. Thanks @dependabot[bot]
- #946 Bump @storybook/addon-essentials from 7.5.3 to 7.6.15. Thanks @dependabot[bot]
- #945 Bump gh-pages from 6.1.0 to 6.1.1. Thanks @dependabot[bot]
- #944 Bump license-checker-rseidelsohn from 4.2.11 to 4.3.0. Thanks @dependabot[bot]
- #943 Bump storybook from 7.5.3 to 7.6.15. Thanks @dependabot[bot]
- #942 Bump @storybook/web-components-webpack5 from 7.5.3 to 7.6.15. Thanks @dependabot[bot]
- #940 Bump @stencil/sass from 3.0.7 to 3.0.9. Thanks @dependabot[bot]
- #939 Bump axe-playwright from 1.2.3 to 2.0.1. Thanks @dependabot[bot]
- #938 Bump @storybook/web-components from 7.5.3 to 7.6.15. Thanks @dependabot[bot]
- #937 Bump lerna from 8.0.0 to 8.1.2. Thanks @dependabot[bot]
- #936 Bump lit from 3.1.0 to 3.1.2. Thanks @dependabot[bot]
- #935 Bump @stencil/core from 4.8.0 to 4.12.2. Thanks @dependabot[bot]
- #934 Bump @types/react from 18.2.39 to 18.2.55. Thanks @dependabot[bot]
- #933 Bump @storybook/addon-interactions from 7.5.3 to 7.6.15. Thanks @dependabot[bot]
- #932 Bump @types/jest from 29.5.10 to 29.5.12. Thanks @dependabot[bot]
- #931 Updated Nuke to v8.0.0. Thanks @valadas
- #930 Bump @storybook/blocks from 7.5.3 to 7.6.15. Thanks @dependabot[bot]
- #929 Bump @storybook/react-webpack5 from 7.5.3 to 7.6.15. Thanks @dependabot[bot]
- #928 Bump @storybook/addon-a11y from 7.5.3 to 7.6.15. Thanks @dependabot[bot]
- #927 Bump @types/node from 20.10.0 to 20.11.17. Thanks @dependabot[bot]
- #921 Bump @babel/preset-env from 7.23.3 to 7.23.9. Thanks @dependabot[bot]
- #917 Bump follow-redirects from 1.15.3 to 1.15.4. Thanks @dependabot[bot]
v0.23.1
dnn-elements 0.23.1
A total of 2 pull requests where merged in this release.
build
enhancement
- #905 Refine readme files for published npm packages a repo. Thanks @david-poindexter
v0.23.1-beta.1
dnn-elements 0.23.1
A total of 1 pull requests where merged in this release.
enhancement
- #905 Refine readme files for published npm packages a repo. Thanks @david-poindexter