Skip to content

Releases: odopod/code-library

OdoCarousel v1.0.1

01 Sep 18:20
Compare
Choose a tag to compare

Fixes

Handle a case where getComputedStyle returns "none" when a transform has not yet been applied to the element.

Dialog 1.1.0

31 Aug 01:13
Compare
Choose a tag to compare

New Features

  • The dialog instance now emits TRIGGER_CLICKED when an element with the [data-odo-dialog-open] attribute is clicked. The first parameter of the event is the trigger element.
    defaultDialog.on(OdoDialog.EventType.TRIGGER_CLICKED, function (triggerElement) {
      console.log('dialog about to open because you clicked:', triggerElement);
    });
  • Add an index.d.ts type definitions file for OdoDialog.

Fixes

  • Set height on main element for iOS. 100vh on the main element makes it taller than it should be when toolbars open.
  • Avoid calling focus() on SVG elements in browsers which don't support that (IE11-)

BaseComponent 1.1.0

25 Aug 23:50
Compare
Choose a tag to compare

Add an index.d.ts type definitions file for OdoBaseComponent.

Sassplate 1.1.0

27 Jul 18:51
Compare
Choose a tag to compare
  • Add support for pseudo classes and elements. You can define them with ':class-name' or '::element-name'. The old way for visited, hover, active, and focus still work as well as others.

    This now works as expected:

    {
      "':invalid'": {
        "border-bottom": "1px solid red"
      }
    }
  • Allow recursive usage of modifiers, qualifiers, and raw properties.

  • Add tests for the component framework mixins.