@tedi-design-system/angular 3.0.0 → 3.1.0-tmp-main.1

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.
Files changed (29) hide show
  1. package/fesm2022/tedi-design-system-angular-tedi.mjs +465 -5
  2. package/fesm2022/tedi-design-system-angular-tedi.mjs.map +1 -1
  3. package/package.json +1 -1
  4. package/tedi/components/content/carousel/carousel-content/carousel-content.component.d.ts +58 -0
  5. package/tedi/components/content/carousel/carousel-content/carousel-content.component.d.ts.map +1 -0
  6. package/tedi/components/content/carousel/carousel-footer/carousel-footer.component.d.ts +6 -0
  7. package/tedi/components/content/carousel/carousel-footer/carousel-footer.component.d.ts.map +1 -0
  8. package/tedi/components/content/carousel/carousel-header/carousel-header.component.d.ts +6 -0
  9. package/tedi/components/content/carousel/carousel-header/carousel-header.component.d.ts.map +1 -0
  10. package/tedi/components/content/carousel/carousel-indicators/carousel-indicators.component.d.ts +23 -0
  11. package/tedi/components/content/carousel/carousel-indicators/carousel-indicators.component.d.ts.map +1 -0
  12. package/tedi/components/content/carousel/carousel-navigation/carousel-navigation.component.d.ts +11 -0
  13. package/tedi/components/content/carousel/carousel-navigation/carousel-navigation.component.d.ts.map +1 -0
  14. package/tedi/components/content/carousel/carousel-slide.directive.d.ts +8 -0
  15. package/tedi/components/content/carousel/carousel-slide.directive.d.ts.map +1 -0
  16. package/tedi/components/content/carousel/carousel.component.d.ts +8 -0
  17. package/tedi/components/content/carousel/carousel.component.d.ts.map +1 -0
  18. package/tedi/components/content/carousel/index.d.ts +8 -0
  19. package/tedi/components/content/carousel/index.d.ts.map +1 -0
  20. package/tedi/components/content/index.d.ts +1 -0
  21. package/tedi/components/content/index.d.ts.map +1 -1
  22. package/tedi/components/notifications/alert/alert.component.d.ts +1 -1
  23. package/tedi/components/overlay/popover/popover.component.d.ts +1 -1
  24. package/tedi/services/breakpoint/breakpoint.service.d.ts +5 -0
  25. package/tedi/services/breakpoint/breakpoint.service.d.ts.map +1 -1
  26. package/tedi/services/translation/translation.service.d.ts +1 -1
  27. package/tedi/services/translation/translation.service.d.ts.map +1 -1
  28. package/tedi/services/translation/translations.d.ts +35 -0
  29. package/tedi/services/translation/translations.d.ts.map +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tedi-design-system/angular",
3
- "version": "3.0.0",
3
+ "version": "3.1.0-tmp-main.1",
4
4
  "type": "module",
5
5
  "main": "community.mjs",
6
6
  "module": "fesm2022/tedi-design-system-angular.mjs",
@@ -0,0 +1,58 @@
1
+ import { ElementRef, AfterViewInit, OnDestroy } from "@angular/core";
2
+ import { CarouselSlideDirective } from "../carousel-slide.directive";
3
+ import { BreakpointInput } from "../../../../services/breakpoint/breakpoint.service";
4
+ import { TediTranslationService } from "../../../../services";
5
+ import * as i0 from "@angular/core";
6
+ export declare class CarouselContentComponent implements AfterViewInit, OnDestroy {
7
+ /** Slides per view (minimum 1, can be fractional, e.g. 1.25 for peeking) */
8
+ readonly slidesPerView: import("@angular/core").InputSignalWithTransform<import("../../../../services").BreakpointObject<number>, BreakpointInput<number>>;
9
+ /** Gap between slides in px */
10
+ readonly gap: import("@angular/core").InputSignalWithTransform<import("../../../../services").BreakpointObject<number>, BreakpointInput<number>>;
11
+ /** Should carousel have fade? In mobile both left and right, in desktop only right. */
12
+ readonly fade: import("@angular/core").InputSignal<boolean>;
13
+ /** Transition duration in ms */
14
+ readonly transitionMs: import("@angular/core").InputSignal<number>;
15
+ readonly translationService: TediTranslationService;
16
+ private readonly breakpointService;
17
+ private readonly host;
18
+ readonly track: import("@angular/core").Signal<ElementRef<HTMLDivElement>>;
19
+ readonly slides: import("@angular/core").Signal<readonly CarouselSlideDirective[]>;
20
+ readonly trackIndex: import("@angular/core").WritableSignal<number>;
21
+ readonly animate: import("@angular/core").WritableSignal<boolean>;
22
+ readonly viewportWidth: import("@angular/core").WritableSignal<number>;
23
+ private readonly windowBase;
24
+ readonly currentSlidesPerView: import("@angular/core").Signal<number>;
25
+ readonly currentGap: import("@angular/core").Signal<number>;
26
+ readonly buffer: import("@angular/core").Signal<number>;
27
+ readonly slideIndex: import("@angular/core").Signal<number>;
28
+ readonly renderedIndices: import("@angular/core").Signal<number[]>;
29
+ readonly slideFlex: import("@angular/core").Signal<string>;
30
+ readonly classes: import("@angular/core").Signal<string>;
31
+ readonly trackStyle: import("@angular/core").Signal<{
32
+ gap: string;
33
+ transform: string;
34
+ transition: string;
35
+ }>;
36
+ locked: boolean;
37
+ dragging: boolean;
38
+ private startX;
39
+ private startIndex;
40
+ private ro?;
41
+ private wheelTimeout?;
42
+ private scrollDelta;
43
+ onWheel(event: WheelEvent): void;
44
+ onKeyDown(event: KeyboardEvent): void;
45
+ onPointerDown(ev: PointerEvent): void;
46
+ onPointerMove(ev: PointerEvent): void;
47
+ onPointerUp(): void;
48
+ ngAfterViewInit(): void;
49
+ ngOnDestroy(): void;
50
+ next(): void;
51
+ prev(): void;
52
+ goToIndex(index: number): void;
53
+ onTransitionEnd(e: TransitionEvent): void;
54
+ lockNavigation(): void;
55
+ static ɵfac: i0.ɵɵFactoryDeclaration<CarouselContentComponent, never>;
56
+ static ɵcmp: i0.ɵɵComponentDeclaration<CarouselContentComponent, "tedi-carousel-content", never, { "slidesPerView": { "alias": "slidesPerView"; "required": false; "isSignal": true; }; "gap": { "alias": "gap"; "required": false; "isSignal": true; }; "fade": { "alias": "fade"; "required": false; "isSignal": true; }; "transitionMs": { "alias": "transitionMs"; "required": false; "isSignal": true; }; }, {}, ["slides"], never, true, never>;
57
+ }
58
+ //# sourceMappingURL=carousel-content.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"carousel-content.component.d.ts","sourceRoot":"","sources":["../../../../../../tedi/components/content/carousel/carousel-content/carousel-content.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,UAAU,EAMV,aAAa,EACb,SAAS,EAIV,MAAM,eAAe,CAAC;AAEvB,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AACrE,OAAO,EAEL,eAAe,EAEhB,MAAM,oDAAoD,CAAC;AAC5D,OAAO,EAAE,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;;AAE9D,qBAiBa,wBAAyB,YAAW,aAAa,EAAE,SAAS;IACvE,4EAA4E;IAC5E,QAAQ,CAAC,aAAa,qIAGpB;IAEF,+BAA+B;IAC/B,QAAQ,CAAC,GAAG,qIAGV;IAEF,uFAAuF;IACvF,QAAQ,CAAC,IAAI,+CAAgB;IAE7B,gCAAgC;IAChC,QAAQ,CAAC,YAAY,8CAAc;IAEnC,QAAQ,CAAC,kBAAkB,yBAAkC;IAC7D,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAA6B;IAC/D,OAAO,CAAC,QAAQ,CAAC,IAAI,CAA+C;IAEpE,QAAQ,CAAC,KAAK,6DAA2D;IACzE,QAAQ,CAAC,MAAM,oEAA2C;IAE1D,QAAQ,CAAC,UAAU,iDAAa;IAChC,QAAQ,CAAC,OAAO,kDAAiB;IACjC,QAAQ,CAAC,aAAa,iDAAa;IACnC,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAa;IAExC,QAAQ,CAAC,oBAAoB,yCA6B1B;IAEH,QAAQ,CAAC,UAAU,yCA0BhB;IAEH,QAAQ,CAAC,MAAM,yCAAwC;IAEvD,QAAQ,CAAC,UAAU,yCAShB;IAEH,QAAQ,CAAC,eAAe,2CAcrB;IAEH,QAAQ,CAAC,SAAS,yCAIf;IAEH,QAAQ,CAAC,OAAO,yCAUb;IAEH,QAAQ,CAAC,UAAU;;;;OA0BhB;IAEH,MAAM,UAAS;IACf,QAAQ,UAAS;IACjB,OAAO,CAAC,MAAM,CAAK;IACnB,OAAO,CAAC,UAAU,CAAK;IACvB,OAAO,CAAC,EAAE,CAAC,CAAiB;IAC5B,OAAO,CAAC,YAAY,CAAC,CAAgC;IACrD,OAAO,CAAC,WAAW,CAAK;IAGxB,OAAO,CAAC,KAAK,EAAE,UAAU;IAsEzB,SAAS,CAAC,KAAK,EAAE,aAAa;IA+B9B,aAAa,CAAC,EAAE,EAAE,YAAY;IAc9B,aAAa,CAAC,EAAE,EAAE,YAAY;IA6B9B,WAAW;IAUX,eAAe,IAAI,IAAI;IAWvB,WAAW,IAAI,IAAI;IAInB,IAAI,IAAI,IAAI;IAUZ,IAAI,IAAI,IAAI;IAUZ,SAAS,CAAC,KAAK,EAAE,MAAM;IAcvB,eAAe,CAAC,CAAC,EAAE,eAAe;IAalC,cAAc;yCAtYH,wBAAwB;2CAAxB,wBAAwB;CA0YpC"}
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class CarouselFooterComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<CarouselFooterComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<CarouselFooterComponent, "tedi-carousel-footer", never, {}, {}, never, ["*"], true, never>;
5
+ }
6
+ //# sourceMappingURL=carousel-footer.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"carousel-footer.component.d.ts","sourceRoot":"","sources":["../../../../../../tedi/components/content/carousel/carousel-footer/carousel-footer.component.ts"],"names":[],"mappings":";AAMA,qBAQa,uBAAuB;yCAAvB,uBAAuB;2CAAvB,uBAAuB;CAAG"}
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class CarouselHeaderComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<CarouselHeaderComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<CarouselHeaderComponent, "tedi-carousel-header", never, {}, {}, never, ["*"], true, never>;
5
+ }
6
+ //# sourceMappingURL=carousel-header.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"carousel-header.component.d.ts","sourceRoot":"","sources":["../../../../../../tedi/components/content/carousel/carousel-header/carousel-header.component.ts"],"names":[],"mappings":";AAMA,qBAQa,uBAAuB;yCAAvB,uBAAuB;2CAAvB,uBAAuB;CAAG"}
@@ -0,0 +1,23 @@
1
+ import { CarouselComponent } from "../carousel.component";
2
+ import { TediTranslationService } from "../../../../services";
3
+ import * as i0 from "@angular/core";
4
+ export type CarouselIndicatorsVariant = "dots" | "numbers";
5
+ export declare class CarouselIndicatorsComponent {
6
+ /** Should show indicators with arrows? If yes, don't use carousel-navigation component */
7
+ readonly withArrows: import("@angular/core").InputSignal<boolean>;
8
+ /** Variant of indicators (dots and numbers) */
9
+ readonly variant: import("@angular/core").InputSignal<CarouselIndicatorsVariant>;
10
+ readonly translationService: TediTranslationService;
11
+ readonly carousel: CarouselComponent;
12
+ readonly indicatorsArray: import("@angular/core").Signal<{
13
+ index: number;
14
+ active: boolean;
15
+ }[]>;
16
+ readonly activeSlideNumber: import("@angular/core").Signal<number>;
17
+ handleNext(): void;
18
+ handlePrev(): void;
19
+ handleIndicatorClick(index: number): void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<CarouselIndicatorsComponent, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<CarouselIndicatorsComponent, "tedi-carousel-indicators", never, { "withArrows": { "alias": "withArrows"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
22
+ }
23
+ //# sourceMappingURL=carousel-indicators.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"carousel-indicators.component.d.ts","sourceRoot":"","sources":["../../../../../../tedi/components/content/carousel/carousel-indicators/carousel-indicators.component.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAK1D,OAAO,EAAE,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;;AAE9D,MAAM,MAAM,yBAAyB,GAAG,MAAM,GAAG,SAAS,CAAC;AAE3D,qBASa,2BAA2B;IACtC,0FAA0F;IAC1F,QAAQ,CAAC,UAAU,+CAAgB;IAEnC,+CAA+C;IAC/C,QAAQ,CAAC,OAAO,iEAA4C;IAE5D,QAAQ,CAAC,kBAAkB,yBAAkC;IAC7D,QAAQ,CAAC,QAAQ,oBAA6B;IAE9C,QAAQ,CAAC,eAAe;;;SAQtB;IAEF,QAAQ,CAAC,iBAAiB,yCAExB;IAEF,UAAU;IAIV,UAAU;IAIV,oBAAoB,CAAC,KAAK,EAAE,MAAM;yCAhCvB,2BAA2B;2CAA3B,2BAA2B;CAmCvC"}
@@ -0,0 +1,11 @@
1
+ import { TediTranslationService } from "../../../../services";
2
+ import * as i0 from "@angular/core";
3
+ export declare class CarouselNavigationComponent {
4
+ readonly translationService: TediTranslationService;
5
+ private readonly carousel;
6
+ handleNext(): void;
7
+ handlePrev(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<CarouselNavigationComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<CarouselNavigationComponent, "tedi-carousel-navigation", never, {}, {}, never, never, true, never>;
10
+ }
11
+ //# sourceMappingURL=carousel-navigation.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"carousel-navigation.component.d.ts","sourceRoot":"","sources":["../../../../../../tedi/components/content/carousel/carousel-navigation/carousel-navigation.component.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;;AAE9D,qBASa,2BAA2B;IACtC,QAAQ,CAAC,kBAAkB,yBAAkC;IAC7D,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAA6B;IAEtD,UAAU;IAIV,UAAU;yCARC,2BAA2B;2CAA3B,2BAA2B;CAWvC"}
@@ -0,0 +1,8 @@
1
+ import { TemplateRef } from "@angular/core";
2
+ import * as i0 from "@angular/core";
3
+ export declare class CarouselSlideDirective {
4
+ template: TemplateRef<any>;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<CarouselSlideDirective, never>;
6
+ static ɵdir: i0.ɵɵDirectiveDeclaration<CarouselSlideDirective, "[tediCarouselSlide]", never, {}, {}, never, never, true, never>;
7
+ }
8
+ //# sourceMappingURL=carousel-slide.directive.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"carousel-slide.directive.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/content/carousel/carousel-slide.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAqB,WAAW,EAAE,MAAM,eAAe,CAAC;;AAE/D,qBAIa,sBAAsB;IACjC,QAAQ,mBAAuB;yCADpB,sBAAsB;2CAAtB,sBAAsB;CAElC"}
@@ -0,0 +1,8 @@
1
+ import { CarouselContentComponent } from "./carousel-content/carousel-content.component";
2
+ import * as i0 from "@angular/core";
3
+ export declare class CarouselComponent {
4
+ carouselContent: import("@angular/core").Signal<CarouselContentComponent>;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<CarouselComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<CarouselComponent, "tedi-carousel", never, {}, {}, ["carouselContent"], ["tedi-carousel-header", "tedi-carousel-content", "tedi-carousel-footer"], true, never>;
7
+ }
8
+ //# sourceMappingURL=carousel.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"carousel.component.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/content/carousel/carousel.component.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,wBAAwB,EAAE,MAAM,+CAA+C,CAAC;;AAEzF,qBAQa,iBAAiB;IAC5B,eAAe,2DAAmD;yCADvD,iBAAiB;2CAAjB,iBAAiB;CAE7B"}
@@ -0,0 +1,8 @@
1
+ export * from "./carousel.component";
2
+ export * from "./carousel-slide.directive";
3
+ export * from "./carousel-content/carousel-content.component";
4
+ export * from "./carousel-footer/carousel-footer.component";
5
+ export * from "./carousel-header/carousel-header.component";
6
+ export * from "./carousel-indicators/carousel-indicators.component";
7
+ export * from "./carousel-navigation/carousel-navigation.component";
8
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/content/carousel/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,+CAA+C,CAAC;AAC9D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,qDAAqD,CAAC;AACpE,cAAc,qDAAqD,CAAC"}
@@ -1,3 +1,4 @@
1
1
  export * from "./list/list.component";
2
2
  export * from "./text-group/";
3
+ export * from "./carousel";
3
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../tedi/components/content/index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAC;AACtC,cAAc,eAAe,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../tedi/components/content/index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAC;AACtC,cAAc,eAAe,CAAC;AAC9B,cAAc,YAAY,CAAC"}
@@ -49,7 +49,7 @@ export declare class AlertComponent {
49
49
  * @default true
50
50
  */
51
51
  open: import("@angular/core").ModelSignal<boolean>;
52
- getAriaLive: import("@angular/core").Signal<"assertive" | "polite" | "off">;
52
+ getAriaLive: import("@angular/core").Signal<"off" | "assertive" | "polite">;
53
53
  getAriaLabel: import("@angular/core").Signal<string>;
54
54
  classes: import("@angular/core").Signal<{
55
55
  [x: string]: boolean;
@@ -7,7 +7,7 @@ export declare class PopoverComponent {
7
7
  * * The trigger event that opens the popover.
8
8
  * * @default click
9
9
  * */
10
- openWith: import("@angular/core").InputSignal<"click" | "hover" | "mousedown" | "none">;
10
+ openWith: import("@angular/core").InputSignal<"none" | "click" | "hover" | "mousedown">;
11
11
  /**
12
12
  * The position of the popover relative to the trigger element.
13
13
  * @default top
@@ -14,6 +14,10 @@ export type BreakpointInputs<TInputs> = {
14
14
  [K in keyof TInputs]: InputSignal<TInputs[K]>;
15
15
  } & Partial<Record<Breakpoint, InputSignal<TInputs | undefined>>>;
16
16
  export type BreakpointInputsWithoutSignals<TInputs> = TInputs & Partial<Record<Breakpoint, TInputs>>;
17
+ export type BreakpointObject<T> = {
18
+ xs: T;
19
+ } & Partial<Record<Exclude<Breakpoint, "xs">, T>>;
20
+ export type BreakpointInput<T> = T | BreakpointObject<T>;
17
21
  export declare class BreakpointService {
18
22
  private breakpointObserver;
19
23
  private readonly _currentBreakpoint;
@@ -25,4 +29,5 @@ export declare class BreakpointService {
25
29
  static ɵfac: i0.ɵɵFactoryDeclaration<BreakpointService, never>;
26
30
  static ɵprov: i0.ɵɵInjectableDeclaration<BreakpointService>;
27
31
  }
32
+ export declare function breakpointInput<T>(input: BreakpointInput<T>): BreakpointObject<T>;
28
33
  //# sourceMappingURL=breakpoint.service.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"breakpoint.service.d.ts","sourceRoot":"","sources":["../../../../tedi/services/breakpoint/breakpoint.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAwB,WAAW,EAAE,MAAM,EAAU,MAAM,eAAe,CAAC;AAClF,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,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"}
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"}
@@ -8,7 +8,7 @@ export declare class TediTranslationService {
8
8
  getLanguage: Signal<Language>;
9
9
  setLanguage(lang: Language): void;
10
10
  translate<TLang extends Language, TKey extends keyof TediTranslationsMap<TLang> | (string & {}), TArgs extends TKey extends keyof TediTranslationsMap<TLang> ? TediTranslationsMap<TLang>[TKey] extends (...args: infer P) => string ? P : [] : unknown[]>(key: TKey, ...args: TArgs): string;
11
- track<TLang extends Language, TKey extends keyof TediTranslationsMap<TLang> | (string & {}), TArgs extends TKey extends keyof TediTranslationsMap<TLang> ? TediTranslationsMap<TLang>[TKey] extends (...args: infer P) => string ? P : [] : unknown[]>(key: TKey, ...args: Signal<TArgs[number]>[]): Signal<string>;
11
+ track<TLang extends Language, TKey extends keyof TediTranslationsMap<TLang> | (string & {}), TArgs extends TKey extends keyof TediTranslationsMap<TLang> ? TediTranslationsMap<TLang>[TKey] extends (...args: infer P) => string ? P : [] : unknown[]>(key: TKey, ...args: (TArgs[number] | Signal<TArgs[number]>)[]): Signal<string>;
12
12
  addTranslations(newTranslations: TranslationMap): void;
13
13
  static ɵfac: i0.ɵɵFactoryDeclaration<TediTranslationService, never>;
14
14
  static ɵprov: i0.ɵɵInjectableDeclaration<TediTranslationService>;
@@ -1 +1 @@
1
- {"version":3,"file":"translation.service.d.ts","sourceRoot":"","sources":["../../../../tedi/services/translation/translation.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAA0C,MAAM,EAAE,MAAM,eAAe,CAAC;AAC/E,OAAO,EAAmB,cAAc,EAAE,mBAAmB,EAAE,MAAM,gBAAgB,CAAC;;AAEtF,MAAM,MAAM,QAAQ,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AAE1C,qBACa,sBAAsB;IAC/B,OAAO,CAAC,WAAW,CAA0B;IAC7C,OAAO,CAAC,YAAY,CAA2C;IAE/D,WAAW,mBAAiC;IAE5C,WAAW,CAAC,IAAI,EAAE,QAAQ;IAI1B,SAAS,CACL,KAAK,SAAS,QAAQ,EACtB,IAAI,SAAS,MAAM,mBAAmB,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,GAAG,EAAE,CAAC,EAC7D,KAAK,SAAS,IAAI,SAAS,MAAM,mBAAmB,CAAC,KAAK,CAAC,GACrD,mBAAmB,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC,KAAK,MAAM,GACjE,CAAC,GACD,EAAE,GACN,OAAO,EAAE,EAEf,GAAG,EAAE,IAAI,EACT,GAAG,IAAI,EAAE,KAAK,GACf,MAAM;IAiBT,KAAK,CACD,KAAK,SAAS,QAAQ,EACtB,IAAI,SAAS,MAAM,mBAAmB,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,GAAG,EAAE,CAAC,EAC7D,KAAK,SAAS,IAAI,SAAS,MAAM,mBAAmB,CAAC,KAAK,CAAC,GACrD,mBAAmB,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC,KAAK,MAAM,GACjE,CAAC,GACD,EAAE,GACN,OAAO,EAAE,EAEf,GAAG,EAAE,IAAI,EACT,GAAG,IAAI,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,EAAE;IAWpC,eAAe,CAAC,eAAe,EAAE,cAAc;yCA3DtC,sBAAsB;6CAAtB,sBAAsB;CA8DlC"}
1
+ {"version":3,"file":"translation.service.d.ts","sourceRoot":"","sources":["../../../../tedi/services/translation/translation.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAA0C,MAAM,EAAE,MAAM,eAAe,CAAC;AAC/E,OAAO,EAEL,cAAc,EACd,mBAAmB,EACpB,MAAM,gBAAgB,CAAC;;AAExB,MAAM,MAAM,QAAQ,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AAE1C,qBACa,sBAAsB;IACjC,OAAO,CAAC,WAAW,CAA0B;IAC7C,OAAO,CAAC,YAAY,CAA2C;IAE/D,WAAW,mBAAiC;IAE5C,WAAW,CAAC,IAAI,EAAE,QAAQ;IAI1B,SAAS,CACP,KAAK,SAAS,QAAQ,EACtB,IAAI,SAAS,MAAM,mBAAmB,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,GAAG,EAAE,CAAC,EAC7D,KAAK,SAAS,IAAI,SAAS,MAAM,mBAAmB,CAAC,KAAK,CAAC,GACvD,mBAAmB,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC,KAAK,MAAM,GACnE,CAAC,GACD,EAAE,GACJ,OAAO,EAAE,EACb,GAAG,EAAE,IAAI,EAAE,GAAG,IAAI,EAAE,KAAK,GAAG,MAAM;IAiBpC,KAAK,CACH,KAAK,SAAS,QAAQ,EACtB,IAAI,SAAS,MAAM,mBAAmB,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,GAAG,EAAE,CAAC,EAC7D,KAAK,SAAS,IAAI,SAAS,MAAM,mBAAmB,CAAC,KAAK,CAAC,GACvD,mBAAmB,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC,KAAK,MAAM,GACnE,CAAC,GACD,EAAE,GACJ,OAAO,EAAE,EACb,GAAG,EAAE,IAAI,EAAE,GAAG,IAAI,EAAE,CAAC,KAAK,CAAC,MAAM,CAAC,GAAG,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE;IAU/D,eAAe,CAAC,eAAe,EAAE,cAAc;yCArDpC,sBAAsB;6CAAtB,sBAAsB;CAwDlC"}
@@ -524,6 +524,41 @@ export declare const translationsMap: {
524
524
  en: (isOpen: boolean) => "Close menu" | "Open menu";
525
525
  ru: (isOpen: boolean) => "Закрыть меню" | "Открыть меню";
526
526
  };
527
+ carousel: {
528
+ description: string;
529
+ components: string[];
530
+ et: string;
531
+ en: string;
532
+ ru: string;
533
+ };
534
+ "carousel.slide": {
535
+ description: string;
536
+ components: string[];
537
+ et: (slideNumber: number, totalNumber: number) => string;
538
+ en: (slideNumber: number, totalNumber: number) => string;
539
+ ru: (slideNumber: number, totalNumber: number) => string;
540
+ };
541
+ "carousel.moveForward": {
542
+ description: string;
543
+ components: string[];
544
+ et: string;
545
+ en: string;
546
+ ru: string;
547
+ };
548
+ "carousel.moveBack": {
549
+ description: string;
550
+ components: string[];
551
+ et: string;
552
+ en: string;
553
+ ru: string;
554
+ };
555
+ "carousel.showSlide": {
556
+ description: string;
557
+ components: string[];
558
+ et: (slideNumber: number) => string;
559
+ en: (slideNumber: number) => string;
560
+ ru: (slideNumber: number) => string;
561
+ };
527
562
  };
528
563
  export type TediTranslationsMap<L extends Language> = {
529
564
  [K in keyof typeof translationsMap]: (typeof translationsMap)[K][L];
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oBA8I1B,MAAM;oBAIN,MAAM;oBAIN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;wBA6BF,OAAO;wBACP,OAAO;wBACP,OAAO;;;;;yBAMN,OAAO;yBACP,OAAO;yBACP,OAAO;;;;;yBAMP,OAAO;yBACP,OAAO;yBACP,OAAO;;;;;wBAMR,KAAK,GAAG,MAAM,GAAG,KAAK;wBAMtB,KAAK,GAAG,MAAM,GAAG,KAAK;wBAMtB,KAAK,GAAG,MAAM,GAAG,KAAK;;;;;;;;;;;;;;;;;;;mBAwB3B,MAAM,cAAc,OAAO;mBAE3B,MAAM,cAAc,OAAO;mBAE3B,MAAM,cAAc,OAAO;;;;;;;;;;;;;;;;;;;qBAsBzB,MAAM;qBACN,MAAM;qBACN,MAAM;;;;;;;;;;;;;;;;;;;oBAmBP,MAAM,GAAG,MAAM;oBACf,MAAM,GAAG,MAAM;oBACf,MAAM,GAAG,MAAM;;;;;oBAKf,MAAM,GAAG,MAAM;oBACf,MAAM,GAAG,MAAM;oBACf,MAAM,GAAG,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;oBA0Bf,MAAM,GAAG,MAAM;oBACf,MAAM,GAAG,MAAM;oBACf,MAAM,GAAG,MAAM;;;;;oBAKf,MAAM,GAAG,MAAM;oBACf,MAAM,GAAG,MAAM;oBACf,MAAM,GAAG,MAAM;;;;;oBAMf,MAAM,GAAG,MAAM;oBACf,MAAM,GAAG,MAAM;oBACf,MAAM,GAAG,MAAM;;;;;;;;;;;;qBAYd,OAAO;qBACP,OAAO;qBACP,OAAO;;CAEvB,CAAC;AAEF,MAAM,MAAM,mBAAmB,CAAC,CAAC,SAAS,QAAQ,IAAI;KACnD,CAAC,IAAI,MAAM,OAAO,eAAe,GAAG,CAAC,OAAO,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;CACpE,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG;IAC7B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;CACvB,GAAG;KAED,CAAC,IAAI,QAAQ,GAAG,MAAM,GAAG,CAAC,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,MAAM,CAAC;CACvD,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG,MAAM,CAAC,MAAM,EAAE,gBAAgB,CAAC,CAAC"}
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oBA8I1B,MAAM;oBAIN,MAAM;oBAIN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;wBA6BF,OAAO;wBACP,OAAO;wBACP,OAAO;;;;;yBAMN,OAAO;yBACP,OAAO;yBACP,OAAO;;;;;yBAMP,OAAO;yBACP,OAAO;yBACP,OAAO;;;;;wBAMR,KAAK,GAAG,MAAM,GAAG,KAAK;wBAMtB,KAAK,GAAG,MAAM,GAAG,KAAK;wBAMtB,KAAK,GAAG,MAAM,GAAG,KAAK;;;;;;;;;;;;;;;;;;;mBAwB3B,MAAM,cAAc,OAAO;mBAE3B,MAAM,cAAc,OAAO;mBAE3B,MAAM,cAAc,OAAO;;;;;;;;;;;;;;;;;;;qBAsBzB,MAAM;qBACN,MAAM;qBACN,MAAM;;;;;;;;;;;;;;;;;;;oBAmBP,MAAM,GAAG,MAAM;oBACf,MAAM,GAAG,MAAM;oBACf,MAAM,GAAG,MAAM;;;;;oBAKf,MAAM,GAAG,MAAM;oBACf,MAAM,GAAG,MAAM;oBACf,MAAM,GAAG,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;oBA0Bf,MAAM,GAAG,MAAM;oBACf,MAAM,GAAG,MAAM;oBACf,MAAM,GAAG,MAAM;;;;;oBAKf,MAAM,GAAG,MAAM;oBACf,MAAM,GAAG,MAAM;oBACf,MAAM,GAAG,MAAM;;;;;oBAMf,MAAM,GAAG,MAAM;oBACf,MAAM,GAAG,MAAM;oBACf,MAAM,GAAG,MAAM;;;;;;;;;;;;qBAYd,OAAO;qBACP,OAAO;qBACP,OAAO;;;;;;;;;;;;0BAYF,MAAM,eAAe,MAAM;0BAE3B,MAAM,eAAe,MAAM;0BAE3B,MAAM,eAAe,MAAM;;;;;;;;;;;;;;;;;;;0BAoB3B,MAAM;0BACN,MAAM;0BACN,MAAM;;CAE3B,CAAC;AAEF,MAAM,MAAM,mBAAmB,CAAC,CAAC,SAAS,QAAQ,IAAI;KACnD,CAAC,IAAI,MAAM,OAAO,eAAe,GAAG,CAAC,OAAO,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;CACpE,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG;IAC7B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;CACvB,GAAG;KAED,CAAC,IAAI,QAAQ,GAAG,MAAM,GAAG,CAAC,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,MAAM,CAAC;CACvD,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG,MAAM,CAAC,MAAM,EAAE,gBAAgB,CAAC,CAAC"}