@rt-tools/ui-kit 0.0.23 → 0.0.24

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@rt-tools/ui-kit",
3
- "version": "0.0.23",
3
+ "version": "0.0.24",
4
4
  "license": "Apache-2.0",
5
5
  "author": "Yauheni Krumin",
6
6
  "type": "module",
Binary file
@@ -245,4 +245,72 @@
245
245
  background-color: var(--rt-bg-base-hover);
246
246
  }
247
247
  }
248
+
249
+ /* ===================== design: material =====================
250
+ Classic Material (M3) look, opted in per instance ([design]="'material'")
251
+ or app-wide via the RT_UI_CONFIG provider. Renders the pill as an M3
252
+ filled button; `appearance-text` renders as an M3 text button. Variants
253
+ map onto the Material theme: `danger` -> error, everything else -> primary
254
+ (M3 has no success/warning roles). These rules come after the custom-look
255
+ blocks on purpose: equal-or-higher specificity wins by source order. */
256
+ &--type-pill.rtui-button--design-material {
257
+ min-height: 2.5rem;
258
+ padding: 0 var(--mat-button-filled-horizontal-padding, 1.5rem);
259
+ border-radius: var(--mat-sys-corner-full, 1.25rem);
260
+ background-color: var(--mat-sys-primary);
261
+ color: var(--mat-sys-on-primary);
262
+ font-size: var(--mat-sys-label-large-size, 0.875rem);
263
+ font-weight: var(--mat-sys-label-large-weight, 500);
264
+
265
+ &:hover:not(:disabled) {
266
+ background-color: color-mix(in srgb, var(--mat-sys-primary) 92%, var(--mat-sys-on-primary));
267
+ }
268
+
269
+ &:active:not(:disabled) {
270
+ background-color: color-mix(in srgb, var(--mat-sys-primary) 84%, var(--mat-sys-on-primary));
271
+ }
272
+ }
273
+
274
+ &--type-pill.rtui-button--design-material.rtui-button--variant-danger {
275
+ background-color: var(--mat-sys-error);
276
+ color: var(--mat-sys-on-error);
277
+
278
+ &:hover:not(:disabled) {
279
+ background-color: color-mix(in srgb, var(--mat-sys-error) 92%, var(--mat-sys-on-error));
280
+ }
281
+
282
+ &:active:not(:disabled) {
283
+ background-color: color-mix(in srgb, var(--mat-sys-error) 84%, var(--mat-sys-on-error));
284
+ }
285
+ }
286
+
287
+ &--type-pill.rtui-button--design-material.rtui-button--appearance-text {
288
+ min-height: 2.5rem;
289
+ padding: 0 var(--mat-button-text-horizontal-padding, 0.75rem);
290
+ background-color: transparent;
291
+ color: var(--mat-sys-primary);
292
+ font-size: var(--mat-sys-label-large-size, 0.875rem);
293
+ font-weight: var(--mat-sys-label-large-weight, 500);
294
+
295
+ &:hover:not(:disabled) {
296
+ background-color: color-mix(in srgb, var(--mat-sys-primary) 8%, transparent);
297
+ }
298
+
299
+ &:active:not(:disabled) {
300
+ background-color: color-mix(in srgb, var(--mat-sys-primary) 12%, transparent);
301
+ }
302
+ }
303
+
304
+ &--type-pill.rtui-button--design-material.rtui-button--variant-danger.rtui-button--appearance-text {
305
+ background-color: transparent;
306
+ color: var(--mat-sys-error);
307
+
308
+ &:hover:not(:disabled) {
309
+ background-color: color-mix(in srgb, var(--mat-sys-error) 8%, transparent);
310
+ }
311
+
312
+ &:active:not(:disabled) {
313
+ background-color: color-mix(in srgb, var(--mat-sys-error) 12%, transparent);
314
+ }
315
+ }
248
316
  }
@@ -283,6 +283,105 @@ declare class RtuiAsideContainerComponent {
283
283
  static ɵcmp: i0.ɵɵComponentDeclaration<RtuiAsideContainerComponent, "rtui-aside-container", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "isMobile": { "alias": "isMobile"; "required": true; "isSignal": true; }; "isSubmitButtonDisabled": { "alias": "isSubmitButtonDisabled"; "required": true; "isSignal": true; }; "isFooterShown": { "alias": "isFooterShown"; "required": false; "isSignal": true; }; "pending": { "alias": "pending"; "required": false; "isSignal": true; }; "isRequestErrorShown": { "alias": "isRequestErrorShown"; "required": false; "isSignal": true; }; "headerActionsButtons": { "alias": "headerActionsButtons"; "required": false; "isSignal": true; }; "requestError": { "alias": "requestError"; "required": false; "isSignal": true; }; "submitButtonTitle": { "alias": "submitButtonTitle"; "required": false; "isSignal": true; }; "cancelButtonTitle": { "alias": "cancelButtonTitle"; "required": false; "isSignal": true; }; "submitButtonTooltip": { "alias": "submitButtonTooltip"; "required": false; "isSignal": true; }; }, { "submitAction": "submitAction"; "cancelAction": "cancelAction"; "headerAction": "headerAction"; }, ["headerTpl"], ["*"], true, never>;
284
284
  }
285
285
 
286
+ declare enum RT_THEME_ENUM {
287
+ LIGHT = "light",
288
+ DARK = "dark",
289
+ AUTO = "auto"
290
+ }
291
+ type RtThemeType = `${RT_THEME_ENUM}`;
292
+ declare const RT_THEME_STORAGE_KEY: string;
293
+ declare const RT_DARK_CLASS: string;
294
+ declare const RT_THEME_AUTO_CLASS: string;
295
+ declare const RT_THEME_ATTRIBUTE: string;
296
+ /**
297
+ * Accent roles whose `--rt-color-{role}-{0..100}` indirection rows a custom
298
+ * color scheme may override. The semantic accent tier
299
+ * (`--rt-bg/text/icon/border-accent-*`) derives entirely from these rows.
300
+ */
301
+ declare enum RT_ACCENT_ROLE_ENUM {
302
+ PRIMARY = "primary",
303
+ INFO = "info",
304
+ SUCCESS = "success",
305
+ WARNING = "warning",
306
+ DANGER = "danger",
307
+ BRAND = "brand"
308
+ }
309
+ type RtAccentRole = `${RT_ACCENT_ROLE_ENUM}`;
310
+ /**
311
+ * A brand palette: per accent role, a tonal ramp mapping tone step (0–100)
312
+ * to a CSS color. One ramp serves both light and dark (the mode picks the tone).
313
+ * Partial ramps are allowed — unset tones keep the rt-tools defaults.
314
+ *
315
+ * @example
316
+ * const teal: RtColorSchemeRamp = {
317
+ * primary: { 20: '#b3e3e1', 40: '#5cb8b5', 60: '#1a9d99', 100: '#008582' },
318
+ * brand: { 20: '#e8e8e8', 100: '#008582' },
319
+ * };
320
+ */
321
+ type RtColorSchemeRamp = Partial<Record<RtAccentRole, Record<number, string>>>;
322
+ /** `'default'`/`null` clears the active scheme (back to the rt-tools palette). */
323
+ declare const RT_DEFAULT_SCHEME: string;
324
+ declare const RT_COLOR_SCHEME_STORAGE_KEY: string;
325
+ declare const RT_SCHEME_ATTRIBUTE: string;
326
+
327
+ /**
328
+ * Design system a control renders with:
329
+ * - `'custom'` — the rt-tools look (design tokens, pill shapes). The default.
330
+ * - `'material'` — the classic Material (M3) look, for apps that have not migrated
331
+ * their visual language yet or need to match surrounding Material controls.
332
+ */
333
+ type RtUiDesign = 'material' | 'custom';
334
+ declare namespace IRtUiConfig {
335
+ /** Global defaults applied app-wide unless a component-level setting or an input overrides them. */
336
+ interface Global {
337
+ /** Initial theme used when the user has no persisted preference. */
338
+ theme?: RtThemeType;
339
+ /** Initial brand color scheme (see `RtThemeService.registerColorScheme`) when none is persisted. */
340
+ colorScheme?: string;
341
+ /** Default design for every design-aware control. */
342
+ design?: RtUiDesign;
343
+ }
344
+ /** Per-instance-overridable defaults for `rtui-button`. */
345
+ interface Button {
346
+ design?: RtUiDesign;
347
+ size?: IRtuiButton.Size;
348
+ radius?: IRtuiButton.Radius;
349
+ appearance?: IRtuiButton.Appearance;
350
+ }
351
+ /** Component-level settings. Each entry overrides `global` for that component only. */
352
+ interface Components {
353
+ button?: Button;
354
+ }
355
+ interface Config {
356
+ global?: Global;
357
+ components?: Components;
358
+ }
359
+ }
360
+ /**
361
+ * Application-wide UI configuration for rt-tools components.
362
+ *
363
+ * Resolution order (most specific wins):
364
+ * 1. the component input on a concrete instance,
365
+ * 2. `components.<name>` in this config,
366
+ * 3. `global` in this config,
367
+ * 4. the library default.
368
+ *
369
+ * Provide it via {@link provideRtUi}:
370
+ * ```typescript
371
+ * bootstrapApplication(RootComponent, {
372
+ * providers: [
373
+ * provideRtUi({
374
+ * global: { theme: 'auto', design: 'custom' },
375
+ * components: { button: { design: 'material' } },
376
+ * }),
377
+ * ],
378
+ * });
379
+ * ```
380
+ *
381
+ * @publicApi
382
+ */
383
+ declare const RT_UI_CONFIG: InjectionToken<IRtUiConfig.Config>;
384
+
286
385
  type RtuiIconSizeType = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl' | '3xl';
287
386
  type RtuiIconThemeType = 'inherit' | 'primary' | 'primary-strong' | 'neutral' | 'disabled' | 'muted' | 'white' | 'danger' | 'success';
288
387
  declare class RtuiIconComponent {
@@ -308,14 +407,21 @@ declare namespace IRtuiButton {
308
407
  type IconPosition = 'start' | 'end';
309
408
  }
310
409
  declare class RtuiButtonComponent {
410
+ #private;
411
+ /** Design system the button renders with — see {@link RtUiDesign}. */
412
+ protected readonly resolvedDesign: Signal<RtUiDesign>;
413
+ protected readonly resolvedSize: Signal<IRtuiButton.Size>;
414
+ protected readonly resolvedRadius: Signal<IRtuiButton.Radius>;
415
+ protected readonly resolvedAppearance: Signal<IRtuiButton.Appearance | undefined>;
311
416
  protected readonly resolvedIconSize: Signal<RtuiIconSizeType>;
312
417
  protected readonly spinnerSize: Signal<number>;
313
418
  protected readonly modifiers: Signal<Record<string, boolean>>;
314
419
  readonly type: InputSignal<IRtuiButton.Type>;
420
+ readonly design: InputSignal<RtUiDesign | undefined>;
315
421
  readonly variant: InputSignal<IRtuiButton.Variant>;
316
422
  readonly appearance: InputSignal<IRtuiButton.Appearance | undefined>;
317
- readonly size: InputSignal<IRtuiButton.Size>;
318
- readonly radius: InputSignal<IRtuiButton.Radius>;
423
+ readonly size: InputSignal<IRtuiButton.Size | undefined>;
424
+ readonly radius: InputSignal<IRtuiButton.Radius | undefined>;
319
425
  readonly icon: InputSignalWithTransform<string, unknown>;
320
426
  readonly iconPosition: InputSignal<IRtuiButton.IconPosition>;
321
427
  readonly iconSize: InputSignal<RtuiIconSizeType | undefined>;
@@ -328,7 +434,7 @@ declare class RtuiButtonComponent {
328
434
  readonly clicked: OutputEmitterRef<void>;
329
435
  protected onClick(): void;
330
436
  static ɵfac: i0.ɵɵFactoryDeclaration<RtuiButtonComponent, never>;
331
- static ɵcmp: i0.ɵɵComponentDeclaration<RtuiButtonComponent, "rtui-button", never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "radius": { "alias": "radius"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "iconPosition": { "alias": "iconPosition"; "required": false; "isSignal": true; }; "iconSize": { "alias": "iconSize"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "outlined": { "alias": "outlined"; "required": false; "isSignal": true; }; "fullWidth": { "alias": "fullWidth"; "required": false; "isSignal": true; }; "spinnerDiameter": { "alias": "spinnerDiameter"; "required": false; "isSignal": true; }; }, { "clicked": "clicked"; }, never, ["*"], true, [{ directive: typeof i1.MatTooltip; inputs: { "matTooltip": "tooltip"; "matTooltipPosition": "tooltipPosition"; "matTooltipDisabled": "tooltipDisabled"; "matTooltipClass": "tooltipClass"; }; outputs: {}; }]>;
437
+ static ɵcmp: i0.ɵɵComponentDeclaration<RtuiButtonComponent, "rtui-button", never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; "design": { "alias": "design"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "radius": { "alias": "radius"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "iconPosition": { "alias": "iconPosition"; "required": false; "isSignal": true; }; "iconSize": { "alias": "iconSize"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "outlined": { "alias": "outlined"; "required": false; "isSignal": true; }; "fullWidth": { "alias": "fullWidth"; "required": false; "isSignal": true; }; "spinnerDiameter": { "alias": "spinnerDiameter"; "required": false; "isSignal": true; }; }, { "clicked": "clicked"; }, never, ["*"], true, [{ directive: typeof i1.MatTooltip; inputs: { "matTooltip": "tooltip"; "matTooltipPosition": "tooltipPosition"; "matTooltipDisabled": "tooltipDisabled"; "matTooltipClass": "tooltipClass"; }; outputs: {}; }]>;
332
438
  }
333
439
 
334
440
  declare class RtuiMultiButtonComponent {
@@ -998,17 +1104,23 @@ declare class RtuiTableRowClickDirective<ENTITY_TYPE extends Record<string, unkn
998
1104
  /**
999
1105
  * Returns a set of the necessary dependency injection providers for managing the UI.
1000
1106
  *
1107
+ * Optionally accepts an application-wide {@link RT_UI_CONFIG UI configuration} with
1108
+ * global theme/design defaults and per-component settings:
1109
+ *
1001
1110
  * ```typescript
1002
1111
  * bootstrapApplication(RootComponent, {
1003
1112
  * providers: [
1004
- * provideRtUi()
1113
+ * provideRtUi({
1114
+ * global: { theme: 'auto', design: 'custom' },
1115
+ * components: { button: { design: 'material' } },
1116
+ * })
1005
1117
  * ]
1006
1118
  * });
1007
1119
  * ```
1008
1120
  *
1009
1121
  * @publicApi
1010
1122
  */
1011
- declare function provideRtUi(): Provider[];
1123
+ declare function provideRtUi(config?: IRtUiConfig.Config): Provider[];
1012
1124
 
1013
1125
  declare namespace IRtSnackBar {
1014
1126
  interface Config extends MatSnackBarConfig {
@@ -1608,47 +1720,6 @@ declare class RtActionBarService {
1608
1720
  static ɵprov: i0.ɵɵInjectableDeclaration<RtActionBarService>;
1609
1721
  }
1610
1722
 
1611
- declare enum RT_THEME_ENUM {
1612
- LIGHT = "light",
1613
- DARK = "dark",
1614
- AUTO = "auto"
1615
- }
1616
- type RtThemeType = `${RT_THEME_ENUM}`;
1617
- declare const RT_THEME_STORAGE_KEY: string;
1618
- declare const RT_DARK_CLASS: string;
1619
- declare const RT_THEME_AUTO_CLASS: string;
1620
- declare const RT_THEME_ATTRIBUTE: string;
1621
- /**
1622
- * Accent roles whose `--rt-color-{role}-{0..100}` indirection rows a custom
1623
- * color scheme may override. The semantic accent tier
1624
- * (`--rt-bg/text/icon/border-accent-*`) derives entirely from these rows.
1625
- */
1626
- declare enum RT_ACCENT_ROLE_ENUM {
1627
- PRIMARY = "primary",
1628
- INFO = "info",
1629
- SUCCESS = "success",
1630
- WARNING = "warning",
1631
- DANGER = "danger",
1632
- BRAND = "brand"
1633
- }
1634
- type RtAccentRole = `${RT_ACCENT_ROLE_ENUM}`;
1635
- /**
1636
- * A brand palette: per accent role, a tonal ramp mapping tone step (0–100)
1637
- * to a CSS color. One ramp serves both light and dark (the mode picks the tone).
1638
- * Partial ramps are allowed — unset tones keep the rt-tools defaults.
1639
- *
1640
- * @example
1641
- * const teal: RtColorSchemeRamp = {
1642
- * primary: { 20: '#b3e3e1', 40: '#5cb8b5', 60: '#1a9d99', 100: '#008582' },
1643
- * brand: { 20: '#e8e8e8', 100: '#008582' },
1644
- * };
1645
- */
1646
- type RtColorSchemeRamp = Partial<Record<RtAccentRole, Record<number, string>>>;
1647
- /** `'default'`/`null` clears the active scheme (back to the rt-tools palette). */
1648
- declare const RT_DEFAULT_SCHEME: string;
1649
- declare const RT_COLOR_SCHEME_STORAGE_KEY: string;
1650
- declare const RT_SCHEME_ATTRIBUTE: string;
1651
-
1652
1723
  /**
1653
1724
  * Global theme + color-scheme switcher for the rt-tools design tokens.
1654
1725
  *
@@ -1707,5 +1778,5 @@ declare class RtThemeDirective {
1707
1778
  static ɵdir: i0.ɵɵDirectiveDeclaration<RtThemeDirective, "[rtTheme]", never, { "rtTheme": { "alias": "rtTheme"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1708
1779
  }
1709
1780
 
1710
- export { ASIDE_BUTTONS_ENUM, ASIDE_REF, AsideRef, DEFAULT_PAGE_MODEL, DEFAULT_PAGE_SIZE, IAside, IModal, INFO_BADGE_SIZE_ENUM, INFO_BADGE_TYPE_ENUM, IRtActionBar, IRtSnackBar, IRtuiButton, ISideMenu, ITable, 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, 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 };
1711
- export type { AsideButtonsType, AsidePositions, IImageUploadFormat, IInfoBadgeSizeType, IRtuiTable, Icon, IconSideType, InfoBadgeType, MenuItemTrigger, ModalWindowSizeType, NameValueType, RtAccentRole, RtColorSchemeRamp, RtThemeType, RtuiIconSizeType, RtuiIconThemeType, Select, ToggleSizeType };
1781
+ export { ASIDE_BUTTONS_ENUM, ASIDE_REF, AsideRef, DEFAULT_PAGE_MODEL, DEFAULT_PAGE_SIZE, IAside, IModal, INFO_BADGE_SIZE_ENUM, INFO_BADGE_TYPE_ENUM, IRtActionBar, IRtSnackBar, IRtUiConfig, IRtuiButton, ISideMenu, ITable, 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 };
1782
+ export type { AsideButtonsType, AsidePositions, IImageUploadFormat, IInfoBadgeSizeType, IRtuiTable, Icon, IconSideType, InfoBadgeType, MenuItemTrigger, ModalWindowSizeType, NameValueType, RtAccentRole, RtColorSchemeRamp, RtThemeType, RtUiDesign, RtuiIconSizeType, RtuiIconThemeType, Select, ToggleSizeType };
Binary file