Skip to content

Commit

Permalink
Update Snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
deleonio committed Nov 27, 2023
1 parent 04a2bcf commit 0e32e5c
Show file tree
Hide file tree
Showing 9 changed files with 47 additions and 41 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ node_modules/

package-lock.json
.DS_Store
.nx/
CHANGELOG.*
*.log
*.tgz
6 changes: 6 additions & 0 deletions packages/components/src/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2312,6 +2312,9 @@ export namespace Components {
"_symbol": string;
}
interface KolTable {
/**
* Defines whether to allow multi sort.
*/
"_allowMultiSort"?: boolean;
/**
* Defines the primary table data.
Expand Down Expand Up @@ -5103,6 +5106,9 @@ declare namespace LocalJSX {
"_symbol": string;
}
interface KolTable {
/**
* Defines whether to allow multi sort.
*/
"_allowMultiSort"?: boolean;
/**
* Defines the primary table data.
Expand Down
34 changes: 17 additions & 17 deletions packages/components/src/components/link-button/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,23 +29,23 @@ Weitere Informationen zum Aussehen finden Sie auf der <kol-link _href="/docs/com

## Properties

| Property | Attribute | Description | Type | Default |
| --------------------- | ---------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ----------------------------------- |
| `_accessKey` | `_access-key` | Defines the elements access key. | `string \| 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` |
| `_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<Event, string> \| 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<Event, string> \| 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

Expand Down
Loading

0 comments on commit 0e32e5c

Please sign in to comment.