Socket
Socket
Sign inDemoInstall

@ui5/webcomponents-theme-base

Package Overview
Dependencies
Maintainers
2
Versions
163
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ui5/webcomponents-theme-base - npm Package Versions

1
17

0.29.5

Diff

ilhan007
published 0.0.0-6895c16dd •

ilhan007
published 0.31.0 •

ilhan007
published 1.0.0-rc.12 •

Changelog

Source

1.0.0-rc.12 (2021-02-18)

New package

framework: * introduce @ui5/webcomponents-ie11 package (#2686) (1d3b37e)

New Components

  • ui5-color-palette: introduce new component (#2731) (772424e)
  • ui5-color-picker: introduce new component (#2769) (6a70e5a)
  • ui5-page: introduce new component (#2685) (bd09e17), closes #2433

Bug Fixes

Features

  • ui5-calendar: Add declarative dates support added (#2648) (6602fba)
  • ui5-li-notification:* full-fill accessibility spec (#2578) (20de5ae)
  • ui5-multi-combobox: support two column layout for items (#2642) (7742590), closes #2637
  • ui5-multi-input: Implement accessibility specifications (#2761) (2e7b968)
  • ui5-range-slider: focus and keyboard handling implementation (#2620) (8c71ca4)
  • ui5-select: add support for disabled select options (#2730) (e903164), closes #2559
  • ui5-slider: focus and keyboard handling implementation (#2614) (7b78c16)
  • ui5-slider, ui5-range-slider: implement a11y spec (#2714) (cb76cf4), closes #2513
  • ui5-table: add growing on scroll (#2593) (87520c2), closes #2589 #2570
  • ui5-tree-item: implement info/infoState attributes (#2711) (1f07d50), closes #2633
  • ui5-wizard: improve progress navigator responsiveness (#2590) (01cd6f9)
  • ui5-calendar: new features for pickers (#2598) (3e684b4)
  • framework: introduce dynamic imports for .json assets (#2740) (46e38fb)
  • framework: introduce attachDirectionChange function (#2646) (b4f836a)
  • framework: implement ItemNavigation cyclic behavior for multiple rows (#2780) (b7ad1ea)
  • framework: distrobure icon assets as .svg files (#2657) (5b79982)

BREAKING CHANGES

  • framework: introduce dynamic imports for .json assets (#2740) (46e38fb)

The method registerI18nBundle of the @ui5/webcomponents-base/asset-registries/i18n.js module is deprecated in favour of registerI18nLoader.

The framework no longer tries to convert .properties files internally and the PropertiesFormatSupport feature is removed. This has to be done by a custom loader using the @ui5/webcomponents-base/dist/PropertiesFileFormat.js module.

  • framework: deprecate RenderScheduler in favor of Render.js (#2728) (bc78857)

RenderScheduler.js deprecated. The file will be deleted in a future release. If you were using some of its methods, import these methods from the new Render.js module. For example, if you were using:

import RenderScheduler from "@ui5/webcomponents-base/dist/RenderScheduler.js";
RenderScheduler.renderImmediately(myComponent);
RenderScheduler.renderDeferred(myComponent);
await RenderScheduler.whenFinished();

change to:

import { renderFinished, renderImmediately, renderDeferred } from "@ui5/webcomponents-base/dist/Render.js";
renderImmediately(myComponent);
renderDeferred(myComponent);
await renderFinished();

whenFinished from RenderScheduler.js renamed to renderFinished and now exported by Render.js. For usage, see the previous example

  • framework: create @ui5/webcomponents-ie11 package (#2686) (1d3b37e)

The legacy browser support is now moved to new ie11 package. If you used them before add @ui5/webcomponents-ie11 as a dependency to your project:

npm i @ui5/webcomponents-ie11 --save

or

yarn add @ui5/webcomponents-ie11

Change the following public imports:

import "@ui5/webcomponents-base/dist/features/browsersupport/IE11.js";

to

import "@ui5/webcomponents-ie11/dist/features/IE11.js";

and

import "@ui5/webcomponents-base/dist/features/browsersupport/IE11WithWebComponentsPolyfill.js";

to

import "@ui5/webcomponents-ie11/dist/features/IE11WithWebComponentsPolyfill.js";

The Legacy Edge browser is no longer supported with the ES6 bundle, therefore the following import has been removed:

import "@ui5/webcomponents-base/dist/features/browsersupport/Edge.js";

Legacy Edge is still supported with the ES5 bundle. If your app needs to support Legacy Edge, treat it as IE11 and transpile the code to ES5 as you would for IE11.

  • ui5-calendar: Add declarative dates support added (#2648) (6602fba)

The property selectedDates is deprecated for ui5-calendar. Instead of setting selectedDates as an array of UTC timestamps, please provide instances of ui5-date as children of the ui5-calendar. Instead of reading the selectedDates property to find out which dates the user selected, please read the children of the ui5-calendar (instances of ui5-date with value property).

The selection property of ui5-calendar and ui5-daypicker has been renamed to selectionMode.

The property hasMore removed, use growing instead. The loadMoreText has been renamed to moreText. The loadMoreSubtext has been renamed to moreSubtext

ilhan007
published 0.29.4 •

ilhan007
published 0.29.3 •

ilhan007
published 0.0.0-201dc9cbe •

ilhan007
published 0.0.0-b4cbc43ba •

ilhan007
published 0.29.2 •

ilhan007
published 0.29.1 •

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc