@rt-tools/ui-kit 0.0.28 → 0.0.29
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/README.md
CHANGED
|
@@ -1,178 +1,99 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
1
|
+
# Set of utility types and functions for TypeScript
|
|
2
|
+
Package uses Angular Signals (Angular 16+).
|
|
3
|
+
|
|
4
|
+
## Interfaces & Types
|
|
5
|
+
|
|
6
|
+
* ```typescript
|
|
7
|
+
IDictionary
|
|
8
|
+
```
|
|
9
|
+
* ```typescript
|
|
10
|
+
IntersectionType
|
|
11
|
+
```
|
|
12
|
+
* ```typescript
|
|
13
|
+
Modify
|
|
14
|
+
```
|
|
15
|
+
* ```typescript
|
|
16
|
+
IMapper
|
|
17
|
+
```
|
|
18
|
+
* ```typescript
|
|
19
|
+
Nullable
|
|
20
|
+
```
|
|
21
|
+
* ```typescript
|
|
22
|
+
PartialOmit
|
|
23
|
+
```
|
|
24
|
+
* ```typescript
|
|
25
|
+
Primitive
|
|
26
|
+
```
|
|
27
|
+
* Makes selected props from a record optional
|
|
28
28
|
```typescript
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
bootstrapApplication(AppComponent, {
|
|
33
|
-
providers: [
|
|
34
|
-
provideRtUi({
|
|
35
|
-
global: { theme: 'auto', design: 'custom' },
|
|
36
|
-
components: { button: { size: 'md', appearance: 'solid' } },
|
|
37
|
-
}),
|
|
38
|
-
],
|
|
39
|
-
});
|
|
40
|
-
```
|
|
41
|
-
|
|
42
|
-
Import the design-token stylesheet so components and your own styles share the same `--rt-*` variables:
|
|
43
|
-
|
|
44
|
-
```scss
|
|
45
|
-
@use '@rt-tools/ui-kit/styles/tokens.css';
|
|
46
|
-
```
|
|
47
|
-
|
|
48
|
-
## Usage
|
|
49
|
-
|
|
50
|
-
Components are standalone — import only what you use:
|
|
51
|
-
|
|
29
|
+
Optional
|
|
30
|
+
```
|
|
31
|
+
* Get the union type of all the values in an object, array or array-like type
|
|
52
32
|
```typescript
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
@Component({
|
|
57
|
-
selector: 'app-demo',
|
|
58
|
-
imports: [RtuiButtonComponent],
|
|
59
|
-
template: `
|
|
60
|
-
<rtui-button type="pill" variant="primary" text="Save" icon="check" (click)="save()" />
|
|
61
|
-
`,
|
|
62
|
-
})
|
|
63
|
-
export class DemoComponent {
|
|
64
|
-
save(): void {
|
|
65
|
-
/* ... */
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
```
|
|
69
|
-
|
|
70
|
-
## Components
|
|
71
|
-
|
|
72
|
-
All components use the `rtui-` prefix.
|
|
73
|
-
|
|
74
|
-
| Group | Components |
|
|
75
|
-
| --- | --- |
|
|
76
|
-
| **Actions & forms** | `rtui-button`, `rtui-multi-button`, `rtui-icon`, `rtui-checkbox`, `rtui-toggle`, `rtui-file-upload`, `rtui-image-upload` |
|
|
77
|
-
| **Overlays & feedback** | `rtui-modal`, `rtui-aside`, `rtui-popover`, `rtui-snack-bar`, `rtui-spinner`, `rtui-info-badge` |
|
|
78
|
-
| **Data display** | `rtui-table`, `rtui-dynamic-list`, `rtui-dynamic-selector`, `rtui-dynamic-input`, `rtui-pagination` |
|
|
79
|
-
| **Layout & navigation** | `rtui-header`, `rtui-toolbar`, `rtui-side-menu`, `rtui-scrollable`, `rtui-action-bar` |
|
|
80
|
-
|
|
81
|
-
### `rtui-button`
|
|
33
|
+
ValuesType
|
|
34
|
+
```
|
|
82
35
|
|
|
83
|
-
The button is fully configurable through inputs (all with sensible defaults):
|
|
84
36
|
|
|
85
|
-
|
|
86
|
-
| --- | --- | --- |
|
|
87
|
-
| `type` | `'icon' \| 'fab' \| 'pill'` | `'icon'` |
|
|
88
|
-
| `variant` | `'default' \| 'primary' \| 'danger' \| 'success' \| 'warning' \| 'accent'` | `'default'` |
|
|
89
|
-
| `appearance` | `'solid' \| 'outline' \| 'light' \| 'text'` | config / `'solid'` |
|
|
90
|
-
| `size` | `'xs' \| 'sm' \| 'md' \| 'lg'` | config / `'md'` |
|
|
91
|
-
| `radius` | `'none' \| 'sm' \| 'md' \| 'lg' \| 'full'` | config / `'full'` |
|
|
92
|
-
| `design` | `'custom' \| 'material'` | config / `'custom'` |
|
|
93
|
-
| `icon` / `iconPosition` | `string` / `'start' \| 'end'` | `''` / `'start'` |
|
|
94
|
-
| `text` | `string` | `''` |
|
|
95
|
-
| `loading` / `disabled` | `boolean` | `false` |
|
|
37
|
+
## Functions
|
|
96
38
|
|
|
97
|
-
```html
|
|
98
|
-
<rtui-button type="pill" variant="primary" appearance="outline" text="Confirm" icon="check" />
|
|
99
|
-
<rtui-button type="icon" icon="delete" variant="danger" />
|
|
100
|
-
<rtui-button type="pill" text="Loading" [loading]="true" />
|
|
101
|
-
```
|
|
102
|
-
|
|
103
|
-
## Theming
|
|
104
|
-
|
|
105
|
-
`RtThemeService` controls the active mode and brand palette from anywhere:
|
|
106
39
|
|
|
40
|
+
* ```typescript
|
|
41
|
+
isDateValid(date?: Date): boolean;
|
|
42
|
+
```
|
|
43
|
+
* ```typescript
|
|
44
|
+
dateStringToDate(date: string | Date): Date;
|
|
45
|
+
```
|
|
46
|
+
* Indicates if the arguments are equal
|
|
107
47
|
```typescript
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
```
|
|
146
|
-
<
|
|
147
|
-
```
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
```
|
|
161
|
-
|
|
162
|
-
2. Set the default font set in your root component:
|
|
163
|
-
|
|
164
|
-
```typescript
|
|
165
|
-
import { inject } from '@angular/core';
|
|
166
|
-
import { MatIconRegistry } from '@angular/material/icon';
|
|
167
|
-
|
|
168
|
-
inject(MatIconRegistry).setDefaultFontSetClass('material-symbols-outlined');
|
|
169
|
-
```
|
|
170
|
-
|
|
171
|
-
## Documentation
|
|
172
|
-
|
|
173
|
-
Full API references and live examples are available in **Storybook** (`pnpm run storybook` in the
|
|
174
|
-
[repository](https://github.com/Eyhenij/rt-tools)).
|
|
175
|
-
|
|
176
|
-
## License
|
|
177
|
-
|
|
178
|
-
[Apache-2.0](https://github.com/Eyhenij/rt-tools/blob/main/LICENSE) © Yauheni Krumin
|
|
48
|
+
isEqual<T>(f: T, s: T): boolean;
|
|
49
|
+
```
|
|
50
|
+
* Indicates if the content of two arrays is identical
|
|
51
|
+
```typescript
|
|
52
|
+
areArraysEqual<T>(f: T[], s: T[]): boolean;
|
|
53
|
+
```
|
|
54
|
+
* Indicates if the content of two arrays is identical
|
|
55
|
+
```typescript
|
|
56
|
+
areObjectsEqual<T>(f: T, s: T): boolean;
|
|
57
|
+
```
|
|
58
|
+
* ```typescript
|
|
59
|
+
isNumber<T>(value: T | number | unknown | undefined): value is number;
|
|
60
|
+
```
|
|
61
|
+
* ```typescript
|
|
62
|
+
initToday(): Date;
|
|
63
|
+
```
|
|
64
|
+
* ```typescript
|
|
65
|
+
isToday(date: Date): boolean;
|
|
66
|
+
```
|
|
67
|
+
* Make shallow copy of passed object
|
|
68
|
+
```typescript
|
|
69
|
+
removeFieldFromObject<T extends object, K extends string>(obj: T, key: K): Omit<T, K>;
|
|
70
|
+
```
|
|
71
|
+
* Allow to compare two values by provided comparator
|
|
72
|
+
```typescript
|
|
73
|
+
safeCompare<T>(a: T, b: T, comparator: ComparatorType<T>): number;
|
|
74
|
+
```
|
|
75
|
+
* Allow to safely compare two string values
|
|
76
|
+
```typescript
|
|
77
|
+
safeStrCompare(a: string, b: string): number;
|
|
78
|
+
```
|
|
79
|
+
* Allow to safely compare two number values
|
|
80
|
+
```typescript
|
|
81
|
+
safeNumCompare(a: number, b: number): number;
|
|
82
|
+
```
|
|
83
|
+
* Allow composing comparison chain of several comparators
|
|
84
|
+
that delegate comparison by the chain to the next comparators if current comparator returns 0
|
|
85
|
+
```typescript
|
|
86
|
+
safeComparatorPipe(...comparators: Array<() => number>): number;
|
|
87
|
+
```
|
|
88
|
+
* ```typescript
|
|
89
|
+
sortByAlphabet: <T extends object>(a: T, b: T, field: keyof T) => number;
|
|
90
|
+
```
|
|
91
|
+
* ```typescript
|
|
92
|
+
sortByDate: (a: { [field: string]: any }, b: { [field: string]: any }, field: string) => number
|
|
93
|
+
```
|
|
94
|
+
* ```typescript
|
|
95
|
+
stringifyHttpLikeParams<T extends {}>(params: T): { [param: string]: string | string[] }
|
|
96
|
+
```
|
|
97
|
+
* ```typescript
|
|
98
|
+
transformArrayInput<T>(array: unknown): T[]
|
|
99
|
+
```
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { NgStyle, NgClass, NgComponentOutlet, NgTemplateOutlet, AsyncPipe, DOCUMENT, TitleCasePipe } from '@angular/common';
|
|
2
2
|
import * as i0 from '@angular/core';
|
|
3
|
-
import { inject, HostBinding, ChangeDetectionStrategy, Component, Injectable, Directive, contentChild, TemplateRef, input, booleanAttribute, output, viewChild, signal, computed, numberAttribute, InjectionToken, Injector, ViewEncapsulation, model, DestroyRef,
|
|
3
|
+
import { inject, HostBinding, ChangeDetectionStrategy, Component, Injectable, Directive, contentChild, TemplateRef, input, booleanAttribute, effect, output, viewChild, signal, computed, numberAttribute, InjectionToken, Injector, ViewEncapsulation, model, DestroyRef, HostListener, ElementRef, forwardRef, ChangeDetectorRef, untracked, ViewContainerRef, afterNextRender } from '@angular/core';
|
|
4
4
|
import * as i1 from '@angular/forms';
|
|
5
5
|
import { FormControl, Validators, ReactiveFormsModule, FormBuilder, FormsModule, NG_VALUE_ACCESSOR, NG_VALIDATORS } from '@angular/forms';
|
|
6
6
|
import * as i5 from '@angular/material/button';
|
|
@@ -13,7 +13,7 @@ import { MatInputModule, MatInput, MatFormField as MatFormField$1, MatLabel } fr
|
|
|
13
13
|
import * as i4 from '@angular/material/select';
|
|
14
14
|
import { MatSelectModule, MatSelect } from '@angular/material/select';
|
|
15
15
|
import { BlockDirective, ElemDirective, ModDirective, WINDOW, IDBStorageService, PlatformService, LOCAL_STORAGE } from '@rt-tools/core';
|
|
16
|
-
import { checkIsMatchingValues, SanitizePipe, RtIconOutlinedDirective,
|
|
16
|
+
import { checkIsMatchingValues, SanitizePipe, RtIconOutlinedDirective, transformArrayInput, RtScrollToElementDirective, RtNavigationDirective, transformStringInput, isString, isNumber, areArraysEqual, EmptyToDashPipe, LIST_SORT_ORDER_ENUM, FILTER_OPERATOR_TYPE_ENUM, FILTER_OPERATORS, isDate, BreakpointService, DeviceDetectorService, OSTypes, RtScrollDirective, BreakStringPipe, EntityToStringPipe, OVERLAY_POSITIONS, areArraysEqualUnordered, checkIsEntityInArrayByKey, sortByAlphabet, RtEscapeKeyDirective, POSITION_ENUM } from '@rt-tools/utils';
|
|
17
17
|
import { ReplaySubject, share, Subject, merge, of, noop } from 'rxjs';
|
|
18
18
|
import { filter, map, delay, take, tap, switchMap, debounceTime, distinctUntilChanged } from 'rxjs/operators';
|
|
19
19
|
import { MatListItem, MatNavList, MatListItemIcon, MatListItemTitle } from '@angular/material/list';
|
|
@@ -208,6 +208,57 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImpor
|
|
|
208
208
|
read: TemplateRef,
|
|
209
209
|
}, isSignal: true }] }] } });
|
|
210
210
|
|
|
211
|
+
class RtHideTooltipDirective {
|
|
212
|
+
#matTooltip;
|
|
213
|
+
/** Set tooltip state by 'isTooltipShown' */
|
|
214
|
+
constructor() {
|
|
215
|
+
this.#matTooltip = inject(MatTooltip);
|
|
216
|
+
/** Current HTMLElement */
|
|
217
|
+
this.element = input.required({ ...(ngDevMode ? { debugName: "element" } : /* istanbul ignore next */ {}), alias: 'rtHideTooltipDirective' });
|
|
218
|
+
/** Indicates is tooltip shown */
|
|
219
|
+
this.isTooltipShown = input.required({ ...(ngDevMode ? { debugName: "isTooltipShown" } : /* istanbul ignore next */ {}), transform: booleanAttribute });
|
|
220
|
+
effect(() => {
|
|
221
|
+
if (this.isTooltipShown()) {
|
|
222
|
+
this.#setTooltipState();
|
|
223
|
+
}
|
|
224
|
+
else {
|
|
225
|
+
this.#matTooltip.disabled = true;
|
|
226
|
+
}
|
|
227
|
+
});
|
|
228
|
+
}
|
|
229
|
+
ngAfterViewInit() {
|
|
230
|
+
const element = this.element();
|
|
231
|
+
/** Set tooltip state when HTMLElement changed */
|
|
232
|
+
if (element) {
|
|
233
|
+
const observer = new MutationObserver(() => {
|
|
234
|
+
if (this.isTooltipShown()) {
|
|
235
|
+
this.#setTooltipState();
|
|
236
|
+
}
|
|
237
|
+
});
|
|
238
|
+
observer.observe(element, {
|
|
239
|
+
childList: true,
|
|
240
|
+
characterData: true,
|
|
241
|
+
subtree: true,
|
|
242
|
+
});
|
|
243
|
+
if (this.isTooltipShown()) {
|
|
244
|
+
this.#setTooltipState();
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
/** Set tooltip state by container and content width */
|
|
249
|
+
#setTooltipState() {
|
|
250
|
+
this.#matTooltip.disabled = this.element()?.offsetWidth === this.element()?.scrollWidth;
|
|
251
|
+
}
|
|
252
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RtHideTooltipDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
253
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.5", type: RtHideTooltipDirective, isStandalone: true, selector: "[rtHideTooltipDirective]", inputs: { element: { classPropertyName: "element", publicName: "rtHideTooltipDirective", isSignal: true, isRequired: true, transformFunction: null }, isTooltipShown: { classPropertyName: "isTooltipShown", publicName: "isTooltipShown", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0 }); }
|
|
254
|
+
}
|
|
255
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RtHideTooltipDirective, decorators: [{
|
|
256
|
+
type: Directive,
|
|
257
|
+
args: [{
|
|
258
|
+
selector: '[rtHideTooltipDirective]',
|
|
259
|
+
}]
|
|
260
|
+
}], ctorParameters: () => [], propDecorators: { element: [{ type: i0.Input, args: [{ isSignal: true, alias: "rtHideTooltipDirective", required: true }] }], isTooltipShown: [{ type: i0.Input, args: [{ isSignal: true, alias: "isTooltipShown", required: true }] }] } });
|
|
261
|
+
|
|
211
262
|
class RtuiSideMenuSubItemComponent {
|
|
212
263
|
constructor() {
|
|
213
264
|
this.menuRef = inject(RtuiSideMenuComponent);
|
|
@@ -5138,5 +5189,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImpor
|
|
|
5138
5189
|
* Generated bundle index. Do not edit.
|
|
5139
5190
|
*/
|
|
5140
5191
|
|
|
5141
|
-
export { ASIDE_BUTTONS_ENUM, ASIDE_REF, AsideRef, DEFAULT_PAGE_MODEL, DEFAULT_PAGE_SIZE, INFO_BADGE_SIZE_ENUM, INFO_BADGE_TYPE_ENUM, MODAL_WINDOW_SIZE_ENUM, RTUI_TABLE_COMPONENT_TOKEN, RTUI_TABLE_STOP_ROW_CLICK_ATTRIBUTE, RT_ACCENT_ROLE_ENUM, RT_COLOR_SCHEME_STORAGE_KEY, RT_DARK_CLASS, RT_DEFAULT_SCHEME, RT_SCHEME_ATTRIBUTE, RT_THEME_ATTRIBUTE, RT_THEME_AUTO_CLASS, RT_THEME_ENUM, RT_THEME_STORAGE_KEY, RT_UI_CONFIG, RtActionBarService, RtAsideService, RtDynamicListSelectorsDirective, RtModalService, RtPopoverDirective, RtSnackBarService, RtTableConfigService, RtTableSelectorsDirective, RtThemeDirective, RtThemeService, RtuiActionBarComponent, RtuiActionBarContainerComponent, RtuiAsideContainerComponent, RtuiAsideContainerHeaderDirective, RtuiButtonComponent, RtuiClearButtonComponent, RtuiCustomTableCellsDirective, RtuiDynamicInputAdditionalControlDirective, RtuiDynamicInputComponent, RtuiDynamicListComponent, RtuiDynamicListCustomTableCellsDirective, RtuiDynamicListRowActionsDirective, RtuiDynamicListRowAdditionalActionsDirective, RtuiDynamicListToolbarActionsDirective, RtuiDynamicListToolbarSelectorsDirective, RtuiDynamicSelectorAdditionalControlDirective, RtuiDynamicSelectorComponent, RtuiDynamicSelectorItemAdditionalControlDirective, RtuiDynamicSelectorItemTitleDirective, RtuiDynamicSelectorItemTitleProjectionDirective, RtuiDynamicSelectorListActionsComponent, RtuiDynamicSelectorPlaceholderComponent, RtuiDynamicSelectorSelectedListComponent, RtuiFileUploadComponent, RtuiHeaderCenterDirective, RtuiHeaderComponent, RtuiHeaderLeftDirective, RtuiHeaderRightDirective, RtuiIconComponent, RtuiImageUploadComponent, RtuiInfoBadgeComponent, RtuiModalComponent, RtuiMultiButtonComponent, RtuiMultiSelectorPopupComponent, RtuiPaginationComponent, RtuiScrollableContainerComponent, RtuiScrollableContainerContentDirective, RtuiScrollableContainerFooterDirective, RtuiScrollableContainerHeaderDirective, RtuiSideMenuComponent, RtuiSideMenuFooterDirective, RtuiSideMenuHeaderDirective, RtuiSnackBarComponent, RtuiSpinnerComponent, RtuiStopTableRowClickDirective, RtuiTableAdditionalRowActionsDirective, RtuiTableComponent, RtuiTableRowActionsDirective, RtuiTableRowClickDirective, RtuiToggleComponent, RtuiToolbarCenterDirective, RtuiToolbarComponent, RtuiToolbarLeftDirective, RtuiToolbarRightDirective, TABLE_COLUMN_FILTER_TYPES_ENUM, TABLE_COLUMN_TYPES_ENUM, TEXT_CELL_COLOR_ENUM, TOGGLE_SIZE_TYPE_ENUM, darkenHexColor, ddServices, getColorBasedOnBackground, progressDecreaseAnimation, progressIncreaseAnimation, provideRtUi };
|
|
5192
|
+
export { ASIDE_BUTTONS_ENUM, ASIDE_REF, AsideRef, DEFAULT_PAGE_MODEL, DEFAULT_PAGE_SIZE, INFO_BADGE_SIZE_ENUM, INFO_BADGE_TYPE_ENUM, MODAL_WINDOW_SIZE_ENUM, RTUI_TABLE_COMPONENT_TOKEN, RTUI_TABLE_STOP_ROW_CLICK_ATTRIBUTE, RT_ACCENT_ROLE_ENUM, RT_COLOR_SCHEME_STORAGE_KEY, RT_DARK_CLASS, RT_DEFAULT_SCHEME, RT_SCHEME_ATTRIBUTE, RT_THEME_ATTRIBUTE, RT_THEME_AUTO_CLASS, RT_THEME_ENUM, RT_THEME_STORAGE_KEY, RT_UI_CONFIG, RtActionBarService, RtAsideService, RtDynamicListSelectorsDirective, RtHideTooltipDirective, RtModalService, RtPopoverDirective, RtSnackBarService, RtTableConfigService, RtTableSelectorsDirective, RtThemeDirective, RtThemeService, RtuiActionBarComponent, RtuiActionBarContainerComponent, RtuiAsideContainerComponent, RtuiAsideContainerHeaderDirective, RtuiButtonComponent, RtuiClearButtonComponent, RtuiCustomTableCellsDirective, RtuiDynamicInputAdditionalControlDirective, RtuiDynamicInputComponent, RtuiDynamicListComponent, RtuiDynamicListCustomTableCellsDirective, RtuiDynamicListRowActionsDirective, RtuiDynamicListRowAdditionalActionsDirective, RtuiDynamicListToolbarActionsDirective, RtuiDynamicListToolbarSelectorsDirective, RtuiDynamicSelectorAdditionalControlDirective, RtuiDynamicSelectorComponent, RtuiDynamicSelectorItemAdditionalControlDirective, RtuiDynamicSelectorItemTitleDirective, RtuiDynamicSelectorItemTitleProjectionDirective, RtuiDynamicSelectorListActionsComponent, RtuiDynamicSelectorPlaceholderComponent, RtuiDynamicSelectorSelectedListComponent, RtuiFileUploadComponent, RtuiHeaderCenterDirective, RtuiHeaderComponent, RtuiHeaderLeftDirective, RtuiHeaderRightDirective, RtuiIconComponent, RtuiImageUploadComponent, RtuiInfoBadgeComponent, RtuiModalComponent, RtuiMultiButtonComponent, RtuiMultiSelectorPopupComponent, RtuiPaginationComponent, RtuiScrollableContainerComponent, RtuiScrollableContainerContentDirective, RtuiScrollableContainerFooterDirective, RtuiScrollableContainerHeaderDirective, RtuiSideMenuComponent, RtuiSideMenuFooterDirective, RtuiSideMenuHeaderDirective, RtuiSnackBarComponent, RtuiSpinnerComponent, RtuiStopTableRowClickDirective, RtuiTableAdditionalRowActionsDirective, RtuiTableComponent, RtuiTableRowActionsDirective, RtuiTableRowClickDirective, RtuiToggleComponent, RtuiToolbarCenterDirective, RtuiToolbarComponent, RtuiToolbarLeftDirective, RtuiToolbarRightDirective, TABLE_COLUMN_FILTER_TYPES_ENUM, TABLE_COLUMN_TYPES_ENUM, TEXT_CELL_COLOR_ENUM, TOGGLE_SIZE_TYPE_ENUM, darkenHexColor, ddServices, getColorBasedOnBackground, progressDecreaseAnimation, progressIncreaseAnimation, provideRtUi };
|
|
5142
5193
|
//# sourceMappingURL=rt-tools-ui-kit.mjs.map
|