-
-
-> The `KComponent` component is used in this example to create state.
-
-```html
-
-
-
{{ data.inlineText }}
-
-
-```
-
-## Props
-
-### ignoreValue
-
-If true, will not set the value of the input when enabled/clicked. This is useful to control placeholder style text
-
-
- data.inlineText = newVal">
{{ data.inlineText || 'cool placeholder' }}
-
-
-> The `KComponent` component is used in this example to create state.
-
-```html
-
- data.inlineText = newVal">
-
{{ data.inlineText || 'cool placeholder' }}
-
-
-```
-
-### styleOverrides
-
-Styles to set when the input is active. Useful when styling the default state differently.
-
-
- data.inlineText = newVal">
{{ data.inlineText || 'cool placeholder' }}
-
-
-> The `KComponent` component is used in this example to create state.
-
-```html
-
- data.inlineText = newVal">
-
- {{ data.inlineText || 'cool placeholder' }}
-
-
-
-
-
-```
-
-## Events
-
-### `@changed`
-
-Emitted blurred away from the editing input or when enter is pressed.
-
-When clicking out of the input `@changed` will fire and emit the value. Can be used to reset the outside data.
-
-::: tip
-While the component itself does not protect against returning empty an empty value, it is advised to do a check at the implementation layer to ensure empty & validation are accounted for.
-:::
-
-
-
-
-
-
-```
-
-## Slots
-
-- `default` - Content to be edited
-
-::: warning
-An HTML element must be passed in the slot. An error will be thrown if not passed.
-
-```html
-
-
-