Skip to content

Commit

Permalink
docs(ld-card): remove obsolete note about cursor style change
Browse files Browse the repository at this point in the history
  • Loading branch information
borisdiakur committed Apr 13, 2022
1 parent 6a4b1ac commit 19bb0d6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions src/liquid/components/ld-card/ld-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ export class LdCard {
@Prop() shadow: 'active' | 'hover' | 'stacked' | 'sticky' = 'stacked'

/**
* Adds cursor pointer as well as hover and focus-within states using an
* elevation transition from `shadow` (see above) to `shadowInteractive`.
* Adds hover and focus-within states using an elevation transition from
* `shadow` (see above) to `shadowInteractive`.
*/
@Prop() shadowInteractive?: 'active' | 'hover' | 'stacked' | 'sticky'

Expand Down
16 changes: 8 additions & 8 deletions src/liquid/components/ld-card/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,14 +125,14 @@ Use the `shadow-interactive` prop for a transition to a different shadow on hove

## Properties

| Property | Attribute | Description | Type | Default |
| ------------------- | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------- | ----------- |
| `key` | `key` | for tracking the node's identity when working with lists | `string \| number` | `undefined` |
| `ref` | `ref` | reference to component | `any` | `undefined` |
| `shadow` | `shadow` | Simulates card elevation by setting the size of the card box shadow. | `"active" \| "hover" \| "stacked" \| "sticky"` | `'stacked'` |
| `shadowInteractive` | `shadow-interactive` | Adds cursor pointer as well as hover and focus-within states using an elevation transition from `shadow` (see above) to `shadowInteractive`. | `"active" \| "hover" \| "stacked" \| "sticky"` | `undefined` |
| `size` | `size` | The size prop effects the card padding only. | `"sm"` | `undefined` |
| `tag` | `tag` | The rendered HTML tag for the card. Use `li` to group cards in a list. | `string` | `'div'` |
| Property | Attribute | Description | Type | Default |
| ------------------- | -------------------- | ------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------- | ----------- |
| `key` | `key` | for tracking the node's identity when working with lists | `string \| number` | `undefined` |
| `ref` | `ref` | reference to component | `any` | `undefined` |
| `shadow` | `shadow` | Simulates card elevation by setting the size of the card box shadow. | `"active" \| "hover" \| "stacked" \| "sticky"` | `'stacked'` |
| `shadowInteractive` | `shadow-interactive` | Adds hover and focus-within states using an elevation transition from `shadow` (see above) to `shadowInteractive`. | `"active" \| "hover" \| "stacked" \| "sticky"` | `undefined` |
| `size` | `size` | The size prop effects the card padding only. | `"sm"` | `undefined` |
| `tag` | `tag` | The rendered HTML tag for the card. Use `li` to group cards in a list. | `string` | `'div'` |


## Shadow Parts
Expand Down

0 comments on commit 19bb0d6

Please sign in to comment.