Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@api-components/api-navigation

advanced-rest-client51Apache-2.04.3.3TypeScript support: included

An element to display the response body

web-components, api, navigation

readme

DEPRECATED

This component is being deprecated. The code base has been moved to amf-components module. This module will be archived when PR 1 is merged.


Published on NPM

Tests and publishing

A navigation for an API spec generated from AMF ld+json model.

Version compatibility

This version only works with AMF model version 2 (AMF parser >= 4.0.0). For compatibility with previous model version use 3.x.x version of the component.

Usage

Installation

npm install @api-components/api-navigation --save

The element works with AMF json/ld model. When the model is set it computes list of documentation nodes, types, endpoints, methods and security schemas. As a result user can select any of the items in the UI and the application is informed about user choice via custom event.

The selection is a selected API shape @id. The application is responsible for computing the model selected by the user.

Note, this element does not contain polyfills for Array platform features.

Passive navigation

Passive navigation means that a navigation event occurred but it wasn't invoked by intentional user interaction. For example api-endpoint-documentation component renders list of documentations for HTTP methods. While scrolling through the list navigation context changes (user reads documentation of a method) but the navigation never was caused by user intentional interaction. This event, annotated with passive: true property in the detail object, prohibits other element from taking a navigation action but some may reflect the change in the UI.

In an html file

<html>
  <head>
    <script type="module">
      import '@api-components/api-navigation/api-navigation.js';
    </script>
  </head>
  <body>
    <api-navigation amf="..."></api-navigation>
  </body>
</html>

In a LitElement

import { LitElement, html } from 'lit-element';
import '@api-components/api-navigation/api-navigation.js';

class SampleElement extends LitElement {
  render() {
    return html`
    <api-navigation
      .amf="${this.amf}"
      @api-navigation-selection-changed="${this._navigationHandler}"></api-navigation>
    `;
  }

  _navigationHandler(e) {
    const { selected, type, endpointId, passive } = e.detail;
  }
}
customElements.define('sample-element', SampleElement);

Development

git clone https://github.com/advanced-rest-client/api-navigation
cd api-navigation
npm install

Running the demo locally

npm start

Running the tests

npm test

changelog

2.0.14 (2019-01-21)

Fix

New

Update

2.0.14 (2019-01-08)

Fix

New

Update

2.0.13 (2018-11-28)

Fix

New

Update

2.0.12 (2018-11-03)

Fix

New

Update

2.0.11 (2018-10-25)

New

Update

2.0.10 (2018-10-24)

Update

2.0.10 (2018-09-27)

Update

2.0.9 (2018-09-27)

Update

2.0.8 (2018-09-18)

Breaking

Docs

Fix

New

Update

2.0.7 (2018-08-24)

Breaking

Docs

Fix

New

Update

2.0.6 (2018-08-18)

Breaking

Docs

Fix

New

Update

2.0.5 (2018-07-26)

Breaking

Docs

Fix

Update

2.0.4 (2018-07-23)

Breaking

Docs

Fix

Update

2.0.4 (2018-07-18)

Breaking

Docs

Fix

Update

2.0.3 (2018-06-28)

Breaking

Docs

Fix

Update

2.0.2 (2018-06-26)

Breaking

Docs

Fix

Update

2.0.1 (2018-05-23)

Docs

Update

2.0.0 (2018-05-18)

Update

2.0.15 (2019-02-05)

Breaking

Docs

Fix

New

Update

3.0.0 (2019-06-14)

Breaking

Docs

Fix

New

Update

3.0.1 (2019-06-15)

Breaking

Docs

Fix

New

Update

3.0.1 (2019-06-15)

Breaking

Docs

Fix

New

Update

3.0.1 (2019-07-05)

Breaking

Docs

Fix

New

Update

3.0.2 (2019-07-05)

Breaking

Docs

fix

Fix

New

Update

3.0.3 (2019-07-29)

Bug Fixes

  • adding type check when testing for a value (894241e)
  • fixing linter errors (74afa7c)
  • fixing npm audit errors (4799c85)

3.1.0 (2019-08-30)

Bug Fixes

  • adding type check when testing for a value (894241e)
  • fixing event type value dispatched from proeprty setter (b4a0cfc)
  • fixing linter errors (74afa7c)
  • fixing npm audit errors (4799c85)

Features

  • adding auto collapse of methods when changin model (4dd24b3)
  • adding keyboard support for a11y (021af89)

3.1.2 (2019-10-08)

Bug Fixes

  • adding type check when testing for a value (894241e)
  • fixing event type value dispatched from proeprty setter (b4a0cfc)
  • fixing icons alignment (dfab393)
  • fixing linter errors (74afa7c)
  • fixing npm audit errors (4799c85)

Features

  • adding auto collapse of methods when changin model (4dd24b3)
  • adding keyboard support for a11y (021af89)

4.0.0 (2019-10-12)

Bug Fixes

  • adding type check when testing for a value (894241e)
  • fixing event type value dispatched from proeprty setter (b4a0cfc)
  • fixing icons alignment (dfab393)
  • fixing linter errors (74afa7c)
  • fixing npm audit errors (4799c85)

Features

  • adding auto collapse of methods when changin model (4dd24b3)
  • adding keyboard support for a11y (021af89)

4.0.1 (2019-11-09)

Bug Fixes

  • adding type check when testing for a value (894241e)
  • fixing event type value dispatched from proeprty setter (b4a0cfc)
  • fixing icons alignment (dfab393)
  • fixing linter errors (74afa7c)
  • fixing npm audit errors (4799c85)
  • fixing type declaration in properties (89e6856)

Features

  • adding auto collapse of methods when changin model (4dd24b3)
  • adding keyboard support for a11y (021af89)

4.0.1 (2019-11-25)

Build

  • bumping version 89f83eb by Pawel
  • bumping version 6f5b32f by Pawel
  • bumping version 3b80c91 by Pawel Psztyc
  • upgrading version edd9a4e by Pawel Psztyc
  • bumping version e6017e6 by Pawel
  • bumping version c466dca by Pawel
  • bumping version 8d78420 by Pawel

Update

  • updating test command 1286716 by Paweł Psztyć
  • upgrading dependencies d873a3e by Paweł Psztyć
  • updating types 004c8fd by Pawel
  • removing h3 and replacing with regular div to suppoprt a11y a973ba3 by Pawel
  • keep styles function, inject into render c782122 by TwoPlusTwoOne
  • move styles into render method 5d4c541 by TwoPlusTwoOne
  • upgrading to AMF version 4 e20059f by Pawel
  • upgrading dev depdnencies 1b3163e by Pawel Psztyc
  • removing outline from section title 9f0ad90 by Pawel Psztyc
  • upgrading to new icons system 1398ecd by Pawel Psztyc
  • updating types 950a963 by Pawel
  • upgrading AMF helper and removing amf setter 081af7a by Pawel
  • upgrading component to latest ARC standards 6180401 by Pawel

Features

  • adding keyboard support for a11y 021af89 by Pawel
  • adding auto collapse of methods when changin model 4dd24b3 by Pawel

Bug Fixes

  • fixing type declaration in properties 89e6856 by Pawel
  • fixing icons alignment dfab393 by Pawel Psztyc
  • fixing event type value dispatched from proeprty setter b4a0cfc by Pawel
  • adding type check when testing for a value 894241e by Pawel
  • fixing npm audit errors 4799c85 by Pawel
  • fixing linter errors 74afa7c by Pawel Psztyc

Refactor

  • moving component logic to src/ foleder e154bd0 by Pawel
  • removing dahses from "opened" attributes c3799ad by Pawel
  • replacing paper with anypoint button dab7f88 by Pawel

Testing

  • restoring tests e70098c by Paweł Psztyć
  • fixing a test 0284d27 by Pawel Psztyc
  • adding a11y to tests 0ee213a by Pawel

Other

  • Docs: Fixing paths in readme file e40fe77 by Pawel
  • Update: Refactoring amfModel to amf. 6f2872b by Pawel
  • Docs: Updating Polymer docs c82c0b9 by Pawel Psztyc
  • Breaking: Adding allowPaths property to render paths. 06bab1c by Pawel Psztyc
  • Update: Updating AMF model f6c4fd5 by Pawel Psztyc
  • Fix: Fixes #2 - correct endpoint rendering 77a21f8 by Pawel Psztyc
  • Fix: Fixes #1 - add data-endpoint-path attribute 491f46d by Pawel Psztyc
  • New: Adding support for Type, Security, Documentation, and Library fragments b2294a4 by Pawel Psztyc
  • Update: Adding support for common method label styles 4321efb by Pawel Psztyc
  • Update: Restoring missing paths aef70e8 by Pawel Psztyc
  • Docs: Updating docs 77c40d5 by Pawel Psztyc
  • Update: Adding support for compact AMF model and short IDs 675d322 by Pawel Psztyc
  • Docs: Updating documentation af549db by Pawel Psztyc
  • Update: Adding endpoint id to selected method event 204505a by Pawel Psztyc
  • Fix: Fixing name computation 434b7e2 by Pawel Psztyc
  • New: The component now works with compact json-ld model 32c7590 by Pawel Psztyc
  • Fix: Fixes https://github.com/mulesoft/api-console/issues/571 f0fb2a9 by Pawel Psztyc
  • Update: Updating styling API bed3616 by Pawel Psztyc
  • Fix: Fixes APIC-72 - Collapsible sections do not have hints fc58c74 by Pawel Psztyc
  • Docs: Updating documentation 0d1bbf9 by Pawel Psztyc
  • Update: Updating styling API fb3d764 by Pawel Psztyc
  • Fix: Fixing tests configuration 2284c16 by Pawel Psztyc
  • Breaking: Updating navigation architecture 67b7113 by Pawel Psztyc
  • Docs: UIpdating documentation after styling API change e06a62a by Pawel Psztyc
  • Update: Updated AMF version and test model a941ba3 by Pawel Psztyc
  • Update: Updating styles ee58da5 by Pawel Psztyc

4.0.2 (2019-11-25)

Build

  • bumping version c1f50a7 by Pawel Psztyc
  • bumping version 89f83eb by Pawel
  • bumping version 6f5b32f by Pawel
  • bumping version 3b80c91 by Pawel Psztyc
  • upgrading version edd9a4e by Pawel Psztyc
  • bumping version e6017e6 by Pawel
  • bumping version c466dca by Pawel
  • bumping version 8d78420 by Pawel

Update

  • increasning timeout for mocha 7db693f by Pawel Psztyc
  • updating test command 1286716 by Paweł Psztyć
  • upgrading dependencies d873a3e by Paweł Psztyć
  • updating types 004c8fd by Pawel
  • removing h3 and replacing with regular div to suppoprt a11y a973ba3 by Pawel
  • keep styles function, inject into render c782122 by TwoPlusTwoOne
  • move styles into render method 5d4c541 by TwoPlusTwoOne
  • upgrading to AMF version 4 e20059f by Pawel
  • upgrading dev depdnencies 1b3163e by Pawel Psztyc
  • removing outline from section title 9f0ad90 by Pawel Psztyc
  • upgrading to new icons system 1398ecd by Pawel Psztyc
  • updating types 950a963 by Pawel
  • upgrading AMF helper and removing amf setter 081af7a by Pawel
  • upgrading component to latest ARC standards 6180401 by Pawel

Documentation

  • updating demo page 6e60f71 by Pawel Psztyc

Features

  • adding keyboard support for a11y 021af89 by Pawel
  • adding auto collapse of methods when changin model 4dd24b3 by Pawel

Bug Fixes

  • fixning ShadyCSS initialization f9547c5 by Pawel Psztyc
  • fixing type declaration in properties 89e6856 by Pawel
  • fixing icons alignment dfab393 by Pawel Psztyc
  • fixing event type value dispatched from proeprty setter b4a0cfc by Pawel
  • adding type check when testing for a value 894241e by Pawel
  • fixing npm audit errors 4799c85 by Pawel
  • fixing linter errors 74afa7c by Pawel Psztyc

Refactor

  • moving component logic to src/ foleder e154bd0 by Pawel
  • removing dahses from "opened" attributes c3799ad by Pawel
  • replacing paper with anypoint button dab7f88 by Pawel

Testing

  • removing Edge again 285eb8a by Pawel Psztyc
  • updating SL configuration 83fcf72 by Pawel Psztyc
  • restoring tests e70098c by Paweł Psztyć
  • fixing a test 0284d27 by Pawel Psztyc
  • adding a11y to tests 0ee213a by Pawel

Other

  • Docs: Fixing paths in readme file e40fe77 by Pawel
  • Update: Refactoring amfModel to amf. 6f2872b by Pawel
  • Docs: Updating Polymer docs c82c0b9 by Pawel Psztyc
  • Breaking: Adding allowPaths property to render paths. 06bab1c by Pawel Psztyc
  • Update: Updating AMF model f6c4fd5 by Pawel Psztyc
  • Fix: Fixes #2 - correct endpoint rendering 77a21f8 by Pawel Psztyc
  • Fix: Fixes #1 - add data-endpoint-path attribute 491f46d by Pawel Psztyc
  • New: Adding support for Type, Security, Documentation, and Library fragments b2294a4 by Pawel Psztyc
  • Update: Adding support for common method label styles 4321efb by Pawel Psztyc
  • Update: Restoring missing paths aef70e8 by Pawel Psztyc
  • Docs: Updating docs 77c40d5 by Pawel Psztyc
  • Update: Adding support for compact AMF model and short IDs 675d322 by Pawel Psztyc
  • Docs: Updating documentation af549db by Pawel Psztyc
  • Update: Adding endpoint id to selected method event 204505a by Pawel Psztyc
  • Fix: Fixing name computation 434b7e2 by Pawel Psztyc
  • New: The component now works with compact json-ld model 32c7590 by Pawel Psztyc
  • Fix: Fixes https://github.com/mulesoft/api-console/issues/571 f0fb2a9 by Pawel Psztyc
  • Update: Updating styling API bed3616 by Pawel Psztyc
  • Fix: Fixes APIC-72 - Collapsible sections do not have hints fc58c74 by Pawel Psztyc
  • Docs: Updating documentation 0d1bbf9 by Pawel Psztyc
  • Update: Updating styling API fb3d764 by Pawel Psztyc
  • Fix: Fixing tests configuration 2284c16 by Pawel Psztyc
  • Breaking: Updating navigation architecture 67b7113 by Pawel Psztyc
  • Docs: UIpdating documentation after styling API change e06a62a by Pawel Psztyc
  • Update: Updated AMF version and test model a941ba3 by Pawel Psztyc
  • Update: Updating styles ee58da5 by Pawel Psztyc

4.0.3 (2020-01-14)

Build

  • bumping version c1f50a7 by Pawel Psztyc
  • bumping version 89f83eb by Pawel
  • bumping version 6f5b32f by Pawel
  • bumping version 3b80c91 by Pawel Psztyc
  • upgrading version edd9a4e by Pawel Psztyc
  • bumping version e6017e6 by Pawel
  • bumping version c466dca by Pawel
  • bumping version 8d78420 by Pawel

Update

  • increasning timeout for mocha 7db693f by Pawel Psztyc
  • updating test command 1286716 by Paweł Psztyć
  • upgrading dependencies d873a3e by Paweł Psztyć
  • updating types 004c8fd by Pawel
  • removing h3 and replacing with regular div to suppoprt a11y a973ba3 by Pawel
  • keep styles function, inject into render c782122 by TwoPlusTwoOne
  • move styles into render method 5d4c541 by TwoPlusTwoOne
  • upgrading to AMF version 4 e20059f by Pawel
  • upgrading dev depdnencies 1b3163e by Pawel Psztyc
  • removing outline from section title 9f0ad90 by Pawel Psztyc
  • upgrading to new icons system 1398ecd by Pawel Psztyc
  • updating types 950a963 by Pawel
  • upgrading AMF helper and removing amf setter 081af7a by Pawel
  • upgrading component to latest ARC standards 6180401 by Pawel

Documentation

  • updating demo page 6e60f71 by Pawel Psztyc

Features

  • adding keyboard support for a11y 021af89 by Pawel
  • adding auto collapse of methods when changin model 4dd24b3 by Pawel

Bug Fixes

  • remove unnecessary lowerCase transformation in AMF IDs [bump-version] 92b2884 by Leandro Bauret
  • fixning ShadyCSS initialization f9547c5 by Pawel Psztyc
  • fixing type declaration in properties 89e6856 by Pawel
  • fixing icons alignment dfab393 by Pawel Psztyc
  • fixing event type value dispatched from proeprty setter b4a0cfc by Pawel
  • adding type check when testing for a value 894241e by Pawel
  • fixing npm audit errors 4799c85 by Pawel
  • fixing linter errors 74afa7c by Pawel Psztyc

Refactor

  • moving component logic to src/ foleder e154bd0 by Pawel
  • removing dahses from "opened" attributes c3799ad by Pawel
  • replacing paper with anypoint button dab7f88 by Pawel

Testing

  • removing Edge again 285eb8a by Pawel Psztyc
  • updating SL configuration 83fcf72 by Pawel Psztyc
  • restoring tests e70098c by Paweł Psztyć
  • fixing a test 0284d27 by Pawel Psztyc
  • adding a11y to tests 0ee213a by Pawel

Other

  • Docs: Fixing paths in readme file e40fe77 by Pawel
  • Update: Refactoring amfModel to amf. 6f2872b by Pawel
  • Docs: Updating Polymer docs c82c0b9 by Pawel Psztyc
  • Breaking: Adding allowPaths property to render paths. 06bab1c by Pawel Psztyc
  • Update: Updating AMF model f6c4fd5 by Pawel Psztyc
  • Fix: Fixes #2 - correct endpoint rendering 77a21f8 by Pawel Psztyc
  • Fix: Fixes #1 - add data-endpoint-path attribute 491f46d by Pawel Psztyc
  • New: Adding support for Type, Security, Documentation, and Library fragments b2294a4 by Pawel Psztyc
  • Update: Adding support for common method label styles 4321efb by Pawel Psztyc
  • Update: Restoring missing paths aef70e8 by Pawel Psztyc
  • Docs: Updating docs 77c40d5 by Pawel Psztyc
  • Update: Adding support for compact AMF model and short IDs 675d322 by Pawel Psztyc
  • Docs: Updating documentation af549db by Pawel Psztyc
  • Update: Adding endpoint id to selected method event 204505a by Pawel Psztyc
  • Fix: Fixing name computation 434b7e2 by Pawel Psztyc
  • New: The component now works with compact json-ld model 32c7590 by Pawel Psztyc
  • Fix: Fixes https://github.com/mulesoft/api-console/issues/571 f0fb2a9 by Pawel Psztyc
  • Update: Updating styling API bed3616 by Pawel Psztyc
  • Fix: Fixes APIC-72 - Collapsible sections do not have hints fc58c74 by Pawel Psztyc
  • Docs: Updating documentation 0d1bbf9 by Pawel Psztyc
  • Update: Updating styling API fb3d764 by Pawel Psztyc
  • Fix: Fixing tests configuration 2284c16 by Pawel Psztyc
  • Breaking: Updating navigation architecture 67b7113 by Pawel Psztyc
  • Docs: UIpdating documentation after styling API change e06a62a by Pawel Psztyc
  • Update: Updated AMF version and test model a941ba3 by Pawel Psztyc
  • Update: Updating styles ee58da5 by Pawel Psztyc

4.0.4 (2020-02-07)

Update

  • [ci skip] automated merge master->stage. syncing main branches 493d512 by Ci agent

Bug Fixes

  • remove unnecessary lowerCase transformation in AMF IDs [bump-version] 92b2884 by Leandro Bauret

4.0.4 (2020-02-07)

Update

  • [ci skip] automated merge master->stage. syncing main branches d3e98ce by Ci agent
  • [ci skip] automated merge master->stage. syncing main branches 493d512 by Ci agent

4.1.0 (2020-03-25)

Build

Update

  • updating package's meta 28c6261 by Pawel
  • [ci skip] automated merge master->stage. syncing main branches 8a74be6 by Ci agent
  • [ci skip] automated merge master->stage. syncing main branches d3e98ce by Ci agent
  • [ci skip] automated merge master->stage. syncing main branches 493d512 by Ci agent

Features

  • adding support for OAS 3 security schemes 42f44a5 by Pawel

4.1.1 (2020-05-13)

Build

Update

  • [ci skip] automated merge master->stage. syncing main branches 9ace22b by Ci agent
  • updating package's meta 28c6261 by Pawel
  • [ci skip] automated merge master->stage. syncing main branches 8a74be6 by Ci agent
  • [ci skip] automated merge master->stage. syncing main branches d3e98ce by Ci agent

Features

  • adding support for OAS 3 security schemes 42f44a5 by Pawel

Bug Fixes

  • fixes APIC-408 - OAS external docs 0b9a229 by Pawel

Refactor

  • refactoring to open-wc standards 5a0a91e by Pawel

Testing

  • increasing timeout for AMF tests 29862ce by Pawel
  • updating test name in SL 3bf5435 by Pawel

4.1.2 (2020-07-13)

Build

  • bump version 4de8d5b by Carolina Wright
  • bumping version 0c6ce80 by Pawel

Update

  • [ci skip] automated merge master->stage. syncing main branches 381d85c by Ci agent
  • [ci skip] automated merge master->stage. syncing main branches 9ace22b by Ci agent

Bug Fixes

  • when no title for doc use description as label 5138837 by Carolina Wright
  • APIC-435 use title as label for documentation items a73c3ea by Carolina Wright
  • fixes APIC-408 - OAS external docs 0b9a229 by Pawel

Refactor

  • refactoring to open-wc standards 5a0a91e by Pawel

Testing

  • increasing timeout for AMF tests 29862ce by Pawel
  • updating test name in SL 3bf5435 by Pawel

4.1.3 (2020-07-22)

Build

  • bump version 7cab050 by Carolina Wright
  • bump version 4de8d5b by Carolina Wright

Update

  • [ci skip] automated merge master->stage. syncing main branches e99345a by Ci agent
  • [ci skip] automated merge master->stage. syncing main branches 381d85c by Ci agent

Bug Fixes

  • validate start of url in documentation 4fa06f7 by Carolina Wright
  • url regex 19dafbc by Carolina Wright
  • apic-449 validate documentation url 5008dbe by Carolina Wright
  • when no title for doc use description as label 5138837 by Carolina Wright
  • APIC-435 use title as label for documentation items a73c3ea by Carolina Wright

Testing

  • increse timeout 3e329cc by Carolina Wright
  • validate url 46c519a by Carolina Wright
  • increase timeout 1b8d8a3 by Carolina Wright
  • when invalid url default to about:blank 0ea732b by Carolina Wright

4.1.4 (2020-08-14)

Build

  • bump version 1a25498 by Carolina Wright
  • bump version 7cab050 by Carolina Wright

Update

  • [ci skip] automated merge master->stage. syncing main branches 4a1a0b0 by Ci agent
  • [ci skip] automated merge master->stage. syncing main branches e99345a by Ci agent

Features

  • new variable for list item word-break 7d143bc by Carolina Wright

Bug Fixes

  • validate start of url in documentation 4fa06f7 by Carolina Wright
  • url regex 19dafbc by Carolina Wright
  • apic-449 validate documentation url 5008dbe by Carolina Wright

Testing

  • increse timeout 3e329cc by Carolina Wright
  • validate url 46c519a by Carolina Wright
  • increase timeout 1b8d8a3 by Carolina Wright
  • when invalid url default to about:blank 0ea732b by Carolina Wright

4.1.6 (2020-11-18)

Build

  • bump version 25c1dc7 by Carolina Wright
  • bump version 1a25498 by Carolina Wright

Update

  • [ci skip] automated merge master->stage. syncing main branches f8fd69f by Ci agent
  • [ci skip] automated merge master->stage. syncing main branches 4a1a0b0 by Ci agent

Features

  • expanded/collapsed toggle button label 48ccee5 by Carolina Wright
  • new variable for list item word-break 7d143bc by Carolina Wright

4.2.0 (2020-11-24)

Build

  • bump version 25c1dc7 by Carolina Wright

Update

  • [ci skip] automated merge master->stage. syncing main branches 5142829 by Ci agent
  • [ci skip] automated merge master->stage. syncing main branches f8fd69f by Ci agent

Features

  • expanded/collapsed toggle button label 48ccee5 by Carolina Wright

4.2.1 (2020-11-27)

Update

  • [ci skip] automated merge master->stage. syncing main branches fe5a1bf by Ci agent
  • [ci skip] automated merge master->stage. syncing main branches 5142829 by Ci agent

4.2.2 (2020-12-01)

Update

  • [ci skip] automated merge master->stage. syncing main branches 24e642c by Ci agent
  • [ci skip] automated merge master->stage. syncing main branches fe5a1bf by Ci agent

4.2.3 (2020-12-03)

Update

  • [ci skip] automated merge master->stage. syncing main branches 6e63589 by Ci agent
  • [ci skip] automated merge master->stage. syncing main branches 24e642c by Ci agent

4.2.4 (2020-12-03)

Update

  • [ci skip] automated merge master->stage. syncing main branches 1e02b96 by Ci agent
  • [ci skip] automated merge master->stage. syncing main branches 6e63589 by Ci agent

4.2.5 (2021-01-21)

Update

  • [ci skip] automated merge master->stage. syncing main branches 6eb9254 by Ci agent
  • [ci skip] automated merge master->stage. syncing main branches 1e02b96 by Ci agent

4.2.6 (2021-01-23)

Update

  • bumping version 5e0c347 by Pawel Psztyc
  • updating types and meta 2c6ef67 by Pawel Psztyc
  • [ci skip] automated merge master->stage. syncing main branches 6d37ebd by Ci agent
  • [ci skip] automated merge master->stage. syncing main branches 6eb9254 by Ci agent

Refactor

  • replacing iron-collapse with Anypoint component fbb33eb by Pawel Psztyc

4.2.7 (2021-03-02)

Build

  • bump version 94f5cc3 by Carolina Wright

Update

  • [ci skip] automated merge master->stage. syncing main branches 4a0f1ce by Ci agent
  • bumping version 5e0c347 by Pawel Psztyc
  • updating types and meta 2c6ef67 by Pawel Psztyc
  • [ci skip] automated merge master->stage. syncing main branches 6d37ebd by Ci agent

Features

  • new property operationsOpened added to expand or collapse all operations e24911a by Carolina Wright

Bug Fixes

  • operationsOpened set to true in demo page 53c72d1 by Carolina Wright
  • endpoints animation and toggle after operationsOpened is set cd08bb9 by Carolina Wright

Refactor

  • replacing iron-collapse with Anypoint component fbb33eb by Pawel Psztyc

Testing

  • a11y test is not async 7665cb9 by Francisco Di Giandomenico
  • fix operationsOpened test da73a7a by Carolina Wright
  • increase timeout 4cf15af by Carolina Wright
  • test new property fad6054 by Carolina Wright

4.2.8 (2021-03-08)

Build

  • package-lock.json updated 83b8386 by Carolina Wright
  • bump version 471eb37 by Carolina Wright
  • bump version 94f5cc3 by Carolina Wright

Update

  • update types 63d9331 by Carolina Wright
  • [ci skip] automated merge master->stage. syncing main branches 84d7f85 by Ci agent
  • [ci skip] automated merge master->stage. syncing main branches 4a0f1ce by Ci agent

Features

  • noOverview property to not render overview as a separated element for endpoints 83e859a by Carolina Wright
  • new property operationsOpened added to expand or collapse all operations e24911a by Carolina Wright

Bug Fixes

  • select endpoint when clicking its name 47b10a8 by Carolina Wright
  • handle enpoint toggle in new methods 96c6882 by Carolina Wright
  • operationsOpened set to true in demo page 53c72d1 by Carolina Wright
  • endpoints animation and toggle after operationsOpened is set cd08bb9 by Carolina Wright

Testing

  • a11y test is not async 7665cb9 by Francisco Di Giandomenico
  • navigate through items with noOverview 0ad1432 by Francisco Di Giandomenico
  • fix test code c7c0d20 by Francisco Di Giandomenico
  • fix operationsOpened test da73a7a by Carolina Wright
  • new property 5b7a1f8 by Carolina Wright
  • increase timeout 4cf15af by Carolina Wright
  • test new property fad6054 by Carolina Wright