@rivet-health/design-system 32.0.0 → 32.1.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/esm2020/lib/input/select/select/select.component.mjs +16 -3
- package/esm2020/lib/input/simple-select/simple-select.component.mjs +1 -1
- package/esm2020/lib/navigation/views/edit-view/edit-view.component.mjs +1 -1
- package/esm2020/lib/table/simple-table/simple-table.component.mjs +27 -6
- package/fesm2015/rivet-health-design-system.mjs +43 -9
- package/fesm2015/rivet-health-design-system.mjs.map +1 -1
- package/fesm2020/rivet-health-design-system.mjs +43 -9
- package/fesm2020/rivet-health-design-system.mjs.map +1 -1
- package/lib/input/select/select/select.component.d.ts +4 -1
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ElementRef, OnDestroy, OnInit, TemplateRef } from '@angular/core';
|
|
2
|
+
import { CalloutComponent } from '../../../overlay/callout/callout.component';
|
|
2
3
|
import { InputLabelComponent } from '../../input-label/input-label.component';
|
|
3
4
|
import { RivSelect } from '../state';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
@@ -7,6 +8,8 @@ export declare class SelectComponent<O extends RivSelect.BaseOption> extends Inp
|
|
|
7
8
|
size: SelectComponent.Size;
|
|
8
9
|
disabled: boolean;
|
|
9
10
|
locked: boolean;
|
|
11
|
+
allowedCalloutPositions: CalloutComponent.AnchoredPosition[];
|
|
12
|
+
preferredCalloutPosition: CalloutComponent.AnchoredPosition;
|
|
10
13
|
triggerTemplate?: TemplateRef<{
|
|
11
14
|
state: RivSelect.FullState<O>;
|
|
12
15
|
}>;
|
|
@@ -37,7 +40,7 @@ export declare class SelectComponent<O extends RivSelect.BaseOption> extends Inp
|
|
|
37
40
|
trackBySymbol(_: number, value: any): any;
|
|
38
41
|
trackByOption(_: number, option: RivSelect.FullOption<O>): string | number;
|
|
39
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent<any>, never>;
|
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent<any>, "riv-select", never, { "manager": "manager"; "size": "size"; "disabled": "disabled"; "locked": "locked"; }, {}, ["triggerTemplate", "customSelectedOptionsTemplate", "optionTemplate", "headerTemplate", "footerTemplate"], never, false>;
|
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent<any>, "riv-select", never, { "manager": "manager"; "size": "size"; "disabled": "disabled"; "locked": "locked"; "allowedCalloutPositions": "allowedCalloutPositions"; "preferredCalloutPosition": "preferredCalloutPosition"; }, {}, ["triggerTemplate", "customSelectedOptionsTemplate", "optionTemplate", "headerTemplate", "footerTemplate"], never, false>;
|
|
41
44
|
}
|
|
42
45
|
export declare namespace SelectComponent {
|
|
43
46
|
type OrderByOption = {
|