@rt-tools/ui-kit 0.0.12 → 0.0.14
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/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rt-tools/ui-kit",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.14",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"author": "Yauheni Krumin",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"tslib": "^2.8.0",
|
|
9
|
-
"@rt-tools/core": "^0.0.
|
|
9
|
+
"@rt-tools/core": "^0.0.3",
|
|
10
10
|
"@rt-tools/store": "^0.0.4",
|
|
11
11
|
"@rt-tools/utils": "^0.0.5"
|
|
12
12
|
},
|
|
13
13
|
"peerDependencies": {
|
|
14
|
-
"@rt-tools/core": "^0.0.
|
|
14
|
+
"@rt-tools/core": "^0.0.3",
|
|
15
15
|
"@rt-tools/store": "^0.0.4",
|
|
16
16
|
"@rt-tools/utils": "^0.0.5",
|
|
17
17
|
"@angular/animations": "^21.0.0",
|
|
Binary file
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import {
|
|
3
|
-
import { Nullable, PageModel, SortModel, FilterOperatorType, FilterModel, FILTER_OPERATOR_TYPE_ENUM, POSITION_ENUM, OSTypes } from '@rt-tools/utils';
|
|
4
|
-
import { Observable, Subject } from 'rxjs';
|
|
2
|
+
import { Type, OnInit, Signal, TemplateRef, WritableSignal, InputSignal, InputSignalWithTransform, OutputEmitterRef, InjectionToken, ModelSignal, AfterViewInit, ElementRef, AfterViewChecked, Provider, AfterContentChecked, OnDestroy } from '@angular/core';
|
|
5
3
|
import { FormControl, ControlValueAccessor, Validator, FormGroup, ValidationErrors } from '@angular/forms';
|
|
6
4
|
import { ThemePalette } from '@angular/material/core';
|
|
7
|
-
import {
|
|
5
|
+
import { Observable, Subject } from 'rxjs';
|
|
6
|
+
import { Nullable } from '@rt-tools/core';
|
|
8
7
|
import { MatDialogConfig } from '@angular/material/dialog';
|
|
9
8
|
import { MatDrawer } from '@angular/material/sidenav';
|
|
10
9
|
import { OverlayRef, ComponentType, ConnectedPosition, CdkOverlayOrigin } from '@angular/cdk/overlay';
|
|
11
10
|
import { ComponentType as ComponentType$1 } from '@angular/cdk/portal';
|
|
12
11
|
import { HttpErrorResponse } from '@angular/common/http';
|
|
13
12
|
import { MatFormFieldAppearance } from '@angular/material/form-field';
|
|
13
|
+
import { PageModel, SortModel, FilterOperatorType, FilterModel, FILTER_OPERATOR_TYPE_ENUM, POSITION_ENUM, OSTypes } from '@rt-tools/utils';
|
|
14
14
|
import { BooleanInput, NumberInput } from '@angular/cdk/coercion';
|
|
15
15
|
import { TooltipPosition } from '@angular/material/tooltip';
|
|
16
16
|
import { AnimationPlayer, AnimationTriggerMetadata } from '@angular/animations';
|
|
@@ -19,332 +19,6 @@ import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
|
19
19
|
import { MatInput } from '@angular/material/input';
|
|
20
20
|
import { ImageCroppedEvent } from 'ngx-image-cropper';
|
|
21
21
|
|
|
22
|
-
type IModsObject = Record<string, unknown>;
|
|
23
|
-
interface IBemConfig {
|
|
24
|
-
separators: {
|
|
25
|
-
el: string;
|
|
26
|
-
mod: string;
|
|
27
|
-
val: string;
|
|
28
|
-
};
|
|
29
|
-
ignoreValues?: boolean;
|
|
30
|
-
modCase?: string;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
declare class BlockDirective implements OnChanges {
|
|
34
|
-
#private;
|
|
35
|
-
readonly element: ElementRef;
|
|
36
|
-
readonly renderer: Renderer2;
|
|
37
|
-
readonly name: string;
|
|
38
|
-
private readonly elem;
|
|
39
|
-
rtMod?: string | string[] | (string | false)[] | IModsObject;
|
|
40
|
-
constructor(element: ElementRef, renderer: Renderer2, name: string, elem: string);
|
|
41
|
-
ngOnChanges(): void;
|
|
42
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BlockDirective, [null, null, { attribute: "rtBlock"; }, { attribute: "rtElem"; optional: true; }]>;
|
|
43
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<BlockDirective, "[rtBlock]", never, { "rtMod": { "alias": "rtMod"; "required": false; }; }, {}, never, never, true, never>;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
declare class ConcatClassesPipe implements PipeTransform {
|
|
47
|
-
transform<C extends string | boolean | null | undefined>(classes: (C | C[])[]): string;
|
|
48
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ConcatClassesPipe, never>;
|
|
49
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<ConcatClassesPipe, "concatClasses", true>;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
declare class ElemDirective implements OnChanges {
|
|
53
|
-
#private;
|
|
54
|
-
readonly element: ElementRef;
|
|
55
|
-
readonly renderer: Renderer2;
|
|
56
|
-
readonly name: string;
|
|
57
|
-
private readonly rtBlock;
|
|
58
|
-
rtMod?: string | string[] | (string | false)[] | IModsObject;
|
|
59
|
-
blockName: string;
|
|
60
|
-
constructor(element: ElementRef, renderer: Renderer2, name: string, rtBlock: BlockDirective);
|
|
61
|
-
ngOnChanges(): void;
|
|
62
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ElemDirective, [null, null, { attribute: "rtElem"; }, null]>;
|
|
63
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ElemDirective, "[rtElem]", never, { "rtMod": { "alias": "rtMod"; "required": false; }; }, {}, never, never, true, never>;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
declare class ModDirective {
|
|
67
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ModDirective, never>;
|
|
68
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ModDirective, "[rtMod]", never, {}, {}, never, never, true, never>;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
declare enum STORAGE_TYPES_ENUM {
|
|
72
|
-
LOCAL = "local",
|
|
73
|
-
SESSION = "session",
|
|
74
|
-
IN_MEMORY = "inMemory",
|
|
75
|
-
CUSTOM = "custom"
|
|
76
|
-
}
|
|
77
|
-
type StorageType = STORAGE_TYPES_ENUM.LOCAL | STORAGE_TYPES_ENUM.SESSION | STORAGE_TYPES_ENUM.IN_MEMORY | STORAGE_TYPES_ENUM.CUSTOM;
|
|
78
|
-
|
|
79
|
-
/**
|
|
80
|
-
* A service that implements the `Storage` interface using an in-memory map.
|
|
81
|
-
* This service provides a fallback storage solution when `localStorage`
|
|
82
|
-
* or `sessionStorage` is not available, such as in server-side rendering (SSR) scenarios.
|
|
83
|
-
*
|
|
84
|
-
* @Injectable
|
|
85
|
-
*/
|
|
86
|
-
declare class InMemoryStorageService implements Storage {
|
|
87
|
-
#private;
|
|
88
|
-
/**
|
|
89
|
-
* Returns the number of key-value pairs currently stored.
|
|
90
|
-
*
|
|
91
|
-
* @returns the number of items in storage
|
|
92
|
-
* @public
|
|
93
|
-
*/
|
|
94
|
-
get length(): number;
|
|
95
|
-
/**
|
|
96
|
-
* Retrieves the value associated with the given key.
|
|
97
|
-
*
|
|
98
|
-
* @param key - The name of the key to retrieve the value for
|
|
99
|
-
* @returns the value associated with the key, or `null` if the key does not exist
|
|
100
|
-
* @public
|
|
101
|
-
* @returns string | null
|
|
102
|
-
*/
|
|
103
|
-
getItem(key: string): string | null;
|
|
104
|
-
/**
|
|
105
|
-
* Adds or updates the key-value pair in the storage.
|
|
106
|
-
*
|
|
107
|
-
* @param key - The name of the key to create or update
|
|
108
|
-
* @param data - The value to associate with the key
|
|
109
|
-
* @public
|
|
110
|
-
* @returns void
|
|
111
|
-
*/
|
|
112
|
-
setItem(key: string, data: string): void;
|
|
113
|
-
/**
|
|
114
|
-
* Retrieves the key at the specified index.
|
|
115
|
-
*
|
|
116
|
-
* @param index - The index of the key to retrieve
|
|
117
|
-
* @returns the key at the specified index, or `null` if the index is out of bounds
|
|
118
|
-
* @public
|
|
119
|
-
* @returns string | null
|
|
120
|
-
*/
|
|
121
|
-
key(index: number): string | null;
|
|
122
|
-
/**
|
|
123
|
-
* Removes the key-value pair associated with the given key.
|
|
124
|
-
*
|
|
125
|
-
* @param key - The name of the key to remove
|
|
126
|
-
* @public
|
|
127
|
-
* @returns void
|
|
128
|
-
*/
|
|
129
|
-
removeItem(key: string): void;
|
|
130
|
-
/**
|
|
131
|
-
* Clears all key-value pairs from the storage.
|
|
132
|
-
*
|
|
133
|
-
* @public
|
|
134
|
-
* @returns void
|
|
135
|
-
*/
|
|
136
|
-
clear(): void;
|
|
137
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InMemoryStorageService, never>;
|
|
138
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<InMemoryStorageService>;
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
interface IStorageConverter {
|
|
142
|
-
convertTo(data: any): string;
|
|
143
|
-
convertFrom<T>(data: any): Nullable<T>;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
interface IStorageConfig {
|
|
147
|
-
ctx: Nullable<StorageType>;
|
|
148
|
-
storageRef: Nullable<Storage>;
|
|
149
|
-
converter: Nullable<IStorageConverter>;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
declare class JsonConverter implements IStorageConverter {
|
|
153
|
-
convertTo(data: Nullable<any>): string;
|
|
154
|
-
convertFrom<T>(data: any): Nullable<T>;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
/**
|
|
158
|
-
* Returns the set of dependency-injection providers
|
|
159
|
-
* required to setup storages in an application.
|
|
160
|
-
*
|
|
161
|
-
* @usageNotes
|
|
162
|
-
*
|
|
163
|
-
* This function sets up the essential storage services needed for
|
|
164
|
-
* working with `localStorage`, `sessionStorage`, and an in-memory storage solution.
|
|
165
|
-
* It includes providers for each type of storage, ensuring that the appropriate
|
|
166
|
-
* storage service is injected based on the platform or specific use case.
|
|
167
|
-
*
|
|
168
|
-
* The function is particularly useful in scenarios where the application may be
|
|
169
|
-
* running on the server-side (SSR). In such cases, instead of using `localStorage`
|
|
170
|
-
* and `sessionStorage`, which are only available in the browser, the `InMemoryStorageService`
|
|
171
|
-
* can be used as a fallback, ensuring that the application still functions correctly.
|
|
172
|
-
*
|
|
173
|
-
* ```typescript
|
|
174
|
-
* bootstrapApplication(RootComponent, {
|
|
175
|
-
* providers: [
|
|
176
|
-
* provideRtStorage()
|
|
177
|
-
* ]
|
|
178
|
-
* });
|
|
179
|
-
* ```
|
|
180
|
-
*
|
|
181
|
-
* @publicApi
|
|
182
|
-
*/
|
|
183
|
-
declare function provideRtStorage(): Provider[];
|
|
184
|
-
|
|
185
|
-
/**
|
|
186
|
-
* Factory for creating or returning `localStorage`.
|
|
187
|
-
* Returns `localStorage` global object if the application is running in a browser,
|
|
188
|
-
* otherwise returns null.
|
|
189
|
-
*
|
|
190
|
-
* @returns localStorage or null
|
|
191
|
-
*/
|
|
192
|
-
declare function localStorageFactory(): Nullable<Storage>;
|
|
193
|
-
/**
|
|
194
|
-
* Factory for creating or returning `sessionStorage`.
|
|
195
|
-
* Returns `sessionStorage` global object if the application is running in a browser,
|
|
196
|
-
* otherwise returns null.
|
|
197
|
-
*
|
|
198
|
-
* @returns sessionStorage or null
|
|
199
|
-
*/
|
|
200
|
-
declare function sessionStorageFactory(): Nullable<Storage>;
|
|
201
|
-
/**
|
|
202
|
-
* Factory for creating `InMemoryStorageService`.
|
|
203
|
-
* Returns a new instance of InMemoryStorageService.
|
|
204
|
-
*
|
|
205
|
-
* @returns a new instance of InMemoryStorageService
|
|
206
|
-
*/
|
|
207
|
-
declare function inMemoryStorageFactory(): Storage;
|
|
208
|
-
|
|
209
|
-
/**
|
|
210
|
-
* A service for managing data storage across different storage types,
|
|
211
|
-
* including `localStorage`, `sessionStorage`, and an in-memory storage fallback.
|
|
212
|
-
* The service supports custom storage types and data conversion through configurable converters.
|
|
213
|
-
*
|
|
214
|
-
* @Injectable
|
|
215
|
-
*/
|
|
216
|
-
declare class StorageService {
|
|
217
|
-
#private;
|
|
218
|
-
/**
|
|
219
|
-
* Retrieves an item from the specified storage context.
|
|
220
|
-
*
|
|
221
|
-
* @param key - The key of the item to retrieve.
|
|
222
|
-
* @param config - Optional configuration for the storage context and data conversion.
|
|
223
|
-
* @returns The retrieved item, converted from storage if a converter is provided, or `null` if the item does not exist.
|
|
224
|
-
*/
|
|
225
|
-
getItem<T>(key: string, config?: Partial<IStorageConfig>): Nullable<T>;
|
|
226
|
-
/**
|
|
227
|
-
* Stores an item in the specified storage context.
|
|
228
|
-
*
|
|
229
|
-
* @param key - The key to associate with the stored item.
|
|
230
|
-
* @param data - The data to store, which will be converted if a converter is provided.
|
|
231
|
-
* @param config - Optional configuration for the storage context and data conversion.
|
|
232
|
-
*/
|
|
233
|
-
setItem(key: string, data: any, config?: Partial<IStorageConfig>): void;
|
|
234
|
-
/**
|
|
235
|
-
* Checks if a given key exists in the specified storage context.
|
|
236
|
-
*
|
|
237
|
-
* @param key - The key to check for.
|
|
238
|
-
* @param ctx - The storage context to search in (local, session, or in-memory).
|
|
239
|
-
* @returns `true` if the key exists, `false` otherwise.
|
|
240
|
-
*/
|
|
241
|
-
hasKey(key: string, ctx?: Nullable<StorageType>): boolean;
|
|
242
|
-
/**
|
|
243
|
-
* Executes callback functions based on whether a key exists in the specified storage context.
|
|
244
|
-
*
|
|
245
|
-
* @param key - The key to check for.
|
|
246
|
-
* @param onHas - The callback to execute if the key exists.
|
|
247
|
-
* @param onHasNot - The optional callback to execute if the key does not exist.
|
|
248
|
-
* @param config - Optional configuration for the storage context and data conversion.
|
|
249
|
-
*/
|
|
250
|
-
onHasKey<T>(key: string, onHas: (value: Nullable<T>) => void, onHasNot?: () => void, config?: Partial<IStorageConfig>): void;
|
|
251
|
-
/**
|
|
252
|
-
* Removes an item from the specified storage context.
|
|
253
|
-
*
|
|
254
|
-
* @param key - The key of the item to remove.
|
|
255
|
-
* @param ctx - The storage context from which to remove the item.
|
|
256
|
-
*/
|
|
257
|
-
removeItem(key: string, ctx?: Nullable<StorageType>): void;
|
|
258
|
-
/**
|
|
259
|
-
* Clears all items from the specified storage context.
|
|
260
|
-
*
|
|
261
|
-
* @param ctx - The storage context to clear.
|
|
262
|
-
*/
|
|
263
|
-
clear(ctx?: Nullable<StorageType>): void;
|
|
264
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<StorageService, never>;
|
|
265
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<StorageService>;
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
declare const CUSTOM_STORAGE: InjectionToken<Storage>;
|
|
269
|
-
|
|
270
|
-
declare const IN_MEMORY_STORAGE: InjectionToken<Storage>;
|
|
271
|
-
|
|
272
|
-
declare const LOCAL_STORAGE: InjectionToken<Storage>;
|
|
273
|
-
|
|
274
|
-
declare const SESSION_STORAGE: InjectionToken<Storage>;
|
|
275
|
-
|
|
276
|
-
/**
|
|
277
|
-
* Abstract StorageService class for interacting with a storage system.
|
|
278
|
-
* Uses Observable to handle asynchronous operations.
|
|
279
|
-
*/
|
|
280
|
-
interface IIDBStorageServiceInterface<T> {
|
|
281
|
-
/**
|
|
282
|
-
* Retrieves a value from storage by the given key.
|
|
283
|
-
* @param key - The key to retrieve the value.
|
|
284
|
-
* @returns An Observable that emits the value of type T or undefined if the key does not exist.
|
|
285
|
-
*/
|
|
286
|
-
get(key: string): Observable<T | undefined>;
|
|
287
|
-
/**
|
|
288
|
-
* Saves a value in storage under the specified key.
|
|
289
|
-
* @param key - The key to store the value under.
|
|
290
|
-
* @param value - The value to be stored.
|
|
291
|
-
* @returns An Observable that completes once the value is successfully saved.
|
|
292
|
-
*/
|
|
293
|
-
set(key: string, value: T): Observable<void>;
|
|
294
|
-
/**
|
|
295
|
-
* Removes a value from storage by the specified key.
|
|
296
|
-
* @param key - The key to remove the value from.
|
|
297
|
-
* @returns An Observable that completes once the value is successfully removed.
|
|
298
|
-
*/
|
|
299
|
-
remove(key: string): Observable<void>;
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
declare class IDBStorageService<ENTITY_TYPE> implements IIDBStorageServiceInterface<ENTITY_TYPE> {
|
|
303
|
-
#private;
|
|
304
|
-
constructor();
|
|
305
|
-
get(key: string): Observable<ENTITY_TYPE | undefined>;
|
|
306
|
-
set(key: string, value: ENTITY_TYPE): Observable<void>;
|
|
307
|
-
remove(key: string): Observable<void>;
|
|
308
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IDBStorageService<any>, never>;
|
|
309
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<IDBStorageService<any>>;
|
|
310
|
-
}
|
|
311
|
-
|
|
312
|
-
/**
|
|
313
|
-
* Factory for creating `IDBStorageService`.
|
|
314
|
-
* Returns a new instance of IDBStorageService.
|
|
315
|
-
*
|
|
316
|
-
* @returns a new instance of IDBStorageService
|
|
317
|
-
*/
|
|
318
|
-
declare function iDBStorageFactory(): IDBStorageService<Record<string, unknown>>;
|
|
319
|
-
|
|
320
|
-
/**
|
|
321
|
-
* Returns the set of dependency-injection providers
|
|
322
|
-
* required to set up storages in an application.
|
|
323
|
-
*
|
|
324
|
-
* @usageNotes
|
|
325
|
-
*
|
|
326
|
-
* This function sets up the essential storage services needed for
|
|
327
|
-
* working with `idb storage` solution.
|
|
328
|
-
* It includes providers for each type of storage, ensuring that the appropriate
|
|
329
|
-
* storage service is injected based on the platform or specific use case.
|
|
330
|
-
*
|
|
331
|
-
* ```typescript
|
|
332
|
-
* bootstrapApplication(RootComponent, {
|
|
333
|
-
* providers: [
|
|
334
|
-
* provideRtIDBStorage()
|
|
335
|
-
* ]
|
|
336
|
-
* });
|
|
337
|
-
* ```
|
|
338
|
-
*
|
|
339
|
-
* @publicApi
|
|
340
|
-
*/
|
|
341
|
-
declare function provideRtIDBStorage(): Provider[];
|
|
342
|
-
|
|
343
|
-
/**
|
|
344
|
-
* Injection token for IDBStorageService.
|
|
345
|
-
*/
|
|
346
|
-
declare const IDB_STORAGE_SERVICE_TOKEN: InjectionToken<IDBStorageService<any>>;
|
|
347
|
-
|
|
348
22
|
declare enum MODAL_WINDOW_SIZE_ENUM {
|
|
349
23
|
SM = "25rem",
|
|
350
24
|
MD = "45rem",
|
|
@@ -371,7 +45,7 @@ declare namespace IModal {
|
|
|
371
45
|
interface Button<T> {
|
|
372
46
|
text: string;
|
|
373
47
|
color?: ThemePalette;
|
|
374
|
-
value: Nullable
|
|
48
|
+
value: Nullable<T>;
|
|
375
49
|
appearance?: 'standard' | 'raised' | 'flat' | 'stroked' | 'fab' | 'mini-fab';
|
|
376
50
|
validateSelect?: boolean;
|
|
377
51
|
assignSelectedValue?: boolean;
|
|
@@ -404,11 +78,11 @@ declare namespace IModal {
|
|
|
404
78
|
value: T;
|
|
405
79
|
message: string;
|
|
406
80
|
}
|
|
407
|
-
type ConfirmResponsePredicate<T> = (answer: Nullable
|
|
81
|
+
type ConfirmResponsePredicate<T> = (answer: Nullable<IModal.DataAnswer<T>>) => boolean;
|
|
408
82
|
interface ConfirmResponse<T> {
|
|
409
|
-
on(predicate: ConfirmResponsePredicate<T>): Observable<Nullable
|
|
410
|
-
onCancel(cancel?: ConfirmResponsePredicate<T>): Observable<Nullable
|
|
411
|
-
onConfirm(confirm?: ConfirmResponsePredicate<T>): Observable<Nullable
|
|
83
|
+
on(predicate: ConfirmResponsePredicate<T>): Observable<Nullable<IModal.DataAnswer<T>>>;
|
|
84
|
+
onCancel(cancel?: ConfirmResponsePredicate<T>): Observable<Nullable<IModal.DataAnswer<T>>>;
|
|
85
|
+
onConfirm(confirm?: ConfirmResponsePredicate<T>): Observable<Nullable<IModal.DataAnswer<T>>>;
|
|
412
86
|
}
|
|
413
87
|
}
|
|
414
88
|
|
|
@@ -1898,5 +1572,5 @@ declare class RtActionBarService {
|
|
|
1898
1572
|
static ɵprov: i0.ɵɵInjectableDeclaration<RtActionBarService>;
|
|
1899
1573
|
}
|
|
1900
1574
|
|
|
1901
|
-
export { ASIDE_BUTTONS_ENUM, ASIDE_REF, AsideRef, BUTTON_APPEARANCE, BUTTON_COLOR, BUTTON_SIZE,
|
|
1902
|
-
export type { AsideButtonsType, AsidePositions, ButtonAppearanceType, ButtonColorType, ButtonSizeType,
|
|
1575
|
+
export { ASIDE_BUTTONS_ENUM, ASIDE_REF, AsideRef, BUTTON_APPEARANCE, BUTTON_COLOR, BUTTON_SIZE, DEFAULT_PAGE_MODEL, DEFAULT_PAGE_SIZE, IAside, IModal, INFO_BADGE_SIZE_ENUM, INFO_BADGE_TYPE_ENUM, IRtActionBar, IRtSnackBar, ISideMenu, ITable, MODAL_WINDOW_SIZE_ENUM, RTUI_TABLE_COMPONENT_TOKEN, RTUI_TABLE_STOP_ROW_CLICK_ATTRIBUTE, RtActionBarService, RtAsideService, RtDynamicListSelectorsDirective, RtModalService, RtPopoverDirective, RtSnackBarService, RtTableConfigService, RtTableSelectorsDirective, RtuiActionBarComponent, RtuiActionBarContainerComponent, RtuiAsideContainerComponent, RtuiAsideContainerHeaderDirective, RtuiButtonComponent, RtuiClearButtonComponent, RtuiCustomTableCellsDirective, RtuiDynamicInputAdditionalControlDirective, RtuiDynamicInputComponent, RtuiDynamicListComponent, RtuiDynamicListCustomTableCellsDirective, RtuiDynamicListRowActionsDirective, RtuiDynamicListRowAdditionalActionsDirective, RtuiDynamicListToolbarActionsDirective, RtuiDynamicListToolbarSelectorsDirective, RtuiDynamicSelectorAdditionalControlDirective, RtuiDynamicSelectorComponent, RtuiDynamicSelectorItemAdditionalControlDirective, RtuiDynamicSelectorListActionsComponent, RtuiDynamicSelectorPlaceholderComponent, RtuiDynamicSelectorSelectedListComponent, RtuiFileUploadComponent, RtuiHeaderCenterDirective, RtuiHeaderComponent, RtuiHeaderLeftDirective, RtuiHeaderRightDirective, RtuiImageUploadComponent, RtuiInfoBadgeComponent, RtuiModalComponent, RtuiMultiButtonComponent, RtuiMultiSelectorPopupComponent, RtuiPaginationComponent, RtuiRoundIconButtonComponent, 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 };
|
|
1576
|
+
export type { AsideButtonsType, AsidePositions, ButtonAppearanceType, ButtonColorType, ButtonSizeType, IImageUploadFormat, IInfoBadgeSizeType, IRtuiTable, Icon, IconSideType, InfoBadgeType, MenuItemTrigger, ModalWindowSizeType, NameValueType, Select, ToggleSizeType };
|
|
Binary file
|