872 lines
26 KiB
Markdown
872 lines
26 KiB
Markdown
# Change Log
|
|
|
|
## 0.18.1
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [bcf68ceb]
|
|
- Updated dependencies [d963e74e]
|
|
- @lion/core@0.18.4
|
|
- @lion/form-core@0.15.3
|
|
- @lion/helpers@0.9.4
|
|
|
|
## 0.18.0
|
|
|
|
### Minor Changes
|
|
|
|
- 4ae3e9e2: Make keyup handlers protected, enables subclassers to switch using alternative keys.
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [ec03d209]
|
|
- @lion/core@0.18.3
|
|
- @lion/form-core@0.15.2
|
|
- @lion/helpers@0.9.3
|
|
|
|
## 0.17.6
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [04874352]
|
|
- @lion/form-core@0.15.1
|
|
|
|
## 0.17.5
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [8c06302e]
|
|
- Updated dependencies [8a766644]
|
|
- Updated dependencies [e87b6293]
|
|
- @lion/core@0.18.2
|
|
- @lion/form-core@0.15.0
|
|
- @lion/helpers@0.9.2
|
|
|
|
## 0.17.4
|
|
|
|
### Patch Changes
|
|
|
|
- ae14f998: Improve documentation and examples
|
|
|
|
## 0.17.3
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [84131205]
|
|
- @lion/form-core@0.14.2
|
|
- @lion/helpers@0.9.1
|
|
- @lion/core@0.18.1
|
|
|
|
## 0.17.2
|
|
|
|
### Patch Changes
|
|
|
|
- 62eb21e6: Update docs to use overview, use cases, reference
|
|
|
|
## 0.17.1
|
|
|
|
### Patch Changes
|
|
|
|
- f320b8b4: use customElementRegistry from component registry for slots used via SlotMixin
|
|
- 077113ba: Stop checked-changed event from propagating when caught by lion-switch element.
|
|
- Updated dependencies [f320b8b4]
|
|
- @lion/form-core@0.14.1
|
|
|
|
## 0.17.0
|
|
|
|
### Minor Changes
|
|
|
|
- 72067c0d: **BREAKING** Upgrade to [lit](https://lit.dev/) version 2
|
|
|
|
This does not change any of the public APIs of lion.
|
|
It however effects you when you have your own extension layer or your own components especially when using directives.
|
|
See the [official lit upgrade guide](https://lit.dev/docs/releases/upgrade/).
|
|
|
|
**BREAKING** Upgrade to [ScopedElements](https://open-wc.org/docs/development/scoped-elements/) version 2
|
|
|
|
This version of `@open-wc/scoped-elements` is now following the [Scoped Custom Element Registries](https://github.com/WICG/webcomponents/blob/gh-pages/proposals/Scoped-Custom-Element-Registries.md) and automatically loads a polyfill [@webcomponents/scoped-custom-element-registry](https://github.com/webcomponents/polyfills/tree/master/packages/scoped-custom-element-registry).
|
|
|
|
This means tag names are no longer being rewritten with a hash.
|
|
|
|
```js
|
|
import { css, LitElement } from 'lit';
|
|
import { ScopedElementsMixin } from '@open-wc/scoped-elements';
|
|
import { MyButton } from './MyButton.js';
|
|
|
|
export class MyElement extends ScopedElementsMixin(LitElement) {
|
|
static get scopedElements() {
|
|
return {
|
|
'my-button': MyButton,
|
|
};
|
|
}
|
|
|
|
render() {
|
|
return html`
|
|
<my-button>click me</my-button>
|
|
`;
|
|
}
|
|
}
|
|
```
|
|
|
|
```html
|
|
<!-- before (ScopedElements 1.x) -->
|
|
<my-element>
|
|
#shadow-root
|
|
<my-button-23243424>click me</my-button-23243424>
|
|
</my-element>
|
|
|
|
<!-- after (ScopedElements 2.x) -->
|
|
<my-element>
|
|
#shadow-root
|
|
<my-button>click me</my-button>
|
|
</my-element>
|
|
```
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [72067c0d]
|
|
- @lion/core@0.18.0
|
|
- @lion/form-core@0.14.0
|
|
- @lion/helpers@0.9.0
|
|
|
|
## 0.16.1
|
|
|
|
### Patch Changes
|
|
|
|
- e297c2e1: Fire model-value-changed event with isTriggeredByUser: true when clicking the switch-button.
|
|
- Updated dependencies [0ddd38c0]
|
|
- Updated dependencies [0ddd38c0]
|
|
- @lion/form-core@0.13.0
|
|
|
|
## 0.16.0
|
|
|
|
### Minor Changes
|
|
|
|
- 02e4f2cb: add simulator to demos
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [11ec31c6]
|
|
- Updated dependencies [15146bf9]
|
|
- Updated dependencies [02e4f2cb]
|
|
- Updated dependencies [c6fbe920]
|
|
- @lion/form-core@0.12.0
|
|
- @lion/core@0.17.0
|
|
- @lion/helpers@0.8.0
|
|
|
|
## 0.15.0
|
|
|
|
### Minor Changes
|
|
|
|
- 43e4bb81: Type fixes and enhancements:
|
|
|
|
- all protected/private entries added to form-core type definitions, and their dependents were fixed
|
|
- a lot @ts-expect-error and @ts-ignore (all `get slots()` and `get modelValue()` issues are fixed)
|
|
- categorized @ts-expect-error / @ts-ignore into:
|
|
- [external]: when a 3rd party didn't ship types (could also be browser specs)
|
|
- [allow-protected]: when we are allowed to know about protected methods. For instance when code
|
|
resides in the same package
|
|
- [allow-private]: when we need to check a private value inside a test
|
|
- [allow]: miscellaneous allows
|
|
- [editor]: when the editor complains, but the cli/ci doesn't
|
|
|
|
### Patch Changes
|
|
|
|
- 77a04245: add protected and private type info
|
|
- d4dcb7c1: **switch**: clicking label focuses button
|
|
- 652f267b: - use .\_showFeedbackConditionFor instead of .submitted
|
|
- Updated dependencies [38297d07]
|
|
- Updated dependencies [3b5ed322]
|
|
- Updated dependencies [77a04245]
|
|
- Updated dependencies [53167fd2]
|
|
- Updated dependencies [181a1d45]
|
|
- Updated dependencies [fb1522dd]
|
|
- Updated dependencies [75af80be]
|
|
- Updated dependencies [0e910e3f]
|
|
- Updated dependencies [991f1f54]
|
|
- Updated dependencies [cc02ae24]
|
|
- Updated dependencies [43e4bb81]
|
|
- Updated dependencies [6ae7a5e3]
|
|
- @lion/form-core@0.11.0
|
|
- @lion/core@0.16.0
|
|
- @lion/helpers@0.7.1
|
|
|
|
## 0.14.3
|
|
|
|
### Patch Changes
|
|
|
|
- 6ea02988: Always use ...styles and [css``] everywhere consistently, meaning an array of CSSResult. Makes it easier on TSC.
|
|
- Updated dependencies [6ea02988]
|
|
- @lion/form-core@0.10.2
|
|
|
|
## 0.14.2
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [72a6ccc8]
|
|
- @lion/form-core@0.10.1
|
|
|
|
## 0.14.1
|
|
|
|
### Patch Changes
|
|
|
|
- 59dad284: Removed lion-specific component namings from overview.md files
|
|
- Updated dependencies [13f808af]
|
|
- Updated dependencies [aa478174]
|
|
- Updated dependencies [a809d7b5]
|
|
- @lion/form-core@0.10.0
|
|
|
|
## 0.14.0
|
|
|
|
### Minor Changes
|
|
|
|
- f3e54c56: Publish documentation with a format for Rocket
|
|
- 5db622e9: BREAKING: Align exports fields. This means no more wildcards, meaning you always import with bare import specifiers, extensionless. Import components where customElements.define side effect is executed by importing from '@lion/package/define'. For multi-component packages this defines all components (e.g. radio-group + radio). If you want to only import a single one, do '@lion/radio-group/define-radio' for example for just lion-radio.
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [f3e54c56]
|
|
- Updated dependencies [af90b20e]
|
|
- Updated dependencies [5db622e9]
|
|
- @lion/core@0.15.0
|
|
- @lion/form-core@0.9.0
|
|
- @lion/helpers@0.7.0
|
|
|
|
## 0.13.5
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [dbacafa5]
|
|
- @lion/form-core@0.8.5
|
|
|
|
## 0.13.4
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [6b91c92d]
|
|
- Updated dependencies [701aadce]
|
|
- Updated dependencies [15e2d135]
|
|
- @lion/form-core@0.8.4
|
|
- @lion/core@0.14.1
|
|
- @lion/helpers@0.6.1
|
|
|
|
## 0.13.3
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [b2a1c1ef]
|
|
- @lion/form-core@0.8.3
|
|
|
|
## 0.13.2
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [d0b37e62]
|
|
- @lion/form-core@0.8.2
|
|
|
|
## 0.13.1
|
|
|
|
### Patch Changes
|
|
|
|
- deb95d13: Add data-tag-name manually to scoped child slottables as the ScopedElementsMixin only does this transform for elements inside render templates.
|
|
- Updated dependencies [deb95d13]
|
|
- @lion/form-core@0.8.1
|
|
|
|
## 0.13.0
|
|
|
|
### Minor Changes
|
|
|
|
- b2f981db: Add exports field in package.json
|
|
|
|
Note that some tools can break with this change as long as they respect the exports field. If that is the case, check that you always access the elements included in the exports field, with the same name which they are exported. Any item not exported is considered private to the package and should not be accessed from the outside.
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [b2f981db]
|
|
- @lion/core@0.14.0
|
|
- @lion/form-core@0.8.0
|
|
- @lion/helpers@0.6.0
|
|
|
|
## 0.12.17
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [a7b27502]
|
|
- @lion/form-core@0.7.3
|
|
|
|
## 0.12.16
|
|
|
|
### Patch Changes
|
|
|
|
- f98aab23: Make \_\_toggleChecked protected property (\_toggleChecked)
|
|
- Updated dependencies [77114753]
|
|
- Updated dependencies [f98aab23]
|
|
- Updated dependencies [f98aab23]
|
|
- @lion/form-core@0.7.2
|
|
|
|
## 0.12.15
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [e557bda4]
|
|
- @lion/helpers@0.5.20
|
|
|
|
## 0.12.14
|
|
|
|
### Patch Changes
|
|
|
|
- 8fb7e7a1: Fix type issues where base constructors would not have the same return type. This allows us to remove a LOT of @ts-expect-errors/@ts-ignores across lion.
|
|
- 9112d243: Fix missing types and update to latest scoped elements to fix constructor type.
|
|
- Updated dependencies [8fb7e7a1]
|
|
- Updated dependencies [9112d243]
|
|
- @lion/core@0.13.8
|
|
- @lion/form-core@0.7.1
|
|
- @lion/helpers@0.5.19
|
|
|
|
## 0.12.13
|
|
|
|
### Patch Changes
|
|
|
|
- 98f1bb7e: Ensure all lit imports are imported from @lion/core. Remove devDependencies in all subpackages and move to root package.json. Add demo dependencies as real dependencies for users that extend our docs/demos.
|
|
- Updated dependencies [5302ec89]
|
|
- Updated dependencies [98f1bb7e]
|
|
- Updated dependencies [a8cf4215]
|
|
- @lion/form-core@0.7.0
|
|
- @lion/core@0.13.7
|
|
- @lion/helpers@0.5.18
|
|
|
|
## 0.12.12
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [9fba9007]
|
|
- @lion/core@0.13.6
|
|
- @lion/form-core@0.6.14
|
|
|
|
## 0.12.11
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [41edf033]
|
|
- @lion/core@0.13.5
|
|
- @lion/form-core@0.6.13
|
|
|
|
## 0.12.10
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [5553e43e]
|
|
- @lion/form-core@0.6.12
|
|
|
|
## 0.12.9
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [aa8ad0e6]
|
|
- Updated dependencies [4bacc17b]
|
|
- @lion/form-core@0.6.11
|
|
|
|
## 0.12.8
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [c5c4d4ba]
|
|
- @lion/form-core@0.6.10
|
|
|
|
## 0.12.7
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [cf0967fe]
|
|
- @lion/form-core@0.6.9
|
|
|
|
## 0.12.6
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [b222fd78]
|
|
- @lion/form-core@0.6.8
|
|
|
|
## 0.12.5
|
|
|
|
### Patch Changes
|
|
|
|
- cfbcccb5: Fix type imports to reuse lion where possible, in case Lit updates with new types that may break us.
|
|
- Updated dependencies [cfbcccb5]
|
|
- @lion/core@0.13.4
|
|
- @lion/form-core@0.6.7
|
|
|
|
## 0.12.4
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [e2e4deec]
|
|
- @lion/core@0.13.3
|
|
- @lion/form-core@0.6.6
|
|
|
|
## 0.12.3
|
|
|
|
### Patch Changes
|
|
|
|
- 618f2698: Run tests also on webkit
|
|
- Updated dependencies [20ba0ca8]
|
|
- Updated dependencies [618f2698]
|
|
- @lion/core@0.13.2
|
|
- @lion/form-core@0.6.5
|
|
|
|
## 0.12.2
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [2907649b]
|
|
- Updated dependencies [68e3e749]
|
|
- Updated dependencies [fd297a28]
|
|
- Updated dependencies [9fcb67f0]
|
|
- Updated dependencies [247e64a3]
|
|
- Updated dependencies [e92b98a4]
|
|
- @lion/form-core@0.6.4
|
|
- @lion/core@0.13.1
|
|
|
|
## 0.12.1
|
|
|
|
### Patch Changes
|
|
|
|
- 0aa4480e: Refactor of some fields to ensure that \_inputNode has the right type. It starts as HTMLElement for LionField, and all HTMLInputElement, HTMLSelectElement and HTMLTextAreaElement logic, are moved to the right places.
|
|
- Updated dependencies [d5faa459]
|
|
- Updated dependencies [0aa4480e]
|
|
- @lion/form-core@0.6.3
|
|
|
|
## 0.12.0
|
|
|
|
### Minor Changes
|
|
|
|
- 06123918: Add types for switch package.
|
|
|
|
### Patch Changes
|
|
|
|
- 85720654: - prevent toggle of checked state when disabled
|
|
- dispatch checked-changed on label click
|
|
- Updated dependencies [4b7bea96]
|
|
- Updated dependencies [01a798e5]
|
|
- Updated dependencies [a31b7217]
|
|
- Updated dependencies [85720654]
|
|
- Updated dependencies [32202a88]
|
|
- Updated dependencies [b9327627]
|
|
- Updated dependencies [02145a06]
|
|
- @lion/form-core@0.6.2
|
|
- @lion/core@0.13.0
|
|
|
|
## 0.11.2
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [75107a4b]
|
|
- Updated dependencies [60d5d1d3]
|
|
- @lion/core@0.12.0
|
|
- @lion/form-core@0.6.1
|
|
|
|
## 0.11.1
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [874ff483]
|
|
- @lion/form-core@0.6.0
|
|
- @lion/core@0.11.0
|
|
|
|
## 0.11.0
|
|
|
|
### Minor Changes
|
|
|
|
- 65ecd432: Update to lit-element 2.4.0, changed all uses of \_requestUpdate into requestUpdateInterval
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [65ecd432]
|
|
- Updated dependencies [4dc621a0]
|
|
- @lion/core@0.10.0
|
|
- @lion/form-core@0.5.0
|
|
|
|
## 0.10.21
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [c347fce4]
|
|
- @lion/form-core@0.4.4
|
|
|
|
## 0.10.20
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [4b3ac525]
|
|
- @lion/core@0.9.1
|
|
- @lion/form-core@0.4.3
|
|
|
|
## 0.10.19
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [dd021e43]
|
|
- Updated dependencies [07c598fd]
|
|
- @lion/form-core@0.4.2
|
|
|
|
## 0.10.18
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [fb236975]
|
|
- @lion/form-core@0.4.1
|
|
|
|
## 0.10.17
|
|
|
|
### Patch Changes
|
|
|
|
- d94a83a9: When clicking on the label the checked state should be toggled. This expected behavior comes from the native radio or checkbox.
|
|
- Updated dependencies [3c61fd29]
|
|
- Updated dependencies [9ecab4d5]
|
|
- @lion/form-core@0.4.0
|
|
- @lion/core@0.9.0
|
|
|
|
All notable changes to this project will be documented in this file.
|
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
|
|
## [0.10.16](https://github.com/ing-bank/lion/compare/@lion/switch@0.10.15...@lion/switch@0.10.16) (2020-07-28)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.10.15](https://github.com/ing-bank/lion/compare/@lion/switch@0.10.14...@lion/switch@0.10.15) (2020-07-27)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.10.14](https://github.com/ing-bank/lion/compare/@lion/switch@0.10.13...@lion/switch@0.10.14) (2020-07-16)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.10.13](https://github.com/ing-bank/lion/compare/@lion/switch@0.10.12...@lion/switch@0.10.13) (2020-07-13)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.10.12](https://github.com/ing-bank/lion/compare/@lion/switch@0.10.11...@lion/switch@0.10.12) (2020-07-09)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.10.11](https://github.com/ing-bank/lion/compare/@lion/switch@0.10.10...@lion/switch@0.10.11) (2020-07-09)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.10.10](https://github.com/ing-bank/lion/compare/@lion/switch@0.10.9...@lion/switch@0.10.10) (2020-07-09)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.10.9](https://github.com/ing-bank/lion/compare/@lion/switch@0.10.8...@lion/switch@0.10.9) (2020-07-07)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.10.8](https://github.com/ing-bank/lion/compare/@lion/switch@0.10.7...@lion/switch@0.10.8) (2020-07-06)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.10.7](https://github.com/ing-bank/lion/compare/@lion/switch@0.10.6...@lion/switch@0.10.7) (2020-06-18)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.10.6](https://github.com/ing-bank/lion/compare/@lion/switch@0.10.5...@lion/switch@0.10.6) (2020-06-10)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.10.5](https://github.com/ing-bank/lion/compare/@lion/switch@0.10.4...@lion/switch@0.10.5) (2020-06-09)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.10.4](https://github.com/ing-bank/lion/compare/@lion/switch@0.10.3...@lion/switch@0.10.4) (2020-06-08)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.10.3](https://github.com/ing-bank/lion/compare/@lion/switch@0.10.2...@lion/switch@0.10.3) (2020-06-08)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.10.2](https://github.com/ing-bank/lion/compare/@lion/switch@0.10.1...@lion/switch@0.10.2) (2020-06-03)
|
|
|
|
### Bug Fixes
|
|
|
|
- remove all stories folders from npm ([1e04d06](https://github.com/ing-bank/lion/commit/1e04d06921f9d5e1a446b6d14045154ff83771c3))
|
|
|
|
## [0.10.1](https://github.com/ing-bank/lion/compare/@lion/switch@0.10.0...@lion/switch@0.10.1) (2020-06-02)
|
|
|
|
### Bug Fixes
|
|
|
|
- **button:** aria-disabled for button and switch ([31ccb4a](https://github.com/ing-bank/lion/commit/31ccb4a10f6b14e93ddaca825d5e6bf2db8dd1ee))
|
|
|
|
# [0.10.0](https://github.com/ing-bank/lion/compare/@lion/switch@0.9.1...@lion/switch@0.10.0) (2020-05-29)
|
|
|
|
### Features
|
|
|
|
- merge field/validate/choice-input/form-group into @lion/form-core ([6170374](https://github.com/ing-bank/lion/commit/6170374ee8c058cb95fff79b4953b0535219e9b4))
|
|
- use markdown javascript (mdjs) for documentation ([bcd074d](https://github.com/ing-bank/lion/commit/bcd074d1fbce8754d428538df723ba402603e2c8))
|
|
|
|
## [0.9.1](https://github.com/ing-bank/lion/compare/@lion/switch@0.9.0...@lion/switch@0.9.1) (2020-05-27)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
# [0.9.0](https://github.com/ing-bank/lion/compare/@lion/switch@0.8.2...@lion/switch@0.9.0) (2020-05-18)
|
|
|
|
### Features
|
|
|
|
- use singleton manager to support nested npm installations ([e2eb0e0](https://github.com/ing-bank/lion/commit/e2eb0e0077b9efed9382701461753778f63cad48))
|
|
|
|
## [0.8.2](https://github.com/ing-bank/lion/compare/@lion/switch@0.8.1...@lion/switch@0.8.2) (2020-04-29)
|
|
|
|
### Bug Fixes
|
|
|
|
- add display:none for hidden ([#692](https://github.com/ing-bank/lion/issues/692)) ([9731771](https://github.com/ing-bank/lion/commit/9731771c23a5ed8661558e62cb5e34b62cc2b8b7))
|
|
|
|
## [0.8.1](https://github.com/ing-bank/lion/compare/@lion/switch@0.8.0...@lion/switch@0.8.1) (2020-04-02)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
# [0.8.0](https://github.com/ing-bank/lion/compare/@lion/switch@0.7.2...@lion/switch@0.8.0) (2020-03-25)
|
|
|
|
### Features
|
|
|
|
- update to stable @open-wc/scoped-elements ([10bac56](https://github.com/ing-bank/lion/commit/10bac5672b406d3f08a89a795ee295f5028ca6d0))
|
|
|
|
## [0.7.2](https://github.com/ing-bank/lion/compare/@lion/switch@0.7.1...@lion/switch@0.7.2) (2020-03-19)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.7.1](https://github.com/ing-bank/lion/compare/@lion/switch@0.7.0...@lion/switch@0.7.1) (2020-03-12)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
# [0.7.0](https://github.com/ing-bank/lion/compare/@lion/switch@0.6.3...@lion/switch@0.7.0) (2020-03-05)
|
|
|
|
### Features
|
|
|
|
- use Scoped Elements ([15b4a5e](https://github.com/ing-bank/lion/commit/15b4a5ebb388e158f6dc2529954ba6a23f325eb3))
|
|
|
|
## [0.6.3](https://github.com/ing-bank/lion/compare/@lion/switch@0.6.2...@lion/switch@0.6.3) (2020-03-05)
|
|
|
|
### Bug Fixes
|
|
|
|
- **switch:** remove old todo ([a242aca](https://github.com/ing-bank/lion/commit/a242aca7318c07e8358dee22c6d307dea6daa4bb))
|
|
|
|
## [0.6.2](https://github.com/ing-bank/lion/compare/@lion/switch@0.6.1...@lion/switch@0.6.2) (2020-03-04)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.6.1](https://github.com/ing-bank/lion/compare/@lion/switch@0.6.0...@lion/switch@0.6.1) (2020-03-02)
|
|
|
|
### Bug Fixes
|
|
|
|
- normalize subclasser apis ([ce0630f](https://github.com/ing-bank/lion/commit/ce0630f32b2206813e5cfd2c7842b2faa5141591))
|
|
|
|
# [0.6.0](https://github.com/ing-bank/lion/compare/@lion/switch@0.5.16...@lion/switch@0.6.0) (2020-03-01)
|
|
|
|
### Features
|
|
|
|
- **validate:** use static validatorName instead of instance name ([#600](https://github.com/ing-bank/lion/issues/600)) ([7c45dd6](https://github.com/ing-bank/lion/commit/7c45dd683984e88e3216fba9fcae1b6dc73835b2))
|
|
|
|
## [0.5.16](https://github.com/ing-bank/lion/compare/@lion/switch@0.5.15...@lion/switch@0.5.16) (2020-02-26)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.5.15](https://github.com/ing-bank/lion/compare/@lion/switch@0.5.14...@lion/switch@0.5.15) (2020-02-20)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.5.14](https://github.com/ing-bank/lion/compare/@lion/switch@0.5.13...@lion/switch@0.5.14) (2020-02-19)
|
|
|
|
### Bug Fixes
|
|
|
|
- reduce storybook chunck sizes for more performance ([9fc5606](https://github.com/ing-bank/lion/commit/9fc560605f5dcf6e9abcf8d58079c59f12750046))
|
|
|
|
## [0.5.13](https://github.com/ing-bank/lion/compare/@lion/switch@0.5.12...@lion/switch@0.5.13) (2020-02-10)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.5.12](https://github.com/ing-bank/lion/compare/@lion/switch@0.5.11...@lion/switch@0.5.12) (2020-02-06)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.5.11](https://github.com/ing-bank/lion/compare/@lion/switch@0.5.10...@lion/switch@0.5.11) (2020-02-06)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.5.10](https://github.com/ing-bank/lion/compare/@lion/switch@0.5.9...@lion/switch@0.5.10) (2020-02-06)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.5.9](https://github.com/ing-bank/lion/compare/@lion/switch@0.5.8...@lion/switch@0.5.9) (2020-02-05)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.5.8](https://github.com/ing-bank/lion/compare/@lion/switch@0.5.7...@lion/switch@0.5.8) (2020-02-05)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.5.7](https://github.com/ing-bank/lion/compare/@lion/switch@0.5.6...@lion/switch@0.5.7) (2020-02-03)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.5.6](https://github.com/ing-bank/lion/compare/@lion/switch@0.5.5...@lion/switch@0.5.6) (2020-01-30)
|
|
|
|
### Bug Fixes
|
|
|
|
- remove unused (dev)dependency on lion-button ([41f5af7](https://github.com/ing-bank/lion/commit/41f5af71cae2bc6b5ee979a5ba83301d14592a2c))
|
|
|
|
## [0.5.5](https://github.com/ing-bank/lion/compare/@lion/switch@0.5.4...@lion/switch@0.5.5) (2020-01-30)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.5.4](https://github.com/ing-bank/lion/compare/@lion/switch@0.5.3...@lion/switch@0.5.4) (2020-01-23)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.5.3](https://github.com/ing-bank/lion/compare/@lion/switch@0.5.2...@lion/switch@0.5.3) (2020-01-23)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.5.2](https://github.com/ing-bank/lion/compare/@lion/switch@0.5.1...@lion/switch@0.5.2) (2020-01-20)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.5.1](https://github.com/ing-bank/lion/compare/@lion/switch@0.5.0...@lion/switch@0.5.1) (2020-01-17)
|
|
|
|
### Bug Fixes
|
|
|
|
- update storybook and use main.js ([e61e0b9](https://github.com/ing-bank/lion/commit/e61e0b938ff72cc18cc0b3aa1560f2cece0c9fe6))
|
|
|
|
# [0.5.0](https://github.com/ing-bank/lion/compare/@lion/switch@0.4.2...@lion/switch@0.5.0) (2020-01-13)
|
|
|
|
### Features
|
|
|
|
- improved storybook demos ([89b835a](https://github.com/ing-bank/lion/commit/89b835a79998c45a28093de01f69216c35009a40))
|
|
|
|
## [0.4.2](https://github.com/ing-bank/lion/compare/@lion/switch@0.4.1...@lion/switch@0.4.2) (2020-01-08)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.4.1](https://github.com/ing-bank/lion/compare/@lion/switch@0.4.0...@lion/switch@0.4.1) (2019-12-16)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
# [0.4.0](https://github.com/ing-bank/lion/compare/@lion/switch@0.3.13...@lion/switch@0.4.0) (2019-12-13)
|
|
|
|
### Features
|
|
|
|
- **field:** add wrappers to allow label left of input ([5413ad1](https://github.com/ing-bank/lion/commit/5413ad130fac76235609ea735aea6c41467f1b22))
|
|
|
|
## [0.3.13](https://github.com/ing-bank/lion/compare/@lion/switch@0.3.12...@lion/switch@0.3.13) (2019-12-11)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.3.12](https://github.com/ing-bank/lion/compare/@lion/switch@0.3.11...@lion/switch@0.3.12) (2019-12-06)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.3.11](https://github.com/ing-bank/lion/compare/@lion/switch@0.3.10...@lion/switch@0.3.11) (2019-12-04)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.3.10](https://github.com/ing-bank/lion/compare/@lion/switch@0.3.9...@lion/switch@0.3.10) (2019-12-04)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.3.9](https://github.com/ing-bank/lion/compare/@lion/switch@0.3.8...@lion/switch@0.3.9) (2019-12-03)
|
|
|
|
### Bug Fixes
|
|
|
|
- let lerna publish fixed versions ([bc7448c](https://github.com/ing-bank/lion/commit/bc7448c694deb3c05fd3d083a9acb5365b26b7ab))
|
|
|
|
## [0.3.8](https://github.com/ing-bank/lion/compare/@lion/switch@0.3.7...@lion/switch@0.3.8) (2019-12-02)
|
|
|
|
### Bug Fixes
|
|
|
|
- use strict versions to get correct deps on older versions ([8645c13](https://github.com/ing-bank/lion/commit/8645c13b1d77e488713f2e5e0e4e00c4d30ea1ee))
|
|
|
|
## [0.3.7](https://github.com/ing-bank/lion/compare/@lion/switch@0.3.6...@lion/switch@0.3.7) (2019-12-01)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.3.6](https://github.com/ing-bank/lion/compare/@lion/switch@0.3.5...@lion/switch@0.3.6) (2019-11-28)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.3.5](https://github.com/ing-bank/lion/compare/@lion/switch@0.3.4...@lion/switch@0.3.5) (2019-11-27)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.3.4](https://github.com/ing-bank/lion/compare/@lion/switch@0.3.3...@lion/switch@0.3.4) (2019-11-27)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.3.3](https://github.com/ing-bank/lion/compare/@lion/switch@0.3.2...@lion/switch@0.3.3) (2019-11-26)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.3.2](https://github.com/ing-bank/lion/compare/@lion/switch@0.3.1...@lion/switch@0.3.2) (2019-11-22)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.3.1](https://github.com/ing-bank/lion/compare/@lion/switch@0.3.0...@lion/switch@0.3.1) (2019-11-19)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
# [0.3.0](https://github.com/ing-bank/lion/compare/@lion/switch@0.2.1...@lion/switch@0.3.0) (2019-11-18)
|
|
|
|
### Features
|
|
|
|
- finalize validation and adopt it everywhere ([396deb2](https://github.com/ing-bank/lion/commit/396deb2e3b4243f102a5c98e9b0518fa0f31a6b1))
|
|
|
|
## [0.2.1](https://github.com/ing-bank/lion/compare/@lion/switch@0.2.0...@lion/switch@0.2.1) (2019-11-15)
|
|
|
|
### Bug Fixes
|
|
|
|
- refactor slot selection ([5999ea9](https://github.com/ing-bank/lion/commit/5999ea956967b449f3f04935c7facb19e2889dc9))
|
|
|
|
# [0.2.0](https://github.com/ing-bank/lion/compare/@lion/switch@0.1.7...@lion/switch@0.2.0) (2019-11-13)
|
|
|
|
### Bug Fixes
|
|
|
|
- **switch:** make switch more accessible ([83f9564](https://github.com/ing-bank/lion/commit/83f9564ae0c7f6f6ed552a63efa268dbe4ff4ec5))
|
|
|
|
### Features
|
|
|
|
- remove all deprecations from lion ([66d3d39](https://github.com/ing-bank/lion/commit/66d3d390aebeaa61b6effdea7d5f7eea0e89c894))
|
|
|
|
## [0.1.7](https://github.com/ing-bank/lion/compare/@lion/switch@0.1.6...@lion/switch@0.1.7) (2019-11-12)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.1.6](https://github.com/ing-bank/lion/compare/@lion/switch@0.1.5...@lion/switch@0.1.6) (2019-11-06)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.1.5](https://github.com/ing-bank/lion/compare/@lion/switch@0.1.4...@lion/switch@0.1.5) (2019-11-01)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.1.4](https://github.com/ing-bank/lion/compare/@lion/switch@0.1.3...@lion/switch@0.1.4) (2019-10-30)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.1.3](https://github.com/ing-bank/lion/compare/@lion/switch@0.1.2...@lion/switch@0.1.3) (2019-10-28)
|
|
|
|
### Bug Fixes
|
|
|
|
- **switch:** cross-browser fixes ([cb747d9](https://github.com/ing-bank/lion/commit/cb747d9))
|
|
|
|
## [0.1.2](https://github.com/ing-bank/lion/compare/@lion/switch@0.1.1...@lion/switch@0.1.2) (2019-10-25)
|
|
|
|
**Note:** Version bump only for package @lion/switch
|
|
|
|
## [0.1.1](https://github.com/ing-bank/lion/compare/@lion/switch@0.1.0...@lion/switch@0.1.1) (2019-10-24)
|
|
|
|
### Bug Fixes
|
|
|
|
- **switch:** render function methods not slots ([40394bc](https://github.com/ing-bank/lion/commit/40394bc))
|
|
|
|
# 0.1.0 (2019-10-23)
|
|
|
|
### Features
|
|
|
|
- **switch:** component to toggle a property on or off ([8e43602](https://github.com/ing-bank/lion/commit/8e43602))
|