@tedi-design-system/angular 6.4.0-rc.5 → 6.4.0-rc.7
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/tedi-design-system-angular-tedi.mjs +143 -12
- package/fesm2022/tedi-design-system-angular-tedi.mjs.map +1 -1
- package/package.json +1 -1
- package/tedi/components/form/select/select.component.d.ts +33 -1
- package/tedi/components/form/select/select.component.d.ts.map +1 -1
- package/tedi/components/navigation/horizontal-stepper/horizontal-stepper-item/horizontal-stepper-item.component.d.ts +25 -0
- package/tedi/components/navigation/horizontal-stepper/horizontal-stepper-item/horizontal-stepper-item.component.d.ts.map +1 -0
- package/tedi/components/navigation/horizontal-stepper/horizontal-stepper-item/index.d.ts +2 -0
- package/tedi/components/navigation/horizontal-stepper/horizontal-stepper-item/index.d.ts.map +1 -0
- package/tedi/components/navigation/horizontal-stepper/horizontal-stepper.component.d.ts +18 -0
- package/tedi/components/navigation/horizontal-stepper/horizontal-stepper.component.d.ts.map +1 -0
- package/tedi/components/navigation/horizontal-stepper/index.d.ts +3 -0
- package/tedi/components/navigation/horizontal-stepper/index.d.ts.map +1 -0
- package/tedi/components/navigation/index.d.ts +1 -0
- package/tedi/components/navigation/index.d.ts.map +1 -1
- package/tedi/components/overlay/modal/modal.types.d.ts +3 -2
- package/tedi/components/overlay/modal/modal.types.d.ts.map +1 -1
- package/tedi/services/breakpoint/breakpoint.service.d.ts +8 -0
- package/tedi/services/breakpoint/breakpoint.service.d.ts.map +1 -1
- package/tedi/services/translation/translations.d.ts +7 -0
- package/tedi/services/translation/translations.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -158,6 +158,38 @@ export declare class SelectComponent<T = unknown> implements AfterContentChecked
|
|
|
158
158
|
* Receives the search term and the option item (with all original properties), returns true to include the option.
|
|
159
159
|
*/
|
|
160
160
|
searchFn: import("@angular/core").InputSignal<((term: string, item: T) => boolean) | undefined>;
|
|
161
|
+
/**
|
|
162
|
+
* Whether to clear the search input after an option is selected.
|
|
163
|
+
* Only has a visible effect in multi-select mode — in single-select mode
|
|
164
|
+
* the dropdown closes on selection, which already clears the search term.
|
|
165
|
+
* @default false
|
|
166
|
+
*/
|
|
167
|
+
clearSearchOnSelect: import("@angular/core").InputSignal<boolean>;
|
|
168
|
+
/**
|
|
169
|
+
* Emits whenever the selection changes from any source: option click,
|
|
170
|
+
* tag removal, clear button, select-all, or group toggle.
|
|
171
|
+
* Payload is the array of selected values in multi-select mode, or the
|
|
172
|
+
* single selected value (or `null`) in single-select mode.
|
|
173
|
+
*/
|
|
174
|
+
readonly selectionChange: import("@angular/core").OutputEmitterRef<T | T[] | null>;
|
|
175
|
+
/**
|
|
176
|
+
* Emits the current search term whenever the user types in the search input.
|
|
177
|
+
* Only fires when `searchable` is `true`.
|
|
178
|
+
*/
|
|
179
|
+
readonly searchChange: import("@angular/core").OutputEmitterRef<string>;
|
|
180
|
+
/**
|
|
181
|
+
* Emits when the dropdown panel opens.
|
|
182
|
+
*/
|
|
183
|
+
readonly opened: import("@angular/core").OutputEmitterRef<void>;
|
|
184
|
+
/**
|
|
185
|
+
* Emits when the dropdown panel closes.
|
|
186
|
+
*/
|
|
187
|
+
readonly closed: import("@angular/core").OutputEmitterRef<void>;
|
|
188
|
+
/**
|
|
189
|
+
* Emits when the user clicks the clear button.
|
|
190
|
+
* Fires alongside `selectionChange`, which carries the new (empty) value.
|
|
191
|
+
*/
|
|
192
|
+
readonly cleared: import("@angular/core").OutputEmitterRef<void>;
|
|
161
193
|
readonly SpecialOptionControls: typeof SpecialOptionControls;
|
|
162
194
|
readonly dropdownPositions: ConnectedPosition[];
|
|
163
195
|
listboxId: import("@angular/core").Signal<string>;
|
|
@@ -242,6 +274,6 @@ export declare class SelectComponent<T = unknown> implements AfterContentChecked
|
|
|
242
274
|
registerOnTouched(fn: () => void): void;
|
|
243
275
|
setDisabledState(isDisabled: boolean): void;
|
|
244
276
|
static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent<any>, never>;
|
|
245
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent<any>, "tedi-select", never, { "inputId": { "alias": "inputId"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "state": { "alias": "state"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "dropdownWidthRef": { "alias": "dropdownWidthRef"; "required": false; "isSignal": true; }; "feedbackText": { "alias": "feedbackText"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "bindLabel": { "alias": "bindLabel"; "required": false; "isSignal": true; }; "bindValue": { "alias": "bindValue"; "required": false; "isSignal": true; }; "allowMultiple": { "alias": "allowMultiple"; "required": false; "isSignal": true; }; "groupBy": { "alias": "groupBy"; "required": false; "isSignal": true; }; "showSelectAll": { "alias": "showSelectAll"; "required": false; "isSignal": true; }; "selectableGroups": { "alias": "selectableGroups"; "required": false; "isSignal": true; }; "isTagRemovable": { "alias": "isTagRemovable"; "required": false; "isSignal": true; }; "multiRow": { "alias": "multiRow"; "required": false; "isSignal": true; }; "compareWith": { "alias": "compareWith"; "required": false; "isSignal": true; }; "disabledKey": { "alias": "disabledKey"; "required": false; "isSignal": true; }; "noOptionsMessage": { "alias": "noOptionsMessage"; "required": false; "isSignal": true; }; "maxDropdownHeight": { "alias": "maxDropdownHeight"; "required": false; "isSignal": true; }; "dropdownType": { "alias": "dropdownType"; "required": false; "isSignal": true; }; "searchable": { "alias": "searchable"; "required": false; "isSignal": true; }; "searchFn": { "alias": "searchFn"; "required": false; "isSignal": true; }; }, {}, ["optionTemplate", "valueTemplate"], never, true, never>;
|
|
277
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent<any>, "tedi-select", never, { "inputId": { "alias": "inputId"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "state": { "alias": "state"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "dropdownWidthRef": { "alias": "dropdownWidthRef"; "required": false; "isSignal": true; }; "feedbackText": { "alias": "feedbackText"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "bindLabel": { "alias": "bindLabel"; "required": false; "isSignal": true; }; "bindValue": { "alias": "bindValue"; "required": false; "isSignal": true; }; "allowMultiple": { "alias": "allowMultiple"; "required": false; "isSignal": true; }; "groupBy": { "alias": "groupBy"; "required": false; "isSignal": true; }; "showSelectAll": { "alias": "showSelectAll"; "required": false; "isSignal": true; }; "selectableGroups": { "alias": "selectableGroups"; "required": false; "isSignal": true; }; "isTagRemovable": { "alias": "isTagRemovable"; "required": false; "isSignal": true; }; "multiRow": { "alias": "multiRow"; "required": false; "isSignal": true; }; "compareWith": { "alias": "compareWith"; "required": false; "isSignal": true; }; "disabledKey": { "alias": "disabledKey"; "required": false; "isSignal": true; }; "noOptionsMessage": { "alias": "noOptionsMessage"; "required": false; "isSignal": true; }; "maxDropdownHeight": { "alias": "maxDropdownHeight"; "required": false; "isSignal": true; }; "dropdownType": { "alias": "dropdownType"; "required": false; "isSignal": true; }; "searchable": { "alias": "searchable"; "required": false; "isSignal": true; }; "searchFn": { "alias": "searchFn"; "required": false; "isSignal": true; }; "clearSearchOnSelect": { "alias": "clearSearchOnSelect"; "required": false; "isSignal": true; }; }, { "selectionChange": "selectionChange"; "searchChange": "searchChange"; "opened": "opened"; "closed": "closed"; "cleared": "cleared"; }, ["optionTemplate", "valueTemplate"], never, true, never>;
|
|
246
278
|
}
|
|
247
279
|
//# sourceMappingURL=select.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"select.component.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/form/select/select.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAoB,iBAAiB,EAAiB,MAAM,sBAAsB,CAAC;AAC/G,OAAO,EAAE,UAAU,EAAoB,MAAM,sBAAsB,CAAC;AACpE,OAAO,EACL,mBAAmB,EACnB,gBAAgB,EAKhB,UAAU,
|
|
1
|
+
{"version":3,"file":"select.component.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/form/select/select.component.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class HorizontalStepperItemComponent {
|
|
3
|
+
label: import("@angular/core").InputSignal<string>;
|
|
4
|
+
description: import("@angular/core").InputSignal<string | undefined>;
|
|
5
|
+
completed: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
6
|
+
error: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
7
|
+
selected: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
8
|
+
/**
|
|
9
|
+
* Prevents the step from being clicked or focused. Use for future steps
|
|
10
|
+
* the user shouldn't reach yet (e.g. when validation runs step-by-step).
|
|
11
|
+
* Leave completed steps enabled so users can navigate back to them.
|
|
12
|
+
*/
|
|
13
|
+
disabled: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
14
|
+
/**
|
|
15
|
+
* Emits when the user clicks the step. Does not emit when the step is
|
|
16
|
+
* selected (it's already the current step) or disabled.
|
|
17
|
+
*/
|
|
18
|
+
stepSelect: import("@angular/core").OutputEmitterRef<void>;
|
|
19
|
+
/** @internal Set by parent HorizontalStepperComponent */
|
|
20
|
+
_stepNumber: import("@angular/core").WritableSignal<number>;
|
|
21
|
+
protected onClick(): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HorizontalStepperItemComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HorizontalStepperItemComponent, "tedi-horizontal-stepper-item", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; "completed": { "alias": "completed"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "selected": { "alias": "selected"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "stepSelect": "stepSelect"; }, never, never, true, never>;
|
|
24
|
+
}
|
|
25
|
+
//# sourceMappingURL=horizontal-stepper-item.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"horizontal-stepper-item.component.d.ts","sourceRoot":"","sources":["../../../../../../tedi/components/navigation/horizontal-stepper/horizontal-stepper-item/horizontal-stepper-item.component.ts"],"names":[],"mappings":";AAYA,qBAgBa,8BAA8B;IACzC,KAAK,8CAA4B;IACjC,WAAW,0DAAmB;IAC9B,SAAS,qEAAiD;IAC1D,KAAK,qEAAiD;IACtD,QAAQ,qEAAiD;IACzD;;;;OAIG;IACH,QAAQ,qEAAiD;IAEzD;;;OAGG;IACH,UAAU,iDAAY;IAEtB,yDAAyD;IACzD,WAAW,iDAAa;IAExB,SAAS,CAAC,OAAO,IAAI,IAAI;yCAtBd,8BAA8B;2CAA9B,8BAA8B;CA0B1C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../tedi/components/navigation/horizontal-stepper/horizontal-stepper-item/index.ts"],"names":[],"mappings":"AAAA,cAAc,qCAAqC,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { HorizontalStepperItemComponent } from "./horizontal-stepper-item/horizontal-stepper-item.component";
|
|
2
|
+
import { BreakpointFlag } from "../../../services/breakpoint/breakpoint.service";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export type HorizontalStepperBackground = "default" | "transparent";
|
|
5
|
+
export declare class HorizontalStepperComponent {
|
|
6
|
+
ariaLabel: import("@angular/core").InputSignal<string | undefined>;
|
|
7
|
+
background: import("@angular/core").InputSignal<HorizontalStepperBackground>;
|
|
8
|
+
/**
|
|
9
|
+
* Collapse labels so only indicators plus the selected step's label are visible.
|
|
10
|
+
* `true` — always collapsed. A breakpoint (`'sm'`, `'md'`, `'lg'`, `'xl'`, `'xxl'`) — collapsed below that breakpoint. @default 'sm'
|
|
11
|
+
*/
|
|
12
|
+
compact: import("@angular/core").InputSignal<BreakpointFlag>;
|
|
13
|
+
items: import("@angular/core").Signal<readonly HorizontalStepperItemComponent[]>;
|
|
14
|
+
private assignStepNumbers;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HorizontalStepperComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HorizontalStepperComponent, "tedi-horizontal-stepper", never, { "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "background": { "alias": "background"; "required": false; "isSignal": true; }; "compact": { "alias": "compact"; "required": false; "isSignal": true; }; }, {}, ["items"], ["*"], true, never>;
|
|
17
|
+
}
|
|
18
|
+
//# sourceMappingURL=horizontal-stepper.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"horizontal-stepper.component.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/navigation/horizontal-stepper/horizontal-stepper.component.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,8BAA8B,EAAE,MAAM,6DAA6D,CAAC;AAC7G,OAAO,EAAE,cAAc,EAAE,MAAM,iDAAiD,CAAC;;AAEjF,MAAM,MAAM,2BAA2B,GAAG,SAAS,GAAG,aAAa,CAAC;AAEpE,qBAoBa,0BAA0B;IACrC,SAAS,0DAAmB;IAC5B,UAAU,mEAAiD;IAC3D;;;OAGG;IACH,OAAO,sDAA+B;IAEtC,KAAK,4EAAmD;IAExD,OAAO,CAAC,iBAAiB,CAItB;yCAfQ,0BAA0B;2CAA1B,0BAA0B;CAgBtC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/navigation/horizontal-stepper/index.ts"],"names":[],"mappings":"AAAA,cAAc,gCAAgC,CAAC;AAC/C,cAAc,2BAA2B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../tedi/components/navigation/index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../tedi/components/navigation/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,uBAAuB,CAAC"}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { InjectionToken } from "@angular/core";
|
|
2
|
+
import { BreakpointFlag } from "../../../services/breakpoint/breakpoint.service";
|
|
2
3
|
export type ModalSize = "default" | "small";
|
|
3
4
|
export type ModalWidthPreset = "xs" | "sm" | "md" | "lg" | "xl";
|
|
4
5
|
export type ModalWidth = ModalWidthPreset | (string & {});
|
|
5
6
|
export type ModalPosition = "center" | "top" | "left" | "right";
|
|
6
7
|
export type ModalScrollBehavior = "content" | "page";
|
|
7
|
-
export type ModalFullscreen =
|
|
8
|
+
export type ModalFullscreen = BreakpointFlag;
|
|
8
9
|
export interface ModalConfig<D = unknown> {
|
|
9
10
|
/** Data to pass to the modal content component. Accessible via `inject(MODAL_DATA)`. */
|
|
10
11
|
data?: D;
|
|
@@ -22,7 +23,7 @@ export interface ModalConfig<D = unknown> {
|
|
|
22
23
|
closeOnEscape?: boolean;
|
|
23
24
|
/** Whether to show a close button in the header. @default true */
|
|
24
25
|
showClose?: boolean;
|
|
25
|
-
/** Fullscreen mode. `true` = always fullscreen, `'sm'
|
|
26
|
+
/** Fullscreen mode. `true` = always fullscreen, a breakpoint (`'sm'`, `'md'`, `'lg'`, `'xl'`, `'xxl'`) = fullscreen below that breakpoint. @default false */
|
|
26
27
|
fullscreen?: ModalFullscreen;
|
|
27
28
|
/** Max-width cap (e.g. '75%', '60vw'). Overrides the default 95vw limit. */
|
|
28
29
|
maxWidth?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"modal.types.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/overlay/modal/modal.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"modal.types.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/overlay/modal/modal.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAC/C,OAAO,EAAE,cAAc,EAAE,MAAM,iDAAiD,CAAC;AAEjF,MAAM,MAAM,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;AAC5C,MAAM,MAAM,gBAAgB,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AAChE,MAAM,MAAM,UAAU,GAAG,gBAAgB,GAAG,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC;AAC1D,MAAM,MAAM,aAAa,GAAG,QAAQ,GAAG,KAAK,GAAG,MAAM,GAAG,OAAO,CAAC;AAChE,MAAM,MAAM,mBAAmB,GAAG,SAAS,GAAG,MAAM,CAAC;AACrD,MAAM,MAAM,eAAe,GAAG,cAAc,CAAC;AAE7C,MAAM,WAAW,WAAW,CAAC,CAAC,GAAG,OAAO;IACtC,wFAAwF;IACxF,IAAI,CAAC,EAAE,CAAC,CAAC;IACT,6CAA6C;IAC7C,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,yFAAyF;IACzF,KAAK,CAAC,EAAE,UAAU,CAAC;IACnB,+CAA+C;IAC/C,QAAQ,CAAC,EAAE,aAAa,CAAC;IACzB,iIAAiI;IACjI,cAAc,CAAC,EAAE,mBAAmB,CAAC;IACrC,oEAAoE;IACpE,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,8DAA8D;IAC9D,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,kEAAkE;IAClE,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,6JAA6J;IAC7J,UAAU,CAAC,EAAE,eAAe,CAAC;IAC7B,4EAA4E;IAC5E,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,iCAAiC;IACjC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,gDAAgD;IAChD,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB;AAED,0EAA0E;AAC1E,eAAO,MAAM,UAAU,yBAA+C,CAAC"}
|
|
@@ -18,6 +18,14 @@ export type BreakpointObject<T> = {
|
|
|
18
18
|
xs: T;
|
|
19
19
|
} & Partial<Record<Exclude<Breakpoint, "xs">, T>>;
|
|
20
20
|
export type BreakpointInput<T> = T | BreakpointObject<T>;
|
|
21
|
+
/**
|
|
22
|
+
* Flag that toggles a feature on/off, optionally only below a breakpoint.
|
|
23
|
+
* `true` — always on. `false` — always off. A breakpoint name — on below that breakpoint.
|
|
24
|
+
*
|
|
25
|
+
* `'xs'` is intentionally excluded: "below xs" has no meaningful viewport and would
|
|
26
|
+
* be a confusing duplicate of `true`. Use `true` for always-on.
|
|
27
|
+
*/
|
|
28
|
+
export type BreakpointFlag = boolean | Exclude<Breakpoint, "xs">;
|
|
21
29
|
export declare class BreakpointService {
|
|
22
30
|
private breakpointObserver;
|
|
23
31
|
private readonly _currentBreakpoint;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"breakpoint.service.d.ts","sourceRoot":"","sources":["../../../../tedi/services/breakpoint/breakpoint.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,WAAW,EACX,MAAM,EAEP,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;;AAEzD,eAAO,MAAM,WAAW;;;;;;;CAOd,CAAC;AAIX,MAAM,MAAM,UAAU,GAAG,MAAM,OAAO,WAAW,CAAC;AAElD,MAAM,MAAM,gBAAgB,CAAC,OAAO,IAAI;KACrC,CAAC,IAAI,MAAM,OAAO,GAAG,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;CAC9C,GAAG,OAAO,CAAC,MAAM,CAAC,UAAU,EAAE,WAAW,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;AAElE,MAAM,MAAM,8BAA8B,CAAC,OAAO,IAAI,OAAO,GAC3D,OAAO,CAAC,MAAM,CAAC,UAAU,EAAE,OAAO,CAAC,CAAC,CAAC;AAEvC,MAAM,MAAM,gBAAgB,CAAC,CAAC,IAAI;IAAE,EAAE,EAAE,CAAC,CAAA;CAAE,GAAG,OAAO,CACnD,MAAM,CAAC,OAAO,CAAC,UAAU,EAAE,IAAI,CAAC,EAAE,CAAC,CAAC,CACrC,CAAC;AACF,MAAM,MAAM,eAAe,CAAC,CAAC,IAAI,CAAC,GAAG,gBAAgB,CAAC,CAAC,CAAC,CAAC;AAEzD,qBAGa,iBAAiB;IAIhB,OAAO,CAAC,kBAAkB;IAHtC,OAAO,CAAC,QAAQ,CAAC,kBAAkB,CAEjC;gBACkB,kBAAkB,EAAE,kBAAkB;IAwB1D,iBAAiB;IAMjB,mBAAmB,CAAC,OAAO,EACzB,MAAM,EAAE,8BAA8B,CAAC,OAAO,CAAC,GAC9C,OAAO;IA4BV,iBAAiB,CAAC,UAAU,EAAE,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC;IAe7D,iBAAiB,CAAC,UAAU,EAAE,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC;yCA/ElD,iBAAiB;6CAAjB,iBAAiB;CA6F7B;AAED,wBAAgB,eAAe,CAAC,CAAC,EAC/B,KAAK,EAAE,eAAe,CAAC,CAAC,CAAC,GACxB,gBAAgB,CAAC,CAAC,CAAC,CAMrB"}
|
|
1
|
+
{"version":3,"file":"breakpoint.service.d.ts","sourceRoot":"","sources":["../../../../tedi/services/breakpoint/breakpoint.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,WAAW,EACX,MAAM,EAEP,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;;AAEzD,eAAO,MAAM,WAAW;;;;;;;CAOd,CAAC;AAIX,MAAM,MAAM,UAAU,GAAG,MAAM,OAAO,WAAW,CAAC;AAElD,MAAM,MAAM,gBAAgB,CAAC,OAAO,IAAI;KACrC,CAAC,IAAI,MAAM,OAAO,GAAG,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;CAC9C,GAAG,OAAO,CAAC,MAAM,CAAC,UAAU,EAAE,WAAW,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;AAElE,MAAM,MAAM,8BAA8B,CAAC,OAAO,IAAI,OAAO,GAC3D,OAAO,CAAC,MAAM,CAAC,UAAU,EAAE,OAAO,CAAC,CAAC,CAAC;AAEvC,MAAM,MAAM,gBAAgB,CAAC,CAAC,IAAI;IAAE,EAAE,EAAE,CAAC,CAAA;CAAE,GAAG,OAAO,CACnD,MAAM,CAAC,OAAO,CAAC,UAAU,EAAE,IAAI,CAAC,EAAE,CAAC,CAAC,CACrC,CAAC;AACF,MAAM,MAAM,eAAe,CAAC,CAAC,IAAI,CAAC,GAAG,gBAAgB,CAAC,CAAC,CAAC,CAAC;AAEzD;;;;;;GAMG;AACH,MAAM,MAAM,cAAc,GAAG,OAAO,GAAG,OAAO,CAAC,UAAU,EAAE,IAAI,CAAC,CAAC;AAEjE,qBAGa,iBAAiB;IAIhB,OAAO,CAAC,kBAAkB;IAHtC,OAAO,CAAC,QAAQ,CAAC,kBAAkB,CAEjC;gBACkB,kBAAkB,EAAE,kBAAkB;IAwB1D,iBAAiB;IAMjB,mBAAmB,CAAC,OAAO,EACzB,MAAM,EAAE,8BAA8B,CAAC,OAAO,CAAC,GAC9C,OAAO;IA4BV,iBAAiB,CAAC,UAAU,EAAE,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC;IAe7D,iBAAiB,CAAC,UAAU,EAAE,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC;yCA/ElD,iBAAiB;6CAAjB,iBAAiB;CA6F7B;AAED,wBAAgB,eAAe,CAAC,CAAC,EAC/B,KAAK,EAAE,eAAe,CAAC,CAAC,CAAC,GACxB,gBAAgB,CAAC,CAAC,CAAC,CAMrB"}
|
|
@@ -272,6 +272,13 @@ export declare const translationsMap: {
|
|
|
272
272
|
en: string;
|
|
273
273
|
ru: string;
|
|
274
274
|
};
|
|
275
|
+
"stepper.error": {
|
|
276
|
+
description: string;
|
|
277
|
+
components: string[];
|
|
278
|
+
et: string;
|
|
279
|
+
en: string;
|
|
280
|
+
ru: string;
|
|
281
|
+
};
|
|
275
282
|
"skeleton.loading": {
|
|
276
283
|
description: string;
|
|
277
284
|
components: string[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"translations.d.ts","sourceRoot":"","sources":["../../../../tedi/services/translation/translations.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAEjD,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAiFX,OAAO;qBACP,OAAO;qBACP,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oBAuGR,MAAM;oBACN,MAAM;oBACN,MAAM;;;;;oBAKN,MAAM,WAAW,MAAM;oBAEvB,MAAM,WAAW,MAAM;oBAEvB,MAAM,WAAW,MAAM;;;;;;;;;;;;oBAavB,MAAM;oBACN,MAAM;oBACN,MAAM;;;;;oBAKN,MAAM,cAAc,MAAM;oBAE1B,MAAM,cAAc,MAAM;oBAE1B,MAAM,cAAc,MAAM
|
|
1
|
+
{"version":3,"file":"translations.d.ts","sourceRoot":"","sources":["../../../../tedi/services/translation/translations.ts"],"names":[],"mappings":"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"}
|