monkey-style-guide 21.2.17 → 21.2.20
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.
|
Binary file
|
package/package.json
CHANGED
|
@@ -930,6 +930,10 @@ interface OpenPanel {
|
|
|
930
930
|
declare class MonkeyFilterBarComponent {
|
|
931
931
|
private readonly _hostEl;
|
|
932
932
|
private readonly _injector;
|
|
933
|
+
private readonly _currencyCode;
|
|
934
|
+
private readonly _localeId;
|
|
935
|
+
private readonly _currencyPipe;
|
|
936
|
+
private readonly _scrollbar;
|
|
933
937
|
private readonly _text;
|
|
934
938
|
private _commitTimer;
|
|
935
939
|
private readonly _reported;
|
|
@@ -976,7 +980,7 @@ declare class MonkeyFilterBarComponent {
|
|
|
976
980
|
protected readonly addOptions: i0.Signal<MonkeyFilterBarOption[]>;
|
|
977
981
|
protected readonly canAddFilter: i0.Signal<boolean>;
|
|
978
982
|
protected readonly changeOptions: i0.Signal<MonkeyFilterBarOption[]>;
|
|
979
|
-
protected readonly triggerVariant: i0.Signal<"
|
|
983
|
+
protected readonly triggerVariant: i0.Signal<"text" | "icon">;
|
|
980
984
|
protected readonly triggerIcon: i0.Signal<"filter" | "add-plus">;
|
|
981
985
|
protected readonly triggerFlipId: i0.Signal<"trigger-text" | "trigger-icon">;
|
|
982
986
|
constructor();
|
|
@@ -998,6 +1002,8 @@ declare class MonkeyFilterBarComponent {
|
|
|
998
1002
|
private followEnd;
|
|
999
1003
|
private lastMovingSlot;
|
|
1000
1004
|
private withFlip;
|
|
1005
|
+
private scheduleRemeasure;
|
|
1006
|
+
protected onSlotSettled(event: Event): void;
|
|
1001
1007
|
protected operatorLabel(operator: MonkeyFilterCondition): string;
|
|
1002
1008
|
protected isOpen(rowKey: string, part: OpenPanel['part']): boolean;
|
|
1003
1009
|
protected isFilterActive(optionKey: string): boolean;
|
|
@@ -2221,7 +2227,7 @@ declare class MonkeyTableComponent<T> implements OnDestroy {
|
|
|
2221
2227
|
readonly rowSelectable: i0.InputSignal<((row: T) => boolean) | undefined>;
|
|
2222
2228
|
readonly ariaLabel: i0.InputSignal<string>;
|
|
2223
2229
|
readonly caption: i0.InputSignal<string>;
|
|
2224
|
-
readonly selectionMode: i0.InputSignal<"
|
|
2230
|
+
readonly selectionMode: i0.InputSignal<"none" | "multiple">;
|
|
2225
2231
|
readonly selected: i0.ModelSignal<ReadonlySet<string>>;
|
|
2226
2232
|
readonly maxSelected: i0.InputSignal<number>;
|
|
2227
2233
|
readonly sort: i0.InputSignal<SortState | null>;
|
|
@@ -2232,7 +2238,7 @@ declare class MonkeyTableComponent<T> implements OnDestroy {
|
|
|
2232
2238
|
readonly pinnable: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2233
2239
|
readonly rowHeight: i0.InputSignal<number>;
|
|
2234
2240
|
readonly maxVisibleRows: i0.InputSignal<number | "none">;
|
|
2235
|
-
readonly virtualScroll: i0.InputSignal<"
|
|
2241
|
+
readonly virtualScroll: i0.InputSignal<"auto" | "off">;
|
|
2236
2242
|
readonly columnOrder: i0.ModelSignal<readonly string[]>;
|
|
2237
2243
|
readonly columnState: i0.InputSignal<readonly MonkeyTableColumnState[]>;
|
|
2238
2244
|
readonly striped: i0.InputSignalWithTransform<boolean, unknown>;
|
|
Binary file
|