@edm-sdui/sdui 1.0.5 → 1.0.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.
Files changed (73) hide show
  1. package/esm2022/lib/components/navigation-controls/navigation-controls.component.mjs +3 -3
  2. package/esm2022/lib/components/uicomponent/button/button.component.mjs +12 -9
  3. package/esm2022/lib/components/uicomponent/column/column.component.mjs +1 -1
  4. package/esm2022/lib/components/uicomponent/image/image.component.mjs +3 -5
  5. package/esm2022/lib/components/uicomponent/label/label.component.mjs +22 -9
  6. package/esm2022/lib/components/uicomponent/media-type/media-type.component.mjs +71 -0
  7. package/esm2022/lib/components/uicomponent/picker/picker.component.mjs +43 -0
  8. package/esm2022/lib/components/uicomponent/picker-item/picker-item.component.mjs +34 -0
  9. package/esm2022/lib/components/uicomponent/row/row.component.mjs +3 -4
  10. package/esm2022/lib/components/uicomponent/search-bar/search-bar.component.mjs +14 -11
  11. package/esm2022/lib/components/uicomponent/search-bar dismiss/search-bar-dismiss.component.mjs +121 -0
  12. package/esm2022/lib/components/uicomponent/tag/tag.component.mjs +12 -9
  13. package/esm2022/lib/components/uicomponent/uicomponent.component.mjs +8 -3
  14. package/esm2022/lib/components/uicomponent/zstack/zstack.component.mjs +1 -1
  15. package/esm2022/lib/components/uilayout/centered-content-layout/centered-content-layout.component.mjs +1 -1
  16. package/esm2022/lib/components/uilayout/single-column-layout/single-column-layout.component.mjs +2 -2
  17. package/esm2022/lib/components/uilayout/uinavigation/uinavigation.component.mjs +3 -3
  18. package/esm2022/lib/components/uiscreen/uiscreen.component.mjs +3 -3
  19. package/esm2022/lib/core/services/font-size-mapping.service.mjs +30 -0
  20. package/esm2022/lib/core/services/translation.service.mjs +51 -0
  21. package/esm2022/lib/core/services/ui-action.service.mjs +44 -1
  22. package/esm2022/lib/core/tokens/sdui-config.token.mjs +2 -1
  23. package/esm2022/lib/core/uicomposition/mapping/component-mapping.mjs +5 -5
  24. package/esm2022/lib/core/uitheme/enums/uicolor.mjs +3 -3
  25. package/esm2022/lib/core/uitheme/mapping/asset-mapping.mjs +352 -352
  26. package/esm2022/lib/core/uitheme/mapping/color-mapping.mjs +128 -128
  27. package/esm2022/lib/core/uitheme/mapping/text-style-mapping.mjs +31 -13
  28. package/esm2022/lib/core/utils/url-parser.util.mjs +9 -10
  29. package/esm2022/lib/core/view-models/uiscreen.viewmodel.mjs +6 -1
  30. package/esm2022/lib/sdui.component.mjs +2 -2
  31. package/esm2022/lib/sdui.module.mjs +18 -2
  32. package/fesm2022/edm-sdui-sdui.mjs +983 -546
  33. package/fesm2022/edm-sdui-sdui.mjs.map +1 -1
  34. package/lib/components/uicomponent/button/button.component.d.ts +3 -1
  35. package/lib/components/uicomponent/button/button.component.d.ts.map +1 -1
  36. package/lib/components/uicomponent/image/image.component.d.ts.map +1 -1
  37. package/lib/components/uicomponent/label/label.component.d.ts +3 -1
  38. package/lib/components/uicomponent/label/label.component.d.ts.map +1 -1
  39. package/lib/components/uicomponent/media-type/media-type.component.d.ts +24 -0
  40. package/lib/components/uicomponent/media-type/media-type.component.d.ts.map +1 -0
  41. package/lib/components/uicomponent/picker/picker.component.d.ts +19 -0
  42. package/lib/components/uicomponent/picker/picker.component.d.ts.map +1 -0
  43. package/lib/components/uicomponent/picker-item/picker-item.component.d.ts +16 -0
  44. package/lib/components/uicomponent/picker-item/picker-item.component.d.ts.map +1 -0
  45. package/lib/components/uicomponent/row/row.component.d.ts.map +1 -1
  46. package/lib/components/uicomponent/search-bar/search-bar.component.d.ts +3 -1
  47. package/lib/components/uicomponent/search-bar/search-bar.component.d.ts.map +1 -1
  48. package/lib/components/uicomponent/search-bar dismiss/search-bar-dismiss.component.d.ts +22 -0
  49. package/lib/components/uicomponent/search-bar dismiss/search-bar-dismiss.component.d.ts.map +1 -0
  50. package/lib/components/uicomponent/tag/tag.component.d.ts +4 -2
  51. package/lib/components/uicomponent/tag/tag.component.d.ts.map +1 -1
  52. package/lib/components/uicomponent/uicomponent.component.d.ts +2 -1
  53. package/lib/components/uicomponent/uicomponent.component.d.ts.map +1 -1
  54. package/lib/core/services/font-size-mapping.service.d.ts +10 -0
  55. package/lib/core/services/font-size-mapping.service.d.ts.map +1 -0
  56. package/lib/core/services/translation.service.d.ts +13 -0
  57. package/lib/core/services/translation.service.d.ts.map +1 -0
  58. package/lib/core/services/ui-action.service.d.ts +1 -0
  59. package/lib/core/services/ui-action.service.d.ts.map +1 -1
  60. package/lib/core/tokens/sdui-config.token.d.ts +1 -0
  61. package/lib/core/tokens/sdui-config.token.d.ts.map +1 -1
  62. package/lib/core/uitheme/enums/uicolor.d.ts +2 -2
  63. package/lib/core/uitheme/enums/uicolor.d.ts.map +1 -1
  64. package/lib/core/uitheme/mapping/asset-mapping.d.ts.map +1 -1
  65. package/lib/core/uitheme/mapping/text-style-mapping.d.ts +3 -1
  66. package/lib/core/uitheme/mapping/text-style-mapping.d.ts.map +1 -1
  67. package/lib/core/utils/url-parser.util.d.ts.map +1 -1
  68. package/lib/core/view-models/uiscreen.viewmodel.d.ts +6 -7
  69. package/lib/core/view-models/uiscreen.viewmodel.d.ts.map +1 -1
  70. package/lib/sdui.component.d.ts.map +1 -1
  71. package/lib/sdui.module.d.ts +12 -7
  72. package/lib/sdui.module.d.ts.map +1 -1
  73. package/package.json +1 -1
@@ -1,3 +1,4 @@
1
+ import { FontSizeMappingService } from './../../../core/services/font-size-mapping.service';
1
2
  import { AfterViewInit, ElementRef, OnInit, Renderer2 } from '@angular/core';
2
3
  import { UIComponent } from '../../../core/uicomposition/models/uicomponent';
3
4
  import { UIAsset } from '../../../core/uitheme/enums/uiasset';
@@ -5,8 +6,9 @@ import * as i0 from "@angular/core";
5
6
  export declare class ButtonComponent implements OnInit, AfterViewInit {
6
7
  uiComponent: UIComponent;
7
8
  private renderer;
9
+ private fontSizeMappingService;
8
10
  buttonElementRef: ElementRef<HTMLButtonElement>;
9
- constructor(uiComponent: UIComponent, renderer: Renderer2);
11
+ constructor(uiComponent: UIComponent, renderer: Renderer2, fontSizeMappingService: FontSizeMappingService);
10
12
  ngOnInit(): void;
11
13
  ngAfterViewInit(): void;
12
14
  private applyElement;
@@ -1 +1 @@
1
- {"version":3,"file":"button.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uicomponent/button/button.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAEb,UAAU,EAEV,MAAM,EACN,SAAS,EAEV,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;AAK7E,OAAO,EAAE,OAAO,EAAE,MAAM,qCAAqC,CAAC;;AAE9D,qBAMa,eAAgB,YAAW,MAAM,EAAE,aAAa;IAI3B,WAAW,EAAE,WAAW;IACtD,OAAO,CAAC,QAAQ;IAJU,gBAAgB,EAAG,UAAU,CAAC,iBAAiB,CAAC,CAAC;gBAG7C,WAAW,EAAE,WAAW,EAC9C,QAAQ,EAAE,SAAS;IAG7B,QAAQ,IAAI,IAAI;IAIhB,eAAe,IAAI,IAAI;IAMvB,OAAO,CAAC,YAAY;IAoBpB,YAAY,CAAC,KAAK,EAAE,OAAO;yCAtChB,eAAe;2CAAf,eAAe;CAyC3B"}
1
+ {"version":3,"file":"button.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uicomponent/button/button.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,oDAAoD,CAAC;AAC5F,OAAO,EACL,aAAa,EAEb,UAAU,EAEV,MAAM,EACN,SAAS,EAEV,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;AAK7E,OAAO,EAAE,OAAO,EAAE,MAAM,qCAAqC,CAAC;;AAE9D,qBAMa,eAAgB,YAAW,MAAM,EAAE,aAAa;IAI3B,WAAW,EAAE,WAAW;IACtD,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,sBAAsB;IALJ,gBAAgB,EAAG,UAAU,CAAC,iBAAiB,CAAC,CAAC;gBAG7C,WAAW,EAAE,WAAW,EAC9C,QAAQ,EAAE,SAAS,EACnB,sBAAsB,EAAE,sBAAsB;IAGxD,QAAQ,IAAI,IAAI;IAIhB,eAAe,IAAI,IAAI;IAMvB,OAAO,CAAC,YAAY;IAqBpB,YAAY,CAAC,KAAK,EAAE,OAAO;yCAxChB,eAAe;2CAAf,eAAe;CA2C3B"}
@@ -1 +1 @@
1
- {"version":3,"file":"image.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uicomponent/image/image.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAEb,UAAU,EAEV,MAAM,EACN,SAAS,EAEV,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;;AAQ7E,qBAMa,cAAe,YAAW,MAAM,EAAE,aAAa;IAI1B,WAAW,EAAE,WAAW;IACtD,OAAO,CAAC,QAAQ;IAJO,aAAa,EAAG,UAAU,CAAC,gBAAgB,CAAC,CAAC;gBAGtC,WAAW,EAAE,WAAW,EAC9C,QAAQ,EAAE,SAAS;IAG7B,QAAQ,IAAI,IAAI;IAIhB,eAAe,IAAI,IAAI;IAMvB,OAAO,CAAC,YAAY;yCAlBT,cAAc;2CAAd,cAAc;CA6C1B"}
1
+ {"version":3,"file":"image.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uicomponent/image/image.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAEb,UAAU,EAEV,MAAM,EACN,SAAS,EAEV,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;;AAQ7E,qBAMa,cAAe,YAAW,MAAM,EAAE,aAAa;IAI1B,WAAW,EAAE,WAAW;IACtD,OAAO,CAAC,QAAQ;IAJO,aAAa,EAAG,UAAU,CAAC,gBAAgB,CAAC,CAAC;gBAGtC,WAAW,EAAE,WAAW,EAC9C,QAAQ,EAAE,SAAS;IAG7B,QAAQ,IAAI,IAAI;IAEhB,eAAe,IAAI,IAAI;IAMvB,OAAO,CAAC,YAAY;yCAhBT,cAAc;2CAAd,cAAc;CA2C1B"}
@@ -1,11 +1,13 @@
1
1
  import { AfterViewInit, ElementRef, OnInit, Renderer2 } from '@angular/core';
2
2
  import { UIComponent } from '../../../core/uicomposition/models/uicomponent';
3
+ import { FontSizeMappingService } from '../../../core/services/font-size-mapping.service';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class LabelComponent implements OnInit, AfterViewInit {
5
6
  uiComponent: UIComponent;
6
7
  private renderer;
8
+ private fontSizeMappingService;
7
9
  spanElementRef: ElementRef<HTMLImageElement>;
8
- constructor(uiComponent: UIComponent, renderer: Renderer2);
10
+ constructor(uiComponent: UIComponent, renderer: Renderer2, fontSizeMappingService: FontSizeMappingService);
9
11
  ngOnInit(): void;
10
12
  ngAfterViewInit(): void;
11
13
  private applyElement;
@@ -1 +1 @@
1
- {"version":3,"file":"label.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uicomponent/label/label.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAEb,UAAU,EAEV,MAAM,EACN,SAAS,EAEV,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;;AAK7E,qBAMa,cAAe,YAAW,MAAM,EAAE,aAAa;IAI1B,WAAW,EAAE,WAAW;IACtD,OAAO,CAAC,QAAQ;IAJQ,cAAc,EAAG,UAAU,CAAC,gBAAgB,CAAC,CAAC;gBAGxC,WAAW,EAAE,WAAW,EAC9C,QAAQ,EAAE,SAAS;IAG7B,QAAQ,IAAI,IAAI;IAIhB,eAAe,IAAI,IAAI;IAMvB,OAAO,CAAC,YAAY;yCAlBT,cAAc;2CAAd,cAAc;CA6C1B"}
1
+ {"version":3,"file":"label.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uicomponent/label/label.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAEb,UAAU,EAEV,MAAM,EACN,SAAS,EAEV,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;AAI7E,OAAO,EAAE,sBAAsB,EAAE,MAAM,kDAAkD,CAAC;;AAE1F,qBAMa,cAAe,YAAW,MAAM,EAAE,aAAa;IAI1B,WAAW,EAAE,WAAW;IACtD,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,sBAAsB;IALN,cAAc,EAAG,UAAU,CAAC,gBAAgB,CAAC,CAAC;gBAGxC,WAAW,EAAE,WAAW,EAC9C,QAAQ,EAAE,SAAS,EACnB,sBAAsB,EAAE,sBAAsB;IAGxD,QAAQ,IAAI,IAAI;IAIhB,eAAe,IAAI,IAAI;IAMvB,OAAO,CAAC,YAAY;yCAnBT,cAAc;2CAAd,cAAc;CAmE1B"}
@@ -0,0 +1,24 @@
1
+ import { OnInit, AfterViewInit, Renderer2, ElementRef } from "@angular/core";
2
+ import { UIComponent } from "../../../core/uicomposition/models/uicomponent";
3
+ import { SduiTranslationService } from "../../../core/services/translation.service";
4
+ import { FontSizeMappingService } from "../../../core/services/font-size-mapping.service";
5
+ import { UIContentType } from "../../../core/uitheme/enums/uicontent-type";
6
+ import * as i0 from "@angular/core";
7
+ export declare class MediaTypeComponent implements OnInit, AfterViewInit {
8
+ uiComponent: UIComponent;
9
+ private renderer;
10
+ private translator;
11
+ private fontSizeMappingService;
12
+ iconElementRef: ElementRef<HTMLImageElement>;
13
+ labelElementRef: ElementRef<HTMLSpanElement>;
14
+ containerElementRef: ElementRef<HTMLDivElement>;
15
+ label: string;
16
+ contetType: typeof UIContentType;
17
+ constructor(uiComponent: UIComponent, renderer: Renderer2, translator: SduiTranslationService, fontSizeMappingService: FontSizeMappingService);
18
+ ngOnInit(): void;
19
+ ngAfterViewInit(): void;
20
+ private applyElement;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<MediaTypeComponent, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<MediaTypeComponent, "edm-sdui-media-type", never, {}, {}, never, never, false, never>;
23
+ }
24
+ //# sourceMappingURL=media-type.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"media-type.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uicomponent/media-type/media-type.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,aAAa,EAAa,SAAS,EAAE,UAAU,EAA4B,MAAM,eAAe,CAAC;AAElH,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;AAM7E,OAAO,EAAE,sBAAsB,EAAE,MAAM,4CAA4C,CAAC;AAEpF,OAAO,EAAE,sBAAsB,EAAE,MAAM,kDAAkD,CAAC;AAG1F,OAAO,EAAE,aAAa,EAAE,MAAM,4CAA4C,CAAC;;AAE3E,qBAMa,kBAAmB,YAAW,MAAM,EAAE,aAAa;IAS5B,WAAW,EAAE,WAAW;IACtD,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,UAAU;IAClB,OAAO,CAAC,sBAAsB;IAXL,cAAc,EAAG,UAAU,CAAC,gBAAgB,CAAC,CAAC;IAC7C,eAAe,EAAG,UAAU,CAAC,eAAe,CAAC,CAAC;IAC1C,mBAAmB,EAAG,UAAU,CAAC,cAAc,CAAC,CAAC;IAG5E,KAAK,EAAE,MAAM,CAAM;IACnB,UAAU,uBAAiB;gBAEA,WAAW,EAAE,WAAW,EAC9C,QAAQ,EAAE,SAAS,EACnB,UAAU,EAAE,sBAAsB,EAClC,sBAAsB,EAAE,sBAAsB;IAGxD,QAAQ,IAAI,IAAI;IAMhB,eAAe,IAAI,IAAI;IAKvB,OAAO,CAAC,YAAY;yCA1BX,kBAAkB;2CAAlB,kBAAkB;CAkD9B"}
@@ -0,0 +1,19 @@
1
+ import { AfterViewInit, Injector, OnInit } from "@angular/core";
2
+ import { UIComponent } from "../../../core/uicomposition/models/uicomponent";
3
+ import { PickerItemComponent } from "../picker-item/picker-item.component";
4
+ import * as i0 from "@angular/core";
5
+ export declare class PickerComponent implements OnInit, AfterViewInit {
6
+ uiComponent: UIComponent;
7
+ private injector;
8
+ selectedLabel: string;
9
+ open: boolean;
10
+ constructor(uiComponent: UIComponent, injector: Injector);
11
+ ngOnInit(): void;
12
+ onItemSelected(label: string): void;
13
+ pickerItemComponent: typeof PickerItemComponent;
14
+ createInjector(item: UIComponent): Injector;
15
+ ngAfterViewInit(): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<PickerComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<PickerComponent, "edm-sdui-picker", never, {}, {}, never, never, false, never>;
18
+ }
19
+ //# sourceMappingURL=picker.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"picker.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uicomponent/picker/picker.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAqB,QAAQ,EAAE,MAAM,EAAa,MAAM,eAAe,CAAC;AAC9F,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;AAC7E,OAAO,EAAE,mBAAmB,EAAE,MAAM,sCAAsC,CAAC;;AAE3E,qBAMa,eAAgB,YAAW,MAAM,EAAE,aAAa;IAI3B,WAAW,EAAE,WAAW;IACtD,OAAO,CAAC,QAAQ;IAJlB,aAAa,EAAE,MAAM,CAAM;IAC3B,IAAI,UAAS;gBAEmB,WAAW,EAAE,WAAW,EAC9C,QAAQ,EAAE,QAAQ;IAG5B,QAAQ,IAAI,IAAI;IAIhB,cAAc,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAKnC,mBAAmB,6BAAuB;IAE1C,cAAc,CAAC,IAAI,EAAE,WAAW,GAAG,QAAQ;IAS3C,eAAe,IAAI,IAAI;yCA5BZ,eAAe;2CAAf,eAAe;CAkC3B"}
@@ -0,0 +1,16 @@
1
+ import { EventEmitter, OnInit } from "@angular/core";
2
+ import { UIComponent } from "../../../core/uicomposition/models/uicomponent";
3
+ import { UIActionService } from "../../../core/services/ui-action.service";
4
+ import * as i0 from "@angular/core";
5
+ export declare class PickerItemComponent implements OnInit {
6
+ uiComponent: UIComponent;
7
+ private actionService;
8
+ label: string;
9
+ selected: EventEmitter<string>;
10
+ constructor(uiComponent: UIComponent, actionService: UIActionService);
11
+ ngOnInit(): void;
12
+ onClick(): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<PickerItemComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<PickerItemComponent, "edm-sdui-picker-item", never, {}, { "selected": "selected"; }, never, never, false, never>;
15
+ }
16
+ //# sourceMappingURL=picker-item.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"picker-item.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uicomponent/picker-item/picker-item.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAU,MAAM,EAAU,MAAM,eAAe,CAAC;AAChF,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;AAC7E,OAAO,EAAE,eAAe,EAAE,MAAM,0CAA0C,CAAC;;AAE3E,qBAMa,mBAAoB,YAAW,MAAM;IAMhB,WAAW,EAAE,WAAW;IACtD,OAAO,CAAC,aAAa;IANhB,KAAK,EAAE,MAAM,CAAM;IAChB,QAAQ,uBAA8B;gBAIhB,WAAW,EAAE,WAAW,EAC9C,aAAa,EAAE,eAAe;IAGxC,QAAQ,IAAI,IAAI;IAIhB,OAAO;yCAdI,mBAAmB;2CAAnB,mBAAmB;CAsB/B"}
@@ -1 +1 @@
1
- {"version":3,"file":"row.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uicomponent/row/row.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAqB,MAAM,EAAE,MAAM,eAAe,CAAC;AAC1D,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;;AAE7E,qBAMa,YAAa,YAAW,MAAM;IACC,WAAW,EAAE,WAAW;gBAAxB,WAAW,EAAE,WAAW;IAElE,QAAQ,IAAI,IAAI;yCAHL,YAAY;2CAAZ,YAAY;CAMxB"}
1
+ {"version":3,"file":"row.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uicomponent/row/row.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAqB,MAAM,EAAE,MAAM,eAAe,CAAC;AAC1D,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;;AAE7E,qBAMa,YAAa,YAAW,MAAM;IACC,WAAW,EAAE,WAAW;gBAAxB,WAAW,EAAE,WAAW;IAElE,QAAQ,IAAI,IAAI;yCAHL,YAAY;2CAAZ,YAAY;CAKxB"}
@@ -1,13 +1,15 @@
1
1
  import { AfterViewInit, ElementRef, OnInit, Renderer2 } from '@angular/core';
2
2
  import { UIComponent } from '../../../core/uicomposition/models/uicomponent';
3
3
  import { UIActionService } from '../../../core/services/ui-action.service';
4
+ import { FontSizeMappingService } from '../../../core/services/font-size-mapping.service';
4
5
  import * as i0 from "@angular/core";
5
6
  export declare class SearchBarComponent implements OnInit, AfterViewInit {
6
7
  private actionService;
7
8
  uiComponent: UIComponent;
8
9
  private renderer;
10
+ private fontSizeMappingService;
9
11
  inputElementRef: ElementRef<HTMLInputElement>;
10
- constructor(actionService: UIActionService, uiComponent: UIComponent, renderer: Renderer2);
12
+ constructor(actionService: UIActionService, uiComponent: UIComponent, renderer: Renderer2, fontSizeMappingService: FontSizeMappingService);
11
13
  ngOnInit(): void;
12
14
  ngAfterViewInit(): void;
13
15
  private applyElement;
@@ -1 +1 @@
1
- {"version":3,"file":"search-bar.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uicomponent/search-bar/search-bar.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAEb,UAAU,EAEV,MAAM,EACN,SAAS,EAEV,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;AAI7E,OAAO,EAAE,eAAe,EAAE,MAAM,0CAA0C,CAAC;;AAE3E,qBAMa,kBAAmB,YAAW,MAAM,EAAE,aAAa;IAI5D,OAAO,CAAC,aAAa;IACS,WAAW,EAAE,WAAW;IACtD,OAAO,CAAC,QAAQ;IALS,eAAe,EAAG,UAAU,CAAC,gBAAgB,CAAC,CAAC;gBAGhE,aAAa,EAAE,eAAe,EACR,WAAW,EAAE,WAAW,EAC9C,QAAQ,EAAE,SAAS;IAG7B,QAAQ,IAAI,IAAI;IAIhB,eAAe,IAAI,IAAI;IAyDvB,OAAO,CAAC,YAAY;yCAtET,kBAAkB;2CAAlB,kBAAkB;CA2G9B"}
1
+ {"version":3,"file":"search-bar.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uicomponent/search-bar/search-bar.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAEb,UAAU,EAEV,MAAM,EACN,SAAS,EAEV,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;AAI7E,OAAO,EAAE,eAAe,EAAE,MAAM,0CAA0C,CAAC;AAC3E,OAAO,EAAE,sBAAsB,EAAE,MAAM,kDAAkD,CAAC;;AAE1F,qBAMa,kBAAmB,YAAW,MAAM,EAAE,aAAa;IAI5D,OAAO,CAAC,aAAa;IACS,WAAW,EAAE,WAAW;IACtD,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,sBAAsB;IANL,eAAe,EAAG,UAAU,CAAC,gBAAgB,CAAC,CAAC;gBAGhE,aAAa,EAAE,eAAe,EACR,WAAW,EAAE,WAAW,EAC9C,QAAQ,EAAE,SAAS,EACnB,sBAAsB,EAAE,sBAAsB;IAGxD,QAAQ,IAAI,IAAI;IAIhB,eAAe,IAAI,IAAI;IAyDvB,OAAO,CAAC,YAAY;yCAvET,kBAAkB;2CAAlB,kBAAkB;CA6G9B"}
@@ -0,0 +1,22 @@
1
+ import { AfterViewInit, ElementRef, OnInit, Renderer2 } from '@angular/core';
2
+ import { UIComponent } from '../../../core/uicomposition/models/uicomponent';
3
+ import { UIActionService } from '../../../core/services/ui-action.service';
4
+ import { Router } from '@angular/router';
5
+ import { FontSizeMappingService } from '../../../core/services/font-size-mapping.service';
6
+ import * as i0 from "@angular/core";
7
+ export declare class SearchBarDismissComponent implements OnInit, AfterViewInit {
8
+ private actionService;
9
+ uiComponent: UIComponent;
10
+ private renderer;
11
+ private router;
12
+ private fontSizeMappingService;
13
+ inputElementRef: ElementRef<HTMLInputElement>;
14
+ constructor(actionService: UIActionService, uiComponent: UIComponent, renderer: Renderer2, router: Router, fontSizeMappingService: FontSizeMappingService);
15
+ ngOnInit(): void;
16
+ ngAfterViewInit(): void;
17
+ private applyElement;
18
+ clearInput(): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<SearchBarDismissComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<SearchBarDismissComponent, "edm-sdui-search-bar-dismiss", never, {}, {}, never, never, false, never>;
21
+ }
22
+ //# sourceMappingURL=search-bar-dismiss.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"search-bar-dismiss.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uicomponent/search-bar dismiss/search-bar-dismiss.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAEb,UAAU,EAEV,MAAM,EACN,SAAS,EAEV,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;AAI7E,OAAO,EAAE,eAAe,EAAE,MAAM,0CAA0C,CAAC;AAC3E,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzC,OAAO,EAAE,sBAAsB,EAAE,MAAM,kDAAkD,CAAC;;AAG1F,qBAMa,yBAA0B,YAAW,MAAM,EAAE,aAAa;IAInE,OAAO,CAAC,aAAa;IACS,WAAW,EAAE,WAAW;IACtD,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,sBAAsB;IAPL,eAAe,EAAG,UAAU,CAAC,gBAAgB,CAAC,CAAC;gBAGhE,aAAa,EAAE,eAAe,EACR,WAAW,EAAE,WAAW,EAC9C,QAAQ,EAAE,SAAS,EACnB,MAAM,EAAE,MAAM,EACd,sBAAsB,EAAE,sBAAsB;IAGxD,QAAQ,IAAI,IAAI;IAIhB,eAAe,IAAI,IAAI;IA0DvB,OAAO,CAAC,YAAY;IAyCb,UAAU,IAAI,IAAI;yCAlHd,yBAAyB;2CAAzB,yBAAyB;CA+HrC"}
@@ -1,17 +1,19 @@
1
1
  import { AfterViewInit, ElementRef, OnInit, Renderer2 } from "@angular/core";
2
2
  import { UIComponent } from "../../../core/uicomposition/models/uicomponent";
3
+ import { FontSizeMappingService } from "../../../core/services/font-size-mapping.service";
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class TagComponent implements OnInit, AfterViewInit {
5
6
  uiComponent: UIComponent;
6
7
  private renderer;
8
+ private fontSizeMappingService;
7
9
  tagElementRef: ElementRef<HTMLImageElement>;
8
10
  tagNameElementRef: ElementRef<HTMLImageElement>;
9
- constructor(uiComponent: UIComponent, renderer: Renderer2);
11
+ constructor(uiComponent: UIComponent, renderer: Renderer2, fontSizeMappingService: FontSizeMappingService);
10
12
  ngOnInit(): void;
11
13
  ngAfterViewInit(): void;
12
14
  private applyElement;
13
15
  private applyLabelElement;
14
16
  static ɵfac: i0.ɵɵFactoryDeclaration<TagComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<TagComponent, "ng-component", never, {}, {}, never, never, false, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<TagComponent, "edm-sdui-tag", never, {}, {}, never, never, false, never>;
16
18
  }
17
19
  //# sourceMappingURL=tag.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"tag.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uicomponent/tag/tag.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAa,UAAU,EAAU,MAAM,EAAE,SAAS,EAAa,MAAM,eAAe,CAAC;AAC3G,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;;AAK7E,qBAKa,YAAa,YAAW,MAAM,EAAE,aAAa;IAKxB,WAAW,EAAE,WAAW;IACtD,OAAO,CAAC,QAAQ;IALS,aAAa,EAAG,UAAU,CAAC,gBAAgB,CAAC,CAAC;IACzC,iBAAiB,EAAG,UAAU,CAAC,gBAAgB,CAAC,CAAC;gBAGhD,WAAW,EAAE,WAAW,EAC9C,QAAQ,EAAE,SAAS;IAG3B,QAAQ,IAAI,IAAI;IAIhB,eAAe,IAAI,IAAI;IAUvB,OAAO,CAAC,YAAY;IAIpB,OAAO,CAAC,iBAAiB;yCA3BhB,YAAY;2CAAZ,YAAY;CA0CxB"}
1
+ {"version":3,"file":"tag.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uicomponent/tag/tag.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAa,UAAU,EAAU,MAAM,EAAE,SAAS,EAAa,MAAM,eAAe,CAAC;AAC3G,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;AAI7E,OAAO,EAAE,sBAAsB,EAAE,MAAM,kDAAkD,CAAC;;AAE1F,qBAMa,YAAa,YAAW,MAAM,EAAE,aAAa;IAKxB,WAAW,EAAE,WAAW;IACtD,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,sBAAsB;IANL,aAAa,EAAG,UAAU,CAAC,gBAAgB,CAAC,CAAC;IACzC,iBAAiB,EAAG,UAAU,CAAC,gBAAgB,CAAC,CAAC;gBAGhD,WAAW,EAAE,WAAW,EAC9C,QAAQ,EAAE,SAAS,EACnB,sBAAsB,EAAE,sBAAsB;IAGtD,QAAQ,IAAI,IAAI;IAIhB,eAAe,IAAI,IAAI;IAUvB,OAAO,CAAC,YAAY;IAIpB,OAAO,CAAC,iBAAiB;yCA5BhB,YAAY;2CAAZ,YAAY;CA6CxB"}
@@ -5,6 +5,7 @@ export declare class UIComponentComponent implements OnInit, OnChanges {
5
5
  private injector;
6
6
  private cdr;
7
7
  uiComponent?: UIComponent;
8
+ translateLabel?: (context: string, value: string) => string;
8
9
  componentToRender?: Type<any>;
9
10
  componentInjector: Injector;
10
11
  constructor(injector: Injector, cdr: ChangeDetectorRef);
@@ -12,6 +13,6 @@ export declare class UIComponentComponent implements OnInit, OnChanges {
12
13
  ngOnChanges(changes: SimpleChanges): void;
13
14
  private initializeComponent;
14
15
  static ɵfac: i0.ɵɵFactoryDeclaration<UIComponentComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<UIComponentComponent, "edm-sdui-component", never, { "uiComponent": { "alias": "uiComponent"; "required": false; }; }, {}, never, never, false, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<UIComponentComponent, "edm-sdui-component", never, { "uiComponent": { "alias": "uiComponent"; "required": false; }; "translateLabel": { "alias": "translateLabel"; "required": false; }; }, {}, never, never, false, never>;
16
17
  }
17
18
  //# sourceMappingURL=uicomponent.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"uicomponent.component.d.ts","sourceRoot":"","sources":["../../../../../../libs/sdui/src/lib/components/uicomponent/uicomponent.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,iBAAiB,EAEjB,QAAQ,EAER,SAAS,EACT,MAAM,EACN,aAAa,EACb,IAAI,EACL,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,WAAW,EAAE,MAAM,6CAA6C,CAAC;;AAG1E,qBAMa,oBAAqB,YAAW,MAAM,EAAE,SAAS;IAKhD,OAAO,CAAC,QAAQ;IAAY,OAAO,CAAC,GAAG;IAJ1C,WAAW,CAAC,EAAE,WAAW,CAAC;IACnC,iBAAiB,CAAC,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC;IAC9B,iBAAiB,EAAG,QAAQ,CAAC;gBAET,QAAQ,EAAE,QAAQ,EAAU,GAAG,EAAE,iBAAiB;IAEtE,QAAQ,IAAI,IAAI;IAIhB,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAMzC,OAAO,CAAC,mBAAmB;yCAjBhB,oBAAoB;2CAApB,oBAAoB;CAgChC"}
1
+ {"version":3,"file":"uicomponent.component.d.ts","sourceRoot":"","sources":["../../../../../../libs/sdui/src/lib/components/uicomponent/uicomponent.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,iBAAiB,EAEjB,QAAQ,EAER,SAAS,EACT,MAAM,EACN,aAAa,EACb,IAAI,EACL,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,WAAW,EAAE,MAAM,6CAA6C,CAAC;;AAG1E,qBAMa,oBAAqB,YAAW,MAAM,EAAE,SAAS;IAMhD,OAAO,CAAC,QAAQ;IAAY,OAAO,CAAC,GAAG;IAL1C,WAAW,CAAC,EAAE,WAAW,CAAC;IAC1B,cAAc,CAAC,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,KAAK,MAAM,CAAC;IACrE,iBAAiB,CAAC,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC;IAC9B,iBAAiB,EAAG,QAAQ,CAAC;gBAET,QAAQ,EAAE,QAAQ,EAAU,GAAG,EAAE,iBAAiB;IAEtE,QAAQ,IAAI,IAAI;IAIhB,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAMzC,OAAO,CAAC,mBAAmB;yCAlBhB,oBAAoB;2CAApB,oBAAoB;CAoChC"}
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class FontSizeMappingService {
3
+ private readonly baseFontSize;
4
+ private readonly mapping;
5
+ constructor();
6
+ getMapping(): Record<string, string>;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<FontSizeMappingService, never>;
8
+ static ɵprov: i0.ɵɵInjectableDeclaration<FontSizeMappingService>;
9
+ }
10
+ //# sourceMappingURL=font-size-mapping.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"font-size-mapping.service.d.ts","sourceRoot":"","sources":["../../../../../../libs/sdui/src/lib/core/services/font-size-mapping.service.ts"],"names":[],"mappings":";AAIA,qBACa,sBAAsB;IACjC,OAAO,CAAC,QAAQ,CAAC,YAAY,CAAS;IACtC,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAyB;;IAmBjD,UAAU,IAAI,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC;yCArBzB,sBAAsB;6CAAtB,sBAAsB;CAwBlC"}
@@ -0,0 +1,13 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class SduiTranslationService {
3
+ private language;
4
+ private translations;
5
+ constructor();
6
+ private detectBrowserLanguage;
7
+ setLanguage(lang: 'pt' | 'en'): void;
8
+ getLanguage(): string;
9
+ translate(context: string, key: string): string;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<SduiTranslationService, never>;
11
+ static ɵprov: i0.ɵɵInjectableDeclaration<SduiTranslationService>;
12
+ }
13
+ //# sourceMappingURL=translation.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"translation.service.d.ts","sourceRoot":"","sources":["../../../../../../libs/sdui/src/lib/core/services/translation.service.ts"],"names":[],"mappings":";AAEA,qBACa,sBAAsB;IACjC,OAAO,CAAC,QAAQ,CAAc;IAE9B,OAAO,CAAC,YAAY,CAmBlB;;IAMF,OAAO,CAAC,qBAAqB;IAM7B,WAAW,CAAC,IAAI,EAAE,IAAI,GAAG,IAAI;IAI7B,WAAW,IAAI,MAAM;IAIrB,SAAS,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM;yCA1CpC,sBAAsB;6CAAtB,sBAAsB;CAiDlC"}
@@ -5,6 +5,7 @@ export declare class UIActionService {
5
5
  private router;
6
6
  constructor(router: Router);
7
7
  execute(action: UIAction): void;
8
+ private handleCustomNavigation;
8
9
  static ɵfac: i0.ɵɵFactoryDeclaration<UIActionService, never>;
9
10
  static ɵprov: i0.ɵɵInjectableDeclaration<UIActionService>;
10
11
  }
@@ -1 +1 @@
1
- {"version":3,"file":"ui-action.service.d.ts","sourceRoot":"","sources":["../../../../../../libs/sdui/src/lib/core/services/ui-action.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAEzC,OAAO,EAAE,QAAQ,EAAE,MAAM,4BAA4B,CAAC;;AAItD,qBACa,eAAe;IACd,OAAO,CAAC,MAAM;gBAAN,MAAM,EAAE,MAAM;IAElC,OAAO,CAAC,MAAM,EAAE,QAAQ,GAAG,IAAI;yCAHpB,eAAe;6CAAf,eAAe;CA2B3B"}
1
+ {"version":3,"file":"ui-action.service.d.ts","sourceRoot":"","sources":["../../../../../../libs/sdui/src/lib/core/services/ui-action.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAEzC,OAAO,EAAE,QAAQ,EAAE,MAAM,4BAA4B,CAAC;;AAItD,qBACa,eAAe;IACd,OAAO,CAAC,MAAM;gBAAN,MAAM,EAAE,MAAM;IAElC,OAAO,CAAC,MAAM,EAAE,QAAQ,GAAG,IAAI;IAoC/B,OAAO,CAAC,sBAAsB;yCAvCnB,eAAe;6CAAf,eAAe;CA2E3B"}
@@ -1,3 +1,4 @@
1
1
  import { InjectionToken } from '@angular/core';
2
2
  export declare const SDUI_BASE_URL: InjectionToken<string>;
3
+ export declare const SDUI_FONT_ADJUST: InjectionToken<number>;
3
4
  //# sourceMappingURL=sdui-config.token.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sdui-config.token.d.ts","sourceRoot":"","sources":["../../../../../../libs/sdui/src/lib/core/tokens/sdui-config.token.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAE/C,eAAO,MAAM,aAAa,wBAA8C,CAAC"}
1
+ {"version":3,"file":"sdui-config.token.d.ts","sourceRoot":"","sources":["../../../../../../libs/sdui/src/lib/core/tokens/sdui-config.token.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAE/C,eAAO,MAAM,aAAa,wBAA8C,CAAC;AACzE,eAAO,MAAM,gBAAgB,wBAAiD,CAAC"}
@@ -13,7 +13,7 @@ export declare enum UIColor {
13
13
  FONT_TAG = "font_tag",
14
14
  FONT_LIVE = "font_live",
15
15
  QUIZ_SELECT = "quiz_select",
16
- MAIN1 = "main1",
16
+ MAIN1 = "main_1",
17
17
  AUX = "aux",
18
18
  VOTE_OFF = "vote_off",
19
19
  BG_VOTE = "bg_vote",
@@ -41,7 +41,7 @@ export declare enum UIColor {
41
41
  BG_SURVEY = "bg_survey",
42
42
  BG_LIVE = "bg_live",
43
43
  BG_VIEW_LIVE = "bg_view_live",
44
- MAIN2 = "main2",
44
+ MAIN2 = "main_2",
45
45
  BT_TAG_ON = "bt_tag_on",
46
46
  TEXT_COLOR = "text_color",
47
47
  TEXT_STORY = "text_story",
@@ -1 +1 @@
1
- {"version":3,"file":"uicolor.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uitheme/enums/uicolor.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"uicolor.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uitheme/enums/uicolor.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"asset-mapping.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uitheme/mapping/asset-mapping.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAE3C,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,OAAO,EAAE,MAAM,CAwWhD,CAAC"}
1
+ {"version":3,"file":"asset-mapping.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uitheme/mapping/asset-mapping.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAE3C,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,OAAO,EAAE,MAAM,CAiYhD,CAAC"}
@@ -1,3 +1,5 @@
1
1
  import { UITextStyle } from '../enums/uitext-style';
2
- export declare const textStyleMappingFontSize: Record<UITextStyle, string>;
2
+ export declare function getTextStyleMappingFontSize(): Record<string, string>;
3
+ export declare const textStyleMappingFontWeight: Record<UITextStyle, string>;
4
+ export declare const textStyleMappingLineHeight: Record<UITextStyle, string>;
3
5
  //# sourceMappingURL=text-style-mapping.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"text-style-mapping.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uitheme/mapping/text-style-mapping.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAEpD,eAAO,MAAM,wBAAwB,EAAE,MAAM,CAAC,WAAW,EAAE,MAAM,CAYhE,CAAC"}
1
+ {"version":3,"file":"text-style-mapping.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uitheme/mapping/text-style-mapping.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAGpD,wBAAgB,2BAA2B,IAAI,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAEpE;AAED,eAAO,MAAM,0BAA0B,EAAE,MAAM,CAAC,WAAW,EAAE,MAAM,CAYlE,CAAC;AAEF,eAAO,MAAM,0BAA0B,EAAE,MAAM,CAAC,WAAW,EAAE,MAAM,CAYlE,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"url-parser.util.d.ts","sourceRoot":"","sources":["../../../../../../libs/sdui/src/lib/core/utils/url-parser.util.ts"],"names":[],"mappings":"AAAA,wBAAgB,cAAc,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,GAAE,MAAW,GAAG,MAAM,CAyB3E;AAED,wBAAgB,SAAS,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAEjD"}
1
+ {"version":3,"file":"url-parser.util.d.ts","sourceRoot":"","sources":["../../../../../../libs/sdui/src/lib/core/utils/url-parser.util.ts"],"names":[],"mappings":"AAAA,wBAAgB,cAAc,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,GAAE,MAAW,GAAG,MAAM,CA2B3E;AAED,wBAAgB,SAAS,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAEjD"}
@@ -1,4 +1,3 @@
1
- import { Observable } from 'rxjs';
2
1
  import { UIScreen } from '../uicomposition/models/uiscreen';
3
2
  import { UIScreenService } from '../services/uiscreen.service';
4
3
  import { Location } from '@angular/common';
@@ -13,12 +12,12 @@ export declare class UIScreenViewModel {
13
12
  private navigationHistorySubject;
14
13
  private canGoBackSubject;
15
14
  private currentUrlSubject;
16
- uiScreen$: Observable<UIScreen | null>;
17
- isLoading$: Observable<boolean>;
18
- error$: Observable<string | null>;
19
- navigationHistory$: Observable<string[]>;
20
- canGoBack$: Observable<boolean>;
21
- currentUrl$: Observable<string | null>;
15
+ uiScreen$: import("rxjs").Observable<UIScreen | null>;
16
+ isLoading$: import("rxjs").Observable<boolean>;
17
+ error$: import("rxjs").Observable<string | null>;
18
+ navigationHistory$: import("rxjs").Observable<string[]>;
19
+ canGoBack$: import("rxjs").Observable<boolean>;
20
+ currentUrl$: import("rxjs").Observable<string | null>;
22
21
  constructor(uiScreenService: UIScreenService, location: Location);
23
22
  /**
24
23
  * Atualiza o estado do botão de voltar com base no tamanho do histórico
@@ -1 +1 @@
1
- {"version":3,"file":"uiscreen.viewmodel.d.ts","sourceRoot":"","sources":["../../../../../../libs/sdui/src/lib/core/view-models/uiscreen.viewmodel.ts"],"names":[],"mappings":"AACA,OAAO,EAAyC,UAAU,EAAM,MAAM,MAAM,CAAC;AAC7E,OAAO,EAAE,QAAQ,EAAE,MAAM,kCAAkC,CAAC;AAC5D,OAAO,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAC;AAE/D,OAAO,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;;AAI3C,eAAO,MAAM,cAAc,YAAY,CAAC;AAExC,qBAGa,iBAAiB;IAgB1B,OAAO,CAAC,eAAe;IACvB,OAAO,CAAC,QAAQ;IAhBlB,OAAO,CAAC,eAAe,CAA8C;IACrE,OAAO,CAAC,gBAAgB,CAAuC;IAC/D,OAAO,CAAC,YAAY,CAA4C;IAChE,OAAO,CAAC,wBAAwB,CAAqC;IACrE,OAAO,CAAC,gBAAgB,CAAuC;IAC/D,OAAO,CAAC,iBAAiB,CAA4C;IAE9D,SAAS,8BAAuC;IAChD,UAAU,sBAAwC;IAClD,MAAM,4BAAoC;IAC1C,kBAAkB,uBAAgD;IAClE,UAAU,sBAAwC;IAClD,WAAW,4BAAyC;gBAGjD,eAAe,EAAE,eAAe,EAChC,QAAQ,EAAE,QAAQ;IAK5B;;OAEG;IACH,OAAO,CAAC,eAAe;IASvB,YAAY,CAAC,GAAG,EAAE,MAAM,EAAE,mBAAmB,GAAE,OAAc,EAAE,sBAAsB,GAAE,OAAe,GAAG,IAAI;IAgB7G,OAAO,CAAC,oBAAoB;IAyB5B;;OAEG;IACH,MAAM,IAAI,IAAI;IAgBd;;OAEG;IACH,SAAS,IAAI,OAAO;yCAjGT,iBAAiB;6CAAjB,iBAAiB;CAoG7B"}
1
+ {"version":3,"file":"uiscreen.viewmodel.d.ts","sourceRoot":"","sources":["../../../../../../libs/sdui/src/lib/core/view-models/uiscreen.viewmodel.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,QAAQ,EAAE,MAAM,kCAAkC,CAAC;AAC5D,OAAO,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAC;AAC/D,OAAO,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;;AAG3C,eAAO,MAAM,cAAc,YAAY,CAAC;AAExC,qBAGa,iBAAiB;IAgB1B,OAAO,CAAC,eAAe;IACvB,OAAO,CAAC,QAAQ;IAhBlB,OAAO,CAAC,eAAe,CAA8C;IACrE,OAAO,CAAC,gBAAgB,CAAuC;IAC/D,OAAO,CAAC,YAAY,CAA4C;IAChE,OAAO,CAAC,wBAAwB,CAAqC;IACrE,OAAO,CAAC,gBAAgB,CAAuC;IAC/D,OAAO,CAAC,iBAAiB,CAA4C;IAE9D,SAAS,6CAAuC;IAChD,UAAU,qCAAwC;IAClD,MAAM,2CAAoC;IAC1C,kBAAkB,sCAAgD;IAClE,UAAU,qCAAwC;IAClD,WAAW,2CAAyC;gBAGjD,eAAe,EAAE,eAAe,EAChC,QAAQ,EAAE,QAAQ;IAK5B;;OAEG;IACH,OAAO,CAAC,eAAe;IASvB,YAAY,CACV,GAAG,EAAE,MAAM,EACX,mBAAmB,GAAE,OAAc,EACnC,sBAAsB,GAAE,OAAe,GACtC,IAAI;IAgBP,OAAO,CAAC,oBAAoB;IA0B5B;;OAEG;IACH,MAAM,IAAI,IAAI;IAmBd;;OAEG;IACH,SAAS,IAAI,OAAO;yCAzGT,iBAAiB;6CAAjB,iBAAiB;CA4G7B"}
@@ -1 +1 @@
1
- {"version":3,"file":"sdui.component.d.ts","sourceRoot":"","sources":["../../../../libs/sdui/src/lib/sdui.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,MAAM,EAIN,aAAa,EACd,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACjD,OAAO,EACL,iBAAiB,EAElB,MAAM,uCAAuC,CAAC;;AAG/C,qBAMa,aAAc,YAAW,MAAM,EAAE,aAAa;IAMvD,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,SAAS;IANnB,cAAc,EAAE,MAAM,GAAG,IAAI,CAAQ;IAE5B,UAAU,EAAE,MAAM,GAAG,IAAI,CAAQ;gBAGhC,KAAK,EAAE,cAAc,EACrB,SAAS,EAAE,iBAAiB;IAGtC,QAAQ;IAgBR,eAAe,IAAI,IAAI;IAcvB,OAAO,CAAC,aAAa;yCAxCV,aAAa;2CAAb,aAAa;CA2CzB"}
1
+ {"version":3,"file":"sdui.component.d.ts","sourceRoot":"","sources":["../../../../libs/sdui/src/lib/sdui.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAS,aAAa,EAAE,MAAM,eAAe,CAAC;AACxE,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACjD,OAAO,EACL,iBAAiB,EAElB,MAAM,uCAAuC,CAAC;;AAE/C,qBAMa,aAAc,YAAW,MAAM,EAAE,aAAa;IAMvD,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,SAAS;IANnB,cAAc,EAAE,MAAM,GAAG,IAAI,CAAQ;IAE5B,UAAU,EAAE,MAAM,GAAG,IAAI,CAAQ;gBAGhC,KAAK,EAAE,cAAc,EACrB,SAAS,EAAE,iBAAiB;IAGtC,QAAQ;IAgBR,eAAe,IAAI,IAAI;IAcvB,OAAO,CAAC,aAAa;yCAxCV,aAAa;2CAAb,aAAa;CA6CzB"}
@@ -16,20 +16,25 @@ import * as i12 from "./components/uicomponent/button/button.component";
16
16
  import * as i13 from "./components/uicomponent/image/image.component";
17
17
  import * as i14 from "./components/uicomponent/tag/tag.component";
18
18
  import * as i15 from "./components/uicomponent/search-bar/search-bar.component";
19
- import * as i16 from "./directives/uiview.directive";
20
- import * as i17 from "./components/navigation-controls/navigation-controls.component";
21
- import * as i18 from "./sdui.component";
22
- import * as i19 from "@angular/common";
23
- import * as i20 from "@angular/router";
19
+ import * as i16 from "./components/uicomponent/search-bar dismiss/search-bar-dismiss.component";
20
+ import * as i17 from "./components/uicomponent/media-type/media-type.component";
21
+ import * as i18 from "./components/uicomponent/picker/picker.component";
22
+ import * as i19 from "./components/uicomponent/picker-item/picker-item.component";
23
+ import * as i20 from "./directives/uiview.directive";
24
+ import * as i21 from "./components/navigation-controls/navigation-controls.component";
25
+ import * as i22 from "./sdui.component";
26
+ import * as i23 from "@angular/common";
27
+ import * as i24 from "@angular/router";
24
28
  export interface SduiModuleConfig {
25
- baseUrl: string;
29
+ baseUrl?: string;
26
30
  routePath?: string;
31
+ fontAdjust?: number;
27
32
  }
28
33
  export declare class SduiModule {
29
34
  static forRoot(config: SduiModuleConfig): ModuleWithProviders<SduiModule>;
30
35
  static forRouting(config?: SduiModuleConfig): ModuleWithProviders<SduiRoutingModule>;
31
36
  static ɵfac: i0.ɵɵFactoryDeclaration<SduiModule, never>;
32
- static ɵmod: i0.ɵɵNgModuleDeclaration<SduiModule, [typeof i1.UIScreenComponent, typeof i2.UINavigationComponent, typeof i3.SingleColumnLayoutComponent, typeof i4.CenteredContentLayoutComponent, typeof i5.UIComponentComponent, typeof i6.RowComponent, typeof i7.RowDivisorComponent, typeof i8.ColumnComponent, typeof i9.ZStackComponent, typeof i10.LabelComponent, typeof i11.SpaceComponent, typeof i12.ButtonComponent, typeof i13.ImageComponent, typeof i14.TagComponent, typeof i15.SearchBarComponent, typeof i16.UIViewDirective, typeof i17.NavigationControlsComponent, typeof i18.SduiComponent], [typeof i19.CommonModule, typeof i20.RouterModule], [typeof i18.SduiComponent]>;
37
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SduiModule, [typeof i1.UIScreenComponent, typeof i2.UINavigationComponent, typeof i3.SingleColumnLayoutComponent, typeof i4.CenteredContentLayoutComponent, typeof i5.UIComponentComponent, typeof i6.RowComponent, typeof i7.RowDivisorComponent, typeof i8.ColumnComponent, typeof i9.ZStackComponent, typeof i10.LabelComponent, typeof i11.SpaceComponent, typeof i12.ButtonComponent, typeof i13.ImageComponent, typeof i14.TagComponent, typeof i15.SearchBarComponent, typeof i16.SearchBarDismissComponent, typeof i17.MediaTypeComponent, typeof i18.PickerComponent, typeof i19.PickerItemComponent, typeof i20.UIViewDirective, typeof i21.NavigationControlsComponent, typeof i22.SduiComponent], [typeof i23.CommonModule, typeof i24.RouterModule], [typeof i22.SduiComponent]>;
33
38
  static ɵinj: i0.ɵɵInjectorDeclaration<SduiModule>;
34
39
  }
35
40
  //# sourceMappingURL=sdui.module.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sdui.module.d.ts","sourceRoot":"","sources":["../../../../libs/sdui/src/lib/sdui.module.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,mBAAmB,EAAE,MAAM,eAAe,CAAC;AAmB9D,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;;;;;;;;;;;;;;;;;;;;;;AAK1D,MAAM,WAAW,gBAAgB;IAC/B,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,qBAoCa,UAAU;IACrB,MAAM,CAAC,OAAO,CAAC,MAAM,EAAE,gBAAgB,GAAG,mBAAmB,CAAC,UAAU,CAAC;IAYzE,MAAM,CAAC,UAAU,CACf,MAAM,CAAC,EAAE,gBAAgB,GACxB,mBAAmB,CAAC,iBAAiB,CAAC;yCAf9B,UAAU;0CAAV,UAAU;0CAAV,UAAU;CAkBtB"}
1
+ {"version":3,"file":"sdui.module.d.ts","sourceRoot":"","sources":["../../../../libs/sdui/src/lib/sdui.module.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,mBAAmB,EAAE,MAAM,eAAe,CAAC;AAmB9D,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;AAS1D,MAAM,WAAW,gBAAgB;IAC/B,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,qBAwCa,UAAU;IACrB,MAAM,CAAC,OAAO,CAAC,MAAM,EAAE,gBAAgB,GAAG,mBAAmB,CAAC,UAAU,CAAC;IAgBzE,MAAM,CAAC,UAAU,CACf,MAAM,CAAC,EAAE,gBAAgB,GACxB,mBAAmB,CAAC,iBAAiB,CAAC;yCAnB9B,UAAU;0CAAV,UAAU;0CAAV,UAAU;CAsBtB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edm-sdui/sdui",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"