New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

igniteui-angular

Package Overview
Dependencies
Maintainers
0
Versions
1081
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

igniteui-angular - npm Package Versions

1
108

6.1.0-beta.1

Diff

igniteui
published 6.1.0-beta.0 •

igniteui
published 6.0.4 •

Changelog

Source

6.0.4

  • igxRadioGroup directive introduced. It allows better control over its child igxRadio components and support template-driven and reactive forms.
  • Fixed ReactiveForms validations support for IgxInputGroup. Related issue.
igniteui
published 6.0.3 •

Changelog

Source

6.0.3

  • igxGrid exposing the filteredSortedData method publicly - returns the grid data with current filtering and sorting applied.
igniteui
published 6.0.2 •

Changelog

Source

6.0.2

  • igxGrid Improve scrolling on mac #1563
  • The ng update igniteui-angular migration schematics now also update the theme import path in SASS files. #1582
igniteui
published 6.0.1 •

Changelog

Source

6.0.1

  • Introduced migration schematics to integrate with the Angular CLI update command. You can now run

    ng update igniteui-angular

    in existing projects to both update the package and apply any migrations needed to your project. Make sure to commit project state before proceeding. Currently these cover converting submodule imports as well as the deprecation of igxForRemote and rename of igx-tab-bar to igx-bottom-nav from 6.0.0.

  • Breaking changes:

    • Removed submodule imports. All imports are now resolved from the top level igniteui-angular package. You can use ng update igniteui-angular when updating to automatically convert existing submodule imports in the project.
    • Summary functions for each IgxSummaryOperand class has been made static. So now you can use them in the following way:
    import { IgxNumberSummaryOperand, IgxSummaryOperand } from "igniteui-angular";
    class CustomSummary extends IgxSummaryOperand {
    constructor() {
      super();
    }
    public operate(data?: any[]) {
      const result = super.operate(data);
      result.push({
        key: "Min",
        label: "Min",
        summaryResult: IgxNumberSummaryOperand.min(data)
      });
      return result;
    }
    }
    
igniteui
published 6.0.1-beta.0 •

igniteui
published 6.0.0 •

Changelog

Source

6.0.0

  • Theming - You can now use css variables to style the component instances you include in your project.
  • Added onDoubleClick output to igxGrid to emit the double clicked cell.
  • Added findNext, findPrev and clearSearch methods to the IgxGridComponent which allow easy search of the grid data, even when the grid is virtualized.
  • Added IgxTextHighlightDirective which highlights parts of a DOM element and keeps and updates "active" highlight.
  • Added All option to the filter UI select for boolean columns
  • Update to Angular 6
igniteui
published 6.0.0-beta.0 •

igniteui
published 5.3.1 •

Changelog

Source

5.3.1

  • igx-dialog changes
    • Dialog title as well as dialog actions (buttons) can be customized. For more information navigate to the ReadMe.
  • Filtering a boolean column by false condition will return only the real false values, excluding null and undefined. Filtering by Null will return the null values and filtering by Empty will return the undefined.
  • The Filter button in the filtering UI is replaced with a Close button that is always active and closes the UI.
  • Filtering UI input displays a X icon that clears the input.
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