Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

igniteui-webcomponents

Package Overview
Dependencies
Maintainers
1
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

igniteui-webcomponents - npm Package Versions

23
7

5.1.2

Diff

Changelog

Source

[5.1.2] - 2024-11-04

Added

  • Carousel component select method overload accepting index #1457

Fixed

  • Tabs - nested tabs selection #713
igniteui
published 5.1.1 •

Changelog

Source

[5.1.1] - 2024-10-28

Fixed

  • Library - internal import path for styles and public exports for themes
igniteui
published 5.1.0 •

Changelog

Source

[5.1.0] - 2024-10-25

Added

  • Carousel component #1226
  • Form associated custom elements validation messages #1254

Changed

  • Library - migrated palettes to relative colors #1432
  • Badge - update themes #1399
  • Card - update themes #1414
  • Chips - update themes #1408 #1416
  • Dropdown - update themes #1409
  • Expansion panel - update themes #1415
  • Icon - update theme references #1404 #1423
  • Tabs - update themes #1408

Fixed

  • Checkbox, Switch - click event fires more than once #1427
  • Radio - click event fires more than once #1428
  • Library - export components event maps through the main package entrypoint #1422
  • Calendar - cannot select dates before UNIX epoch #1443
igniteui
published 5.0.2 •

Changelog

Source

[5.0.2] - 2024-09-25

Added

  • Calendar, Date picker - added header-date slot; renders content instead of the current date/range in the calendar header #1329

Changed

  • Input - label typography #1363
  • Calendar, Select, Combo - updated to latest Indigo theme #1337

Fixed

  • Navigation drawer - use min-width in the mini variant #1394
igniteui
published 5.0.1 •

Changelog

Source

[5.0.1] - 2024-08-30

Added

  • Checkbox, Radio, Switch - Exported the CheckboxChangeEventArgs and RadioChangeEventArgs types for public use, providing more flexibility and control over event handling.

Fixed

  • Select - Resolved an issue where pressing the Tab key while a Select component's dropdown was open would incorrectly return focus to the document. Now, focus is correctly returned to the Select component after closing the dropdown.
  • Radio - Prevented form submission if a Radio component/group is invalid on initial render within a form context. This ensures that forms with invalid Radio components are not submitted prematurely.
igniteui
published 5.0.0 •

Changelog

Source

[5.0.0] - 2024-08-27

Added

  • Icon Registry #1304
    • You can now register and replace icons by reference via the setIconRef function. To learn more check out the documentation.
    • All components now use icons by reference internally so that it's easy to replace them without explicitly providing custom templates.

Changed

  • BREAKING: Removed igcFocus and igcBlur events from buttons and inputs - Button, Icon Button, Checkbox, Switch, Combo, Date Time Input, Input, Mask Input, Radios, Select, Textarea.

    Use the native focus & blur events instead.

    Before:

    const input = document.createElement('igc-input');
    input.addEventListener('igcFocus', focusHandler);
    

    Now:

    input.addEventListener('focus', focusHandler);
    
  • BREAKING: Checkbox, Switch igcChange event.

    Before:

    CustomEvent<boolean>
    

    Now:

    CustomEvent<{ checked: boolean; value: string | undefined }>
    
  • BREAKING: Radio igcChange event.

    Before:

    CustomEvent<boolean>
    

    Now:

    CustomEvent<{ checked: boolean; value: string | undefined }>
    

Removed

  • BREAKING: igc-form - use the native form element instead.
  • BREAKING: Range slider - ariaThumbLower/ariaThumbUpper. Use thumbLabelLower/thumbLabelUpper instead.
  • BREAKING: Rating - readonly property. Use readOnly instead.
  • BREAKING: Dialog - closeOnEscape property. Use keepOpenOnEscape.
  • BREAKING: Combo, Select - positionStrategy, flip, sameWidth removed.
  • BREAKING: Dropdown - positionStrategy removed.
  • BREAKING: Input - readonly, inputmode, maxlength and minlength. Use the native readOnly, inputMode, maxLength and minLength properties instead.
  • BREAKING: Date-time-input - minValue/mavValue are removed. Use min/max instead.
  • BREAKING: Removed size property from components.

Fixed

  • Date-time input - update masked value according to the input format on focus when value is set #1320
  • Radio - do not emit change event on already checked radio
  • Calendar - add correct dates DOM parts based on active view [#1278]
  • Date-picker, Dropdown & Select - showing the component programmatically in response to an outside click event closes the dropdown popover #1339
  • Radio - Initially checked radio by attribute throws error when not being last sibling #1356
igniteui
published 5.0.0-rc.1 •

igniteui
published 5.0.0-rc.0 •

igniteui
published 4.11.1 •

Changelog

Source

[4.11.1] - 2024-07-03

Changed

  • Stepper Design in vertical mode #1246
igniteui
published 4.11.0 •

Changelog

Source

[4.11.0] - 2024-07-03

Changed

  • Toast Component Indigo Theme #1249
  • Rating Component Indigo Theme #1249
  • Stepper Component Indigo Theme #1249
23
7
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