lion/packages/ui/_legacy-changelogs/calendar.md

38 KiB

Change Log

0.20.1

Patch Changes

  • Updated dependencies [cc294f20]
  • Updated dependencies [2d58320e]
  • Updated dependencies [11c5ffe0]
    • @lion/core@0.24.0
    • @lion/localize@0.26.0

0.20.0

Minor Changes

  • e7a4ca1d: Add "type":"module" to ESM packages so loaders like Vite will interpret the package as ESM properly.

Patch Changes

  • Updated dependencies [e7a4ca1d]
  • Updated dependencies [96a24c4a]
    • @lion/core@0.23.0
    • @lion/localize@0.25.0

0.19.0

Minor Changes

  • 672c8e99: New documentation structure

  • aa8b8916: BREAKING CHANGE: Work without polyfill if possible

    When using component composition in a Lion Component we always made it very explicit which sub-components are used. On top of that we scoped these sub components to the current shadow root allowing multiple version to be used simultaneously.

    To enable this features we relied on the fact that the ScopedElementsMixin did loaded the needed polyfill for us.

    We however over time got feedback from multiple consumers that lion components "break the app as soon as you load them". The reasons is/was that not everyone is always using ScopedElementsMixin or in full control of the app (or its load order).

    To quote the release notes of ScopedElementsMixin v2.1.0:

    ScopedElementsMixin 2.x tried to be as convenient as possible by automatically loading the scoped custom elements registry polyfill. This however led to a fatal error whenever you registered any component before ScopedElementsMixin was used.

    And this was the case.

    With the upgrade to @open-wc/scoped-elements v2.1.1 Lion now no longer automatically loads the polyfill through ScopedElementsMixin.

    This essentially means the polyfill became optional which results in the following behavior

    1. If polyfill is not loaded it will use the global registry as a fallback
    2. Log error if actually scoping is needed and polyfill is not loaded
    3. If you manually create elements you will need to handle polyfilled and not polyfilled cases now
    -  const myButton = this.shadowRoot.createElement('my-button');
    +  const myButton = this.createScopedElement('my-button');
    

    This also removes @webcomponents/scoped-custom-element-registry as a production dependency.

    If you need scoping be sure to load the polyfill before any other web component gets registered.

    It may look something like this in your HTML

    <script src="/node_modules/@webcomponents/scoped-custom-element-registry/scoped-custom-element-registry.min.js"></script>
    

    or if you have an SPA you can load it at the top of your app shell code

    import '@webcomponents/scoped-custom-element-registry';
    

    You need scoping if you want to

    use 2 major versions of a web component (e.g. in an SPA pageA uses 1.x and pageB uses 2.x of color-picker) or you want to use the same tag name with different implementations (use tag color-picker from foo here and from bar here)

    See more details at

Patch Changes

  • Updated dependencies [66531e3c]
  • Updated dependencies [672c8e99]
  • Updated dependencies [aa8b8916]
    • @lion/core@0.22.0
    • @lion/localize@0.24.0

0.18.0

Minor Changes

  • 683d5c1c: Upgrade to latest Typescript. Keep in mind, some @ts-ignores were necessary, also per TS maintainer's advice. Use skipLibCheck in your TSConfig to ignore issues coming from Lion, the types are valid.

    We also unfixed lion's dependencies (now using caret ^) on its own packages, because it caused a lot of problems with duplicate installations for end users as well as subclassers and its end users. Both of these changes may affect subclassers in a breaking manner, hence the minor bump.

    Be sure to read our Rationale on this change and what this means for you as a user.

Patch Changes

  • Updated dependencies [683d5c1c]
    • @lion/core@0.21.0
    • @lion/localize@0.23.0

0.17.0

Minor Changes

  • 495cb0c5: Remove keyboardEventShimIE test helper
  • 2b583ee7: Remove differentKeyEventNamesShimIE, since IE11 isn't supported any more

Patch Changes

  • 30805edf: Replace deprecated node folder exports with wildcard exports for docs
  • 2bd3c521: Rename customElementsManifest to customElements in package.json
  • Updated dependencies [30805edf]
  • Updated dependencies [495cb0c5]
  • Updated dependencies [fad9d8e5]
  • Updated dependencies [2b583ee7]
  • Updated dependencies [83011918]
    • @lion/core@0.20.0
    • @lion/localize@0.22.0

0.16.7

Patch Changes

  • Updated dependencies [9b81b69e]
  • Updated dependencies [a2c66cd9]
  • Updated dependencies [c4562f7e]
  • Updated dependencies [c55d4566]
    • @lion/core@0.19.0
    • @lion/localize@0.21.3

0.16.6

Patch Changes

  • Updated dependencies [bcf68ceb]
  • Updated dependencies [d963e74e]
    • @lion/core@0.18.4
    • @lion/localize@0.21.2

0.16.5

Patch Changes

  • e729d916: fix nl & ru translation files
  • Updated dependencies [ec03d209]
    • @lion/core@0.18.3
    • @lion/localize@0.21.1

0.16.4

Patch Changes

  • Updated dependencies [9648d418]
  • Updated dependencies [8c06302e]
  • Updated dependencies [9b9d82fc]
  • Updated dependencies [8a766644]
  • Updated dependencies [c544af4e]
    • @lion/localize@0.21.0
    • @lion/core@0.18.2

0.16.3

Patch Changes

  • 3cd0ac51: add support for using language subtag only

0.16.2

Patch Changes

  • 84131205: use mdjs-preview in docs for lit compatibility
  • Updated dependencies [84131205]
    • @lion/core@0.18.1
    • @lion/localize@0.20.2

0.16.1

Patch Changes

  • Updated dependencies [5ca3d275]
    • @lion/localize@0.20.1

0.16.0

Minor Changes

  • 72067c0d: BREAKING Upgrade to lit 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.

    BREAKING Upgrade to ScopedElements version 2

    This version of @open-wc/scoped-elements is now following the Scoped Custom Element Registries and automatically loads a polyfill @webcomponents/scoped-custom-element-registry.

    This means tag names are no longer being rewritten with a hash.

    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>
        `;
      }
    }
    
    <!-- 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/localize@0.20.0

0.15.0

Minor Changes

Patch Changes

  • eae38926: Calendar allows to reinitialize centralDate properly. Datepicker calls this functionality on opening the calendar.
  • Updated dependencies [02e4f2cb]
    • @lion/core@0.17.0
    • @lion/localize@0.19.0

0.14.3

Patch Changes

  • f0527583: fix: expose members as protected for extension compat. till v1

0.14.2

Patch Changes

  • 77a04245: add protected and private type info
  • Updated dependencies [77a04245]
  • Updated dependencies [43e4bb81]
    • @lion/core@0.16.0
    • @lion/localize@0.18.0

0.14.1

Patch Changes

  • 59dad284: Removed lion-specific component namings from overview.md files

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 [5db622e9]
    • @lion/core@0.15.0
    • @lion/localize@0.17.0

0.13.1

Patch Changes

  • 701aadce: Fix types of mixins to include LitElement static props and methods, and use Pick generic type instead of fake constructors.
  • Updated dependencies [701aadce]
    • @lion/core@0.14.1
    • @lion/localize@0.16.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/localize@0.16.0

0.12.11

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/localize@0.15.5

0.12.10

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 [a8cf4215]
  • Updated dependencies [98f1bb7e]
    • @lion/localize@0.15.4
    • @lion/core@0.13.7

0.12.9

Patch Changes

  • Updated dependencies [9fba9007]
    • @lion/core@0.13.6
    • @lion/localize@0.15.3

0.12.8

Patch Changes

  • f82b5c18: solve previousMonth and nextMonth conditions error
  • Updated dependencies [41edf033]
    • @lion/core@0.13.5
    • @lion/localize@0.15.2

0.12.7

Patch Changes

  • 69e38a76: Fix event handler bind so the events are cleaned up properly in disconnectedCallback

0.12.6

Patch Changes

  • 1981eb0d: Fix an issue with events being added more than once in datepicker overlay. Also fix a bug where useCapture resulted in weird click behavior when clicking dates in previous or next month.
    • @lion/localize@0.15.1

0.12.5

Patch Changes

  • Updated dependencies [3ada1aef]
    • @lion/localize@0.15.0

0.12.4

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/localize@0.14.9

0.12.3

Patch Changes

  • Updated dependencies [e2e4deec]
  • Updated dependencies [8ca71b8f]
    • @lion/core@0.13.3
    • @lion/localize@0.14.8

0.12.2

Patch Changes

  • Updated dependencies [20ba0ca8]
  • Updated dependencies [618f2698]
    • @lion/core@0.13.2
    • @lion/localize@0.14.7

0.12.1

Patch Changes

  • Updated dependencies [7682e520]
  • Updated dependencies [e92b98a4]
    • @lion/localize@0.14.6
    • @lion/core@0.13.1

0.12.0

Minor Changes

  • e9cee039: Add types for calendar and datepicker packages.

0.11.3

Patch Changes

  • Updated dependencies [01a798e5]
  • Updated dependencies [b9327627]
    • @lion/core@0.13.0
    • @lion/localize@0.14.5

0.11.2

Patch Changes

  • Updated dependencies [75107a4b]
    • @lion/core@0.12.0
    • @lion/localize@0.14.4

0.11.1

Patch Changes

  • 5a750408: Make button text clickable by setting pointer-events to none
  • Updated dependencies [874ff483]
    • @lion/core@0.11.0
    • @lion/localize@0.14.3

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/localize@0.14.2

0.10.0

Minor Changes

  • bd0439be: feat: add year navigation and styling hooks on the day template

0.9.8

Patch Changes

  • Updated dependencies [4b3ac525]
    • @lion/core@0.9.1
    • @lion/localize@0.14.1

0.9.7

Patch Changes

  • Updated dependencies [3c61fd29]
  • Updated dependencies [09d96759]
  • Updated dependencies [9ecab4d5]
    • @lion/core@0.9.0
    • @lion/localize@0.14.0

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

0.9.6 (2020-07-13)

Note: Version bump only for package @lion/calendar

0.9.5 (2020-07-07)

Note: Version bump only for package @lion/calendar

0.9.4 (2020-06-18)

Note: Version bump only for package @lion/calendar

0.9.3 (2020-06-08)

Note: Version bump only for package @lion/calendar

0.9.2 (2020-06-08)

Note: Version bump only for package @lion/calendar

0.9.1 (2020-06-03)

Bug Fixes

  • remove all stories folders from npm (1e04d06)

0.9.0 (2020-05-29)

Features

  • use markdown javascript (mdjs) for documentation (bcd074d)

0.8.0 (2020-05-18)

Features

  • use singleton manager to support nested npm installations (e2eb0e0)

0.7.2 (2020-04-29)

Bug Fixes

0.7.1 (2020-04-02)

Bug Fixes

  • convert unnecessary backticks to single quotes for unpkg (5103289)

0.7.0 (2020-03-25)

Features

  • refrain from using dynamic vars inside dynamic import (42c840f)

0.6.13 (2020-03-05)

Note: Version bump only for package @lion/calendar

0.6.12 (2020-03-04)

Note: Version bump only for package @lion/calendar

0.6.11 (2020-02-26)

Note: Version bump only for package @lion/calendar

0.6.10 (2020-02-19)

Bug Fixes

  • reduce storybook chunck sizes for more performance (9fc5606)

0.6.9 (2020-02-06)

Note: Version bump only for package @lion/calendar

0.6.8 (2020-02-03)

Note: Version bump only for package @lion/calendar

0.6.7 (2020-01-30)

Bug Fixes

  • remove unused (dev)dependency on lion-button (41f5af7)

0.6.6 (2020-01-30)

Note: Version bump only for package @lion/calendar

0.6.5 (2020-01-23)

Note: Version bump only for package @lion/calendar

0.6.4 (2020-01-23)

Note: Version bump only for package @lion/calendar

0.6.3 (2020-01-20)

Note: Version bump only for package @lion/calendar

0.6.2 (2020-01-17)

Note: Version bump only for package @lion/calendar

0.6.1 (2020-01-17)

Bug Fixes

  • update storybook and use main.js (e61e0b9)

0.6.0 (2020-01-13)

Features

  • improved storybook demos (89b835a)

0.5.8 (2020-01-08)

Note: Version bump only for package @lion/calendar

0.5.7 (2019-12-17)

Bug Fixes

  • #423: prevent default behavior on keyboard interaction (caf9ab2), closes #423

0.5.6 (2019-12-16)

Note: Version bump only for package @lion/calendar

0.5.5 (2019-12-13)

Note: Version bump only for package @lion/calendar

0.5.4 (2019-12-11)

Note: Version bump only for package @lion/calendar

0.5.3 (2019-12-06)

Note: Version bump only for package @lion/calendar

0.5.2 (2019-12-06)

Bug Fixes

  • calendar: make tests independents of execution date (7bddabe)
  • catalog: add info for next/previous month on to the buttons (#384) (b6ec5a8)

0.5.1 (2019-12-04)

Note: Version bump only for package @lion/calendar

0.5.0 (2019-12-04)

Features

  • integrate and pass automated a11y testing (e1a417b)

0.4.2 (2019-12-03)

Bug Fixes

  • let lerna publish fixed versions (bc7448c)

0.4.1 (2019-12-02)

Bug Fixes

  • use strict versions to get correct deps on older versions (8645c13)

0.4.0 (2019-12-01)

Features

  • overlays: improve API for overriding controller config in mixin (45f5571)

0.3.8 (2019-11-28)

Note: Version bump only for package @lion/calendar

0.3.7 (2019-11-27)

Note: Version bump only for package @lion/calendar

0.3.6 (2019-11-27)

Note: Version bump only for package @lion/calendar

0.3.5 (2019-11-26)

Note: Version bump only for package @lion/calendar

0.3.4 (2019-11-22)

Note: Version bump only for package @lion/calendar

0.3.3 (2019-11-19)

Note: Version bump only for package @lion/calendar

0.3.2 (2019-11-18)

Note: Version bump only for package @lion/calendar

0.3.1 (2019-11-15)

Note: Version bump only for package @lion/calendar

0.3.0 (2019-11-13)

Bug Fixes

  • calendar: make calendar more accessible (7225d9d)

Features

  • remove all deprecations from lion (66d3d39)

0.2.12 (2019-11-12)

Note: Version bump only for package @lion/calendar

0.2.11 (2019-11-06)

Note: Version bump only for package @lion/calendar

0.2.10 (2019-11-01)

Note: Version bump only for package @lion/calendar

0.2.9 (2019-10-25)

Note: Version bump only for package @lion/calendar

0.2.8 (2019-10-23)

Note: Version bump only for package @lion/calendar

0.2.7 (2019-10-23)

Note: Version bump only for package @lion/calendar

0.2.6 (2019-10-21)

Note: Version bump only for package @lion/calendar

0.2.5 (2019-10-21)

Note: Version bump only for package @lion/calendar

0.2.4 (2019-10-18)

Bug Fixes

  • calendar: issue 302 part 2 - skipped month (f04256c)

0.2.3 (2019-10-14)

Note: Version bump only for package @lion/calendar

0.2.2 (2019-10-11)

Note: Version bump only for package @lion/calendar

0.2.1 (2019-10-11)

Note: Version bump only for package @lion/calendar

0.2.0 (2019-10-10)

Features

  • update to latest overlay system (4c26bef)

0.1.71 (2019-10-09)

Note: Version bump only for package @lion/calendar

0.1.70 (2019-10-07)

Note: Version bump only for package @lion/calendar

0.1.69 (2019-09-30)

Note: Version bump only for package @lion/calendar

0.1.68 (2019-09-27)

Note: Version bump only for package @lion/calendar

0.1.67 (2019-09-26)

Bug Fixes

  • calendar: render the calendar when min and max date are same date (b9747ef)

0.1.66 (2019-09-26)

Note: Version bump only for package @lion/calendar

0.1.65 (2019-09-25)

Note: Version bump only for package @lion/calendar

0.1.64 (2019-09-20)

Note: Version bump only for package @lion/calendar

0.1.63 (2019-09-19)

Note: Version bump only for package @lion/calendar

0.1.62 (2019-09-17)

Note: Version bump only for package @lion/calendar

0.1.61 (2019-09-13)

Note: Version bump only for package @lion/calendar

0.1.60 (2019-08-29)

Note: Version bump only for package @lion/calendar

0.1.59 (2019-08-23)

Note: Version bump only for package @lion/calendar

0.1.58 (2019-08-21)

Note: Version bump only for package @lion/calendar

0.1.57 (2019-08-17)

Note: Version bump only for package @lion/calendar

0.1.56 (2019-08-15)

Note: Version bump only for package @lion/calendar

0.1.55 (2019-08-15)

Note: Version bump only for package @lion/calendar

0.1.54 (2019-08-14)

Note: Version bump only for package @lion/calendar

0.1.53 (2019-08-12)

Bug Fixes

  • calendar: generated dates are normalized (fe72ebd)
  • calendar: normalize dates for min/max date comparison (afddc0e)

0.1.52 (2019-08-07)

Note: Version bump only for package @lion/calendar

0.1.51 (2019-08-07)

Note: Version bump only for package @lion/calendar

0.1.50 (2019-08-01)

Bug Fixes

0.1.49 (2019-07-30)

Bug Fixes

  • include test-helpers dir in the released package (6489069)

0.1.48 (2019-07-30)

Bug Fixes

0.1.47 (2019-07-29)

Note: Version bump only for package @lion/calendar

0.1.46 (2019-07-26)

Note: Version bump only for package @lion/calendar

0.1.45 (2019-07-25)

Note: Version bump only for package @lion/calendar

0.1.44 (2019-07-24)

Note: Version bump only for package @lion/calendar

0.1.43 (2019-07-24)

Note: Version bump only for package @lion/calendar

0.1.42 (2019-07-23)

Note: Version bump only for package @lion/calendar

0.1.41 (2019-07-23)

Note: Version bump only for package @lion/calendar

0.1.40 (2019-07-23)

Note: Version bump only for package @lion/calendar

0.1.39 (2019-07-22)

Note: Version bump only for package @lion/calendar

0.1.38 (2019-07-19)

Note: Version bump only for package @lion/calendar

0.1.37 (2019-07-19)

Note: Version bump only for package @lion/calendar

0.1.36 (2019-07-18)

Note: Version bump only for package @lion/calendar

0.1.35 (2019-07-17)

Bug Fixes

  • support Chinese language (a0ebd2d)

0.1.34 (2019-07-16)

Note: Version bump only for package @lion/calendar

0.1.33 (2019-07-16)

Note: Version bump only for package @lion/calendar

0.1.32 (2019-07-15)

Note: Version bump only for package @lion/calendar

0.1.31 (2019-07-15)

Note: Version bump only for package @lion/calendar

0.1.30 (2019-07-12)

Note: Version bump only for package @lion/calendar

0.1.29 (2019-07-09)

Note: Version bump only for package @lion/calendar

0.1.28 (2019-07-04)

Note: Version bump only for package @lion/calendar

0.1.27 (2019-07-02)

Note: Version bump only for package @lion/calendar

0.1.26 (2019-07-02)

Note: Version bump only for package @lion/calendar

0.1.25 (2019-07-01)

Note: Version bump only for package @lion/calendar

0.1.24 (2019-06-27)

Note: Version bump only for package @lion/calendar

0.1.23 (2019-06-27)

Note: Version bump only for package @lion/calendar

0.1.22 (2019-06-24)

Note: Version bump only for package @lion/calendar

0.1.21 (2019-06-20)

Bug Fixes

  • support en-PH locale for polymer-cli (7643e64)

0.1.20 (2019-06-18)

Bug Fixes

  • support language fallback for non found locales (#102) (b729bf0)

0.1.19 (2019-06-13)

Note: Version bump only for package @lion/calendar

0.1.18 (2019-06-06)

Note: Version bump only for package @lion/calendar

0.1.17 (2019-06-04)

Note: Version bump only for package @lion/calendar

0.1.16 (2019-06-04)

Bug Fixes

  • calendar: init centralDate from selectedDate when today is disabled (1643379)

0.1.15 (2019-05-31)

Note: Version bump only for package @lion/calendar

0.1.14 (2019-05-31)

Note: Version bump only for package @lion/calendar

0.1.13 (2019-05-29)

Note: Version bump only for package @lion/calendar

0.1.12 (2019-05-29)

Note: Version bump only for package @lion/calendar

0.1.11 (2019-05-27)

Note: Version bump only for package @lion/calendar

0.1.10 (2019-05-24)

Note: Version bump only for package @lion/calendar

0.1.9 (2019-05-22)

Note: Version bump only for package @lion/calendar

0.1.8 (2019-05-21)

Note: Version bump only for package @lion/calendar

0.1.7 (2019-05-21)

Note: Version bump only for package @lion/calendar

0.1.6 (2019-05-17)

Note: Version bump only for package @lion/calendar

0.1.5 (2019-05-16)

Note: Version bump only for package @lion/calendar

0.1.4 (2019-05-16)

Note: Version bump only for package @lion/calendar

0.1.3 (2019-05-16)

Note: Version bump only for package @lion/calendar

0.1.2 (2019-05-15)

Note: Version bump only for package @lion/calendar

0.1.1 (2019-05-14)

Note: Version bump only for package @lion/calendar

0.1.0 (2019-05-13)

Features

  • calendar: add reusable calendar (9fc5488)