igniteui-webcomponents-layouts 7.0.0 → 7.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.
- package/bundles/igniteui-webcomponents-layouts.umd.js +5037 -4563
- package/bundles/igniteui-webcomponents-layouts.umd.min.js +1 -1
- package/esm2015/lib/ComboEditorView_combined.js +27 -27
- package/esm2015/lib/ExpansionPanelView_combined.js +7 -7
- package/esm2015/lib/GridColumnProviderOnAttachingOverrideEventArgs.js +18 -0
- package/esm2015/lib/ListPanelView_combined.js +1 -1
- package/esm2015/lib/NativeUILayoutFactory_combined.js +4314 -4089
- package/esm2015/lib/PropertyEditorPanelView_combined.js +26 -26
- package/esm2015/lib/TooltipTextPresenter.js +2 -2
- package/esm2015/lib/igc-tool-action-button-component.js +6 -6
- package/esm2015/lib/igc-tool-action-button-pair-component.js +103 -103
- package/esm2015/lib/igc-tool-action-checkbox-component.js +27 -27
- package/esm2015/lib/igc-tool-action-checkbox-list-component.js +97 -17
- package/esm2015/lib/igc-tool-action-color-editor-component.js +3 -3
- package/esm2015/lib/igc-tool-action-combo-component.js +8 -8
- package/esm2015/lib/igc-tool-action-component.js +94 -80
- package/esm2015/lib/igc-tool-action-field-selector-component.js +45 -45
- package/esm2015/lib/igc-tool-action-group-header-component.js +6 -6
- package/esm2015/lib/igc-tool-action-icon-button-component.js +32 -32
- package/esm2015/lib/igc-tool-action-icon-menu-component.js +9 -9
- package/esm2015/lib/igc-tool-action-number-input-component.js +3 -3
- package/esm2015/lib/igc-tool-action-radio-component.js +32 -32
- package/esm2015/lib/igc-tool-action-separator-component.js +6 -6
- package/esm2015/lib/igc-tool-action-sub-panel-component.js +3 -3
- package/esm2015/lib/igc-tool-action-text-input-component.js +2 -2
- package/esm2015/lib/igc-tool-panel-component.js +156 -142
- package/esm2015/lib/igc-toolbar-component.js +99 -87
- package/esm2015/public_api.js +1 -0
- package/esm5/lib/ComboEditorView_combined.js +27 -27
- package/esm5/lib/ExpansionPanelView_combined.js +7 -7
- package/esm5/lib/GridColumnProviderOnAttachingOverrideEventArgs.js +21 -0
- package/esm5/lib/ListPanelView_combined.js +1 -1
- package/esm5/lib/NativeUILayoutFactory_combined.js +4171 -3886
- package/esm5/lib/PropertyEditorPanelView_combined.js +26 -26
- package/esm5/lib/TooltipTextPresenter.js +2 -2
- package/esm5/lib/igc-tool-action-button-component.js +6 -6
- package/esm5/lib/igc-tool-action-button-pair-component.js +103 -103
- package/esm5/lib/igc-tool-action-checkbox-component.js +27 -27
- package/esm5/lib/igc-tool-action-checkbox-list-component.js +129 -17
- package/esm5/lib/igc-tool-action-color-editor-component.js +3 -3
- package/esm5/lib/igc-tool-action-combo-component.js +8 -8
- package/esm5/lib/igc-tool-action-component.js +102 -80
- package/esm5/lib/igc-tool-action-field-selector-component.js +45 -45
- package/esm5/lib/igc-tool-action-group-header-component.js +6 -6
- package/esm5/lib/igc-tool-action-icon-button-component.js +32 -32
- package/esm5/lib/igc-tool-action-icon-menu-component.js +9 -9
- package/esm5/lib/igc-tool-action-number-input-component.js +3 -3
- package/esm5/lib/igc-tool-action-radio-component.js +32 -32
- package/esm5/lib/igc-tool-action-separator-component.js +6 -6
- package/esm5/lib/igc-tool-action-sub-panel-component.js +3 -3
- package/esm5/lib/igc-tool-action-text-input-component.js +2 -2
- package/esm5/lib/igc-tool-panel-component.js +164 -142
- package/esm5/lib/igc-toolbar-component.js +103 -91
- package/esm5/public_api.js +1 -0
- package/fesm2015/igniteui-webcomponents-layouts.js +5112 -4750
- package/fesm5/igniteui-webcomponents-layouts.js +5037 -4564
- package/lib/GridColumnProviderOnAttachingOverrideEventArgs.d.ts +8 -0
- package/lib/NativeUILayoutFactory_combined.d.ts +972 -935
- package/lib/igc-tool-action-checkbox-list-component.d.ts +40 -0
- package/lib/igc-tool-action-component.d.ts +4 -0
- package/lib/igc-tool-panel-component.d.ts +4 -0
- package/lib/igc-toolbar-component.d.ts +7 -1
- package/package.json +3 -3
- package/public_api.d.ts +1 -0
|
@@ -52,6 +52,46 @@ export declare class IgcToolActionCheckboxListComponent extends IgcToolActionCom
|
|
|
52
52
|
*/
|
|
53
53
|
get indexType(): ToolActionCheckboxListIndexType;
|
|
54
54
|
set indexType(v: ToolActionCheckboxListIndexType);
|
|
55
|
+
/**
|
|
56
|
+
* Gets or sets the background color of the checkbox when in the unchecked state.
|
|
57
|
+
*/
|
|
58
|
+
get uncheckedBackgroundColor(): string;
|
|
59
|
+
set uncheckedBackgroundColor(v: string);
|
|
60
|
+
/**
|
|
61
|
+
* Gets the actual background color of the checkbox when in the unchecked state.
|
|
62
|
+
*/
|
|
63
|
+
get actualUncheckedBackgroundColor(): string;
|
|
64
|
+
set actualUncheckedBackgroundColor(v: string);
|
|
65
|
+
/**
|
|
66
|
+
* Gets or sets the background color of the checkbox when in the checked state.
|
|
67
|
+
*/
|
|
68
|
+
get checkedBackgroundColor(): string;
|
|
69
|
+
set checkedBackgroundColor(v: string);
|
|
70
|
+
/**
|
|
71
|
+
* Gets the actual background color of the checkbox when in the checked state.
|
|
72
|
+
*/
|
|
73
|
+
get actualCheckedBackgroundColor(): string;
|
|
74
|
+
set actualCheckedBackgroundColor(v: string);
|
|
75
|
+
/**
|
|
76
|
+
* Gets or sets the border color of the checkbox when in the unchecked state.
|
|
77
|
+
*/
|
|
78
|
+
get uncheckedBorderColor(): string;
|
|
79
|
+
set uncheckedBorderColor(v: string);
|
|
80
|
+
/**
|
|
81
|
+
* Gets the actual border color of the checkbox when in the unchecked state.
|
|
82
|
+
*/
|
|
83
|
+
get actualUncheckedBorderColor(): string;
|
|
84
|
+
set actualUncheckedBorderColor(v: string);
|
|
85
|
+
/**
|
|
86
|
+
* Gets or sets the border color of the checkbox when in the checked state.
|
|
87
|
+
*/
|
|
88
|
+
get checkedBorderColor(): string;
|
|
89
|
+
set checkedBorderColor(v: string);
|
|
90
|
+
/**
|
|
91
|
+
* Gets the actual border color of the checkbox when in the checked state.
|
|
92
|
+
*/
|
|
93
|
+
get actualCheckedBorderColor(): string;
|
|
94
|
+
set actualCheckedBorderColor(v: string);
|
|
55
95
|
findByName(name: string): any;
|
|
56
96
|
exportVisualData(): any;
|
|
57
97
|
}
|
|
@@ -200,6 +200,10 @@ export declare abstract class IgcToolActionComponent extends IgcHTMLElement {
|
|
|
200
200
|
set isDisabled(v: boolean);
|
|
201
201
|
get isHighlighted(): boolean;
|
|
202
202
|
set isHighlighted(v: boolean);
|
|
203
|
+
get actualAccentColor(): string;
|
|
204
|
+
set actualAccentColor(v: string);
|
|
205
|
+
get accentColor(): string;
|
|
206
|
+
set accentColor(v: string);
|
|
203
207
|
/**
|
|
204
208
|
* Gets or sets the display density to use for the action.
|
|
205
209
|
*/
|
|
@@ -325,6 +325,10 @@ export declare class IgcToolPanelComponent extends IgcHTMLElement {
|
|
|
325
325
|
set highlightColor(v: string);
|
|
326
326
|
get actualHighlightColor(): string;
|
|
327
327
|
set actualHighlightColor(v: string);
|
|
328
|
+
get actualAccentColor(): string;
|
|
329
|
+
set actualAccentColor(v: string);
|
|
330
|
+
get accentColor(): string;
|
|
331
|
+
set accentColor(v: string);
|
|
328
332
|
/**
|
|
329
333
|
* Gets or sets the stroke color for all icon menu dropdown arrows.
|
|
330
334
|
*/
|
|
@@ -237,6 +237,8 @@ export declare class IgcToolbarComponent extends IgcHTMLElement {
|
|
|
237
237
|
set highlightRadius(v: number);
|
|
238
238
|
get highlightColor(): string;
|
|
239
239
|
set highlightColor(v: string);
|
|
240
|
+
get accentColor(): string;
|
|
241
|
+
set accentColor(v: string);
|
|
240
242
|
/**
|
|
241
243
|
* Gets or sets the stroke color for all icon menu dropdown arrows.
|
|
242
244
|
*/
|
|
@@ -292,7 +294,6 @@ export declare class IgcToolbarComponent extends IgcHTMLElement {
|
|
|
292
294
|
*/
|
|
293
295
|
get scrollbarStyle(): ScrollbarStyle;
|
|
294
296
|
set scrollbarStyle(v: ScrollbarStyle);
|
|
295
|
-
get isOpen(): boolean;
|
|
296
297
|
findByName(name: string): any;
|
|
297
298
|
protected __p: string;
|
|
298
299
|
protected _hasUserValues: Set<string>;
|
|
@@ -303,6 +304,11 @@ export declare class IgcToolbarComponent extends IgcHTMLElement {
|
|
|
303
304
|
protected _inStyling: boolean;
|
|
304
305
|
protected _styling(container: any, component: any, parent?: any): void;
|
|
305
306
|
flushRefresh(): void;
|
|
307
|
+
/**
|
|
308
|
+
* Is a dropdown menu or tooltip currently open.
|
|
309
|
+
|
|
310
|
+
*/
|
|
311
|
+
isOpen(): boolean;
|
|
306
312
|
/**
|
|
307
313
|
* Get the desired size the toolbar wants to be.
|
|
308
314
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-webcomponents-layouts",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.1",
|
|
4
4
|
"description": "Ignite UI Web Components layout components.",
|
|
5
5
|
"homepage": "https://github.com/IgniteUI/igniteui-webcomponents-layouts",
|
|
6
6
|
"keywords": [
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"tslib": "^2.3.1"
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
|
-
"igniteui-webcomponents-core": "7.0.
|
|
18
|
-
"igniteui-webcomponents-inputs": "7.0.
|
|
17
|
+
"igniteui-webcomponents-core": "7.0.1",
|
|
18
|
+
"igniteui-webcomponents-inputs": "7.0.1"
|
|
19
19
|
},
|
|
20
20
|
"sideEffects": false,
|
|
21
21
|
"typings": "igniteui-webcomponents-layouts.d.ts",
|
package/public_api.d.ts
CHANGED
|
@@ -73,6 +73,7 @@ export * from './lib/ToolActionCheckboxList';
|
|
|
73
73
|
export * from './lib/igc-tool-action-checkbox-list-component';
|
|
74
74
|
export * from './lib/igc-tool-action-checkbox-list-module';
|
|
75
75
|
export * from './lib/ToolActionCheckboxListIndexType';
|
|
76
|
+
export * from './lib/GridColumnProviderOnAttachingOverrideEventArgs';
|
|
76
77
|
export * from './lib/ToolActionFieldSelectorType';
|
|
77
78
|
export * from './lib/ToolActionFieldSelectorEventType';
|
|
78
79
|
export * from './lib/ToolActionFieldSelectorAggregation';
|