Skip to content

Commit 4f483c5

Browse files
authored
Update package dependencies and fix readme documentation for toast an… (#261)
…d input-radio components The A11y and PO reviews will only take place after all other DoD steps have been completed by the Developer: - [x] Meaningful pull request title for the release notes - [x] Pull request is linked to an issue and all changes relate to the issue - [x] Tests to protect this code implemented (if applicable) - [ ] Manual test performed successfully (if applicable) - [x] Documentation or migration has been updated (if applicable)
2 parents 5453a44 + 1b8cf55 commit 4f483c5

File tree

17 files changed

+331
-1298
lines changed

17 files changed

+331
-1298
lines changed

package.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@
4141
"@leanup/form": "1.3.54",
4242
"@mdx-js/react": "3.1.0",
4343
"@monaco-editor/react": "4.6.0",
44-
"@public-ui/components": "3.0.0-alpha.0",
45-
"@public-ui/react": "3.0.0-alpha.0",
46-
"@public-ui/themes": "3.0.0-alpha.0",
44+
"@public-ui/components": "next",
45+
"@public-ui/react": "next",
46+
"@public-ui/themes": "next",
4747
"classnames": "2.5.1",
4848
"docusaurus-lunr-search": "3.5.0",
4949
"mermaid": "10.9.3",
@@ -60,6 +60,7 @@
6060
"@types/prettier": "2.7.3",
6161
"@typescript-eslint/eslint-plugin": "7.18.0",
6262
"@typescript-eslint/parser": "7.18.0",
63+
"adopted-style-sheets": "1.1.6",
6364
"autoprefixer": "10.4.20",
6465
"cpy-cli": "5.0.0",
6566
"depcheck": "1.4.7",
@@ -69,15 +70,15 @@
6970
"eslint-plugin-mdx": "3.1.5",
7071
"eslint-plugin-react": "7.37.2",
7172
"html-minifier-terser": "7.2.0",
72-
"npm-check-updates": "16.14.20",
73+
"npm-check-updates": "17.1.11",
7374
"npm-run-all": "4.1.5",
7475
"postcss": "8.4.49",
7576
"prop-types": "15.8.1",
7677
"rimraf": "3.0.2",
77-
"sass": "1.80.7",
78-
"tailwindcss": "3.4.14",
78+
"sass": "1.81.0",
79+
"tailwindcss": "3.4.15",
7980
"ts-prune": "0.10.3",
80-
"typescript": "5.6.3"
81+
"typescript": "5.7.2"
8182
},
8283
"browserslist": {
8384
"production": [

pnpm-lock.yaml

Lines changed: 306 additions & 1276 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

versioned_readmes/2.2/combobox/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Beispiel für die Konstruktion des JSON-Array:
6565
| `_icons` | `_icons` | Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`). | `string` \| `undefined` \| `{ right?: IconOrIconClass` \| `undefined; left?: IconOrIconClass` \| `undefined; }` | `undefined` |
6666
| `_id` | `_id` | Defines the internal ID of the primary component element. | `string` \| `undefined` | `undefined` |
6767
| `_label` _(required)_ | `_label` | Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot. | `string` | `undefined` |
68-
| `_msg` | `_msg` | Defines the properties for a message rendered as Alert component. | `string` \| `undefined` \| `{} & { _level?: 0` \| `2` \| `1` \| `4` \| `3` \| `5` \| `6` \| `undefined; _on?: KoliBriAlertEventCallbacks` \| `undefined; _type?: "default"` \| `"info"` \| `"success"` \| `"warning"` \| `"error"` \| `undefined; _variant?: "card"` \| `"msg"` \| `undefined; _label?: string` \| `undefined; _alert?: boolean` \| `undefined; _hasCloser?: boolean` \| `undefined; } & { _description: string; }` | `undefined` |
68+
| `_msg` | `_msg` | Defines the properties for a message rendered as Alert component. | `string` \| `undefined` \| `{} & { _level?: 0` \| `2` \| `1` \| `4` \| `3` \| `5` \| `6` \| `undefined; _on?: KoliBriAlertEventCallbacks` \| `undefined; _type?: "error"` \| `"default"` \| `"info"` \| `"success"` \| `"warning"` \| `undefined; _variant?: "card"` \| `"msg"` \| `undefined; _label?: string` \| `undefined; _alert?: boolean` \| `undefined; _hasCloser?: boolean` \| `undefined; } & { _description: string; }` | `undefined` |
6969
| `_name` | `_name` | Defines the technical name of an input field. | `string` \| `undefined` | `undefined` |
7070
| `_on` | -- | Gibt die EventCallback-Funktionen für das Input-Event an. | `InputTypeOnBlur & InputTypeOnClick & InputTypeOnChange & InputTypeOnFocus & InputTypeOnInput` \| `undefined` | `undefined` |
7171
| `_placeholder` | `_placeholder` | Defines the placeholder for input field. To be shown when there's no value. | `string` \| `undefined` | `undefined` |

versioned_readmes/2.2/input-checkbox/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Achten Sie darauf, jeder Checkbox ein Label zuzuweisen, da dieses von Screenread
9595
| `_indeterminate` | `_indeterminate` | Puts the checkbox in the indeterminate state, does not change the value of _checked. | `boolean` \| `undefined` | `undefined` |
9696
| `_label` _(required)_ | `_label` | Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot. | `string` | `undefined` |
9797
| `_labelAlign` | `_label-align` | Defines which alignment should be used for presentation. | `"left"` \| `"right"` \| `undefined` | `'right'` |
98-
| `_msg` | `_msg` | Defines the properties for a message rendered as Alert component. | `string` \| `undefined` \| `{} & { _level?: 0` \| `2` \| `1` \| `4` \| `3` \| `5` \| `6` \| `undefined; _on?: KoliBriAlertEventCallbacks` \| `undefined; _type?: "default"` \| `"info"` \| `"success"` \| `"warning"` \| `"error"` \| `undefined; _variant?: "card"` \| `"msg"` \| `undefined; _label?: string` \| `undefined; _alert?: boolean` \| `undefined; _hasCloser?: boolean` \| `undefined; } & { _description: string; }` | `undefined` |
98+
| `_msg` | `_msg` | Defines the properties for a message rendered as Alert component. | `string` \| `undefined` \| `{} & { _level?: 0` \| `2` \| `1` \| `4` \| `3` \| `5` \| `6` \| `undefined; _on?: KoliBriAlertEventCallbacks` \| `undefined; _type?: "error"` \| `"default"` \| `"info"` \| `"success"` \| `"warning"` \| `undefined; _variant?: "card"` \| `"msg"` \| `undefined; _label?: string` \| `undefined; _alert?: boolean` \| `undefined; _hasCloser?: boolean` \| `undefined; } & { _description: string; }` | `undefined` |
9999
| `_name` | `_name` | Defines the technical name of an input field. | `string` \| `undefined` | `undefined` |
100100
| `_on` | -- | Gibt die EventCallback-Funktionen für das Input-Event an. | `InputTypeOnBlur & InputTypeOnClick & InputTypeOnChange & InputTypeOnFocus & InputTypeOnInput` \| `undefined` | `undefined` |
101101
| `_required` | `_required` | Makes the input element required. | `boolean` \| `undefined` | `false` |

0 commit comments

Comments
 (0)