novo-elements 7.2.3-next.0 → 7.2.4-next.0
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/elements/data-table/data-table.component.scss +1 -1
- package/elements/dropdown/Dropdown.scss +1 -1
- package/elements/icon/Icon.scss +1 -0
- package/esm2020/src/elements/breadcrumbs/breadcrumb-item/BreadcrumbItem.mjs +1 -1
- package/esm2020/src/elements/common/option/optgroup.component.mjs +8 -8
- package/esm2020/src/elements/common/option/option.component.mjs +9 -9
- package/esm2020/src/elements/data-table/cell-headers/data-table-header-cell.component.mjs +10 -8
- package/esm2020/src/elements/data-table/data-table.component.mjs +2 -2
- package/esm2020/src/elements/dropdown/Dropdown.mjs +1 -1
- package/esm2020/src/elements/select/Select.mjs +1 -1
- package/esm2020/src/elements/simple-table/cell-header.mjs +2 -2
- package/esm2020/src/elements/tabbed-group-picker/TabbedGroupPicker.mjs +3 -3
- package/esm2020/src/elements/table/Table.mjs +10 -10
- package/fesm2015/novo-elements.mjs +40 -38
- package/fesm2015/novo-elements.mjs.map +1 -1
- package/fesm2020/novo-elements.mjs +40 -38
- package/fesm2020/novo-elements.mjs.map +1 -1
- package/package.json +1 -1
- package/schematics/package.json +1 -1
- package/src/elements/common/option/optgroup.component.d.ts +2 -2
- package/src/elements/common/option/option.component.d.ts +3 -3
package/package.json
CHANGED
package/schematics/package.json
CHANGED
|
@@ -9,8 +9,8 @@ export declare class NovoOptgroupBase implements CanDisable {
|
|
|
9
9
|
label: string;
|
|
10
10
|
/** Unique id for the underlying label. */
|
|
11
11
|
_labelId: string;
|
|
12
|
-
/** Whether the group is in
|
|
13
|
-
|
|
12
|
+
/** Whether the group is in novoInert a11y mode. */
|
|
13
|
+
_novoInert: boolean;
|
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<NovoOptgroupBase, never>;
|
|
15
15
|
static ɵdir: i0.ɵɵDirectiveDeclaration<NovoOptgroupBase, never, never, {}, {}, never>;
|
|
16
16
|
}
|
|
@@ -29,7 +29,7 @@ export declare class NovoOptionBase implements FocusableOption, AfterViewChecked
|
|
|
29
29
|
private _clickPassive;
|
|
30
30
|
/** TODO: deprecate maybe, check support for table headers */
|
|
31
31
|
keepOpen: boolean;
|
|
32
|
-
|
|
32
|
+
novoInert: boolean;
|
|
33
33
|
/** If there is no parent then nothing is managing the selection. */
|
|
34
34
|
get selectable(): NovoOptionParentComponent;
|
|
35
35
|
/** Whether the wrapping component is in multiple selection mode. */
|
|
@@ -109,7 +109,7 @@ export declare class NovoOptionBase implements FocusableOption, AfterViewChecked
|
|
|
109
109
|
/** Emits the selection change event. */
|
|
110
110
|
private _emitSelectionChangeEvent;
|
|
111
111
|
static ɵfac: i0.ɵɵFactoryDeclaration<NovoOptionBase, [null, null, { optional: true; }, { optional: true; }]>;
|
|
112
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<NovoOptionBase, never, never, { "keepOpen": "keepOpen"; "
|
|
112
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NovoOptionBase, never, never, { "keepOpen": "keepOpen"; "novoInert": "novoInert"; "value": "value"; "id": "id"; "disabled": "disabled"; "selected": "selected"; }, { "onSelectionChange": "onSelectionChange"; }, never>;
|
|
113
113
|
}
|
|
114
114
|
/**
|
|
115
115
|
* Single option inside of a `<novo-select>` element.
|
|
@@ -117,7 +117,7 @@ export declare class NovoOptionBase implements FocusableOption, AfterViewChecked
|
|
|
117
117
|
export declare class NovoOption extends NovoOptionBase {
|
|
118
118
|
constructor(element: ElementRef<HTMLElement>, changeDetectorRef: ChangeDetectorRef, parent: NovoOptionParentComponent, group: NovoOptgroup);
|
|
119
119
|
static ɵfac: i0.ɵɵFactoryDeclaration<NovoOption, [null, null, { optional: true; }, { optional: true; }]>;
|
|
120
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NovoOption, "novo-option", ["novoOption"], { "selected": "selected"; "keepOpen": "keepOpen"; "
|
|
120
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NovoOption, "novo-option", ["novoOption"], { "selected": "selected"; "keepOpen": "keepOpen"; "novoInert": "novoInert"; "value": "value"; "disabled": "disabled"; }, {}, never, ["*", "[novoSuffix]"]>;
|
|
121
121
|
}
|
|
122
122
|
/**
|
|
123
123
|
* Counts the amount of option group labels that precede the specified option.
|