@educarehq/solaris-components 0.2.6 → 0.2.8
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,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@educarehq/solaris-components",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.8",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/core": "^21.1.0",
|
|
6
6
|
"intl-tel-input": "^26.0.9",
|
|
7
7
|
"@angular/common": "^21.1.0",
|
|
8
8
|
"libphonenumber-js": "^1.12.36",
|
|
9
9
|
"@educarehq/solaris-tokens": "^0.1.2",
|
|
10
|
-
"@educarehq/solaris-services": "^0.1.
|
|
10
|
+
"@educarehq/solaris-services": "^0.1.7"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"tslib": "^2.3.0"
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { ElementRef, TemplateRef, AfterContentInit, OnDestroy, EventEmitter, QueryList, OnChanges, SimpleChanges, OnInit, AfterViewInit, WritableSignal
|
|
3
|
-
import { ControlValueAccessor, Validator, ValidationErrors, AbstractControl, NgControl } from '@angular/forms';
|
|
4
|
-
import * as _educarehq_solaris_components from '@educarehq/solaris-components';
|
|
2
|
+
import { ElementRef, TemplateRef, AfterContentInit, OnDestroy, EventEmitter, QueryList, OnChanges, SimpleChanges, InjectionToken, EnvironmentProviders, OnInit, AfterViewInit, WritableSignal } from '@angular/core';
|
|
5
3
|
import { SolarisTranslationParams } from '@educarehq/solaris-services';
|
|
4
|
+
import * as _educarehq_solaris_components from '@educarehq/solaris-components';
|
|
5
|
+
import { ControlValueAccessor, Validator, ValidationErrors, AbstractControl, NgControl } from '@angular/forms';
|
|
6
6
|
|
|
7
7
|
declare class SolarisDropdownContentTriggerDirective {
|
|
8
8
|
readonly elementRef: ElementRef<HTMLElement>;
|
|
@@ -260,6 +260,210 @@ declare class SolarisLoadingOverlay implements OnChanges {
|
|
|
260
260
|
static ngAcceptInputType_lockScroll: any;
|
|
261
261
|
}
|
|
262
262
|
|
|
263
|
+
declare class SolarisNotificationIntlService {
|
|
264
|
+
private readonly translationService;
|
|
265
|
+
private readonly notificationConfig;
|
|
266
|
+
private readonly translationConfig;
|
|
267
|
+
private readonly activeLang;
|
|
268
|
+
private readonly prefix;
|
|
269
|
+
translate(key: string, params?: SolarisTranslationParams): string;
|
|
270
|
+
close(): string;
|
|
271
|
+
expand(): string;
|
|
272
|
+
collapse(): string;
|
|
273
|
+
stopTimer(): string;
|
|
274
|
+
resumeTimer(): string;
|
|
275
|
+
paused(): string;
|
|
276
|
+
centerTitle(): string;
|
|
277
|
+
emptyCenter(): string;
|
|
278
|
+
clearHistory(): string;
|
|
279
|
+
autoClose(seconds: number): string;
|
|
280
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SolarisNotificationIntlService, never>;
|
|
281
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SolarisNotificationIntlService>;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
type SolarisSizePreset = 'sm' | 'md' | 'lg';
|
|
285
|
+
type SolarisRadiusPreset = 'none' | 'sm' | 'md' | 'lg' | 'full';
|
|
286
|
+
type SolarisColorPreset = 'primary' | 'surface' | 'success' | 'warning' | 'error' | 'info' | 'gradient';
|
|
287
|
+
|
|
288
|
+
type SolarisButtonVariant = 'solid' | 'outline' | 'ghost' | 'soft';
|
|
289
|
+
type SolarisRadiusInput = SolarisRadiusPreset | SolarisCustomString;
|
|
290
|
+
type SolarisButtonColorInput = SolarisColorPreset | SolarisCustomString;
|
|
291
|
+
type SolarisCustomString = string & {
|
|
292
|
+
readonly __solarisCustom?: unique symbol;
|
|
293
|
+
};
|
|
294
|
+
|
|
295
|
+
type SolarisNotificationState = 'queued' | 'visible' | 'archived';
|
|
296
|
+
type SolarisNotificationKind = 'success' | 'warning' | 'error' | 'info';
|
|
297
|
+
type SolarisNotificationConfigInput = Partial<SolarisNotificationConfig>;
|
|
298
|
+
type SolarisNotificationPosition = 'top-right' | 'top-left' | 'top-center' | 'bottom-right' | 'bottom-left' | 'bottom-center';
|
|
299
|
+
interface SolarisNotificationActionContext {
|
|
300
|
+
id: string;
|
|
301
|
+
data: Record<string, unknown> | null;
|
|
302
|
+
dismiss: () => void;
|
|
303
|
+
remove: () => void;
|
|
304
|
+
update: (patch: Partial<SolarisNotificationInput>) => void;
|
|
305
|
+
}
|
|
306
|
+
interface SolarisNotificationAction {
|
|
307
|
+
id: string;
|
|
308
|
+
label?: string;
|
|
309
|
+
labelKey?: string;
|
|
310
|
+
labelParams?: SolarisTranslationParams;
|
|
311
|
+
variant?: SolarisButtonVariant;
|
|
312
|
+
color?: SolarisButtonColorInput;
|
|
313
|
+
size?: SolarisSizePreset;
|
|
314
|
+
radius?: SolarisRadiusInput;
|
|
315
|
+
closeOnClick?: boolean;
|
|
316
|
+
disabled?: boolean;
|
|
317
|
+
run?: (ctx: SolarisNotificationActionContext) => void | Promise<void>;
|
|
318
|
+
}
|
|
319
|
+
interface SolarisNotificationInput {
|
|
320
|
+
title?: string;
|
|
321
|
+
titleKey?: string;
|
|
322
|
+
titleParams?: SolarisTranslationParams;
|
|
323
|
+
description?: string | null;
|
|
324
|
+
descriptionKey?: string;
|
|
325
|
+
descriptionParams?: SolarisTranslationParams;
|
|
326
|
+
kind?: SolarisNotificationKind;
|
|
327
|
+
position?: SolarisNotificationPosition;
|
|
328
|
+
duration?: number | null;
|
|
329
|
+
expandable?: boolean;
|
|
330
|
+
expanded?: boolean;
|
|
331
|
+
closeable?: boolean;
|
|
332
|
+
pauseOnHover?: boolean;
|
|
333
|
+
actions?: SolarisNotificationAction[];
|
|
334
|
+
ariaLive?: 'polite' | 'assertive';
|
|
335
|
+
data?: Record<string, unknown> | null;
|
|
336
|
+
}
|
|
337
|
+
interface SolarisNotificationRecord {
|
|
338
|
+
id: string;
|
|
339
|
+
title: string;
|
|
340
|
+
description: string | null;
|
|
341
|
+
kind: SolarisNotificationKind;
|
|
342
|
+
position: SolarisNotificationPosition;
|
|
343
|
+
state: SolarisNotificationState;
|
|
344
|
+
duration: number | null;
|
|
345
|
+
remainingMs: number | null;
|
|
346
|
+
expandable: boolean;
|
|
347
|
+
expanded: boolean;
|
|
348
|
+
closeable: boolean;
|
|
349
|
+
pauseOnHover: boolean;
|
|
350
|
+
pausedByHover: boolean;
|
|
351
|
+
pausedByUser: boolean;
|
|
352
|
+
pausedByVisibility: boolean;
|
|
353
|
+
actions: SolarisNotificationAction[];
|
|
354
|
+
ariaLive: 'polite' | 'assertive';
|
|
355
|
+
data: Record<string, unknown> | null;
|
|
356
|
+
createdAt: number;
|
|
357
|
+
}
|
|
358
|
+
interface SolarisNotificationConfig {
|
|
359
|
+
defaultPosition: SolarisNotificationPosition;
|
|
360
|
+
defaultDuration: number;
|
|
361
|
+
maxVisiblePerPosition: number;
|
|
362
|
+
hoverPause: boolean;
|
|
363
|
+
newestOnTop: boolean;
|
|
364
|
+
expandSingle: boolean;
|
|
365
|
+
persistInCenter: boolean;
|
|
366
|
+
translationScope: string;
|
|
367
|
+
}
|
|
368
|
+
interface SolarisNotificationRef {
|
|
369
|
+
id: string;
|
|
370
|
+
dismiss: () => void;
|
|
371
|
+
remove: () => void;
|
|
372
|
+
pause: () => void;
|
|
373
|
+
resume: () => void;
|
|
374
|
+
toggleExpanded: () => void;
|
|
375
|
+
update: (patch: Partial<SolarisNotificationInput>) => void;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
declare class SolarisNotificationService {
|
|
379
|
+
private readonly platformId;
|
|
380
|
+
private readonly destroyRef;
|
|
381
|
+
readonly config: SolarisNotificationConfig;
|
|
382
|
+
private readonly translationService;
|
|
383
|
+
readonly centerOpen: i0.WritableSignal<boolean>;
|
|
384
|
+
private readonly _items;
|
|
385
|
+
readonly items: i0.Signal<SolarisNotificationRecord[]>;
|
|
386
|
+
readonly visibleItems: i0.Signal<SolarisNotificationRecord[]>;
|
|
387
|
+
readonly centerItems: i0.Signal<SolarisNotificationRecord[]>;
|
|
388
|
+
private lastTick;
|
|
389
|
+
private readonly intervalId;
|
|
390
|
+
constructor();
|
|
391
|
+
success(input: Omit<SolarisNotificationInput, 'kind'>): SolarisNotificationRef;
|
|
392
|
+
warning(input: Omit<SolarisNotificationInput, 'kind'>): SolarisNotificationRef;
|
|
393
|
+
error(input: Omit<SolarisNotificationInput, 'kind'>): SolarisNotificationRef;
|
|
394
|
+
info(input: Omit<SolarisNotificationInput, 'kind'>): SolarisNotificationRef;
|
|
395
|
+
show(input: SolarisNotificationInput): SolarisNotificationRef;
|
|
396
|
+
visibleByPosition(position: SolarisNotificationPosition): SolarisNotificationRecord[];
|
|
397
|
+
isPaused(item: SolarisNotificationRecord): boolean;
|
|
398
|
+
dismiss(id: string): void;
|
|
399
|
+
remove(id: string): void;
|
|
400
|
+
clearHistory(): void;
|
|
401
|
+
pause(id: string): void;
|
|
402
|
+
resume(id: string): void;
|
|
403
|
+
toggleUserPause(id: string): void;
|
|
404
|
+
setHoverPaused(id: string, paused: boolean): void;
|
|
405
|
+
toggleExpanded(id: string): void;
|
|
406
|
+
update(id: string, patch: Partial<SolarisNotificationInput>): void;
|
|
407
|
+
openCenter(): void;
|
|
408
|
+
closeCenter(): void;
|
|
409
|
+
toggleCenter(): void;
|
|
410
|
+
private tick;
|
|
411
|
+
private rebalance;
|
|
412
|
+
private createRecord;
|
|
413
|
+
private resolveAriaLive;
|
|
414
|
+
private createRef;
|
|
415
|
+
private createId;
|
|
416
|
+
private find;
|
|
417
|
+
private patch;
|
|
418
|
+
private resolveRequiredText;
|
|
419
|
+
private resolveOptionalText;
|
|
420
|
+
private hasOwn;
|
|
421
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SolarisNotificationService, never>;
|
|
422
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SolarisNotificationService>;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
declare class SolarisNotificationCenterComponent {
|
|
426
|
+
protected readonly notificationService: SolarisNotificationService;
|
|
427
|
+
protected readonly intl: SolarisNotificationIntlService;
|
|
428
|
+
onEscape(): void;
|
|
429
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SolarisNotificationCenterComponent, never>;
|
|
430
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SolarisNotificationCenterComponent, "solaris-notification-center", never, {}, {}, never, never, true, never>;
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
declare class SolarisNotificationItemComponent {
|
|
434
|
+
protected readonly notificationService: SolarisNotificationService;
|
|
435
|
+
protected readonly intl: SolarisNotificationIntlService;
|
|
436
|
+
readonly item: i0.InputSignal<SolarisNotificationRecord>;
|
|
437
|
+
readonly mode: i0.InputSignal<"center" | "toast">;
|
|
438
|
+
readonly paused: i0.Signal<boolean>;
|
|
439
|
+
readonly secondsLeft: i0.Signal<number>;
|
|
440
|
+
readonly progress: i0.Signal<number>;
|
|
441
|
+
readonly iconClass: i0.Signal<"ph-check-circle" | "ph-warning-circle" | "ph-x-circle" | "ph-info">;
|
|
442
|
+
toggleExpanded(): void;
|
|
443
|
+
toggleUserPause(): void;
|
|
444
|
+
close(): void;
|
|
445
|
+
onMouseEnter(): void;
|
|
446
|
+
onMouseLeave(): void;
|
|
447
|
+
runAction(action: SolarisNotificationAction): Promise<void>;
|
|
448
|
+
protected resolveActionLabel(action: SolarisNotificationAction): string;
|
|
449
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SolarisNotificationItemComponent, never>;
|
|
450
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SolarisNotificationItemComponent, "solaris-notification-item", never, { "item": { "alias": "item"; "required": true; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
declare class SolarisNotificationHostComponent {
|
|
454
|
+
protected readonly notificationService: SolarisNotificationService;
|
|
455
|
+
protected readonly positions: readonly SolarisNotificationPosition[];
|
|
456
|
+
readonly withCenter: i0.InputSignal<boolean>;
|
|
457
|
+
visibleByPosition(position: SolarisNotificationPosition): _educarehq_solaris_components.SolarisNotificationRecord[];
|
|
458
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SolarisNotificationHostComponent, never>;
|
|
459
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SolarisNotificationHostComponent, "solaris-notification-host", never, { "withCenter": { "alias": "withCenter"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
declare const SOLARIS_NOTIFICATION_POSITIONS: readonly SolarisNotificationPosition[];
|
|
463
|
+
declare const SOLARIS_NOTIFICATION_DEFAULT_CONFIG: SolarisNotificationConfig;
|
|
464
|
+
declare const SOLARIS_NOTIFICATION_CONFIG: InjectionToken<SolarisNotificationConfig>;
|
|
465
|
+
declare function provideSolarisNotifications(input?: SolarisNotificationConfigInput): EnvironmentProviders;
|
|
466
|
+
|
|
263
467
|
type SolarisLoadingTrail = 'forward' | 'reverse';
|
|
264
468
|
type SolarisLoadingSpeed = 'slow' | 'md' | 'fast';
|
|
265
469
|
type SolarisLoadingDashDensity = 'low' | 'md' | 'high';
|
|
@@ -298,10 +502,6 @@ type Spoke = {
|
|
|
298
502
|
opacity: number;
|
|
299
503
|
};
|
|
300
504
|
|
|
301
|
-
type SolarisSizePreset = 'sm' | 'md' | 'lg';
|
|
302
|
-
type SolarisRadiusPreset = 'none' | 'sm' | 'md' | 'lg' | 'full';
|
|
303
|
-
type SolarisColorPreset = 'primary' | 'surface' | 'success' | 'warning' | 'error' | 'info' | 'gradient';
|
|
304
|
-
|
|
305
505
|
type BadgeVariant = 'solid' | 'subtle' | 'outline';
|
|
306
506
|
type BadgeColorInput = SolarisColorPreset | string & {
|
|
307
507
|
readonly __solarisCustom?: unique symbol;
|
|
@@ -806,13 +1006,6 @@ declare class SolarisCheckbox implements ControlValueAccessor {
|
|
|
806
1006
|
static ɵcmp: i0.ɵɵComponentDeclaration<SolarisCheckbox, "solaris-checkbox", never, { "indeterminate": { "alias": "indeterminate"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "inputId": { "alias": "id"; "required": false; "isSignal": true; }; "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "checkColor": { "alias": "checkColor"; "required": false; "isSignal": true; }; }, { "checkedChange": "checkedChange"; "indeterminateChange": "indeterminateChange"; }, never, ["*"], true, never>;
|
|
807
1007
|
}
|
|
808
1008
|
|
|
809
|
-
type SolarisButtonVariant = 'solid' | 'outline' | 'ghost' | 'soft';
|
|
810
|
-
type SolarisRadiusInput = SolarisRadiusPreset | SolarisCustomString;
|
|
811
|
-
type SolarisButtonColorInput = SolarisColorPreset | SolarisCustomString;
|
|
812
|
-
type SolarisCustomString = string & {
|
|
813
|
-
readonly __solarisCustom?: unique symbol;
|
|
814
|
-
};
|
|
815
|
-
|
|
816
1009
|
declare class ButtonGroupDirective {
|
|
817
1010
|
private _radius;
|
|
818
1011
|
set radius(v: SolarisRadiusInput | null | undefined);
|
|
@@ -1084,6 +1277,7 @@ declare class FormField {
|
|
|
1084
1277
|
appearance: SolarisFormFieldAppearance;
|
|
1085
1278
|
showErrors: SolarisFormFieldShowErrors;
|
|
1086
1279
|
private readonly _tick;
|
|
1280
|
+
readonly customErrorKey: i0.InputSignal<string>;
|
|
1087
1281
|
constructor();
|
|
1088
1282
|
get hasPrefix(): boolean;
|
|
1089
1283
|
get hasSuffix(): boolean;
|
|
@@ -1096,7 +1290,7 @@ declare class FormField {
|
|
|
1096
1290
|
} | undefined>;
|
|
1097
1291
|
readonly errorKey: i0.Signal<string>;
|
|
1098
1292
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormField, never>;
|
|
1099
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormField, "solaris-form-field", never, { "hint": { "alias": "hint"; "required": false; }; "label": { "alias": "label"; "required": false; }; "hintKey": { "alias": "hintKey"; "required": false; }; "labelKey": { "alias": "labelKey"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "radius": { "alias": "radius"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "showErrors": { "alias": "showErrors"; "required": false; }; }, {}, ["prefix", "suffix"], ["[solaris-prefix]", "*", "[solaris-suffix]", "[form-field-message]"], true, never>;
|
|
1293
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormField, "solaris-form-field", never, { "hint": { "alias": "hint"; "required": false; }; "label": { "alias": "label"; "required": false; }; "hintKey": { "alias": "hintKey"; "required": false; }; "labelKey": { "alias": "labelKey"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "radius": { "alias": "radius"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "showErrors": { "alias": "showErrors"; "required": false; }; "customErrorKey": { "alias": "customErrorKey"; "required": false; "isSignal": true; }; }, {}, ["prefix", "suffix"], ["[solaris-prefix]", "*", "[solaris-suffix]", "[form-field-message]"], true, never>;
|
|
1100
1294
|
}
|
|
1101
1295
|
|
|
1102
1296
|
type SolarisSelectNode<T = any> = SolarisSelectItem<T> | SolarisSelectDivider | SolarisSelectGroup<T>;
|
|
@@ -1277,5 +1471,5 @@ declare class SolarisSelect implements OnInit, ControlValueAccessor, AfterViewIn
|
|
|
1277
1471
|
static ɵcmp: i0.ɵɵComponentDeclaration<SolarisSelect, "solaris-select", never, { "items": { "alias": "items"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "valueKey": { "alias": "valueKey"; "required": false; }; "backKey": { "alias": "backKey"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "placeholderKey": { "alias": "placeholderKey"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "selectedCountKey": { "alias": "selectedCountKey"; "required": false; }; "selectedFirst": { "alias": "selectedFirst"; "required": false; }; "searchPlaceholder": { "alias": "searchPlaceholder"; "required": false; }; "selectedCountText": { "alias": "selectedCountText"; "required": false; }; "panelMaxHeight": { "alias": "panelMaxHeight"; "required": false; }; "searchPlaceholderKey": { "alias": "searchPlaceholderKey"; "required": false; }; "selectionSeparator": { "alias": "selectionSeparator"; "required": false; }; "compareWith": { "alias": "compareWith"; "required": false; }; "backText": { "alias": "backText"; "required": false; }; "selectionDisplay": { "alias": "selectionDisplay"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
1278
1472
|
}
|
|
1279
1473
|
|
|
1280
|
-
export { ButtonDirective, ButtonGroupDirective, FieldErrorComponent, FormField, InputTextDirective, PasswordToggle, SOLARIS_FORM_FIELD_CONTROLLER, SOLARIS_FORM_FIELD_FEATURES, SOLARIS_INPUT, SolarisBadge, SolarisBodyDirective, SolarisBreadcrumb, SolarisCheckbox, SolarisColumnCellDef, SolarisColumnHeaderDef, SolarisControlBridgeDirective, SolarisDivider, SolarisDrawer, SolarisDrawerFooterDirective, SolarisDrawerHeaderDirective, SolarisDropdownContent, SolarisDropdownContentPanelDirective, SolarisDropdownContentRegistry, SolarisDropdownContentTriggerDirective, SolarisEmailDirective, SolarisFilterBar, SolarisFilterChip, SolarisFilterField, SolarisFilterPanel, SolarisFilterPanelFooterDirective, SolarisFooterDirective, SolarisFormFieldController, SolarisHeaderDirective, SolarisIdGenerator, SolarisImageSliderComponent, SolarisLoading, SolarisLoadingOverlay, SolarisPage, SolarisPageHeader, SolarisPageHeaderBreadcrumbDirective, SolarisPageHeaderDescriptionDirective, SolarisPageHeaderTitle, SolarisPageHeaderTitleDirective, SolarisPasswordDirective, SolarisPhoneInput, SolarisPopover, SolarisPopoverPanelDirective, SolarisPopoverTriggerDirective, SolarisPrefixDirective, SolarisRowComponent, SolarisSectionComponent, SolarisSelect, SolarisSuffixDirective, SolarisTab, SolarisTable, SolarisTableColumn, SolarisTableFilters, SolarisTableSkeleton, SolarisTabs, computePopoverPosition, uniqueId };
|
|
1281
|
-
export type { BadgeColorInput, BadgeVariant, CheckboxAppearance, CheckboxColorInput, CheckboxVariant, DividerLabelAlign, DividerOrientation, DividerSpacing, DividerStrength, DividerVariant, Iso2, LoadingType, PhoneFormat, SelectionDisplay, SolarisAlign, SolarisBreadcrumbItem, SolarisBreadcrumbTarget, SolarisButtonColorInput, SolarisButtonVariant, SolarisCheckCustomString, SolarisColorPreset, SolarisCustomString, SolarisDrawerSide, SolarisDropdownContentInterface, SolarisDropdownWidthMode, SolarisFilterPanelRadius, SolarisFormFieldAppearance, SolarisFormFieldControllerLike, SolarisFormFieldFeature, SolarisFormFieldRadius, SolarisFormFieldShowErrors, SolarisInputApi, SolarisLoadingColor, SolarisLoadingDashDensity, SolarisLoadingEasing, SolarisLoadingPresetColor, SolarisLoadingSize, SolarisLoadingSpeed, SolarisLoadingTrail, SolarisPageChange, SolarisPopoverPlacement, SolarisPopoverPositionConfiguration, SolarisPopoverPositionResult, SolarisRadiusInput, SolarisRadiusPreset, SolarisRowKey, SolarisSelectDivider, SolarisSelectGroup, SolarisSelectItem, SolarisSelectNode, SolarisSelectRow, SolarisSizePreset, SolarisSliderItem, SolarisSliderOverlayContext, SolarisSort, SolarisSortDirection, SolarisTableI18n, SolarisTableVariant, StackLevel, TabsSize, TabsVariant };
|
|
1474
|
+
export { ButtonDirective, ButtonGroupDirective, FieldErrorComponent, FormField, InputTextDirective, PasswordToggle, SOLARIS_FORM_FIELD_CONTROLLER, SOLARIS_FORM_FIELD_FEATURES, SOLARIS_INPUT, SOLARIS_NOTIFICATION_CONFIG, SOLARIS_NOTIFICATION_DEFAULT_CONFIG, SOLARIS_NOTIFICATION_POSITIONS, SolarisBadge, SolarisBodyDirective, SolarisBreadcrumb, SolarisCheckbox, SolarisColumnCellDef, SolarisColumnHeaderDef, SolarisControlBridgeDirective, SolarisDivider, SolarisDrawer, SolarisDrawerFooterDirective, SolarisDrawerHeaderDirective, SolarisDropdownContent, SolarisDropdownContentPanelDirective, SolarisDropdownContentRegistry, SolarisDropdownContentTriggerDirective, SolarisEmailDirective, SolarisFilterBar, SolarisFilterChip, SolarisFilterField, SolarisFilterPanel, SolarisFilterPanelFooterDirective, SolarisFooterDirective, SolarisFormFieldController, SolarisHeaderDirective, SolarisIdGenerator, SolarisImageSliderComponent, SolarisLoading, SolarisLoadingOverlay, SolarisNotificationCenterComponent, SolarisNotificationHostComponent, SolarisNotificationIntlService, SolarisNotificationItemComponent, SolarisNotificationService, SolarisPage, SolarisPageHeader, SolarisPageHeaderBreadcrumbDirective, SolarisPageHeaderDescriptionDirective, SolarisPageHeaderTitle, SolarisPageHeaderTitleDirective, SolarisPasswordDirective, SolarisPhoneInput, SolarisPopover, SolarisPopoverPanelDirective, SolarisPopoverTriggerDirective, SolarisPrefixDirective, SolarisRowComponent, SolarisSectionComponent, SolarisSelect, SolarisSuffixDirective, SolarisTab, SolarisTable, SolarisTableColumn, SolarisTableFilters, SolarisTableSkeleton, SolarisTabs, computePopoverPosition, provideSolarisNotifications, uniqueId };
|
|
1475
|
+
export type { BadgeColorInput, BadgeVariant, CheckboxAppearance, CheckboxColorInput, CheckboxVariant, DividerLabelAlign, DividerOrientation, DividerSpacing, DividerStrength, DividerVariant, Iso2, LoadingType, PhoneFormat, SelectionDisplay, SolarisAlign, SolarisBreadcrumbItem, SolarisBreadcrumbTarget, SolarisButtonColorInput, SolarisButtonVariant, SolarisCheckCustomString, SolarisColorPreset, SolarisCustomString, SolarisDrawerSide, SolarisDropdownContentInterface, SolarisDropdownWidthMode, SolarisFilterPanelRadius, SolarisFormFieldAppearance, SolarisFormFieldControllerLike, SolarisFormFieldFeature, SolarisFormFieldRadius, SolarisFormFieldShowErrors, SolarisInputApi, SolarisLoadingColor, SolarisLoadingDashDensity, SolarisLoadingEasing, SolarisLoadingPresetColor, SolarisLoadingSize, SolarisLoadingSpeed, SolarisLoadingTrail, SolarisNotificationAction, SolarisNotificationActionContext, SolarisNotificationConfig, SolarisNotificationConfigInput, SolarisNotificationInput, SolarisNotificationKind, SolarisNotificationPosition, SolarisNotificationRecord, SolarisNotificationRef, SolarisNotificationState, SolarisPageChange, SolarisPopoverPlacement, SolarisPopoverPositionConfiguration, SolarisPopoverPositionResult, SolarisRadiusInput, SolarisRadiusPreset, SolarisRowKey, SolarisSelectDivider, SolarisSelectGroup, SolarisSelectItem, SolarisSelectNode, SolarisSelectRow, SolarisSizePreset, SolarisSliderItem, SolarisSliderOverlayContext, SolarisSort, SolarisSortDirection, SolarisTableI18n, SolarisTableVariant, StackLevel, TabsSize, TabsVariant };
|