igniteui-webcomponents-grids 5.0.0 → 5.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,21 +1,23 @@
1
1
  import { BaseControlTheme } from "igniteui-webcomponents-core";
2
- import { CheckboxListViewExternal } from "./CheckboxListViewExternal";
3
2
  import { Type } from "igniteui-webcomponents-core";
4
- import { Size } from "igniteui-webcomponents-core";
5
3
  import { ControlDisplayDensity } from "igniteui-webcomponents-core";
6
4
  import { Brush } from "igniteui-webcomponents-core";
5
+ import { CheckedChangedEventArgs } from "./CheckedChangedEventArgs";
6
+ import { Size } from "igniteui-webcomponents-core";
7
7
  /**
8
8
  * @hidden
9
9
  */
10
10
  export interface CheckboxListExternal {
11
11
  baseTheme: BaseControlTheme;
12
- view: CheckboxListViewExternal;
12
+ checkedChanged: (sender: any, args: CheckedChangedEventArgs) => void;
13
+ selectedKeyAdded: (sender: any, args: CheckedChangedEventArgs) => void;
14
+ selectedKeyRemoved: (sender: any, args: CheckedChangedEventArgs) => void;
13
15
  selectedMemberPath: string;
14
16
  dataMemberPath: string;
15
17
  itemsSource: any;
16
18
  showSelectAll: boolean;
17
19
  primaryKey: string;
18
- readonly desiredSize: Size;
20
+ getDesiredSize(): Size;
19
21
  density: ControlDisplayDensity;
20
22
  backgroundColor: Brush;
21
23
  textColor: Brush;
@@ -3,11 +3,10 @@ import { DomRenderer, DomWrapper } from "igniteui-webcomponents-core";
3
3
  import { XInputGroup } from "igniteui-webcomponents-inputs";
4
4
  import { XInput } from "igniteui-webcomponents-inputs";
5
5
  import { ControlDisplayDensity } from "igniteui-webcomponents-core";
6
- import { Size } from "igniteui-webcomponents-core";
7
- import { DataGrid } from "./DataGrid";
8
6
  import { FontInfo } from "igniteui-webcomponents-core";
9
7
  import { Thickness } from "igniteui-webcomponents-core";
10
8
  import { CheckboxListIndexType } from "./CheckboxListIndexType";
9
+ import { DataGrid } from "./DataGrid";
11
10
  import { GridSelectedKeysCollection } from "./GridSelectedKeysCollection";
12
11
  import { InputGroupDisplayType } from "igniteui-webcomponents-inputs";
13
12
  import { BaseControlTheme } from "igniteui-webcomponents-core";
@@ -15,6 +14,7 @@ import { Brush } from "igniteui-webcomponents-core";
15
14
  import { ScrollbarStyle } from "igniteui-webcomponents-core";
16
15
  import { CheckedChangedEventArgs } from "./CheckedChangedEventArgs";
17
16
  import { DataGridCellEventArgs } from "./DataGridCellEventArgs";
17
+ import { Size } from "igniteui-webcomponents-core";
18
18
  import { SelectAllCheckboxChangedEventArgs } from "./SelectAllCheckboxChangedEventArgs";
19
19
  /**
20
20
  * @hidden
@@ -53,7 +53,6 @@ export declare class CheckboxListView extends Base {
53
53
  private r;
54
54
  ad(): void;
55
55
  ab(): void;
56
- aj(): Size;
57
56
  ac(): void;
58
57
  y(): void;
59
58
  aa(a: Thickness): void;
@@ -194,6 +193,7 @@ export declare class CheckboxList extends Base implements INotifyPropertyChanged
194
193
  cj(a: number, b: any): void;
195
194
  b9(a: any[]): void;
196
195
  c1(a: any[]): void;
196
+ getDesiredSize(): Size;
197
197
  private bz;
198
198
  get b0(): string;
199
199
  set b0(a: string);
@@ -1,3 +1,4 @@
1
+ import { IgSize } from "igniteui-webcomponents-core";
1
2
  import { CheckboxList } from './CheckboxList';
2
3
  import { IgcCheckedChangedEventArgs } from "./igc-checked-changed-event-args";
3
4
  import { IgcSelectAllCheckboxChangedEventArgs } from "./igc-select-all-checkbox-changed-event-args";
@@ -246,6 +247,7 @@ export declare class IgcCheckboxListComponent extends IgcHTMLElement {
246
247
  notifyRemoveItem(index: number, oldItem: any): void;
247
248
  addKeyValue(value: any[]): void;
248
249
  removeKeyValue(value: any[]): void;
250
+ getDesiredSize(): IgSize;
249
251
  /**
250
252
  * Returns true if no items are selected / checked; otherwise false.
251
253
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-webcomponents-grids",
3
- "version": "5.0.0",
3
+ "version": "5.0.1",
4
4
  "description": "Ignite UI Web Components grid components.",
5
5
  "homepage": "https://github.com/IgniteUI/igniteui-webcomponents-grids",
6
6
  "keywords": [
@@ -18,9 +18,9 @@
18
18
  "tslib": "^2.3.1"
19
19
  },
20
20
  "peerDependencies": {
21
- "igniteui-webcomponents-core": "5.0.0",
22
- "igniteui-webcomponents-layouts": "5.0.0",
23
- "igniteui-webcomponents-inputs": "5.0.0"
21
+ "igniteui-webcomponents-core": "5.0.1",
22
+ "igniteui-webcomponents-layouts": "5.0.1",
23
+ "igniteui-webcomponents-inputs": "5.0.1"
24
24
  },
25
25
  "sideEffects": [
26
26
  "./grids/combined.js"
package/public_api.d.ts CHANGED
@@ -137,7 +137,6 @@ export * from './lib/NativeUIGridFactory';
137
137
  export * from './lib/CheckboxListBridge';
138
138
  export * from './lib/CheckboxListExternal';
139
139
  export * from './lib/CheckedChangedEventArgs';
140
- export * from './lib/CheckboxListViewExternal';
141
140
  export * from './lib/DraggerView';
142
141
  export * from './lib/igc-grid-selected-keys-collection';
143
142
  export * from './lib/GridSelectedKeysCollection';
@@ -1,11 +0,0 @@
1
- /*
2
- THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
- https://www.infragistics.com/legal/license/igultimate-la
4
- https://www.infragistics.com/legal/license/igultimate-eula
5
- GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
- */
7
- import { Type } from "igniteui-webcomponents-core";
8
- /**
9
- * @hidden
10
- */
11
- export let CheckboxListViewExternal_$type = /*@__PURE__*/ new Type(null, 'CheckboxListViewExternal');
@@ -1,11 +0,0 @@
1
- /*
2
- THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
- https://www.infragistics.com/legal/license/igultimate-la
4
- https://www.infragistics.com/legal/license/igultimate-eula
5
- GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
- */
7
- import { Type } from "igniteui-webcomponents-core";
8
- /**
9
- * @hidden
10
- */
11
- export var CheckboxListViewExternal_$type = /*@__PURE__*/ new Type(null, 'CheckboxListViewExternal');
@@ -1,16 +0,0 @@
1
- import { Type } from "igniteui-webcomponents-core";
2
- import { CheckedChangedEventArgs } from "./CheckedChangedEventArgs";
3
- import { Size } from "igniteui-webcomponents-core";
4
- /**
5
- * @hidden
6
- */
7
- export interface CheckboxListViewExternal {
8
- checkedChanged: (sender: any, args: CheckedChangedEventArgs) => void;
9
- selectedKeyAdded: (sender: any, args: CheckedChangedEventArgs) => void;
10
- selectedKeyRemoved: (sender: any, args: CheckedChangedEventArgs) => void;
11
- getDesiredSize(): Size;
12
- }
13
- /**
14
- * @hidden
15
- */
16
- export declare let CheckboxListViewExternal_$type: Type;