@fundamental-ngx/core 0.64.2-rc.9 → 0.64.3
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/fundamental-ngx-core-avatar-group-legacy.mjs +9 -11
- package/fesm2022/fundamental-ngx-core-avatar-group-legacy.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-core-calendar.mjs +20 -39
- package/fesm2022/fundamental-ngx-core-calendar.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-core-date-picker.mjs +4 -5
- package/fesm2022/fundamental-ngx-core-date-picker.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-core-datetime-picker.mjs +5 -8
- package/fesm2022/fundamental-ngx-core-datetime-picker.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-core-dynamic-page.mjs +21 -5
- package/fesm2022/fundamental-ngx-core-dynamic-page.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-core-facets.mjs +2 -2
- package/fesm2022/fundamental-ngx-core-facets.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-core-flexible-column-layout.mjs +28 -17
- package/fesm2022/fundamental-ngx-core-flexible-column-layout.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-core-form.mjs +210 -102
- package/fesm2022/fundamental-ngx-core-form.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-core-input-group.mjs +2 -2
- package/fesm2022/fundamental-ngx-core-input-group.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-core-multi-combobox.mjs +1 -1
- package/fesm2022/fundamental-ngx-core-multi-combobox.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-core-popover.mjs +10 -1
- package/fesm2022/fundamental-ngx-core-popover.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-core-slider.mjs +13 -18
- package/fesm2022/fundamental-ngx-core-slider.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-core-step-input.mjs +1 -1
- package/fesm2022/fundamental-ngx-core-step-input.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-core-time-picker.mjs +4 -4
- package/fesm2022/fundamental-ngx-core-time-picker.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-core-time.mjs +3 -4
- package/fesm2022/fundamental-ngx-core-time.mjs.map +1 -1
- package/package.json +3 -3
- package/schematics/package.json +1 -1
- package/types/fundamental-ngx-core-avatar-group-legacy.d.ts +4 -5
- package/types/fundamental-ngx-core-calendar.d.ts +0 -2
- package/types/fundamental-ngx-core-dynamic-page.d.ts +15 -1
- package/types/fundamental-ngx-core-flexible-column-layout.d.ts +8 -5
- package/types/fundamental-ngx-core-form.d.ts +44 -22
- package/types/fundamental-ngx-core-slider.d.ts +8 -8
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { ElementRef, OnChanges,
|
|
2
|
+
import { ElementRef, OnChanges, AfterViewInit, OnDestroy, QueryList, OnInit } from '@angular/core';
|
|
3
3
|
import { Size, Nullable, ColorAccent, HasElementRef, CssClassBuilder } from '@fundamental-ngx/cdk/utils';
|
|
4
4
|
import { FocusableOption } from '@angular/cdk/a11y';
|
|
5
5
|
|
|
@@ -26,7 +26,7 @@ declare class AvatarGroupLegacyItemDirective implements FocusableOption {
|
|
|
26
26
|
|
|
27
27
|
type AvatarGroupLegacyType = 'group' | 'individual';
|
|
28
28
|
type AvatarGroupLegacyOverflowButtonColor = 'neutral' | 'random' | ColorAccent;
|
|
29
|
-
declare class AvatarGroupLegacyComponent implements AvatarGroupLegacyInterface, OnChanges,
|
|
29
|
+
declare class AvatarGroupLegacyComponent implements AvatarGroupLegacyInterface, OnChanges, AfterViewInit, OnDestroy {
|
|
30
30
|
/** Id of the Avatar Group. */
|
|
31
31
|
id: string;
|
|
32
32
|
/** Apply user custom class. */
|
|
@@ -60,7 +60,8 @@ declare class AvatarGroupLegacyComponent implements AvatarGroupLegacyInterface,
|
|
|
60
60
|
/** @hidden */
|
|
61
61
|
private readonly _subscription;
|
|
62
62
|
/** @hidden */
|
|
63
|
-
private
|
|
63
|
+
private _resizeObserver;
|
|
64
|
+
/** @hidden */
|
|
64
65
|
private readonly _cdr;
|
|
65
66
|
/** @hidden */
|
|
66
67
|
private readonly _rtlService;
|
|
@@ -71,8 +72,6 @@ declare class AvatarGroupLegacyComponent implements AvatarGroupLegacyInterface,
|
|
|
71
72
|
/** @hidden */
|
|
72
73
|
keyUpHandler(event: KeyboardEvent): void;
|
|
73
74
|
/** @hidden */
|
|
74
|
-
ngOnInit(): void;
|
|
75
|
-
/** @hidden */
|
|
76
75
|
ngOnChanges(): void;
|
|
77
76
|
/** @hidden */
|
|
78
77
|
ngAfterViewInit(): void;
|
|
@@ -248,8 +248,6 @@ declare class CalendarHeaderComponent<D> implements OnInit, OnChanges {
|
|
|
248
248
|
/** Get information about amount of years displayed at once on year view */
|
|
249
249
|
private _amountOfYearsPerPeriod;
|
|
250
250
|
/** @hidden */
|
|
251
|
-
private _initiated;
|
|
252
|
-
/** @hidden */
|
|
253
251
|
constructor(_changeDetRef: ChangeDetectorRef, _calendarService: CalendarService, _dateTimeAdapter: DatetimeAdapter<D>);
|
|
254
252
|
/** @hidden */
|
|
255
253
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -4,6 +4,7 @@ import { HasElementRef, Nullable } from '@fundamental-ngx/cdk/utils';
|
|
|
4
4
|
import { ToolbarComponent } from '@fundamental-ngx/core/toolbar';
|
|
5
5
|
import { ContentDensityObserver } from '@fundamental-ngx/core/content-density';
|
|
6
6
|
import { BreadcrumbComponent } from '@fundamental-ngx/core/breadcrumb';
|
|
7
|
+
import { MessageStripComponent } from '@fundamental-ngx/core/message-strip';
|
|
7
8
|
import { HeadingLevel, TabList } from '@fundamental-ngx/core/shared';
|
|
8
9
|
import { FlexibleColumnLayoutComponent } from '@fundamental-ngx/core/flexible-column-layout';
|
|
9
10
|
import { ScrollbarDirective } from '@fundamental-ngx/core/scrollbar';
|
|
@@ -223,6 +224,19 @@ declare class DynamicPageHeaderComponent implements OnInit {
|
|
|
223
224
|
* When provided via fdDynamicPageHeaderTitle directive, overrides the title text input.
|
|
224
225
|
*/
|
|
225
226
|
readonly _titleTemplate: i0.Signal<DynamicPageHeaderTitleDirective | undefined>;
|
|
227
|
+
/**
|
|
228
|
+
* Optional template ref for message strip content.
|
|
229
|
+
* When provided, the message strip container is rendered using this template
|
|
230
|
+
* instead of relying on ng-content projection.
|
|
231
|
+
* This is used by Platform Dynamic Page which cannot project via ng-content.
|
|
232
|
+
*/
|
|
233
|
+
readonly messageStripTemplate: i0.InputSignal<TemplateRef<any> | null>;
|
|
234
|
+
/**
|
|
235
|
+
* @hidden
|
|
236
|
+
* Content child query for MessageStripComponent.
|
|
237
|
+
* When present, the message strip will be rendered below the subtitle in the header.
|
|
238
|
+
*/
|
|
239
|
+
readonly messageStrip: i0.Signal<MessageStripComponent | undefined>;
|
|
226
240
|
/** @hidden */
|
|
227
241
|
readonly _dynamicPageBreadcrumbComponent: i0.Signal<DynamicPageBreadcrumbComponent | undefined>;
|
|
228
242
|
/** @hidden */
|
|
@@ -268,7 +282,7 @@ declare class DynamicPageHeaderComponent implements OnInit {
|
|
|
268
282
|
*/
|
|
269
283
|
stopPropagation(event: MouseEvent): void;
|
|
270
284
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicPageHeaderComponent, never>;
|
|
271
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicPageHeaderComponent, "fd-dynamic-page-header", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "titleWrap": { "alias": "titleWrap"; "required": false; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "subtitleWrap": { "alias": "subtitleWrap"; "required": false; "isSignal": true; }; "headingLevel": { "alias": "headingLevel"; "required": false; "isSignal": true; }; "subtitleHeadingLevel": { "alias": "subtitleHeadingLevel"; "required": false; "isSignal": true; }; "titleId": { "alias": "titleId"; "required": false; "isSignal": true; }; }, {}, ["_subtitleTemplate", "_titleTemplate", "_dynamicPageBreadcrumbComponent", "_breadcrumbComponent", "_globalActions", "_layoutActions", "_contentToolbar"], ["fd-dynamic-page-breadcrumb", "fd-facet", "fd-dynamic-page-title-content", "fd-dynamic-page-global-actions", "fd-dynamic-page-layout-actions"], true, never>;
|
|
285
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicPageHeaderComponent, "fd-dynamic-page-header", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "titleWrap": { "alias": "titleWrap"; "required": false; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "subtitleWrap": { "alias": "subtitleWrap"; "required": false; "isSignal": true; }; "headingLevel": { "alias": "headingLevel"; "required": false; "isSignal": true; }; "subtitleHeadingLevel": { "alias": "subtitleHeadingLevel"; "required": false; "isSignal": true; }; "titleId": { "alias": "titleId"; "required": false; "isSignal": true; }; "messageStripTemplate": { "alias": "messageStripTemplate"; "required": false; "isSignal": true; }; }, {}, ["_subtitleTemplate", "_titleTemplate", "messageStrip", "_dynamicPageBreadcrumbComponent", "_breadcrumbComponent", "_globalActions", "_layoutActions", "_contentToolbar"], ["fd-dynamic-page-breadcrumb", "fd-facet", "fd-dynamic-page-title-content", "fd-message-strip", "fd-dynamic-page-global-actions", "fd-dynamic-page-layout-actions"], true, never>;
|
|
272
286
|
}
|
|
273
287
|
|
|
274
288
|
declare class DynamicPageSubheaderComponent {
|
|
@@ -57,7 +57,8 @@ declare class FlexibleColumnLayoutComponent implements AfterViewInit, OnChanges,
|
|
|
57
57
|
* 'TwoColumnsEndExpanded' | 'ThreeColumnsMidExpanded' | 'ThreeColumnsEndExpanded' |
|
|
58
58
|
* 'ThreeColumnsStartMinimized' | 'ThreeColumnsEndMinimized'
|
|
59
59
|
*/
|
|
60
|
-
layout: FlexibleColumnLayout;
|
|
60
|
+
set layout(value: FlexibleColumnLayout);
|
|
61
|
+
get layout(): FlexibleColumnLayout;
|
|
61
62
|
/**
|
|
62
63
|
* Mapping of the layout name and the column layout in %
|
|
63
64
|
*/
|
|
@@ -101,7 +102,7 @@ declare class FlexibleColumnLayoutComponent implements AfterViewInit, OnChanges,
|
|
|
101
102
|
* if the separator is visible
|
|
102
103
|
* Options include: 'left', 'right' and null
|
|
103
104
|
*/
|
|
104
|
-
_leftColumnSeparator: ColumnSeparatorValue
|
|
105
|
+
readonly _leftColumnSeparator: i0.WritableSignal<ColumnSeparatorValue>;
|
|
105
106
|
/**
|
|
106
107
|
* @hidden
|
|
107
108
|
* right column separator value (between middle and end columns)
|
|
@@ -109,17 +110,19 @@ declare class FlexibleColumnLayoutComponent implements AfterViewInit, OnChanges,
|
|
|
109
110
|
* if the separator is visible
|
|
110
111
|
* Options include: 'left', 'right' and null
|
|
111
112
|
*/
|
|
112
|
-
_rightColumnSeparator: ColumnSeparatorValue
|
|
113
|
+
readonly _rightColumnSeparator: i0.WritableSignal<ColumnSeparatorValue>;
|
|
113
114
|
/**
|
|
114
115
|
* @hidden
|
|
115
116
|
* the column layout representing the distribution of the width
|
|
116
117
|
* between the first (start), the middle and the last(end) column
|
|
117
118
|
*/
|
|
118
|
-
_columnLayout: {
|
|
119
|
+
readonly _columnLayout: i0.WritableSignal<{
|
|
119
120
|
start: number;
|
|
120
121
|
mid: number;
|
|
121
122
|
end: number;
|
|
122
|
-
}
|
|
123
|
+
}>;
|
|
124
|
+
/** @hidden */
|
|
125
|
+
private readonly _layout;
|
|
123
126
|
/**
|
|
124
127
|
* @hidden
|
|
125
128
|
* allows to keep track of the previos layout
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { InjectionToken, InputSignal, ElementRef, Type, Provider, OnInit, OnChanges, OnDestroy, EventEmitter, TemplateRef
|
|
2
|
+
import { InjectionToken, InputSignal, ElementRef, Type, Provider, OnInit, OnChanges, OnDestroy, AfterContentInit, EventEmitter, TemplateRef } from '@angular/core';
|
|
3
3
|
import { FormStates } from '@fundamental-ngx/cdk/forms';
|
|
4
|
-
import { Nullable, CssClassBuilder } from '@fundamental-ngx/cdk/utils';
|
|
4
|
+
import { Nullable, CssClassBuilder, HasElementRef } from '@fundamental-ngx/cdk/utils';
|
|
5
5
|
import { ContentDensityObserver } from '@fundamental-ngx/core/content-density';
|
|
6
6
|
import { TriggerConfig, PopoverComponent, PopoverService } from '@fundamental-ngx/core/popover';
|
|
7
7
|
import { PopoverFillMode, Placement } from '@fundamental-ngx/core/shared';
|
|
@@ -53,8 +53,8 @@ interface FormItemControl {
|
|
|
53
53
|
*/
|
|
54
54
|
declare class FormControlComponent implements CssClassBuilder, OnInit, OnChanges, OnDestroy, FormItemControl {
|
|
55
55
|
elementRef: ElementRef<HTMLInputElement | HTMLTextAreaElement>;
|
|
56
|
-
|
|
57
|
-
|
|
56
|
+
protected ariaLabelAttr: string;
|
|
57
|
+
protected ariaLabelledByAttr: string;
|
|
58
58
|
/**
|
|
59
59
|
* The state of the form control - applies css classes.
|
|
60
60
|
* Can be `success`, `error`, `warning`, `information` or blank for default.
|
|
@@ -69,10 +69,6 @@ declare class FormControlComponent implements CssClassBuilder, OnInit, OnChanges
|
|
|
69
69
|
/** aria-label for form-control. */
|
|
70
70
|
ariaLabelledBy: string | undefined | null;
|
|
71
71
|
/** @hidden */
|
|
72
|
-
protected get ariaLabelBinding(): string | null;
|
|
73
|
-
/** @hidden */
|
|
74
|
-
protected get ariaLabelledByBinding(): string | null;
|
|
75
|
-
/** @hidden */
|
|
76
72
|
private _subscriptions;
|
|
77
73
|
/** @hidden */
|
|
78
74
|
constructor(elementRef: ElementRef<HTMLInputElement | HTMLTextAreaElement>, _contentDensityObserver: ContentDensityObserver, ariaLabelAttr: string, ariaLabelledByAttr: string);
|
|
@@ -176,7 +172,7 @@ declare class FormHeaderModule {
|
|
|
176
172
|
static ɵinj: i0.ɵɵInjectorDeclaration<FormHeaderModule>;
|
|
177
173
|
}
|
|
178
174
|
|
|
179
|
-
declare class FormInputMessageGroupComponent {
|
|
175
|
+
declare class FormInputMessageGroupComponent implements AfterContentInit {
|
|
180
176
|
/**
|
|
181
177
|
* To allow user to determine what event he wants to trigger the messages to show
|
|
182
178
|
* Accepts any [HTML DOM Events](https://www.w3schools.com/jsref/dom_obj_event.asp).
|
|
@@ -222,12 +218,24 @@ declare class FormInputMessageGroupComponent {
|
|
|
222
218
|
readonly _elementRef: ElementRef<any>;
|
|
223
219
|
/** @hidden Translated aria-label for the popover body (#14260). */
|
|
224
220
|
protected readonly _popoverAriaLabel: i0.Signal<string>;
|
|
221
|
+
/** @hidden */
|
|
222
|
+
private readonly _renderer;
|
|
223
|
+
/** @hidden */
|
|
224
|
+
private readonly _injector;
|
|
225
|
+
/** @hidden Query for the projected form message */
|
|
226
|
+
private readonly _formMessage;
|
|
227
|
+
/** @hidden Track the aria-describedby value we set, to distinguish from user-provided values */
|
|
228
|
+
private _managedDescribedbyId;
|
|
229
|
+
/** @hidden */
|
|
230
|
+
ngAfterContentInit(): void;
|
|
225
231
|
/**
|
|
226
232
|
* Function is called every time message changes isOpen attribute
|
|
227
233
|
*/
|
|
228
234
|
openChanged(isOpen: boolean): void;
|
|
235
|
+
/** @hidden Get the control element (input, textarea, etc.) from the popover control */
|
|
236
|
+
private _getControlElement;
|
|
229
237
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormInputMessageGroupComponent, never>;
|
|
230
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormInputMessageGroupComponent, "fd-form-input-message-group", never, { "triggers": { "alias": "triggers"; "required": false; }; "closeOnOutsideClick": { "alias": "closeOnOutsideClick"; "required": false; }; "fillControlMode": { "alias": "fillControlMode"; "required": false; }; "noArrow": { "alias": "noArrow"; "required": false; }; "closeOnEscapeKey": { "alias": "closeOnEscapeKey"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "placementContainer": { "alias": "placementContainer"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "preventSpaceKeyScroll": { "alias": "preventSpaceKeyScroll"; "required": false; }; }, { "isOpenChange": "isOpenChange"; },
|
|
238
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormInputMessageGroupComponent, "fd-form-input-message-group", never, { "triggers": { "alias": "triggers"; "required": false; }; "closeOnOutsideClick": { "alias": "closeOnOutsideClick"; "required": false; }; "fillControlMode": { "alias": "fillControlMode"; "required": false; }; "noArrow": { "alias": "noArrow"; "required": false; }; "closeOnEscapeKey": { "alias": "closeOnEscapeKey"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "placementContainer": { "alias": "placementContainer"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "preventSpaceKeyScroll": { "alias": "preventSpaceKeyScroll"; "required": false; }; }, { "isOpenChange": "isOpenChange"; }, ["_formMessage"], ["*", "fd-form-message"], true, never>;
|
|
231
239
|
}
|
|
232
240
|
|
|
233
241
|
/**
|
|
@@ -373,29 +381,43 @@ declare class FormLegendModule {
|
|
|
373
381
|
/**
|
|
374
382
|
* Form message. Intended to be displayed with a form control for validation purposes.
|
|
375
383
|
*/
|
|
376
|
-
declare class FormMessageComponent implements
|
|
377
|
-
|
|
384
|
+
declare class FormMessageComponent implements HasElementRef {
|
|
385
|
+
/**
|
|
386
|
+
* form-message id
|
|
387
|
+
* if not set, a default value is provided
|
|
388
|
+
*/
|
|
389
|
+
readonly id: i0.InputSignal<string>;
|
|
378
390
|
/** Type of the message. */
|
|
379
|
-
type:
|
|
391
|
+
readonly type: i0.InputSignal<"success" | "error" | "warning" | "default" | "information">;
|
|
380
392
|
/** Whether message should be in static mode, without popover. It's mostly used for forms component, that contain dropdown */
|
|
381
|
-
static: boolean
|
|
393
|
+
readonly static: i0.InputSignal<boolean>;
|
|
394
|
+
/**
|
|
395
|
+
* Screen reader message for the form message value state.
|
|
396
|
+
* This message provides a text alternative for the state icon displayed with the form message.
|
|
397
|
+
* If provided, this custom message will be announced to screen readers.
|
|
398
|
+
* If not provided, a translated default message will be used based on the message type:
|
|
399
|
+
* - `error`: "Invalid Entry" (represents error icon)
|
|
400
|
+
* - `warning`: "Warning" (represents warning icon)
|
|
401
|
+
* - `success`: "Success" (represents success icon)
|
|
402
|
+
* - `information`: "Information" (represents information icon)
|
|
403
|
+
* - `default`: No message
|
|
404
|
+
*/
|
|
405
|
+
readonly valueStateMessage: i0.InputSignal<string>;
|
|
382
406
|
/**
|
|
383
407
|
* Whether message is used inside popovers or dialogs.
|
|
384
408
|
* When it is enabled box shadow is removed and message is expanded to whole container width
|
|
385
409
|
*/
|
|
386
|
-
embedded: boolean
|
|
387
|
-
/** User's custom classes */
|
|
388
|
-
class: string;
|
|
410
|
+
readonly embedded: i0.InputSignal<boolean>;
|
|
389
411
|
/** @hidden */
|
|
390
|
-
|
|
412
|
+
readonly elementRef: ElementRef<any>;
|
|
391
413
|
/** @hidden */
|
|
392
|
-
|
|
414
|
+
protected readonly srOnlyMessage: i0.Signal<string>;
|
|
393
415
|
/** @hidden */
|
|
394
|
-
|
|
416
|
+
protected readonly cssClass: i0.Signal<string>;
|
|
395
417
|
/** @hidden */
|
|
396
|
-
|
|
418
|
+
private readonly _translate;
|
|
397
419
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormMessageComponent, never>;
|
|
398
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormMessageComponent, "fd-form-message", never, { "type": { "alias": "type"; "required": false; }; "static": { "alias": "static"; "required": false; }; "
|
|
420
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormMessageComponent, "fd-form-message", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "static": { "alias": "static"; "required": false; "isSignal": true; }; "valueStateMessage": { "alias": "valueStateMessage"; "required": false; "isSignal": true; }; "embedded": { "alias": "embedded"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
399
421
|
}
|
|
400
422
|
|
|
401
423
|
/**
|
|
@@ -75,6 +75,13 @@ declare class SliderComponent implements OnInit, OnChanges, AfterViewInit, Contr
|
|
|
75
75
|
ariaLabelledBy: Nullable<string>;
|
|
76
76
|
/** Aria label for the slider. */
|
|
77
77
|
ariaLabel: Nullable<string>;
|
|
78
|
+
/**
|
|
79
|
+
* aria-valuetext for the slider
|
|
80
|
+
* provides a human-readable text alternative for a slider's current numeric value.
|
|
81
|
+
* Assistive technologies usually announce the numeric value stored in aria-valuenow.
|
|
82
|
+
* When a bare number is not meaningful or needs context, aria-valuetext overrides the numeric announcement with a descriptive string.
|
|
83
|
+
*/
|
|
84
|
+
ariaValueText: i0.InputSignal<string | undefined>;
|
|
78
85
|
/** Minimum value. */
|
|
79
86
|
set min(value: number);
|
|
80
87
|
get min(): number;
|
|
@@ -155,11 +162,6 @@ declare class SliderComponent implements OnInit, OnChanges, AfterViewInit, Contr
|
|
|
155
162
|
_sliderValueTargets: typeof SliderValueTargets;
|
|
156
163
|
/** @hidden */
|
|
157
164
|
_popoverInputFieldClass: string;
|
|
158
|
-
/**
|
|
159
|
-
* @hidden
|
|
160
|
-
* whether to use value with a prefix for announcing
|
|
161
|
-
*/
|
|
162
|
-
_useSliderValuePrefix: boolean;
|
|
163
165
|
/** @hidden */
|
|
164
166
|
_handles: typeof SliderRangeHandles;
|
|
165
167
|
/** @hidden */
|
|
@@ -286,8 +288,6 @@ declare class SliderComponent implements OnInit, OnChanges, AfterViewInit, Contr
|
|
|
286
288
|
private _instanceOfCustomValue;
|
|
287
289
|
/** @hidden */
|
|
288
290
|
private _listenToInteractionChanges;
|
|
289
|
-
/** @hidden reset default prefix on leaving the slider */
|
|
290
|
-
private _resetPrefix;
|
|
291
291
|
/**
|
|
292
292
|
* @hidden
|
|
293
293
|
* Checks whether input popover element is hovered.
|
|
@@ -296,7 +296,7 @@ declare class SliderComponent implements OnInit, OnChanges, AfterViewInit, Contr
|
|
|
296
296
|
*/
|
|
297
297
|
private _isPopoverHovered;
|
|
298
298
|
static ɵfac: i0.ɵɵFactoryDeclaration<SliderComponent, never>;
|
|
299
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SliderComponent, "fd-slider", never, { "id": { "alias": "id"; "required": false; }; "class": { "alias": "class"; "required": false; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "step": { "alias": "step"; "required": false; }; "jump": { "alias": "jump"; "required": false; }; "tickmarksBetweenLabels": { "alias": "tickmarksBetweenLabels"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "showTicks": { "alias": "showTicks"; "required": false; }; "showTicksLabels": { "alias": "showTicksLabels"; "required": false; }; "customValues": { "alias": "customValues"; "required": false; }; "tooltipMode": { "alias": "tooltipMode"; "required": false; }; "hideProgressBar": { "alias": "hideProgressBar"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, never, true, never>;
|
|
299
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SliderComponent, "fd-slider", never, { "id": { "alias": "id"; "required": false; }; "class": { "alias": "class"; "required": false; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "ariaValueText": { "alias": "ariaValueText"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "step": { "alias": "step"; "required": false; }; "jump": { "alias": "jump"; "required": false; }; "tickmarksBetweenLabels": { "alias": "tickmarksBetweenLabels"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "showTicks": { "alias": "showTicks"; "required": false; }; "showTicksLabels": { "alias": "showTicksLabels"; "required": false; }; "customValues": { "alias": "customValues"; "required": false; }; "tooltipMode": { "alias": "tooltipMode"; "required": false; }; "hideProgressBar": { "alias": "hideProgressBar"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, never, true, never>;
|
|
300
300
|
}
|
|
301
301
|
|
|
302
302
|
/**
|