igniteui-webcomponents-layouts 7.1.0-beta.2 → 7.1.0-beta.4
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 +5588 -4983
- package/bundles/igniteui-webcomponents-layouts.umd.min.js +1 -1
- package/esm2015/lib/NativeUILayoutFactory_combined.js +4759 -4439
- package/esm2015/lib/PropertyEditorPanelView_combined.js +7 -7
- package/esm2015/lib/igc-combo-editor-component.js +160 -32
- 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 +29 -29
- package/esm2015/lib/igc-tool-action-checkbox-group-component.js +10 -10
- package/esm2015/lib/igc-tool-action-checkbox-list-component.js +40 -40
- 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 +61 -61
- 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 +31 -31
- 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 +47 -34
- package/esm2015/lib/igc-tool-action-radio-group-component.js +10 -10
- 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 +283 -253
- package/esm2015/lib/igc-toolbar-component.js +117 -87
- package/esm5/lib/NativeUILayoutFactory_combined.js +4573 -4197
- package/esm5/lib/PropertyEditorPanelView_combined.js +7 -7
- package/esm5/lib/igc-combo-editor-component.js +160 -32
- 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 +29 -29
- package/esm5/lib/igc-tool-action-checkbox-group-component.js +10 -10
- package/esm5/lib/igc-tool-action-checkbox-list-component.js +40 -40
- 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 +61 -61
- 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 +31 -31
- 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 +51 -34
- package/esm5/lib/igc-tool-action-radio-group-component.js +10 -10
- 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 +295 -253
- package/esm5/lib/igc-toolbar-component.js +129 -87
- package/fesm2015/igniteui-webcomponents-layouts.js +5752 -5231
- package/fesm5/igniteui-webcomponents-layouts.js +5588 -4983
- package/lib/NativeUILayoutFactory_combined.d.ts +1040 -997
- package/lib/igc-tool-action-radio-component.d.ts +8 -0
- package/lib/igc-tool-panel-component.d.ts +15 -0
- package/lib/igc-toolbar-component.d.ts +15 -0
- package/package.json +3 -3
|
@@ -38,6 +38,14 @@ export declare class IgcToolActionRadioComponent extends IgcToolActionComponent
|
|
|
38
38
|
*/
|
|
39
39
|
get isManual(): boolean;
|
|
40
40
|
set isManual(v: boolean);
|
|
41
|
+
/**
|
|
42
|
+
* Gets or sets whether the radio can be unchecked by clicking it again. When true, the radio
|
|
43
|
+
* behaves like a checkbox for the on-state — clicking a checked radio will uncheck it, leaving
|
|
44
|
+
* the channel with no selection. Channel exclusivity is still enforced when the radio is checked
|
|
45
|
+
* (siblings in the same channel will be deselected). Defaults to false.
|
|
46
|
+
*/
|
|
47
|
+
get isToggleable(): boolean;
|
|
48
|
+
set isToggleable(v: boolean);
|
|
41
49
|
/**
|
|
42
50
|
* Gets or sets the background color of the radio when in the unchecked state.
|
|
43
51
|
*/
|
|
@@ -399,6 +399,21 @@ export declare class IgcToolPanelComponent extends IgcHTMLElement {
|
|
|
399
399
|
*/
|
|
400
400
|
get scrollbarStyle(): ScrollbarStyle;
|
|
401
401
|
set scrollbarStyle(v: ScrollbarStyle);
|
|
402
|
+
/**
|
|
403
|
+
* Gets or sets the scrollbar background color for checkbox lists hosted in this tool panel's actions.
|
|
404
|
+
*/
|
|
405
|
+
get checkboxListScrollbarBackground(): string;
|
|
406
|
+
set checkboxListScrollbarBackground(v: string);
|
|
407
|
+
/**
|
|
408
|
+
* Gets or sets the scrollbar thumb hover background color for checkbox lists hosted in this tool panel's actions.
|
|
409
|
+
*/
|
|
410
|
+
get checkboxListScrollbarHoverBackground(): string;
|
|
411
|
+
set checkboxListScrollbarHoverBackground(v: string);
|
|
412
|
+
/**
|
|
413
|
+
* Gets or sets the scrollbar thumb active (dragging) background color for checkbox lists hosted in this tool panel's actions.
|
|
414
|
+
*/
|
|
415
|
+
get checkboxListScrollbarActiveBackground(): string;
|
|
416
|
+
set checkboxListScrollbarActiveBackground(v: string);
|
|
402
417
|
/**
|
|
403
418
|
* Gets or sets the spacing between items
|
|
404
419
|
*/
|
|
@@ -299,6 +299,21 @@ export declare class IgcToolbarComponent extends IgcHTMLElement {
|
|
|
299
299
|
*/
|
|
300
300
|
get scrollbarStyle(): ScrollbarStyle;
|
|
301
301
|
set scrollbarStyle(v: ScrollbarStyle);
|
|
302
|
+
/**
|
|
303
|
+
* Gets or sets the scrollbar background color for checkbox lists hosted in this toolbar's sub-menus.
|
|
304
|
+
*/
|
|
305
|
+
get checkboxListScrollbarBackground(): string;
|
|
306
|
+
set checkboxListScrollbarBackground(v: string);
|
|
307
|
+
/**
|
|
308
|
+
* Gets or sets the scrollbar thumb hover background color for checkbox lists hosted in this toolbar's sub-menus.
|
|
309
|
+
*/
|
|
310
|
+
get checkboxListScrollbarHoverBackground(): string;
|
|
311
|
+
set checkboxListScrollbarHoverBackground(v: string);
|
|
312
|
+
/**
|
|
313
|
+
* Gets or sets the scrollbar thumb active (dragging) background color for checkbox lists hosted in this toolbar's sub-menus.
|
|
314
|
+
*/
|
|
315
|
+
get checkboxListScrollbarActiveBackground(): string;
|
|
316
|
+
set checkboxListScrollbarActiveBackground(v: string);
|
|
302
317
|
findByName(name: string): any;
|
|
303
318
|
protected __p: string;
|
|
304
319
|
protected _hasUserValues: Set<string>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-webcomponents-layouts",
|
|
3
|
-
"version": "7.1.0-beta.
|
|
3
|
+
"version": "7.1.0-beta.4",
|
|
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.1.0-beta.
|
|
18
|
-
"igniteui-webcomponents-inputs": "7.1.0-beta.
|
|
17
|
+
"igniteui-webcomponents-core": "7.1.0-beta.4",
|
|
18
|
+
"igniteui-webcomponents-inputs": "7.1.0-beta.4"
|
|
19
19
|
},
|
|
20
20
|
"sideEffects": false,
|
|
21
21
|
"typings": "igniteui-webcomponents-layouts.d.ts",
|