@weeehaoooz/talos-ui 0.1.0 → 0.1.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/fesm2022/weeehaoooz-talos-ui-button-button-group.mjs +25 -4
- package/fesm2022/weeehaoooz-talos-ui-button-button-group.mjs.map +1 -1
- package/fesm2022/weeehaoooz-talos-ui-button-button.mjs +2 -1
- package/fesm2022/weeehaoooz-talos-ui-button-button.mjs.map +1 -1
- package/fesm2022/weeehaoooz-talos-ui-data-display-data-grid.mjs +1627 -0
- package/fesm2022/weeehaoooz-talos-ui-data-display-data-grid.mjs.map +1 -0
- package/fesm2022/weeehaoooz-talos-ui-form-range-input.mjs +2 -2
- package/fesm2022/weeehaoooz-talos-ui-form-range-input.mjs.map +1 -1
- package/fesm2022/weeehaoooz-talos-ui-form-rating.mjs +2 -2
- package/fesm2022/weeehaoooz-talos-ui-form-rating.mjs.map +1 -1
- package/fesm2022/weeehaoooz-talos-ui-layout.mjs +4 -4
- package/fesm2022/weeehaoooz-talos-ui-layout.mjs.map +1 -1
- package/fesm2022/weeehaoooz-talos-ui-nav.mjs +118 -71
- package/fesm2022/weeehaoooz-talos-ui-nav.mjs.map +1 -1
- package/fesm2022/weeehaoooz-talos-ui.mjs +1765 -87
- package/fesm2022/weeehaoooz-talos-ui.mjs.map +1 -1
- package/package.json +5 -1
- package/styles/_button-group.scss +154 -6
- package/styles/_buttons.scss +105 -8
- package/styles/_variables.scss +4 -0
- package/types/weeehaoooz-talos-ui-button-button-group.d.ts +5 -2
- package/types/weeehaoooz-talos-ui-button-button-group.d.ts.map +1 -1
- package/types/weeehaoooz-talos-ui-button-button.d.ts +1 -1
- package/types/weeehaoooz-talos-ui-button-button.d.ts.map +1 -1
- package/types/weeehaoooz-talos-ui-data-display-data-grid.d.ts +272 -0
- package/types/weeehaoooz-talos-ui-data-display-data-grid.d.ts.map +1 -0
- package/types/weeehaoooz-talos-ui-nav.d.ts +36 -10
- package/types/weeehaoooz-talos-ui-nav.d.ts.map +1 -1
- package/types/weeehaoooz-talos-ui.d.ts +309 -16
- package/types/weeehaoooz-talos-ui.d.ts.map +1 -1
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { Type, TemplateRef, AfterContentChecked, ElementRef, OnInit, OnDestroy, InjectionToken, AfterViewInit, QueryList } from '@angular/core';
|
|
2
|
+
import { Type, TemplateRef, AfterContentChecked, ElementRef, OnInit, OnDestroy, InjectionToken, AfterViewInit, QueryList, PipeTransform } from '@angular/core';
|
|
3
3
|
import { LucideChevronDown, LucidePanelLeftOpen, LucidePanelLeftClose } from '@lucide/angular';
|
|
4
4
|
import { LayoutService as LayoutService$1 } from '@weeehaoooz/talos-ui/layout';
|
|
5
|
+
import * as i3 from '@weeehaoooz/talos-ui/feedback/tooltip';
|
|
6
|
+
import { TooltipPosition as TooltipPosition$1 } from '@weeehaoooz/talos-ui/feedback/tooltip';
|
|
5
7
|
import { ControlValueAccessor } from '@angular/forms';
|
|
6
8
|
import * as i4 from '@weeehaoooz/talos-ui/button/button';
|
|
7
|
-
import { ButtonSize as ButtonSize$1, TalosButtonDirective as TalosButtonDirective$1 } from '@weeehaoooz/talos-ui/button/button';
|
|
8
|
-
import * as i3 from '@weeehaoooz/talos-ui/feedback/tooltip';
|
|
9
|
+
import { ButtonSize as ButtonSize$1, TalosButtonDirective as TalosButtonDirective$1, ButtonVariant as ButtonVariant$1 } from '@weeehaoooz/talos-ui/button/button';
|
|
9
10
|
import { ConnectedPosition } from '@angular/cdk/overlay';
|
|
10
11
|
import { DatePickerComponent as DatePickerComponent$1 } from '@weeehaoooz/talos-ui/form/date-picker';
|
|
11
12
|
import { DateRangePreset as DateRangePreset$1, DateRangeValue as DateRangeValue$1, DateRangePickerComponent as DateRangePickerComponent$1 } from '@weeehaoooz/talos-ui/form/date-range-picker';
|
|
@@ -16,6 +17,7 @@ import * as _weeehaoooz_talos_ui from '@weeehaoooz/talos-ui';
|
|
|
16
17
|
import * as _weeehaoooz_talos_ui_core from '@weeehaoooz/talos-ui/core';
|
|
17
18
|
import { RgbaColor as RgbaColor$1, HslaColor as HslaColor$1, HsvaColor as HsvaColor$1, ColorFormat as ColorFormat$1 } from '@weeehaoooz/talos-ui/core';
|
|
18
19
|
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
20
|
+
import { TalosWorkflowStatus as TalosWorkflowStatus$1, TalosCanonicalWorkflowStatus as TalosCanonicalWorkflowStatus$1, TalosStatusTagVariant as TalosStatusTagVariant$1, TalosStatusTagSize as TalosStatusTagSize$1, TalosStatusTagShape as TalosStatusTagShape$1 } from '@weeehaoooz/talos-ui/data-display/status-tag';
|
|
19
21
|
|
|
20
22
|
interface RightPanelOptions {
|
|
21
23
|
/** Title displayed in the panel header shell */
|
|
@@ -303,22 +305,28 @@ declare class TalosNavThemeToggleComponent {
|
|
|
303
305
|
readonly themeMode: _angular_core.InputSignal<TalosThemeMode | null>;
|
|
304
306
|
/** Current dark mode state (boolean fallback for backward compatibility) */
|
|
305
307
|
readonly isDarkMode: _angular_core.InputSignal<boolean>;
|
|
306
|
-
/**
|
|
307
|
-
readonly
|
|
308
|
+
/** Optional explicit collapsed state override */
|
|
309
|
+
readonly collapsed: _angular_core.InputSignal<boolean | undefined>;
|
|
310
|
+
/** Icon size in pixels */
|
|
311
|
+
readonly iconSize: _angular_core.InputSignal<number>;
|
|
312
|
+
/** Tooltip position */
|
|
313
|
+
readonly tooltipPosition: _angular_core.InputSignal<TooltipPosition$1>;
|
|
308
314
|
/** Label shown for system mode */
|
|
309
315
|
readonly systemLabel: _angular_core.InputSignal<string>;
|
|
310
316
|
/** Label shown for light mode */
|
|
311
317
|
readonly lightLabel: _angular_core.InputSignal<string>;
|
|
312
318
|
/** Label shown for dark mode */
|
|
313
319
|
readonly darkLabel: _angular_core.InputSignal<string>;
|
|
314
|
-
/** Optional custom tooltip text
|
|
320
|
+
/** Optional custom tooltip text override */
|
|
315
321
|
readonly tooltip: _angular_core.InputSignal<string | undefined>;
|
|
316
|
-
/** Output event when
|
|
322
|
+
/** Output event when theme is toggled or clicked */
|
|
317
323
|
readonly themeToggle: _angular_core.OutputEmitterRef<void>;
|
|
318
|
-
/** Output event with
|
|
324
|
+
/** Output event with selected theme mode ('system' | 'light' | 'dark') */
|
|
319
325
|
readonly themeModeChange: _angular_core.OutputEmitterRef<TalosThemeMode>;
|
|
320
326
|
/** Output event with next dark mode state */
|
|
321
327
|
readonly isDarkModeChange: _angular_core.OutputEmitterRef<boolean>;
|
|
328
|
+
/** Effective collapsed state */
|
|
329
|
+
readonly isCollapsed: _angular_core.Signal<boolean>;
|
|
322
330
|
/** Computed effective theme mode */
|
|
323
331
|
readonly effectiveMode: _angular_core.Signal<TalosThemeMode>;
|
|
324
332
|
/** Computed label for active mode */
|
|
@@ -327,11 +335,14 @@ declare class TalosNavThemeToggleComponent {
|
|
|
327
335
|
readonly nextMode: _angular_core.Signal<TalosThemeMode>;
|
|
328
336
|
/** Computed accessible aria label */
|
|
329
337
|
readonly computedAriaLabel: _angular_core.Signal<string>;
|
|
330
|
-
/** Computed tooltip
|
|
331
|
-
readonly computedTooltip: _angular_core.Signal<string
|
|
338
|
+
/** Computed tooltip */
|
|
339
|
+
readonly computedTooltip: _angular_core.Signal<string>;
|
|
340
|
+
/** Set mode directly */
|
|
341
|
+
setMode(mode: TalosThemeMode): void;
|
|
342
|
+
/** Cycle to next mode */
|
|
332
343
|
handleToggle(): void;
|
|
333
344
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TalosNavThemeToggleComponent, never>;
|
|
334
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TalosNavThemeToggleComponent, "talos-nav-theme-toggle", never, { "themeMode": { "alias": "themeMode"; "required": false; "isSignal": true; }; "isDarkMode": { "alias": "isDarkMode"; "required": false; "isSignal": true; }; "
|
|
345
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TalosNavThemeToggleComponent, "talos-nav-theme-toggle", never, { "themeMode": { "alias": "themeMode"; "required": false; "isSignal": true; }; "isDarkMode": { "alias": "isDarkMode"; "required": false; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; "iconSize": { "alias": "iconSize"; "required": false; "isSignal": true; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; "isSignal": true; }; "systemLabel": { "alias": "systemLabel"; "required": false; "isSignal": true; }; "lightLabel": { "alias": "lightLabel"; "required": false; "isSignal": true; }; "darkLabel": { "alias": "darkLabel"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; }, { "themeToggle": "themeToggle"; "themeModeChange": "themeModeChange"; "isDarkModeChange": "isDarkModeChange"; }, never, never, true, never>;
|
|
335
346
|
}
|
|
336
347
|
|
|
337
348
|
interface SideNavItem {
|
|
@@ -580,6 +591,10 @@ declare class TopNavComponent {
|
|
|
580
591
|
readonly openDropdownId: _angular_core.WritableSignal<string | null>;
|
|
581
592
|
/** Track whether user profile dropdown menu is open */
|
|
582
593
|
readonly isUserDropdownOpen: _angular_core.WritableSignal<boolean>;
|
|
594
|
+
/** Track whether mobile hamburger navigation sheet is open */
|
|
595
|
+
readonly isMobileMenuOpen: _angular_core.WritableSignal<boolean>;
|
|
596
|
+
toggleMobileMenu(): void;
|
|
597
|
+
closeMobileMenu(): void;
|
|
583
598
|
/** Computed effective theme mode */
|
|
584
599
|
readonly effectiveThemeMode: _angular_core.Signal<TalosThemeMode>;
|
|
585
600
|
/** Computed next mode in cycle: system -> light -> dark -> system */
|
|
@@ -661,6 +676,18 @@ declare class TalosNavItemComponent {
|
|
|
661
676
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TalosNavItemComponent, "talos-nav-item", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "active": { "alias": "active"; "required": false; "isSignal": true; }; "badge": { "alias": "badge"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "route": { "alias": "route"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; }, { "itemClick": "itemClick"; }, never, ["*"], true, never>;
|
|
662
677
|
}
|
|
663
678
|
|
|
679
|
+
type TalosThemeMorphMode = 'system' | 'light' | 'dark';
|
|
680
|
+
declare class TalosThemeMorphIconComponent {
|
|
681
|
+
/** Target theme mode: 'system' | 'light' | 'dark' */
|
|
682
|
+
readonly mode: _angular_core.InputSignal<TalosThemeMorphMode>;
|
|
683
|
+
/** Icon dimension in pixels (defaults to 16px for balanced optical sizing) */
|
|
684
|
+
readonly size: _angular_core.InputSignal<number>;
|
|
685
|
+
/** Effective mode */
|
|
686
|
+
readonly effectiveMode: _angular_core.Signal<TalosThemeMorphMode>;
|
|
687
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TalosThemeMorphIconComponent, never>;
|
|
688
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TalosThemeMorphIconComponent, "talos-theme-morph-icon", never, { "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
689
|
+
}
|
|
690
|
+
|
|
664
691
|
declare class TalosSideNavModule {
|
|
665
692
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TalosSideNavModule, never>;
|
|
666
693
|
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<TalosSideNavModule, never, [typeof SideNavComponent, typeof TalosNavGroupComponent, typeof TalosNavItemComponent, typeof TalosNavThemeToggleComponent], [typeof SideNavComponent, typeof TalosNavGroupComponent, typeof TalosNavItemComponent, typeof TalosNavThemeToggleComponent]>;
|
|
@@ -860,7 +887,7 @@ declare class SelectInputModule {
|
|
|
860
887
|
}
|
|
861
888
|
|
|
862
889
|
type ButtonVariant = 'primary' | 'secondary' | 'outline' | 'ghost' | 'subtle' | 'danger' | 'success' | 'link';
|
|
863
|
-
type ButtonSize = 'sm' | 'md' | 'lg';
|
|
890
|
+
type ButtonSize = 'xs' | 'sm' | 'md' | 'lg';
|
|
864
891
|
type ButtonAnimation = 'spin' | 'spin-once' | 'pop' | 'shake' | 'pulse' | 'bounce' | 'none';
|
|
865
892
|
type ButtonFeedbackState = 'success' | 'error' | null;
|
|
866
893
|
declare class TalosButtonDirective {
|
|
@@ -905,7 +932,7 @@ declare class TalosButtonGroupItemDirective {
|
|
|
905
932
|
}
|
|
906
933
|
|
|
907
934
|
type ButtonGroupOrientation = 'horizontal' | 'vertical';
|
|
908
|
-
type ButtonGroupVariant = 'attached' | 'segmented' | 'outline' | 'subtle' | 'pill';
|
|
935
|
+
type ButtonGroupVariant = 'attached' | 'segmented' | 'outline' | 'subtle' | 'pill' | 'glow';
|
|
909
936
|
type ButtonGroupSelectionMode = 'none' | 'single' | 'multiple';
|
|
910
937
|
declare class TalosButtonGroupComponent {
|
|
911
938
|
private readonly elementRef;
|
|
@@ -921,6 +948,8 @@ declare class TalosButtonGroupComponent {
|
|
|
921
948
|
readonly value: _angular_core.ModelSignal<any>;
|
|
922
949
|
/** Apply fully rounded pill shape */
|
|
923
950
|
readonly pill: _angular_core.InputSignal<boolean>;
|
|
951
|
+
/** Allow mouse wheel vertical scrolling to translate to horizontal scrolling when overflowing on hover */
|
|
952
|
+
readonly mouseWheelScroll: _angular_core.InputSignal<boolean>;
|
|
924
953
|
/** Disable all buttons in group */
|
|
925
954
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
926
955
|
/** Child items using TalosButtonGroupItemDirective */
|
|
@@ -932,8 +961,9 @@ declare class TalosButtonGroupComponent {
|
|
|
932
961
|
private syncChildSelectionStates;
|
|
933
962
|
onClick(event: MouseEvent): void;
|
|
934
963
|
onKeydown(event: KeyboardEvent): void;
|
|
964
|
+
onWheel(event: WheelEvent): void;
|
|
935
965
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TalosButtonGroupComponent, never>;
|
|
936
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TalosButtonGroupComponent, "talos-button-group", never, { "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "selectionMode": { "alias": "selectionMode"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "pill": { "alias": "pill"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, ["items", "buttons"], ["*"], true, never>;
|
|
966
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TalosButtonGroupComponent, "talos-button-group", never, { "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "selectionMode": { "alias": "selectionMode"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "pill": { "alias": "pill"; "required": false; "isSignal": true; }; "mouseWheelScroll": { "alias": "mouseWheelScroll"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, ["items", "buttons"], ["*"], true, never>;
|
|
937
967
|
}
|
|
938
968
|
|
|
939
969
|
declare class TalosButtonGroupModule {
|
|
@@ -5045,6 +5075,269 @@ declare class TalosRatingModule {
|
|
|
5045
5075
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<TalosRatingModule>;
|
|
5046
5076
|
}
|
|
5047
5077
|
|
|
5048
|
-
|
|
5049
|
-
|
|
5078
|
+
type TalosGridDensity = 'compact' | 'comfortable' | 'spacious';
|
|
5079
|
+
type TalosGridSortType = 'string' | 'number' | 'date';
|
|
5080
|
+
type TalosGridSortDirection = 'asc' | 'desc' | null;
|
|
5081
|
+
interface TalosGridSortState {
|
|
5082
|
+
field: string;
|
|
5083
|
+
direction: TalosGridSortDirection;
|
|
5084
|
+
sortType?: TalosGridSortType;
|
|
5085
|
+
}
|
|
5086
|
+
type TalosGridFilterMode = 'set' | 'condition';
|
|
5087
|
+
type TalosGridOperator = 'eq' | 'neq' | 'gt' | 'gte' | 'lt' | 'lte' | 'between' | 'blank' | 'notBlank' | 'contains' | 'startsWith' | 'endsWith';
|
|
5088
|
+
interface TalosGridColumnFilter {
|
|
5089
|
+
field: string;
|
|
5090
|
+
mode: TalosGridFilterMode;
|
|
5091
|
+
/** Mode A: array of allowed string values */
|
|
5092
|
+
selectedValues?: string[];
|
|
5093
|
+
/** Mode B: comparison operator */
|
|
5094
|
+
operator?: TalosGridOperator;
|
|
5095
|
+
/** Mode B: primary comparison value */
|
|
5096
|
+
value?: any;
|
|
5097
|
+
/** Mode B: secondary value for between operator */
|
|
5098
|
+
secondValue?: any;
|
|
5099
|
+
}
|
|
5100
|
+
type TalosGridColType = 'text' | 'number' | 'date' | 'status' | 'actions' | 'custom';
|
|
5101
|
+
interface TalosGridStatusConfig<T = any> {
|
|
5102
|
+
statusMap?: (val: any, row: T) => TalosWorkflowStatus$1 | TalosCanonicalWorkflowStatus$1;
|
|
5103
|
+
variant?: TalosStatusTagVariant$1;
|
|
5104
|
+
size?: TalosStatusTagSize$1;
|
|
5105
|
+
shape?: TalosStatusTagShape$1;
|
|
5106
|
+
showIcon?: boolean;
|
|
5107
|
+
}
|
|
5108
|
+
interface TalosGridActionDef<T = any> {
|
|
5109
|
+
id: string;
|
|
5110
|
+
label?: string;
|
|
5111
|
+
icon?: Type<unknown>;
|
|
5112
|
+
iconOnly?: boolean;
|
|
5113
|
+
variant?: ButtonVariant$1;
|
|
5114
|
+
size?: ButtonSize$1;
|
|
5115
|
+
tooltip?: string | ((row: T) => string);
|
|
5116
|
+
disabled?: boolean | ((row: T) => boolean);
|
|
5117
|
+
hidden?: boolean | ((row: T) => boolean);
|
|
5118
|
+
onClick?: (row: T, index: number, event: MouseEvent) => void;
|
|
5119
|
+
}
|
|
5120
|
+
interface TalosGridColDef<T = any> {
|
|
5121
|
+
field: string;
|
|
5122
|
+
header: string;
|
|
5123
|
+
width?: string;
|
|
5124
|
+
minWidth?: string;
|
|
5125
|
+
maxWidth?: string;
|
|
5126
|
+
sortable?: boolean;
|
|
5127
|
+
sortType?: TalosGridSortType;
|
|
5128
|
+
filterable?: boolean;
|
|
5129
|
+
filterMode?: TalosGridFilterMode;
|
|
5130
|
+
filterType?: string;
|
|
5131
|
+
type?: TalosGridColType;
|
|
5132
|
+
align?: 'left' | 'center' | 'right';
|
|
5133
|
+
formatter?: (value: any, row: T) => string;
|
|
5134
|
+
cellTemplate?: TemplateRef<any>;
|
|
5135
|
+
statusConfig?: TalosGridStatusConfig<T>;
|
|
5136
|
+
actionsConfig?: TalosGridActionDef<T>[];
|
|
5137
|
+
resizable?: boolean;
|
|
5138
|
+
}
|
|
5139
|
+
interface TalosGridPaginationState {
|
|
5140
|
+
pageIndex: number;
|
|
5141
|
+
pageSize: number;
|
|
5142
|
+
totalItems: number;
|
|
5143
|
+
}
|
|
5144
|
+
interface TalosGridActionClickEvent<T = any> {
|
|
5145
|
+
actionId: string;
|
|
5146
|
+
row: T;
|
|
5147
|
+
index: number;
|
|
5148
|
+
}
|
|
5149
|
+
interface TalosGridColumnResizeEvent<T = any> {
|
|
5150
|
+
column: TalosGridColDef<T>;
|
|
5151
|
+
width: number;
|
|
5152
|
+
}
|
|
5153
|
+
|
|
5154
|
+
declare class TalosGridStatusCellComponent {
|
|
5155
|
+
readonly row: _angular_core.InputSignal<any>;
|
|
5156
|
+
readonly column: _angular_core.InputSignal<TalosGridColDef<any>>;
|
|
5157
|
+
readonly rawValue: _angular_core.InputSignal<any>;
|
|
5158
|
+
protected readonly value: _angular_core.Signal<any>;
|
|
5159
|
+
protected readonly status: _angular_core.Signal<"success" | "error" | "waiting" | "NEW" | "PENDING" | "IN-PROGRESS" | "PAUSED" | "RETRYING" | "SKIPPED" | "SUCCESS" | "COMPLETED" | "ERROR" | "TERMINATED" | "EXPIRED" | "new" | "created" | "draft" | "CREATED" | "DRAFT" | "pending" | "queued" | "scheduled" | "QUEUED" | "SCHEDULED" | "WAITING" | "in-progress" | "in_progress" | "IN_PROGRESS" | "running" | "executing" | "RUNNING" | "EXECUTING" | "paused" | "suspended" | "on_hold" | "on-hold" | "waiting_for_approval" | "SUSPENDED" | "ON_HOLD" | "ON-HOLD" | "WAITING_FOR_APPROVAL" | "retrying" | "up_for_retry" | "up-for-retry" | "UP_FOR_RETRY" | "UP-FOR-RETRY" | "skipped" | "bypassed" | "ignored" | "BYPASSED" | "IGNORED" | "succeeded" | "passed" | "SUCCEEDED" | "PASSED" | "completed" | "finished" | "done" | "FINISHED" | "DONE" | "failed" | "failure" | "FAILED" | "FAILURE" | "terminated" | "cancelled" | "canceled" | "aborted" | "stopped" | "killed" | "CANCELLED" | "CANCELED" | "ABORTED" | "STOPPED" | "KILLED" | "expired" | "timeout" | "timed_out" | "timed-out" | "stale" | "TIMEOUT" | "TIMED_OUT" | "TIMED-OUT" | "STALE">;
|
|
5160
|
+
protected readonly label: _angular_core.Signal<string>;
|
|
5161
|
+
protected readonly variant: _angular_core.Signal<TalosStatusTagVariant$1>;
|
|
5162
|
+
protected readonly size: _angular_core.Signal<TalosStatusTagSize$1>;
|
|
5163
|
+
protected readonly shape: _angular_core.Signal<TalosStatusTagShape$1>;
|
|
5164
|
+
protected readonly showIcon: _angular_core.Signal<boolean>;
|
|
5165
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TalosGridStatusCellComponent, never>;
|
|
5166
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TalosGridStatusCellComponent, "talos-grid-status-cell", never, { "row": { "alias": "row"; "required": true; "isSignal": true; }; "column": { "alias": "column"; "required": true; "isSignal": true; }; "rawValue": { "alias": "rawValue"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5167
|
+
}
|
|
5168
|
+
|
|
5169
|
+
declare class TalosGridActionsCellComponent {
|
|
5170
|
+
readonly row: _angular_core.InputSignal<any>;
|
|
5171
|
+
readonly rowIndex: _angular_core.InputSignal<number>;
|
|
5172
|
+
readonly actions: _angular_core.InputSignal<TalosGridActionDef<any>[]>;
|
|
5173
|
+
readonly actionClick: _angular_core.OutputEmitterRef<TalosGridActionClickEvent<any>>;
|
|
5174
|
+
protected visibleActions(): TalosGridActionDef[];
|
|
5175
|
+
protected isActionDisabled(action: TalosGridActionDef): boolean;
|
|
5176
|
+
protected getActionTooltip(action: TalosGridActionDef): string;
|
|
5177
|
+
protected onActionClick(action: TalosGridActionDef, event: MouseEvent): void;
|
|
5178
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TalosGridActionsCellComponent, never>;
|
|
5179
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TalosGridActionsCellComponent, "talos-grid-actions-cell", never, { "row": { "alias": "row"; "required": true; "isSignal": true; }; "rowIndex": { "alias": "rowIndex"; "required": true; "isSignal": true; }; "actions": { "alias": "actions"; "required": false; "isSignal": true; }; }, { "actionClick": "actionClick"; }, never, never, true, never>;
|
|
5180
|
+
}
|
|
5181
|
+
|
|
5182
|
+
declare class TalosGridFilterDialogComponent implements OnInit {
|
|
5183
|
+
readonly column: _angular_core.InputSignal<TalosGridColDef<any>>;
|
|
5184
|
+
readonly distinctValues: _angular_core.InputSignal<string[]>;
|
|
5185
|
+
readonly currentFilter: _angular_core.InputSignal<TalosGridColumnFilter | undefined>;
|
|
5186
|
+
readonly align: _angular_core.InputSignal<"left" | "right">;
|
|
5187
|
+
readonly filterApplied: _angular_core.OutputEmitterRef<TalosGridColumnFilter>;
|
|
5188
|
+
readonly filterCleared: _angular_core.OutputEmitterRef<void>;
|
|
5189
|
+
readonly closed: _angular_core.OutputEmitterRef<void>;
|
|
5190
|
+
protected readonly searchIcon: Type<unknown>;
|
|
5191
|
+
protected readonly checkIcon: Type<unknown>;
|
|
5192
|
+
protected readonly chevronDownIcon: Type<unknown>;
|
|
5193
|
+
protected readonly xIcon: Type<unknown>;
|
|
5194
|
+
readonly filterMode: _angular_core.Signal<TalosGridFilterMode>;
|
|
5195
|
+
readonly searchTerm: _angular_core.WritableSignal<string>;
|
|
5196
|
+
readonly selectedSet: _angular_core.WritableSignal<Set<string>>;
|
|
5197
|
+
readonly selectedOperator: _angular_core.WritableSignal<TalosGridOperator>;
|
|
5198
|
+
readonly filterVal: _angular_core.WritableSignal<string>;
|
|
5199
|
+
readonly filterVal2: _angular_core.WritableSignal<string>;
|
|
5200
|
+
readonly operatorOptions: _angular_core.Signal<{
|
|
5201
|
+
value: string;
|
|
5202
|
+
label: string;
|
|
5203
|
+
}[]>;
|
|
5204
|
+
ngOnInit(): void;
|
|
5205
|
+
initFromCurrentFilter(): void;
|
|
5206
|
+
isDateField(): boolean;
|
|
5207
|
+
isNumberField(): boolean;
|
|
5208
|
+
onDateFilterValChange(val: unknown): void;
|
|
5209
|
+
onDateFilterVal2Change(val: unknown): void;
|
|
5210
|
+
readonly visibleDistinctValues: _angular_core.Signal<string[]>;
|
|
5211
|
+
isAllSelected(): boolean;
|
|
5212
|
+
isIndeterminate(): boolean;
|
|
5213
|
+
toggleSelectAll(event: Event): void;
|
|
5214
|
+
isValSelected(val: string): boolean;
|
|
5215
|
+
toggleVal(val: string, event: Event): void;
|
|
5216
|
+
onSearchEnter(): void;
|
|
5217
|
+
applyFilter(): void;
|
|
5218
|
+
applySetFilter(): void;
|
|
5219
|
+
applyConditionFilter(): void;
|
|
5220
|
+
clearFilter(): void;
|
|
5221
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TalosGridFilterDialogComponent, never>;
|
|
5222
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TalosGridFilterDialogComponent, "talos-grid-filter-dialog", never, { "column": { "alias": "column"; "required": true; "isSignal": true; }; "distinctValues": { "alias": "distinctValues"; "required": false; "isSignal": true; }; "currentFilter": { "alias": "currentFilter"; "required": false; "isSignal": true; }; "align": { "alias": "align"; "required": false; "isSignal": true; }; }, { "filterApplied": "filterApplied"; "filterCleared": "filterCleared"; "closed": "closed"; }, never, never, true, never>;
|
|
5223
|
+
}
|
|
5224
|
+
|
|
5225
|
+
declare class TalosGridCellFormatPipe implements PipeTransform {
|
|
5226
|
+
private readonly fieldPartsCache;
|
|
5227
|
+
transform<T = any>(row: T, col: TalosGridColDef<T>): string;
|
|
5228
|
+
private extractFieldValue;
|
|
5229
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TalosGridCellFormatPipe, never>;
|
|
5230
|
+
static ɵpipe: _angular_core.ɵɵPipeDeclaration<TalosGridCellFormatPipe, "talosGridCellFormat", true>;
|
|
5231
|
+
}
|
|
5232
|
+
|
|
5233
|
+
declare class TalosDataGridComponent<T = any> {
|
|
5234
|
+
readonly data: _angular_core.InputSignal<T[]>;
|
|
5235
|
+
readonly columns: _angular_core.InputSignal<TalosGridColDef<T>[]>;
|
|
5236
|
+
readonly density: _angular_core.InputSignal<TalosGridDensity>;
|
|
5237
|
+
readonly filterable: _angular_core.InputSignal<boolean>;
|
|
5238
|
+
readonly pagination: _angular_core.InputSignal<boolean>;
|
|
5239
|
+
readonly pageSize: _angular_core.InputSignal<number>;
|
|
5240
|
+
readonly pageSizeOptions: _angular_core.InputSignal<number[]>;
|
|
5241
|
+
readonly pageIndex: _angular_core.InputSignal<number>;
|
|
5242
|
+
readonly totalItems: _angular_core.InputSignal<number | null>;
|
|
5243
|
+
readonly trackBy: _angular_core.InputSignal<((index: number, item: T) => any) | null>;
|
|
5244
|
+
readonly striped: _angular_core.InputSignal<boolean>;
|
|
5245
|
+
readonly bordered: _angular_core.InputSignal<boolean>;
|
|
5246
|
+
readonly hoverable: _angular_core.InputSignal<boolean>;
|
|
5247
|
+
readonly emptyMessage: _angular_core.InputSignal<string>;
|
|
5248
|
+
readonly loading: _angular_core.InputSignal<boolean>;
|
|
5249
|
+
readonly clientSort: _angular_core.InputSignal<boolean>;
|
|
5250
|
+
readonly clientPagination: _angular_core.InputSignal<boolean>;
|
|
5251
|
+
readonly clientFilter: _angular_core.InputSignal<boolean>;
|
|
5252
|
+
readonly resizable: _angular_core.InputSignal<boolean>;
|
|
5253
|
+
readonly rowKey: _angular_core.InputSignal<string | keyof T | null>;
|
|
5254
|
+
readonly sortChange: _angular_core.OutputEmitterRef<TalosGridSortState>;
|
|
5255
|
+
readonly filterChange: _angular_core.OutputEmitterRef<TalosGridColumnFilter[]>;
|
|
5256
|
+
readonly pageChange: _angular_core.OutputEmitterRef<TalosGridPaginationState>;
|
|
5257
|
+
readonly rowClick: _angular_core.OutputEmitterRef<{
|
|
5258
|
+
row: T;
|
|
5259
|
+
index: number;
|
|
5260
|
+
}>;
|
|
5261
|
+
readonly actionClick: _angular_core.OutputEmitterRef<TalosGridActionClickEvent<T>>;
|
|
5262
|
+
readonly columnResize: _angular_core.OutputEmitterRef<TalosGridColumnResizeEvent<T>>;
|
|
5263
|
+
protected readonly arrowUpIcon: Type<unknown>;
|
|
5264
|
+
protected readonly arrowDownIcon: Type<unknown>;
|
|
5265
|
+
protected readonly arrowUpDownIcon: Type<unknown>;
|
|
5266
|
+
protected readonly chevronLeftIcon: Type<unknown>;
|
|
5267
|
+
protected readonly chevronRightIcon: Type<unknown>;
|
|
5268
|
+
protected readonly chevronsLeftIcon: Type<unknown>;
|
|
5269
|
+
protected readonly chevronsRightIcon: Type<unknown>;
|
|
5270
|
+
protected readonly xIcon: Type<unknown>;
|
|
5271
|
+
protected readonly inboxIcon: Type<unknown>;
|
|
5272
|
+
protected readonly loaderIcon: Type<unknown>;
|
|
5273
|
+
protected readonly filterIcon: Type<unknown>;
|
|
5274
|
+
readonly internalSortState: _angular_core.WritableSignal<TalosGridSortState>;
|
|
5275
|
+
readonly internalFilterStates: _angular_core.WritableSignal<Map<string, TalosGridColumnFilter>>;
|
|
5276
|
+
readonly internalPageIndex: _angular_core.WritableSignal<number>;
|
|
5277
|
+
readonly internalPageSize: _angular_core.WritableSignal<number>;
|
|
5278
|
+
readonly activeFilterCol: _angular_core.WritableSignal<string | null>;
|
|
5279
|
+
readonly columnWidths: _angular_core.WritableSignal<Record<string, number>>;
|
|
5280
|
+
readonly resizingColumn: _angular_core.WritableSignal<string | null>;
|
|
5281
|
+
readonly isResizing: _angular_core.Signal<boolean>;
|
|
5282
|
+
readonly hasResizableColumns: _angular_core.Signal<boolean>;
|
|
5283
|
+
readonly overlayPositions: ConnectedPosition[];
|
|
5284
|
+
constructor();
|
|
5285
|
+
protected readonly activeFiltersList: _angular_core.Signal<TalosGridColumnFilter[]>;
|
|
5286
|
+
protected readonly hasActiveFilters: _angular_core.Signal<boolean>;
|
|
5287
|
+
readonly activeColumnDistinctValues: _angular_core.Signal<string[]>;
|
|
5288
|
+
readonly filteredData: _angular_core.Signal<T[]>;
|
|
5289
|
+
readonly sortedData: _angular_core.Signal<T[]>;
|
|
5290
|
+
readonly pagedData: _angular_core.Signal<T[]>;
|
|
5291
|
+
readonly totalCount: _angular_core.Signal<number>;
|
|
5292
|
+
readonly totalPages: _angular_core.Signal<number>;
|
|
5293
|
+
readonly startRecord: _angular_core.Signal<number>;
|
|
5294
|
+
readonly endRecord: _angular_core.Signal<number>;
|
|
5295
|
+
get hasRowClickListeners(): boolean;
|
|
5296
|
+
trackByRow(index: number, row: T): any;
|
|
5297
|
+
isSortable(col: TalosGridColDef<T>): boolean;
|
|
5298
|
+
isSorted(col: TalosGridColDef<T>): boolean;
|
|
5299
|
+
getSortDirection(col: TalosGridColDef<T>): TalosGridSortDirection;
|
|
5300
|
+
getAriaSort(col: TalosGridColDef<T>): 'ascending' | 'descending' | 'none' | null;
|
|
5301
|
+
onHeaderClick(col: TalosGridColDef<T>): void;
|
|
5302
|
+
isResizable(col: TalosGridColDef<T>): boolean;
|
|
5303
|
+
isColumnResizing(field: string): boolean;
|
|
5304
|
+
getColumnWidth(col: TalosGridColDef<T>): string | undefined;
|
|
5305
|
+
setColumnWidth(field: string, width: number): void;
|
|
5306
|
+
resetColumnWidths(): void;
|
|
5307
|
+
onResizeStart(col: TalosGridColDef<T>, event: MouseEvent | TouchEvent, thEl: HTMLElement): void;
|
|
5308
|
+
onResizeDoubleClick(col: TalosGridColDef<T>, event: MouseEvent): void;
|
|
5309
|
+
onResizeKeydown(col: TalosGridColDef<T>, event: KeyboardEvent, thEl: HTMLElement): void;
|
|
5310
|
+
isFilterable(col: TalosGridColDef<T>): boolean;
|
|
5311
|
+
isFilterDialogOpen(field: string): boolean;
|
|
5312
|
+
toggleFilterDialog(field: string, event: MouseEvent): void;
|
|
5313
|
+
closeFilterDialog(): void;
|
|
5314
|
+
onOverlayOutsideClick(event: MouseEvent, field: string): void;
|
|
5315
|
+
getDistinctValues(col: TalosGridColDef<T>): string[];
|
|
5316
|
+
getFilter(field: string): TalosGridColumnFilter | undefined;
|
|
5317
|
+
hasFilter(field: string): boolean;
|
|
5318
|
+
onFilterApplied(filter: TalosGridColumnFilter): void;
|
|
5319
|
+
onFilterCleared(field: string): void;
|
|
5320
|
+
clearAllFilters(): void;
|
|
5321
|
+
private matchesFilter;
|
|
5322
|
+
private normalizeDateToYMD;
|
|
5323
|
+
setPage(pageIndex: number): void;
|
|
5324
|
+
onPageSizeChange(event: Event): void;
|
|
5325
|
+
getCellValue(row: T, col: TalosGridColDef<T>): any;
|
|
5326
|
+
formatCellValue(row: T, col: TalosGridColDef<T>): string;
|
|
5327
|
+
onRowClick(row: T, index: number): void;
|
|
5328
|
+
private readonly fieldPartsCache;
|
|
5329
|
+
private extractFieldValue;
|
|
5330
|
+
private inferSortType;
|
|
5331
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TalosDataGridComponent<any>, never>;
|
|
5332
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TalosDataGridComponent<any>, "talos-data-grid", never, { "data": { "alias": "data"; "required": true; "isSignal": true; }; "columns": { "alias": "columns"; "required": true; "isSignal": true; }; "density": { "alias": "density"; "required": false; "isSignal": true; }; "filterable": { "alias": "filterable"; "required": false; "isSignal": true; }; "pagination": { "alias": "pagination"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; "isSignal": true; }; "pageIndex": { "alias": "pageIndex"; "required": false; "isSignal": true; }; "totalItems": { "alias": "totalItems"; "required": false; "isSignal": true; }; "trackBy": { "alias": "trackBy"; "required": false; "isSignal": true; }; "striped": { "alias": "striped"; "required": false; "isSignal": true; }; "bordered": { "alias": "bordered"; "required": false; "isSignal": true; }; "hoverable": { "alias": "hoverable"; "required": false; "isSignal": true; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "clientSort": { "alias": "clientSort"; "required": false; "isSignal": true; }; "clientPagination": { "alias": "clientPagination"; "required": false; "isSignal": true; }; "clientFilter": { "alias": "clientFilter"; "required": false; "isSignal": true; }; "resizable": { "alias": "resizable"; "required": false; "isSignal": true; }; "rowKey": { "alias": "rowKey"; "required": false; "isSignal": true; }; }, { "sortChange": "sortChange"; "filterChange": "filterChange"; "pageChange": "pageChange"; "rowClick": "rowClick"; "actionClick": "actionClick"; "columnResize": "columnResize"; }, never, never, true, never>;
|
|
5333
|
+
}
|
|
5334
|
+
|
|
5335
|
+
declare class TalosDataGridModule {
|
|
5336
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TalosDataGridModule, never>;
|
|
5337
|
+
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<TalosDataGridModule, never, [typeof TalosDataGridComponent, typeof TalosGridStatusCellComponent, typeof TalosGridActionsCellComponent, typeof TalosGridFilterDialogComponent, typeof TalosGridCellFormatPipe], [typeof TalosDataGridComponent, typeof TalosGridStatusCellComponent, typeof TalosGridActionsCellComponent, typeof TalosGridFilterDialogComponent, typeof TalosGridCellFormatPipe]>;
|
|
5338
|
+
static ɵinj: _angular_core.ɵɵInjectorDeclaration<TalosDataGridModule>;
|
|
5339
|
+
}
|
|
5340
|
+
|
|
5341
|
+
export { CascadeSelectComponent, DEFAULT_COLOR_PRESETS, DEFAULT_PASSWORD_RULES, DEFAULT_STRENGTH_LABELS, DatePickerComponent, DateRangePickerComponent, DateTimePickerComponent, DateTimeRangePickerComponent, GOLDEN_RATIO, LayoutService, MainLayoutComponent, OptionComponent, OptionGroupComponent, SelectInputComponent, SelectInputModule, SideNavComponent, SidePanelComponent, TALOS_DIALOG_CONFIG, TALOS_DIALOG_DATA, TALOS_DIALOG_REF, TALOS_STATUS_DESCRIPTORS, TalosAffixButtonDirective, TalosAffixModule, TalosAlertActionsDirective, TalosAlertComponent, TalosAlertContainerComponent, TalosAlertDescriptionDirective, TalosAlertIconDirective, TalosAlertModule, TalosAlertService, TalosAlertTitleDirective, TalosAutocompleteComponent, TalosAutocompleteModule, TalosBadgeDirective, TalosBadgeModule, TalosButtonDirective, TalosButtonGroupComponent, TalosButtonGroupItemDirective, TalosButtonGroupModule, TalosCardActionsDirective, TalosCardAvatarDirective, TalosCardBodyComponent, TalosCardComponent, TalosCardFooterComponent, TalosCardHeaderComponent, TalosCardMediaDirective, TalosCardModule, TalosCardSubtitleDirective, TalosCardTitleDirective, TalosCategoryBarComponent, TalosCategoryBarModule, TalosCheckboxComponent, TalosCheckboxDirective, TalosCheckboxGroupComponent, TalosCheckboxGroupDirective, TalosCheckboxModule, TalosCheckboxParentDirective, TalosChipComponent, TalosChipsComponent, TalosChipsModule, TalosColorPickerComponent, TalosColorPickerModule, TalosConfirmDialogComponent, TalosDataGridComponent, TalosDataGridModule, TalosDialogCloseDirective, TalosDialogContentComponent, TalosDialogDescriptionDirective, TalosDialogFooterComponent, TalosDialogHeaderComponent, TalosDialogModule, TalosDialogRef, TalosDialogService, TalosDialogTitleDirective, TalosDropZoneComponent, TalosDropZoneModule, TalosExpansionPanelActionsDirective, TalosExpansionPanelBodyComponent, TalosExpansionPanelComponent, TalosExpansionPanelContentDirective, TalosExpansionPanelDescriptionDirective, TalosExpansionPanelGroupComponent, TalosExpansionPanelHeaderComponent, TalosExpansionPanelIconDirective, TalosExpansionPanelModule, TalosExpansionPanelTitleDirective, TalosExpansionPanelToggleDirective, TalosFileDropDirective, TalosFormFieldComponent, TalosFormFieldModule, TalosGridActionsCellComponent, TalosGridCellFormatPipe, TalosGridFilterDialogComponent, TalosGridStatusCellComponent, TalosHeatmapComponent, TalosHeatmapModule, TalosInputDirective, TalosMiniDonutComponent, TalosMiniDonutModule, TalosMiniGaugeComponent, TalosMiniGaugeModule, TalosNavGroupComponent, TalosNavItemComponent, TalosNavModule, TalosNavThemeToggleComponent, TalosOtpComponent, TalosOtpModule, TalosPasswordInputComponent, TalosPasswordInputDirective, TalosPasswordInputModule, TalosPrefixDirective, TalosRadioComponent, TalosRadioDirective, TalosRadioGroupComponent, TalosRadioModule, TalosRangeInputComponent, TalosRangeInputDirective, TalosRangeInputModule, TalosRatingComponent, TalosRatingModule, TalosSideNavModule, TalosSlideToggleComponent, TalosSlideToggleDirective, TalosSlideToggleModule, TalosSnackbarComponent, TalosSnackbarContainerComponent, TalosSnackbarModule, TalosSnackbarService, TalosSparklineComponent, TalosSparklineModule, TalosStatusTagComponent, TalosStatusTagModule, TalosSuffixDirective, TalosTextPrefixDirective, TalosTextSuffixDirective, TalosThemeMorphIconComponent, TalosTimelineComponent, TalosTimelineContentDirective, TalosTimelineDotDirective, TalosTimelineExtraDirective, TalosTimelineItemComponent, TalosTimelineModule, TalosTimelineTimeDirective, TalosTimelineTitleDirective, TalosTooltipComponent, TalosTooltipDirective, TalosTopNavModule, TalosTransferListComponent, TalosTransferListModule, TalosTrendIndicatorComponent, TalosTrendIndicatorModule, TopNavComponent, clamp, formatBadgeContent, formatColor, formatDate, getContrastRatio, getLuminance, hexToRgb, hslToHsv, hslToRgb, hsvToHsl, hsvToRgb, isLightColor, isValidColor, normalizeDateFnsToken, normalizeWorkflowStatus, parseColor, parseFlexibleDate, rgbToHex, rgbToHsl, rgbToHsv, round };
|
|
5342
|
+
export type { AffixAnimation, AffixFeedbackState, AffixPosition, AutocompleteDisplayFn, AutocompleteFilterFn, AutocompleteHighlightPart, AutocompleteItemContext, AutocompleteSize, AutocompleteValueFn, ButtonAnimation, ButtonFeedbackState, ButtonGroupOrientation, ButtonGroupSelectionMode, ButtonGroupVariant, ButtonSize, ButtonVariant, CalendarDay, CalendarMonth, CalendarYear, CascadeExpandTrigger, CascadeOption, CascadeSearchMatch, CascadeValueMode, CategoryBarClickEvent, CategoryBarColorScheme, CategoryBarComputedSegment, CategoryBarLabelPosition, CategoryBarMarker, CategoryBarMarkerClickEvent, CategoryBarScaleLabel, CategoryBarSegment, CategoryBarSegmentClickEvent, CategoryBarShape, CategoryBarSize, CheckboxDirection, CheckboxSize, CheckboxVariant, ChipColor, ChipDisplayFn, ChipFilterFn, ChipHighlightPart, ChipItemContext, ChipSize, ChipValueFn, ChipVariant, ColorChangeEvent, ColorFormat, ColorPickerSize, ColorPresetGroup, ColorPresetItem, ColumnData, ComputedDonutSegment, DateRangePreset, DateRangeValue, DropZoneChangeEvent, DropZoneFile, DropZoneFileStatus, DropZoneRejection, DropZoneSize, DropZoneValidatorFn, DropZoneVariant, FileRejectionReason, FormattedAutocompleteOption, FormattedChipOption, GaugeMarker, GaugeSize, GaugeThreshold, HeatmapCell, HeatmapCellClickEvent, HeatmapCellShape, HeatmapCellSize, HeatmapColorScheme, HeatmapDataInput, HeatmapDataPoint, HeatmapExportFormat, HeatmapInterval, HeatmapMatrixData, HeatmapMetric, HeatmapTimeFormat, HeatmapTimeRange, HeatmapTimestampData, HslaColor, HsvaColor, InputSize, InternalDateRange, MiniDonutColorScheme, MiniDonutLineCap, MiniDonutSegment, MiniDonutSize, MiniGaugeIndicator, MiniGaugeType, OtpCompletedEvent, OtpInputType, OtpSize, OtpSplitConfig, OtpVariant, PasswordInputSize, PasswordMeterVariant, PasswordRule, PasswordRuleStatus, PasswordStrengthLevel, PasswordStrengthResult, RadioDirection, RadioSize, RadioVariant, RangeCalendarDay, RangeInputChangeEvent, RangeInputMark, RangeInputSize, RangeInputTick, RangeInputTooltipMode, RangeInputValue, RangeInputVariant, RatingAnimationMode, RatingChangeEvent, RatingHoverEvent, RatingLabelPosition, RatingSize, RatingVariant, RgbaColor, RightPanelOptions, SelectedChipData, SideNavGroup, SideNavItem, SideNavUserProfile, SlideToggleLabelPosition, SlideToggleSize, SlideToggleVariant, SparklineAspectRatio, SparklineColorScheme, SparklineHoverEvent, SparklineInputData, SparklineMarkerMode, SparklinePoint, SparklineSize, SparklineType, TalosAlertAppearance, TalosAlertConfig, TalosAlertDialogOptions, TalosAlertInstance, TalosAlertRef, TalosAlertSeverity, TalosAlertSize, TalosAlertVariant, TalosBadgePosition, TalosBadgeShape, TalosBadgeSize, TalosBadgeVariant, TalosCanonicalWorkflowStatus, TalosCardFooterAlign, TalosCardPadding, TalosCardVariant, TalosConfirmDialogOptions, TalosDialogBlur, TalosDialogConfig, TalosDialogFooterAlign, TalosDialogPadding, TalosDialogSize, TalosDialogVariant, TalosExpansionPanelPadding, TalosExpansionPanelSize, TalosExpansionPanelTogglePosition, TalosExpansionPanelVariant, TalosGridActionClickEvent, TalosGridActionDef, TalosGridColDef, TalosGridColType, TalosGridColumnFilter, TalosGridColumnResizeEvent, TalosGridDensity, TalosGridFilterMode, TalosGridOperator, TalosGridPaginationState, TalosGridSortDirection, TalosGridSortState, TalosGridSortType, TalosGridStatusConfig, TalosSnackbarConfig, TalosSnackbarInstance, TalosSnackbarPosition, TalosSnackbarRef, TalosSnackbarVariant, TalosStatusDescriptor, TalosStatusTagShape, TalosStatusTagSize, TalosStatusTagVariant, TalosThemeMode, TalosThemeMorphMode, TalosTimelineActor, TalosTimelineAlign, TalosTimelineDiff, TalosTimelineDotSize, TalosTimelineDotVariant, TalosTimelineItem, TalosTimelineItemStatus, TalosTimelineLineStyle, TalosTimelineMode, TalosTimelineOrientation, TalosTransferEvent, TalosTransferItem, TalosTransferListItemContext, TalosTransferSelectionChange, TalosWorkflowStatus, TooltipPosition, TopNavAction, TopNavBadgeVariant, TopNavItem, TopNavSize, TopNavUserProfile, TransferListDirection, TransferListDragMode, TransferListFilterFn, TransferListItemDescriptionFn, TransferListItemDisabledFn, TransferListItemKeyFn, TransferListItemLabelFn, TransferListPane, TransferListSearchErrorEvent, TransferListSearchHandler, TransferListSearchMode, TransferListSearchQueryEvent, TransferListSize, TransferListVariant, TrendCalculationResult, TrendDirection, TrendFormat, TrendIconType, TrendLayout, TrendPolarity, TrendSize, TrendStatus, TrendVariant };
|
|
5050
5343
|
//# sourceMappingURL=weeehaoooz-talos-ui.d.ts.map
|