diff --git a/.gitignore b/.gitignore index 34d78f17db..d078b36473 100644 --- a/.gitignore +++ b/.gitignore @@ -10,6 +10,7 @@ node_modules/ package-lock.json .DS_Store +.nx/ CHANGELOG.* *.log *.tgz diff --git a/packages/components/src/components.d.ts b/packages/components/src/components.d.ts index 20e3c92cf1..767f0c5734 100644 --- a/packages/components/src/components.d.ts +++ b/packages/components/src/components.d.ts @@ -2312,6 +2312,9 @@ export namespace Components { "_symbol": string; } interface KolTable { + /** + * Defines whether to allow multi sort. + */ "_allowMultiSort"?: boolean; /** * Defines the primary table data. @@ -5103,6 +5106,9 @@ declare namespace LocalJSX { "_symbol": string; } interface KolTable { + /** + * Defines whether to allow multi sort. + */ "_allowMultiSort"?: boolean; /** * Defines the primary table data. diff --git a/packages/components/src/components/link-button/readme.md b/packages/components/src/components/link-button/readme.md index 3e7e173d7d..46127380bc 100644 --- a/packages/components/src/components/link-button/readme.md +++ b/packages/components/src/components/link-button/readme.md @@ -29,23 +29,23 @@ Weitere Informationen zum Aussehen finden Sie auf der \| undefined; }` | `undefined` | -| `_role` | `_role` | Defines the role of the components primary element. | `"button" \| "link" \| "tab" \| undefined` | `undefined` | -| `_tabIndex` | `_tab-index` | Defines which tab-index the primary element of the component has. (https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) | `number \| undefined` | `undefined` | -| `_target` | `_target` | Defines where to open the link. | `string \| undefined` | `undefined` | -| `_targetDescription` | `_target-description` | Defines the description to use when the link is going to be opened in another application. | `string \| undefined` | `translate('kol-open-link-in-tab')` | -| `_tooltipAlign` | `_tooltip-align` | Defines where to show the Tooltip preferably: top, right, bottom or left. | `"bottom" \| "left" \| "right" \| "top" \| undefined` | `'right'` | -| `_variant` | `_variant` | Defines which variant should be used for presentation. | `"custom" \| "danger" \| "ghost" \| "normal" \| "primary" \| "secondary" \| "tertiary" \| undefined` | `'normal'` | +| Property | Attribute | Description | Type | Default | +| --------------------- | --------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ----------------------------------- | +| `_accessKey` | `_access-key` | Defines the elements access key. | `string \| undefined` | `undefined` | +| `_ariaCurrentValue` | `_aria-current-value` | Defines the value for the aria-current attribute. | `"date" \| "false" \| "location" \| "page" \| "step" \| "time" \| "true" \| undefined` | `undefined` | +| `_customClass` | `_custom-class` | Defines the custom class attribute if \_variant="custom" is set. | `string \| undefined` | `undefined` | +| `_download` | `_download` | Tells the browser that the link contains a file. Optionally sets the filename. | `string \| undefined` | `undefined` | +| `_hideLabel` | `_hide-label` | Hides the caption by default and displays the caption text with a tooltip when the interactive element is focused or the mouse is over it. | `boolean \| undefined` | `false` | +| `_href` _(required)_ | `_href` | Defines the target URI of the link. | `string` | `undefined` | +| `_icons` | `_icons` | Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`). | `KoliBriHorizontalIcons & KoliBriVerticalIcons \| string \| undefined` | `undefined` | +| `_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` | +| `_on` | -- | Defines the callback functions for links. | `undefined \| { onClick?: EventValueOrEventCallback \| undefined; }` | `undefined` | +| `_role` | `_role` | Defines the role of the components primary element. | `"button" \| "link" \| "tab" \| undefined` | `undefined` | +| `_tabIndex` | `_tab-index` | Defines which tab-index the primary element of the component has. (https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) | `number \| undefined` | `undefined` | +| `_target` | `_target` | Defines where to open the link. | `string \| undefined` | `undefined` | +| `_targetDescription` | `_target-description` | Defines the description to use when the link is going to be opened in another application. | `string \| undefined` | `translate('kol-open-link-in-tab')` | +| `_tooltipAlign` | `_tooltip-align` | Defines where to show the Tooltip preferably: top, right, bottom or left. | `"bottom" \| "left" \| "right" \| "top" \| undefined` | `'right'` | +| `_variant` | `_variant` | Defines which variant should be used for presentation. | `"custom" \| "danger" \| "ghost" \| "normal" \| "primary" \| "secondary" \| "tertiary" \| undefined` | `'normal'` | ## Dependencies diff --git a/packages/components/src/components/link/readme.md b/packages/components/src/components/link/readme.md index 7165b472fe..6eef781887 100644 --- a/packages/components/src/components/link/readme.md +++ b/packages/components/src/components/link/readme.md @@ -77,21 +77,21 @@ Der übergebene Location-String muss dabei exakt dem `href`-Attributs des Links ## Properties -| Property | Attribute | Description | Type | Default | -| -------------------- | ---------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ---------------------------------------------- | -| `_accessKey` | `_access-key` | Defines the elements access key. | `string \| undefined` | `undefined` | -| `_download` | `_download` | Tells the browser that the link contains a file. Optionally sets the filename. | `string \| undefined` | `undefined` | -| `_hideLabel` | `_hide-label` | Hides the caption by default and displays the caption text with a tooltip when the interactive element is focused or the mouse is over it. | `boolean \| undefined` | `false` | -| `_href` _(required)_ | `_href` | Sets the target URI of the link or citation source. | `string` | `undefined` | -| `_icons` | `_icons` | Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`). | `KoliBriHorizontalIcons & KoliBriVerticalIcons \| string \| undefined` | `undefined` | -| `_label` | `_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` | `undefined` | -| `_listenAriaCurrent` | `_listen-aria-current` | Listen on an aria-current event with this value. If the value matches the current value and the href is the same as the current url, the aria-current attribute will be set to current value. | `"date" \| "location" \| "page" \| "step" \| "time" \| boolean \| undefined` | `undefined` | -| `_on` | -- | Defines the callback functions for links. | `undefined \| { onClick?: EventValueOrEventCallback \| undefined; }` | `undefined` | -| `_role` | `_role` | Defines the role of the components primary element. | `"button" \| "link" \| "tab" \| undefined` | `undefined` | -| `_tabIndex` | `_tab-index` | Defines which tab-index the primary element of the component has. (https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) | `number \| undefined` | `undefined` | -| `_target` | `_target` | Defines where to open the link. | `string \| undefined` | `undefined` | -| `_targetDescription` | `_target-description` | Defines the description to use when the link is going to be opened in another application. | `string \| undefined` | `'Der Link wird in einem neuen Tab geöffnet.'` | -| `_tooltipAlign` | `_tooltip-align` | Defines where to show the Tooltip preferably: top, right, bottom or left. | `"bottom" \| "left" \| "right" \| "top" \| undefined` | `'right'` | +| Property | Attribute | Description | Type | Default | +| -------------------- | --------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------- | ---------------------------------------------- | +| `_accessKey` | `_access-key` | Defines the elements access key. | `string \| undefined` | `undefined` | +| `_ariaCurrentValue` | `_aria-current-value` | Defines the value for the aria-current attribute. | `"date" \| "false" \| "location" \| "page" \| "step" \| "time" \| "true" \| undefined` | `undefined` | +| `_download` | `_download` | Tells the browser that the link contains a file. Optionally sets the filename. | `string \| undefined` | `undefined` | +| `_hideLabel` | `_hide-label` | Hides the caption by default and displays the caption text with a tooltip when the interactive element is focused or the mouse is over it. | `boolean \| undefined` | `false` | +| `_href` _(required)_ | `_href` | Sets the target URI of the link or citation source. | `string` | `undefined` | +| `_icons` | `_icons` | Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`). | `KoliBriHorizontalIcons & KoliBriVerticalIcons \| string \| undefined` | `undefined` | +| `_label` | `_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` | `undefined` | +| `_on` | -- | Defines the callback functions for links. | `undefined \| { onClick?: EventValueOrEventCallback \| undefined; }` | `undefined` | +| `_role` | `_role` | Defines the role of the components primary element. | `"button" \| "link" \| "tab" \| undefined` | `undefined` | +| `_tabIndex` | `_tab-index` | Defines which tab-index the primary element of the component has. (https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) | `number \| undefined` | `undefined` | +| `_target` | `_target` | Defines where to open the link. | `string \| undefined` | `undefined` | +| `_targetDescription` | `_target-description` | Defines the description to use when the link is going to be opened in another application. | `string \| undefined` | `'Der Link wird in einem neuen Tab geöffnet.'` | +| `_tooltipAlign` | `_tooltip-align` | Defines where to show the Tooltip preferably: top, right, bottom or left. | `"bottom" \| "left" \| "right" \| "top" \| undefined` | `'right'` | ## Dependencies diff --git a/packages/components/src/components/nav/readme.md b/packages/components/src/components/nav/readme.md index fe18fc76c7..71193edb92 100644 --- a/packages/components/src/components/nav/readme.md +++ b/packages/components/src/components/nav/readme.md @@ -98,15 +98,14 @@ Die Ausrichtung der Navigationsleiste kann mit dem Attribut **`_orientation`** u ## Properties -| Property | Attribute | Description | Type | Default | -| --------------------- | --------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------- | ------------ | -| `_ariaCurrentValue` | `_aria-current-value` | Defines the value of aria-current to be used with the current context within the navigation. | `"date" \| "location" \| "page" \| "step" \| "time" \| boolean` | `false` | -| `_collapsible` | `_collapsible` | Defines if navigation nodes can be collapsed or not. Enabled by default. | `boolean \| undefined` | `true` | -| `_hasCompactButton` | `_has-compact-button` | Gibt an, ob die Navigation eine zusätzliche Schaltfläche zum Aus- und Einklappen der Navigation anzeigen soll. | `boolean \| undefined` | `false` | -| `_hideLabel` | `_hide-label` | Hides the caption by default and displays the caption text with a tooltip when the interactive element is focused or the mouse is over it. | `boolean \| undefined` | `false` | -| `_label` _(required)_ | `_label` | Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). | `string` | `undefined` | -| `_links` _(required)_ | `_links` | Defines the list of links, buttons or texts to render. | `ButtonOrLinkOrTextWithChildrenProps[] \| string` | `undefined` | -| `_orientation` | `_orientation` | Defines whether the orientation of the component is horizontal or vertical. | `"horizontal" \| "vertical" \| undefined` | `'vertical'` | +| Property | Attribute | Description | Type | Default | +| --------------------- | --------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------- | ------------ | +| `_collapsible` | `_collapsible` | Defines if navigation nodes can be collapsed or not. Enabled by default. | `boolean \| undefined` | `true` | +| `_hasCompactButton` | `_has-compact-button` | Gibt an, ob die Navigation eine zusätzliche Schaltfläche zum Aus- und Einklappen der Navigation anzeigen soll. | `boolean \| undefined` | `false` | +| `_hideLabel` | `_hide-label` | Hides the caption by default and displays the caption text with a tooltip when the interactive element is focused or the mouse is over it. | `boolean \| undefined` | `false` | +| `_label` _(required)_ | `_label` | Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). | `string` | `undefined` | +| `_links` _(required)_ | `_links` | Defines the list of links, buttons or texts to render. | `ButtonOrLinkOrTextWithChildrenProps[] \| string` | `undefined` | +| `_orientation` | `_orientation` | Defines whether the orientation of the component is horizontal or vertical. | `"horizontal" \| "vertical" \| undefined` | `'vertical'` | ## Dependencies diff --git a/packages/themes/ecl/snapshots/theme-ecl_ec/snapshot-for-handout-basic-firefox-darwin.png b/packages/themes/ecl/snapshots/theme-ecl_ec/snapshot-for-handout-basic-firefox-darwin.png index 992b16123d..7a8bcb7e47 100644 Binary files a/packages/themes/ecl/snapshots/theme-ecl_ec/snapshot-for-handout-basic-firefox-darwin.png and b/packages/themes/ecl/snapshots/theme-ecl_ec/snapshot-for-handout-basic-firefox-darwin.png differ diff --git a/packages/themes/ecl/snapshots/theme-ecl_eu/snapshot-for-handout-basic-firefox-darwin.png b/packages/themes/ecl/snapshots/theme-ecl_eu/snapshot-for-handout-basic-firefox-darwin.png index d7c4716078..2e5f4d91c4 100644 Binary files a/packages/themes/ecl/snapshots/theme-ecl_eu/snapshot-for-handout-basic-firefox-darwin.png and b/packages/themes/ecl/snapshots/theme-ecl_eu/snapshot-for-handout-basic-firefox-darwin.png differ diff --git a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-handout-basic-firefox-darwin.png b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-handout-basic-firefox-darwin.png index 6813436ced..0b332f77bd 100644 Binary files a/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-handout-basic-firefox-darwin.png and b/packages/themes/zoll/snapshots/theme-mapz/snapshot-for-handout-basic-firefox-darwin.png differ diff --git a/packages/themes/zoll/snapshots/theme-zollv3/snapshot-for-handout-basic-firefox-darwin.png b/packages/themes/zoll/snapshots/theme-zollv3/snapshot-for-handout-basic-firefox-darwin.png index 7e70d132c8..5c303ecb27 100644 Binary files a/packages/themes/zoll/snapshots/theme-zollv3/snapshot-for-handout-basic-firefox-darwin.png and b/packages/themes/zoll/snapshots/theme-zollv3/snapshot-for-handout-basic-firefox-darwin.png differ