From 87740606bc30a2dbf53c498b71b00bd3ce4daa0c Mon Sep 17 00:00:00 2001 From: Joren Broekema Date: Wed, 3 Jun 2020 11:34:58 +0200 Subject: [PATCH] chore: remove live/demos section from readmes --- packages/ajax/README.md | 4 ---- packages/button/README.md | 4 ---- packages/calendar/README.md | 4 ---- packages/checkbox-group/README.md | 6 +----- packages/core/README.md | 4 ---- packages/dialog/README.md | 4 ---- packages/fieldset/README.md | 4 ---- packages/form/README.md | 4 ---- packages/helpers/README.md | 4 ---- packages/helpers/sb-action-logger/README.md | 4 ---- packages/icon/README.md | 4 ---- packages/input-amount/README.md | 4 ---- packages/input-date/README.md | 4 ---- packages/input-datepicker/README.md | 4 ---- packages/input-email/README.md | 4 ---- packages/input-iban/README.md | 4 ---- packages/input-range/README.md | 4 ---- packages/input/README.md | 4 ---- packages/localize/README.md | 4 ---- packages/radio-group/README.md | 4 ---- packages/select/README.md | 4 ---- packages/steps/README.md | 4 ---- packages/switch/README.md | 4 ---- packages/tabs/README.md | 4 ---- packages/textarea/README.md | 4 ---- packages/tooltip/README.md | 4 ---- 26 files changed, 1 insertion(+), 105 deletions(-) diff --git a/packages/ajax/README.md b/packages/ajax/README.md index c2f846a30..2cfd3b6f3 100644 --- a/packages/ajax/README.md +++ b/packages/ajax/README.md @@ -13,10 +13,6 @@ export default { }; ``` -## Live Demo/Documentation - -> See our [storybook](http://lion-web-components.netlify.com/?path=/docs/fetch-system-ajax) for a live demo and documentation - ## Features - only JS functions, no (unnecessarily expensive) web components diff --git a/packages/button/README.md b/packages/button/README.md index c6f056fe1..bb2a874ca 100644 --- a/packages/button/README.md +++ b/packages/button/README.md @@ -19,10 +19,6 @@ export default { export const main = () => html` Default `; ``` -## Live Demo/Documentation - -> See our [storybook](http://lion-web-components.netlify.com/?path=/docs/buttons-button) for a live demo and API documentation - ## Features - Clickable area that is bigger than visual size diff --git a/packages/calendar/README.md b/packages/calendar/README.md index 18d1405eb..e7b1b49ef 100644 --- a/packages/calendar/README.md +++ b/packages/calendar/README.md @@ -30,10 +30,6 @@ export const main = () => { }; ``` -## Live Demo/Documentation - -> See our [storybook](http://lion-web-components.netlify.com/?path=/docs/calendar-standalone) for a live demo and API documentation - ## Features - fully accessible keyboard navigation (Arrow Keys, PgUp, PgDn, ALT+PgUp, ALT+PgDn) diff --git a/packages/checkbox-group/README.md b/packages/checkbox-group/README.md index a02edd8e4..17ac37f47 100644 --- a/packages/checkbox-group/README.md +++ b/packages/checkbox-group/README.md @@ -5,7 +5,7 @@ `lion-checkbox-group` component enhances the functionality of the native `` element. Its purpose is to provide a way for users to check **multiple** options amongst a set of choices, or to function as a single toggle. -> You should use [lion-checkbox](https://github.com/ing-bank/lion/tree/master/packages/checkbox) elements as the children of the ``. +> You should use `` elements as the children of the ``. ```js script import { html } from 'lit-html'; @@ -33,10 +33,6 @@ export const main = () => html` > Make sure that the checkbox-group also has a name attribute, this is necessary for the [lion-form](?path=/docs/forms-form-overview--page)'s serialization result. -## Live Demo/Documentation - -> See our [storybook](http://lion-web-components.netlify.com/?path=/docs/forms-checkbox-group--default-story) for a live demo and API documentation - ## Features Since it extends from [lion-fieldset](?path=/docs/forms-fieldset-overview--page), diff --git a/packages/core/README.md b/packages/core/README.md index cf60eb5da..35feecce6 100644 --- a/packages/core/README.md +++ b/packages/core/README.md @@ -17,10 +17,6 @@ export default { import { LitElement, html, render } from '@lion/core'; ``` -## Live Demo/Documentation - -> See our [storybook](http://lion-web-components.netlify.com/?path=/docs/core) for a live demo and API documentation - ## Features - [function to deduplicate mixins (dedupeMixin)](#deduping-of-mixins) diff --git a/packages/dialog/README.md b/packages/dialog/README.md index d272b55a0..2a02d13f7 100644 --- a/packages/dialog/README.md +++ b/packages/dialog/README.md @@ -36,10 +36,6 @@ export const main = () => html` `; ``` -## Live Demo/Documentation - -> See our [storybook](http://lion-web-components.netlify.com/?path=/docs/overlays-specific-wc-dialog) for a live demo and documentation - ## Features - Show content when clicking the invoker diff --git a/packages/fieldset/README.md b/packages/fieldset/README.md index d08587be6..619e3fe72 100644 --- a/packages/fieldset/README.md +++ b/packages/fieldset/README.md @@ -35,10 +35,6 @@ A native fieldset element should always have a legend-element for a11y purposes. However, our fieldset element is not native and should not have a legend-element. Our fieldset instead has a label attribute or you can add a label with a div- or heading-element using `slot="label"`. -## Live Demo/Documentation - -> See our [storybook](http://lion-web-components.netlify.com/?path=/docs/forms-fieldset-overview--page) for a live demo and documentation - ## Features - Easy retrieval of form data based on field names diff --git a/packages/form/README.md b/packages/form/README.md index f0b020efe..845e90555 100644 --- a/packages/form/README.md +++ b/packages/form/README.md @@ -24,10 +24,6 @@ export const main = () => html` `; ``` -## Live Demo/Documentation - -> See our [storybook](http://lion-web-components.netlify.com/?path=/docs/forms-form-overview--page) for a live demo and documentation - ## Features - Data synchronization with models diff --git a/packages/helpers/README.md b/packages/helpers/README.md index 06d1817fc..1553e0d6f 100644 --- a/packages/helpers/README.md +++ b/packages/helpers/README.md @@ -13,10 +13,6 @@ A helpers package that contains several helpers that are used inside lion but ca These helpers are considered developer tools, not actual things to use in production. Therefore, they may not have the same quality standards as our other packages. -## Live Demo/Documentation - -> See our [storybook](http://lion-web-components.netlify.com/?path=/docs/helpers) for a live demo and API documentation - ## Packages | Package | Version | Description | diff --git a/packages/helpers/sb-action-logger/README.md b/packages/helpers/sb-action-logger/README.md index 4940adb06..28bd879a0 100644 --- a/packages/helpers/sb-action-logger/README.md +++ b/packages/helpers/sb-action-logger/README.md @@ -63,10 +63,6 @@ This connects the logger element to the trigger. If you try logging complex values such as arrays, objects or promises, you should expect to get only the string interpretation as the output in this logger. -## Live Demo/Documentation - -> See our [storybook](http://lion-web-components.netlify.com/?path=/docs/helpers-storybook-action-logger) for a live demo and API documentation - ## Features: - A public method `log` to log things to the action logger. diff --git a/packages/icon/README.md b/packages/icon/README.md index 06dad0f5b..a2663d314 100644 --- a/packages/icon/README.md +++ b/packages/icon/README.md @@ -35,10 +35,6 @@ export const main = () => html` `; ``` -## Live Demo/Documentation - -> See our [storybook](http://lion-web-components.netlify.com/?path=/docs/icon-system-icon) for a live demo and documentation - ## How to use ### Installation diff --git a/packages/input-amount/README.md b/packages/input-amount/README.md index dfab158b9..569648cb6 100644 --- a/packages/input-amount/README.md +++ b/packages/input-amount/README.md @@ -28,10 +28,6 @@ export const main = () => { }; ``` -## Live Demo/Documentation - -> See our [storybook](http://lion-web-components.netlify.com/?path=/docs/forms-input-amount--default-story) for a live demo and API documentation - ## Features - Based on [lion-input](?path=/docs/forms-system-overview--page) diff --git a/packages/input-date/README.md b/packages/input-date/README.md index 056075c5b..edda603a3 100644 --- a/packages/input-date/README.md +++ b/packages/input-date/README.md @@ -21,10 +21,6 @@ loadDefaultFeedbackMessages(); export const main = () => html` `; ``` -## Live Demo/Documentation - -> See our [storybook](http://lion-web-components.netlify.com/?path=/docs/forms-input-date--default-story) for a live demo and API documentation - ## Features - Based on [lion-input](?path=/docs/forms-input--default-story) diff --git a/packages/input-datepicker/README.md b/packages/input-datepicker/README.md index 76cdc78a2..d4e58f09c 100644 --- a/packages/input-datepicker/README.md +++ b/packages/input-datepicker/README.md @@ -26,10 +26,6 @@ export const main = () => { }; ``` -## Live Demo/Documentation - -> See our [storybook](http://lion-web-components.netlify.com/?path=/docs/forms-input-datepicker--default-story) for a live demo and API documentation - ## Features - Input field with a datepicker to help to choose a date diff --git a/packages/input-email/README.md b/packages/input-email/README.md index bce136769..c76989955 100644 --- a/packages/input-email/README.md +++ b/packages/input-email/README.md @@ -21,10 +21,6 @@ export const main = () => { }; ``` -## Live Demo/Documentation - -> See our [storybook](http://lion-web-components.netlify.com/?path=/docs/forms-input-email--default-story) for a live demo and API documentation - ## Features - Based on [lion-input](?path=/docs/forms-input--default-story) diff --git a/packages/input-iban/README.md b/packages/input-iban/README.md index 7a436b50f..8afdd5a9f 100644 --- a/packages/input-iban/README.md +++ b/packages/input-iban/README.md @@ -25,10 +25,6 @@ export const main = () => { }; ``` -## Live Demo/Documentation - -> See our [storybook](http://lion-web-components.netlify.com/?path=/docs/forms-input-iban--default-story) for a live demo and API documentation - ## Features - Based on [lion-input](?path=/docs/forms-input--default-story) diff --git a/packages/input-range/README.md b/packages/input-range/README.md index b1d5dea5b..e92fb0d7b 100644 --- a/packages/input-range/README.md +++ b/packages/input-range/README.md @@ -19,10 +19,6 @@ export const main = () => html` `; ``` -## Live Demo/Documentation - -> See our [storybook](http://lion-web-components.netlify.com/?path=/docs/forms-input-range--default-story) for a live demo and API documentation - ## Features - Based on [lion-input](?path=/docs/forms-input--default-story). diff --git a/packages/input/README.md b/packages/input/README.md index 50ae1048c..795e0902c 100644 --- a/packages/input/README.md +++ b/packages/input/README.md @@ -20,10 +20,6 @@ export default { export const main = () => html` `; ``` -## Live Demo/Documentation - -> See our [storybook](http://lion-web-components.netlify.com/?path=/docs/forms-input--default-story) for a live demo and API documentation - ## Features - Based on [field](?path=/docs/forms-system-overview--page) diff --git a/packages/localize/README.md b/packages/localize/README.md index 1f3633fee..a254d5d99 100644 --- a/packages/localize/README.md +++ b/packages/localize/README.md @@ -11,10 +11,6 @@ export default { Is meant to translate text into multiple languages. In it's simplest form it is a function that returns the translated text for a namespace + key. -## Live Demo/Documentation - -> See our [storybook](http://lion-web-components.netlify.com/?path=/docs/localize--page) for a live demo and documentation - ## Features - Uses es modules diff --git a/packages/radio-group/README.md b/packages/radio-group/README.md index 707862ba1..95292c993 100644 --- a/packages/radio-group/README.md +++ b/packages/radio-group/README.md @@ -32,10 +32,6 @@ export const main = () => html` - Make sure that to use a name attribute as it is necessary for the [lion-form](?path=/docs/forms-form-overview--page)'s serialization result. - If you have many options for a user to pick from, consider using [lion-select](?path=/docs/forms-select--default-story) instead -## Live Demo/Documentation - -> See our [storybook](http://lion-web-components.netlify.com/?path=/docs/forms-radio-group--default-story) for a live demo and API documentation - ## Features Since it extends from [lion-fieldset](?path=/docs/forms-fieldset-overview--page), it has all the features a fieldset has. diff --git a/packages/select/README.md b/packages/select/README.md index f4348b766..3d03cf120 100644 --- a/packages/select/README.md +++ b/packages/select/README.md @@ -33,10 +33,6 @@ export const main = () => html` `; ``` -## Live Demo/Documentation - -> See our [storybook](http://lion-web-components.netlify.com/?path=/docs/forms-select--default-story) for a live demo and API documentation - For this form element it is important to put the `slot="input"` with the native `select` yourself, because you are responsible for filling it with `