@tilde-nlp/ngx-common 0.0.0

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 (128) hide show
  1. package/README.md +95 -0
  2. package/esm2020/lib/close-button/close-button.component.mjs +34 -0
  3. package/esm2020/lib/close-button/close-button.module.mjs +38 -0
  4. package/esm2020/lib/close-button/index.mjs +3 -0
  5. package/esm2020/lib/company-product/company-product.component.mjs +20 -0
  6. package/esm2020/lib/company-product/company-product.module.mjs +24 -0
  7. package/esm2020/lib/company-product/index.mjs +3 -0
  8. package/esm2020/lib/directives/click-outside/click-outside.directive.mjs +29 -0
  9. package/esm2020/lib/directives/click-outside/click-outside.module.mjs +26 -0
  10. package/esm2020/lib/directives/click-outside/index.mjs +3 -0
  11. package/esm2020/lib/directives/index.mjs +2 -0
  12. package/esm2020/lib/footer/footer.component.mjs +37 -0
  13. package/esm2020/lib/footer/footer.module.mjs +36 -0
  14. package/esm2020/lib/footer/index.mjs +3 -0
  15. package/esm2020/lib/helpers/index.mjs +2 -0
  16. package/esm2020/lib/helpers/missing-translation-helper.mjs +7 -0
  17. package/esm2020/lib/inline-message/index.mjs +4 -0
  18. package/esm2020/lib/inline-message/inline-message.component.mjs +23 -0
  19. package/esm2020/lib/inline-message/inline-message.module.mjs +34 -0
  20. package/esm2020/lib/inline-message/models/index.mjs +4 -0
  21. package/esm2020/lib/inline-message/models/inline-message-icon-position.enum.mjs +6 -0
  22. package/esm2020/lib/inline-message/models/inline-message-type.enum.mjs +7 -0
  23. package/esm2020/lib/inline-message/models/inline-message.model.mjs +2 -0
  24. package/esm2020/lib/notification-message/enums/index.mjs +2 -0
  25. package/esm2020/lib/notification-message/enums/notification-message-type.enum.mjs +8 -0
  26. package/esm2020/lib/notification-message/index.mjs +5 -0
  27. package/esm2020/lib/notification-message/interfaces/index.mjs +2 -0
  28. package/esm2020/lib/notification-message/interfaces/notification-message.model.mjs +2 -0
  29. package/esm2020/lib/notification-message/notification-message.component.mjs +51 -0
  30. package/esm2020/lib/notification-message/notification-message.module.mjs +46 -0
  31. package/esm2020/lib/pipes/filter-with-highlight/filter-with-highlight.module.mjs +26 -0
  32. package/esm2020/lib/pipes/filter-with-highlight/filter-with-highlight.pipe.mjs +39 -0
  33. package/esm2020/lib/pipes/filter-with-highlight/index.mjs +3 -0
  34. package/esm2020/lib/pipes/index.mjs +3 -0
  35. package/esm2020/lib/pipes/sort-translations/index.mjs +3 -0
  36. package/esm2020/lib/pipes/sort-translations/sort-translations.module.mjs +24 -0
  37. package/esm2020/lib/pipes/sort-translations/sort-translations.pipe.mjs +60 -0
  38. package/esm2020/lib/plausible/index.mjs +5 -0
  39. package/esm2020/lib/plausible/models/index.mjs +2 -0
  40. package/esm2020/lib/plausible/models/plausible-event.model.mjs +2 -0
  41. package/esm2020/lib/plausible/plausible-event.directive.mjs +40 -0
  42. package/esm2020/lib/plausible/plausible.helper.mjs +37 -0
  43. package/esm2020/lib/plausible/plausible.module.mjs +26 -0
  44. package/esm2020/lib/services/dom.service.mjs +21 -0
  45. package/esm2020/lib/services/icon.service.mjs +35 -0
  46. package/esm2020/lib/services/index.mjs +3 -0
  47. package/esm2020/lib/tld-loader/index.mjs +3 -0
  48. package/esm2020/lib/tld-loader/tld-loader.component.mjs +11 -0
  49. package/esm2020/lib/tld-loader/tld-loader.module.mjs +20 -0
  50. package/esm2020/public-api.mjs +15 -0
  51. package/esm2020/tilde-nlp-ngx-common.mjs +5 -0
  52. package/fesm2015/tilde-nlp-ngx-common.mjs +694 -0
  53. package/fesm2015/tilde-nlp-ngx-common.mjs.map +1 -0
  54. package/fesm2020/tilde-nlp-ngx-common.mjs +693 -0
  55. package/fesm2020/tilde-nlp-ngx-common.mjs.map +1 -0
  56. package/lib/close-button/close-button.component.d.ts +13 -0
  57. package/lib/close-button/close-button.module.d.ts +11 -0
  58. package/lib/close-button/index.d.ts +2 -0
  59. package/lib/company-product/company-product.component.d.ts +7 -0
  60. package/lib/company-product/company-product.module.d.ts +8 -0
  61. package/lib/company-product/index.d.ts +2 -0
  62. package/lib/directives/click-outside/click-outside.directive.d.ts +10 -0
  63. package/lib/directives/click-outside/click-outside.module.d.ts +8 -0
  64. package/lib/directives/click-outside/index.d.ts +2 -0
  65. package/lib/directives/index.d.ts +1 -0
  66. package/lib/footer/footer.component.d.ts +15 -0
  67. package/lib/footer/footer.module.d.ts +11 -0
  68. package/lib/footer/index.d.ts +2 -0
  69. package/lib/helpers/index.d.ts +1 -0
  70. package/lib/helpers/missing-translation-helper.d.ts +4 -0
  71. package/lib/inline-message/index.d.ts +3 -0
  72. package/lib/inline-message/inline-message.component.d.ts +10 -0
  73. package/lib/inline-message/inline-message.module.d.ts +10 -0
  74. package/lib/inline-message/models/index.d.ts +3 -0
  75. package/lib/inline-message/models/inline-message-icon-position.enum.d.ts +4 -0
  76. package/lib/inline-message/models/inline-message-type.enum.d.ts +5 -0
  77. package/lib/inline-message/models/inline-message.model.d.ts +10 -0
  78. package/lib/notification-message/enums/index.d.ts +1 -0
  79. package/lib/notification-message/enums/notification-message-type.enum.d.ts +6 -0
  80. package/lib/notification-message/index.d.ts +4 -0
  81. package/lib/notification-message/interfaces/index.d.ts +1 -0
  82. package/lib/notification-message/interfaces/notification-message.model.d.ts +18 -0
  83. package/lib/notification-message/notification-message.component.d.ts +22 -0
  84. package/lib/notification-message/notification-message.module.d.ts +13 -0
  85. package/lib/pipes/filter-with-highlight/filter-with-highlight.module.d.ts +8 -0
  86. package/lib/pipes/filter-with-highlight/filter-with-highlight.pipe.d.ts +7 -0
  87. package/lib/pipes/filter-with-highlight/index.d.ts +2 -0
  88. package/lib/pipes/index.d.ts +2 -0
  89. package/lib/pipes/sort-translations/index.d.ts +2 -0
  90. package/lib/pipes/sort-translations/sort-translations.module.d.ts +8 -0
  91. package/lib/pipes/sort-translations/sort-translations.pipe.d.ts +20 -0
  92. package/lib/plausible/index.d.ts +4 -0
  93. package/lib/plausible/models/index.d.ts +1 -0
  94. package/lib/plausible/models/plausible-event.model.d.ts +7 -0
  95. package/lib/plausible/plausible-event.directive.d.ts +11 -0
  96. package/lib/plausible/plausible.helper.d.ts +15 -0
  97. package/lib/plausible/plausible.module.d.ts +8 -0
  98. package/lib/services/dom.service.d.ts +7 -0
  99. package/lib/services/icon.service.d.ts +14 -0
  100. package/lib/services/index.d.ts +2 -0
  101. package/lib/tld-loader/index.d.ts +2 -0
  102. package/lib/tld-loader/tld-loader.component.d.ts +5 -0
  103. package/lib/tld-loader/tld-loader.module.d.ts +7 -0
  104. package/package.json +34 -0
  105. package/public-api.d.ts +11 -0
  106. package/styles/components/borders.scss +28 -0
  107. package/styles/components/buttons.scss +0 -0
  108. package/styles/components/icons.scss +6 -0
  109. package/styles/components/links.scss +5 -0
  110. package/styles/components/strapi-html.scss +20 -0
  111. package/styles/custom/containers.scss +15 -0
  112. package/styles/mixins/icon-fill.mixin.scss +11 -0
  113. package/styles/mixins/material-overrides/mat-button-overrides.mixin.scss +31 -0
  114. package/styles/mixins/material-overrides/mat-form-field-overrides.mixin.scss +24 -0
  115. package/styles/mixins/material-overrides/material-overrides.mixin.scss +7 -0
  116. package/styles/mixins/sass-variables-to-css.mixin.scss +9 -0
  117. package/styles/mixins/tld-all-mixins.mixin.scss +16 -0
  118. package/styles/mixins/tld-font.mixin.scss +5 -0
  119. package/styles/strapi/strapi-base.scss +75 -0
  120. package/styles/tilde-fonts.scss +3 -0
  121. package/styles/tilde-style.scss +11 -0
  122. package/styles/tilde-theme.scss +65 -0
  123. package/styles/typography.scss +75 -0
  124. package/styles/variables/borders.variables.scss +4 -0
  125. package/styles/variables/colors.variables.scss +21 -0
  126. package/styles/variables/font-size.variables.scss +7 -0
  127. package/styles/variables/fonts.variables.scss +1 -0
  128. package/tilde-nlp-ngx-common.d.ts +5 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tilde-nlp-ngx-common.mjs","sources":["../../../projects/ngx-common/src/lib/services/icon.service.ts","../../../projects/ngx-common/src/lib/services/dom.service.ts","../../../projects/ngx-common/src/lib/plausible/plausible.helper.ts","../../../projects/ngx-common/src/lib/plausible/plausible-event.directive.ts","../../../projects/ngx-common/src/lib/plausible/plausible.module.ts","../../../projects/ngx-common/src/lib/inline-message/models/inline-message-icon-position.enum.ts","../../../projects/ngx-common/src/lib/inline-message/inline-message.component.ts","../../../projects/ngx-common/src/lib/inline-message/inline-message.component.html","../../../projects/ngx-common/src/lib/inline-message/inline-message.module.ts","../../../projects/ngx-common/src/lib/inline-message/models/inline-message-type.enum.ts","../../../projects/ngx-common/src/lib/pipes/filter-with-highlight/filter-with-highlight.pipe.ts","../../../projects/ngx-common/src/lib/pipes/filter-with-highlight/filter-with-highlight.module.ts","../../../projects/ngx-common/src/lib/pipes/sort-translations/sort-translations.pipe.ts","../../../projects/ngx-common/src/lib/pipes/sort-translations/sort-translations.module.ts","../../../projects/ngx-common/src/lib/directives/click-outside/click-outside.directive.ts","../../../projects/ngx-common/src/lib/directives/click-outside/click-outside.module.ts","../../../projects/ngx-common/src/lib/close-button/close-button.component.ts","../../../projects/ngx-common/src/lib/close-button/close-button.component.html","../../../projects/ngx-common/src/lib/close-button/close-button.module.ts","../../../projects/ngx-common/src/lib/notification-message/notification-message.component.ts","../../../projects/ngx-common/src/lib/notification-message/notification-message.component.html","../../../projects/ngx-common/src/lib/notification-message/notification-message.module.ts","../../../projects/ngx-common/src/lib/notification-message/enums/notification-message-type.enum.ts","../../../projects/ngx-common/src/lib/tld-loader/tld-loader.component.ts","../../../projects/ngx-common/src/lib/tld-loader/tld-loader.component.html","../../../projects/ngx-common/src/lib/tld-loader/tld-loader.module.ts","../../../projects/ngx-common/src/lib/helpers/missing-translation-helper.ts","../../../projects/ngx-common/src/lib/company-product/company-product.component.ts","../../../projects/ngx-common/src/lib/company-product/company-product.component.html","../../../projects/ngx-common/src/lib/company-product/company-product.module.ts","../../../projects/ngx-common/src/lib/footer/footer.component.ts","../../../projects/ngx-common/src/lib/footer/footer.component.html","../../../projects/ngx-common/src/lib/footer/footer.module.ts","../../../projects/ngx-common/src/public-api.ts","../../../projects/ngx-common/src/tilde-nlp-ngx-common.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\r\nimport { MatIconRegistry } from '@angular/material/icon';\r\nimport { DomSanitizer } from '@angular/platform-browser';\r\n\r\n@Injectable({\r\n providedIn: 'root'\r\n})\r\nexport class IconService {\r\n constructor(private readonly iconRegistry: MatIconRegistry,\r\n private readonly sanitizer: DomSanitizer) {\r\n }\r\n\r\n //https://material.angular.io/components/icon/examples\r\n /** Registers svg icons to mat icon registry. Icon SVG's should be under some key in object. Icon name can be used with property name in lowercase. */\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n registerIcons(icons: any) {\r\n for (const key in icons) {\r\n this.iconRegistry.addSvgIconLiteral(key.toLowerCase(), this.sanitizer.bypassSecurityTrustHtml(icons[key]));\r\n }\r\n }\r\n\r\n registerIconFromUrl(name: string, url: string) {\r\n this.iconRegistry.addSvgIcon(name, this.sanitizer.bypassSecurityTrustResourceUrl(url));\r\n }\r\n\r\n addSvgIconSet(path: string, namespace?: string) {\r\n namespace ?\r\n this.iconRegistry.addSvgIconSetInNamespace(namespace, this.sanitizer.bypassSecurityTrustResourceUrl(path)) :\r\n this.iconRegistry.addSvgIconSet(this.sanitizer.bypassSecurityTrustResourceUrl(path));\r\n }\r\n}\r\n","import { Injectable } from '@angular/core';\r\n\r\nconst _localStorage: Storage | null = typeof localStorage !== 'undefined' ? localStorage : null;\r\nconst _window: Window | null = typeof window !== 'undefined' ? window : null;\r\n\r\n@Injectable({\r\n providedIn: 'root'\r\n})\r\nexport class DOMService {\r\n\r\n get window(): Window | null {\r\n return _window;\r\n }\r\n\r\n get localStorage(): Storage | null {\r\n return _localStorage;\r\n }\r\n\r\n\r\n}\r\n","/* eslint-disable @typescript-eslint/no-explicit-any */\r\nimport { DOMService } from \"../services\";\r\n\r\nexport class PlausibleHelper {\r\n /**\r\n * Adds plausible for selected domain and adds additional script for custom event (goal) triggering\r\n * @param domain domain that is registered in your plausible account\r\n * @returns\r\n */\r\n static addPlausible(domain: string) {\r\n const domService = new DOMService();\r\n const windowObj: any = domService.window;\r\n if (!windowObj || !domain) {\r\n return;\r\n }\r\n\r\n const plausibleSrc = \"https://plausible.io/js/plausible.js\";\r\n const script = document.createElement(\"script\");\r\n script.src = plausibleSrc;\r\n script.setAttribute(\"data-domain\", domain);\r\n document.head.append(script);\r\n\r\n // Add plausible custom event functionality https://plausible.io/docs/custom-event-goals#code-example-for-tracking-link-clicks\r\n windowObj.plausible = windowObj.plausible || ((...params: any) => { (windowObj.plausible.q = windowObj.plausible.q || []).push(params) })\r\n }\r\n\r\n /**\r\n * Emits custom plausible event\r\n * @param id plausible event id that should be the same as registered in plausible\r\n * @param properties an object with custom properties for the event\r\n * @returns\r\n */\r\n static customEvent(id: string, properties?: any) {\r\n const windowObj: any = window;\r\n if (!windowObj?.plausible) {\r\n return;\r\n }\r\n windowObj.plausible(id, { props: properties });\r\n }\r\n}\r\n","import { Directive, HostListener, Input } from '@angular/core';\r\nimport { PlausibleEvent } from './models';\r\nimport { PlausibleHelper } from './plausible.helper';\r\n\r\n@Directive({\r\n selector: '[libPlausibleEvent]'\r\n})\r\nexport class PlausibleEventDirective {\r\n private id = \"\";\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n private properties: any = null;\r\n /** Plausible event id. */\r\n @Input() set libPlausibleEvent(value: PlausibleEvent | undefined) {\r\n if (!value) {\r\n return;\r\n }\r\n this.id = value.eventId;\r\n\r\n if (value.properties) {\r\n this.properties = {}\r\n value.properties.forEach(item => this.properties[item.key] = item.value);\r\n }\r\n\r\n }\r\n\r\n @HostListener(\"click\") onClick() {\r\n if (this.id.length) {\r\n PlausibleHelper.customEvent(this.id, this.properties);\r\n }\r\n }\r\n\r\n\r\n}\r\n","import { NgModule } from '@angular/core';\r\nimport { CommonModule } from '@angular/common';\r\nimport { PlausibleEventDirective } from './plausible-event.directive';\r\n\r\n\r\n\r\n@NgModule({\r\n declarations: [\r\n PlausibleEventDirective\r\n ],\r\n imports: [\r\n CommonModule\r\n ],\r\n exports: [\r\n PlausibleEventDirective\r\n ]\r\n})\r\nexport class PlausibleModule { }\r\n","export enum InlineMessageIconPosition {\r\n START,\r\n END\r\n}\r\n","import { Component, Input } from '@angular/core';\r\nimport { InlineMessageIconPosition } from './models/inline-message-icon-position.enum';\r\nimport { InlineMessage } from './models/inline-message.model';\r\n\r\n@Component({\r\n selector: 'lib-inline-message',\r\n templateUrl: './inline-message.component.html',\r\n styleUrls: ['./inline-message.component.scss']\r\n})\r\nexport class InlineMessageComponent {\r\n readonly END_ICON_POSITION = InlineMessageIconPosition.END;\r\n\r\n @Input() iconName = \"info\";\r\n @Input() message!: InlineMessage;\r\n}\r\n","<div class=\"tld-inline-message {{message.type}}\">\r\n <span class=\"material-icons\" [class.order-end]=\"message.iconPosition === END_ICON_POSITION\"\r\n [matTooltip]=\"message.iconTooltip? (message.iconTooltip | translate: message.localizationParams) : ''\" *ngIf=\"iconName\">{{iconName}}</span>\r\n <section *ngIf=\"message\">\r\n <div class=\"text-s-semi-bold title\" *ngIf=\"message.title\"\r\n [innerHtml]=\"message.title | translate: message.localizationParams\">\r\n </div>\r\n <p class=\"text-s description\" *ngIf=\"message.description\" [innerHtml]=\"message.description | translate:\r\n message.localizationParams\"></p>\r\n </section>\r\n</div>","import { NgModule } from '@angular/core';\r\nimport { CommonModule } from '@angular/common';\r\nimport { InlineMessageComponent } from './inline-message.component';\r\nimport { TranslateModule } from '@ngx-translate/core';\r\nimport { MatTooltipModule } from '@angular/material/tooltip';\r\n\r\n\r\n@NgModule({\r\n declarations: [\r\n InlineMessageComponent\r\n ],\r\n imports: [\r\n CommonModule,\r\n TranslateModule,\r\n MatTooltipModule\r\n ],\r\n exports: [\r\n InlineMessageComponent\r\n ]\r\n})\r\nexport class InlineMessageModule { }\r\n","export enum InlineMessageType {\r\n INFO = 'info',\r\n WARNING = 'warning',\r\n ERROR = 'error'\r\n}\r\n","import { Pipe, PipeTransform } from '@angular/core';\r\n\r\n@Pipe({\r\n name: 'filterWithHighlight'\r\n})\r\nexport class FilterWithHighlightPipe implements PipeTransform {\r\n\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n transform(value: any[], filter: string, key?: string): any[] {\r\n if (!filter.length) {\r\n return [...value];\r\n }\r\n\r\n const filteredArr = [];\r\n const regex = new RegExp(filter, 'gi');\r\n\r\n for (let element of value) {\r\n const elementText: string = key ? element[key] : element;\r\n const match = elementText.match(regex);\r\n if (!match) {\r\n continue;\r\n }\r\n let newElement;\r\n\r\n const textWithHighlight = elementText.replace(regex, (match) => `<span class=\"filter-highlight\">${match}</span>`);\r\n if (key) {\r\n newElement = { ...element };\r\n newElement[key] = textWithHighlight;\r\n }\r\n else {\r\n element = textWithHighlight;\r\n }\r\n\r\n filteredArr.push(newElement ?? element);\r\n }\r\n return filteredArr;\r\n }\r\n\r\n}\r\n","import { NgModule } from '@angular/core';\r\nimport { CommonModule } from '@angular/common';\r\nimport { FilterWithHighlightPipe } from './filter-with-highlight.pipe';\r\n\r\n\r\n\r\n@NgModule({\r\n declarations: [\r\n FilterWithHighlightPipe\r\n ],\r\n imports: [\r\n CommonModule\r\n ],\r\n exports: [\r\n FilterWithHighlightPipe\r\n ]\r\n})\r\nexport class FilterWithHighlightModule { }\r\n","/* eslint-disable @typescript-eslint/no-explicit-any */\r\nimport { Pipe, PipeTransform } from '@angular/core';\r\nimport { TranslateService } from '@ngx-translate/core';\r\nimport { Observable, of } from 'rxjs';\r\n\r\n@Pipe({\r\n name: 'sortTranslations'\r\n})\r\n/**\r\n * Pipe used to sort translated values.\r\n */\r\nexport class SortTranslationsPipe implements PipeTransform {\r\n\r\n constructor(private translate: TranslateService) { }\r\n\r\n /**\r\n *\r\n * @param objects array of objects to be sorted\r\n * @param localizationPrefix prefix for localization code. This is used to get necessary object translations.\r\n * @param key Which object property needs to be used for sorting.\r\n * @param currentLanguage This is necessary to update values if language is changed.\r\n * @returns \r\n */\r\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\r\n transform(objects: Array<any>, localizationPrefix: string | null, key: string | null = null, currentLanguage: string, translationKey: string | null = null): Observable<Array<any>> {\r\n const arrayCopy = [...objects];\r\n if (localizationPrefix) {\r\n return new Observable<string[]>((subscriber) => {\r\n this.translate.get(localizationPrefix ?? \"\").subscribe((translations) => {\r\n const array = this.sortObjects(arrayCopy, key, translations);\r\n subscriber.next(array);\r\n subscriber.complete();\r\n })\r\n });\r\n }\r\n else {\r\n return of(this.sortObjects(arrayCopy, key));\r\n }\r\n }\r\n\r\n private sortObjects(array: any[], key?: string | null, translations?: any):any[] {\r\n return array.sort((a: any, b: any) => {\r\n const aValue = key ? a[key] : a;\r\n const aTranslation = translations ? translations[aValue.toUpperCase()] : aValue;\r\n\r\n const bValue = key ? b[key] : b;\r\n const bTranslation = translations ? translations[bValue.toUpperCase()] : bValue;\r\n\r\n if (aTranslation < bTranslation)\r\n return -1;\r\n else if (aTranslation > bTranslation)\r\n return 1;\r\n else\r\n return 0;\r\n });\r\n }\r\n}\r\n","import { NgModule } from '@angular/core';\r\nimport { CommonModule } from '@angular/common';\r\nimport { SortTranslationsPipe } from './sort-translations.pipe';\r\n\r\n\r\n\r\n@NgModule({\r\n declarations: [SortTranslationsPipe],\r\n imports: [\r\n CommonModule\r\n ],\r\n exports: [\r\n SortTranslationsPipe\r\n ]\r\n})\r\nexport class SortTranslationsModule { }\r\n","import { Directive, ElementRef, EventEmitter, HostListener, Output } from '@angular/core';\r\n\r\n@Directive({\r\n // eslint-disable-next-line @angular-eslint/directive-selector\r\n selector: '[clickOutside]'\r\n})\r\nexport class ClickOutsideDirective {\r\n @Output() clickOutside = new EventEmitter<void>();\r\n\r\n constructor(private elementRef: ElementRef) { }\r\n\r\n @HostListener('document:click', ['$event.target'])\r\n public onClick(target: HTMLElement) {\r\n const clickedInside = this.elementRef.nativeElement.contains(target);\r\n if (!clickedInside) {\r\n this.clickOutside.emit();\r\n }\r\n }\r\n}\r\n","import { NgModule } from '@angular/core';\r\nimport { CommonModule } from '@angular/common';\r\nimport { ClickOutsideDirective } from './click-outside.directive';\r\n\r\n\r\n\r\n@NgModule({\r\n declarations: [\r\n ClickOutsideDirective\r\n ],\r\n imports: [\r\n CommonModule\r\n ],\r\n exports: [\r\n ClickOutsideDirective\r\n ]\r\n})\r\nexport class ClickOutsideModule { }\r\n","import { Component, EventEmitter, Input, Output, ViewChild } from '@angular/core';\r\nimport { MatButton } from '@angular/material/button';\r\n\r\n@Component({\r\n // eslint-disable-next-line @angular-eslint/component-selector\r\n selector: 'tld-close-button',\r\n templateUrl: './close-button.component.html'\r\n})\r\nexport class CloseButtonComponent {\r\n // any type because emitter doesn't really need a value\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n @Output() tldClick: EventEmitter<any> = new EventEmitter();\r\n @Input() ariaCode = \"CLOSE_BUTTON\";\r\n // This property is created so it is easier to access real button from outside component.\r\n @ViewChild(\"clearButton\") clearButton!: MatButton;\r\n @Input() disabled!: boolean;\r\n @Input() tooltip!: string;\r\n\r\n clicked() {\r\n this.tldClick.emit(null);\r\n }\r\n}\r\n","<button [matTooltip]=\"tooltip | translate\"\r\n#clearButton mat-icon-button (click)=\"clicked()\" [attr.aria-label]=\"'ARIA_LABELS.'+ariaCode | translate\"\r\n [disabled]=\"disabled\">\r\n <span class=\"material-icons\">\r\n close\r\n </span>\r\n</button>","import { NgModule } from '@angular/core';\r\nimport { CommonModule } from '@angular/common';\r\nimport { CloseButtonComponent } from './close-button.component';\r\nimport { MatButtonModule } from '@angular/material/button';\r\nimport { TranslateModule } from '@ngx-translate/core';\r\nimport { MatTooltipModule } from '@angular/material/tooltip';\r\n\r\n\r\n\r\n@NgModule({\r\n declarations: [\r\n CloseButtonComponent\r\n ],\r\n imports: [\r\n CommonModule,\r\n MatButtonModule,\r\n TranslateModule,\r\n MatTooltipModule\r\n ],\r\n exports: [\r\n CloseButtonComponent\r\n ]\r\n})\r\nexport class CloseButtonModule { }\r\n","import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';\r\nimport { NotificationMessageType } from './enums/notification-message-type.enum';\r\nimport { NotificationMessage } from './interfaces/notification-message.model';\r\n\r\n@Component({\r\n selector: 'lib-tld-notification-message',\r\n templateUrl: './notification-message.component.html',\r\n styleUrls: ['./notification-message.component.scss']\r\n})\r\nexport class NotificationMessageComponent implements OnInit {\r\n @Input() message!: NotificationMessage;\r\n\r\n @Output() buttonClicked = new EventEmitter();\r\n @Output() closeClicked = new EventEmitter();\r\n @Output() linkClicked = new EventEmitter();\r\n /** Adds additional class that makes message to take less space on screen. */\r\n @Input() inline!: boolean;\r\n\r\n readonly iconNames: { [key in NotificationMessageType]: string } = {\r\n \"BASIC\": \"info\",\r\n \"ERROR\": \"error\",\r\n \"SUCCESS\": \"check_circle\",\r\n \"WARNING\": \"info\",\r\n }\r\n className!: string;\r\n\r\n ngOnInit(): void {\r\n this.className = this.message.type.toLocaleLowerCase();\r\n }\r\n\r\n buttonClick() {\r\n this.buttonClicked.next(null)\r\n }\r\n\r\n closeClick() {\r\n this.closeClicked.next(null)\r\n }\r\n\r\n linkClick(){\r\n this.linkClicked.next(null)\r\n }\r\n\r\n}\r\n","<div class=\"notification-message {{className}}\">\r\n <div class=\"notification-message-container tld-default-border\" [ngClass.lt-md]=\"'mobile'\" [class.inline]=\"inline\"\r\n fxLayout=\"row\" fxLayoutAlign=\"start start\" [attr.id]=\"message.id\" aria-live=\"polite\" fxLayout=\"row\">\r\n <span class=\"material-icons message-icon\">\r\n {{iconNames[message.type]}}\r\n </span>\r\n <div class=\"items-container\" fxFlex>\r\n <div fxLayout=\"row\">\r\n <div class=\"text-container\" fxFlex>\r\n <h1 *ngIf=\"message.title\" class=\"message-title\"\r\n [innerHtml]=\"message.title | translate: message.localizationParams\"></h1>\r\n <p *ngIf=\"message.body\" class=\"message-body\">\r\n <span [innerHtml]=\"message.body | translate: message.localizationParams\"></span>\r\n <span *ngIf=\"message.support\" [innerHtml]=\"message.support | translate: message.localizationParams\"></span>\r\n </p>\r\n </div>\r\n <tld-close-button *ngIf=\"!message.hideClose\" class=\"close-button\" (tldClick)=\"closeClick()\">\r\n </tld-close-button>\r\n </div>\r\n <div fxLayout=\"row\" fxLayoutGap=\"16px\" fxLayoutAlign=\"start center\"\r\n *ngIf=\"message.buttonText || message.linkHref || message.routerLink\">\r\n <button class=\"message-action-button\" color=\"accent\" mat-flat-button *ngIf=\"message.buttonText\"\r\n (click)=\"buttonClick()\">{{message.buttonText | translate}} </button>\r\n <a class=\"message-action-link\" *ngIf=\"message.linkHref && message.linkText\" (click)=\"linkClick()\"\r\n [attr.href]=\"message.linkHref\">{{message.linkText |\r\n translate}}</a>\r\n <a class=\"message-action-link\" *ngIf=\"message.routerLink && message.linkText\" (click)=\"linkClick()\"\r\n [routerLink]=\"[message.routerLink]\">{{message.linkText |\r\n translate}}</a>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n","import { CommonModule } from '@angular/common';\r\nimport { NgModule } from '@angular/core';\r\nimport { FlexLayoutModule } from '@angular/flex-layout';\r\nimport { MatButtonModule } from '@angular/material/button';\r\nimport { RouterModule } from '@angular/router';\r\nimport { TranslateModule } from '@ngx-translate/core';\r\nimport { CloseButtonModule } from '../close-button/close-button.module';\r\nimport { NotificationMessageComponent } from './notification-message.component';\r\n\r\n\r\n\r\n@NgModule({\r\n declarations: [\r\n NotificationMessageComponent\r\n ],\r\n imports: [\r\n CommonModule,\r\n FlexLayoutModule,\r\n CloseButtonModule,\r\n MatButtonModule,\r\n TranslateModule,\r\n RouterModule\r\n ],\r\n exports: [\r\n NotificationMessageComponent\r\n ]\r\n})\r\nexport class NotificationMessageModule { }\r\n","export enum NotificationMessageType{\r\n BASIC = \"BASIC\",\r\n WARNING = \"WARNING\",\r\n SUCCESS = \"SUCCESS\",\r\n ERROR = \"ERROR\"\r\n}","import { Component } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'lib-tld-loader',\r\n templateUrl: './tld-loader.component.html',\r\n styleUrls: ['./tld-loader.component.scss']\r\n})\r\nexport class TldLoaderComponent {\r\n}\r\n","<div class=\"tld-loader accent-color\" fxLayout=\"row\" fxLayoutGap=\"10px\">\r\n <div class=\"accent-bg-color tld-loader-element element-1\"></div>\r\n <div class=\"accent-bg-color tld-loader-element element-2\"></div>\r\n <div class=\"accent-bg-color tld-loader-element element-3\"></div>\r\n</div>\r\n","import { NgModule } from '@angular/core';\r\nimport { TldLoaderComponent } from './tld-loader.component';\r\n\r\n@NgModule({\r\n declarations: [\r\n TldLoaderComponent\r\n ],\r\n exports: [\r\n TldLoaderComponent\r\n ]\r\n})\r\nexport class TldLoaderModule { }\r\n","import { MissingTranslationHandler, MissingTranslationHandlerParams } from \"@ngx-translate/core\";\r\n\r\nexport class MissingTranslationHelper implements MissingTranslationHandler {\r\n handle(params: MissingTranslationHandlerParams) {\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n return (params.interpolateParams as any)?.default || params.key;\r\n }\r\n}\r\n","import { Component, Input } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'lib-company-product',\r\n templateUrl: './company-product.component.html',\r\n styleUrls: ['./company-product.component.scss']\r\n})\r\nexport class CompanyProductComponent{\r\n\r\n @Input() company = \"\";\r\n @Input() product = \"\";\r\n\r\n}\r\n","<div fxHide.lt-md class=\"tilde-product-title\">\r\n <span class=\"company\">\r\n {{company | uppercase}}\r\n </span>\r\n <span class=\"product\">\r\n {{product}}\r\n </span>\r\n</div>","import { NgModule } from '@angular/core';\r\nimport { CommonModule } from '@angular/common';\r\nimport { CompanyProductComponent } from './company-product.component';\r\n\r\n\r\n\r\n@NgModule({\r\n declarations: [\r\n CompanyProductComponent\r\n ],\r\n imports: [\r\n CommonModule\r\n ],\r\n exports: [CompanyProductComponent]\r\n})\r\nexport class CompanyProductModule { }\r\n","import { Component, Input, OnInit } from '@angular/core';\r\n\r\n@Component({\r\n // eslint-disable-next-line @angular-eslint/component-selector\r\n selector: 'tld-footer',\r\n templateUrl: './footer.component.html',\r\n styleUrls: ['./footer.component.scss']\r\n})\r\nexport class FooterComponent implements OnInit {\r\n currentYear!: number;\r\n\r\n readonly defaultTermsRoute = \"terms-of-use\";\r\n readonly defaultPrivacyRoute = \"privacy-policy\"\r\n\r\n @Input() privacyRoute = this.defaultPrivacyRoute;\r\n @Input() termsOfUseRoute = this.defaultTermsRoute;\r\n @Input() contactUsRoute = \"https://tilde.com/about/get-in-touch\";\r\n\r\n @Input() baseUrl!: string;\r\n\r\n constructor() {\r\n this.currentYear = new Date().getFullYear();\r\n }\r\n\r\n ngOnInit(): void {\r\n if (this.baseUrl) {\r\n this.privacyRoute = this.baseUrl + this.privacyRoute;\r\n this.termsOfUseRoute = this.baseUrl + this.termsOfUseRoute;\r\n }\r\n }\r\n\r\n}\r\n","<footer fxLayout=\"row\" class=\"text-m\">\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start center\" fxLayoutAlign.xs=\"center center\" fxLayout.xs=\"column\"\r\n fxLayoutGap=\"16px\">\r\n <div>\r\n {{ 'FOOTER.TITLE' | translate: {currentYear: currentYear} }}\r\n </div>\r\n <div fxLayoutGap=\"1rem\">\r\n <ng-container *ngIf=\"baseUrl; else localRoutes\">\r\n <a class=\"semi-bold\" *ngIf=\"termsOfUseRoute\" [attr.href]=\"termsOfUseRoute\" target=\"_blank\"> {{\r\n 'FOOTER.TERMS_OF_USE' |\r\n translate }}</a>\r\n <a class=\"semi-bold\" *ngIf=\"privacyRoute\" [attr.href]=\"privacyRoute\" target=\"_blank\"> {{ 'FOOTER.PRIVACY'\r\n | translate }}</a>\r\n <a class=\"semi-bold\" *ngIf=\"contactUsRoute\" [routerLink]=\"[contactUsRoute]\"> {{ 'FOOTER.CONTACT_US'| translate\r\n }}</a>\r\n\r\n </ng-container>\r\n <ng-template #localRoutes>\r\n <a class=\"semi-bold\" *ngIf=\"termsOfUseRoute\" [routerLink]=\"[termsOfUseRoute]\"> {{ 'FOOTER.TERMS_OF_USE' |\r\n translate }}</a>\r\n <a class=\"semi-bold\" *ngIf=\"privacyRoute\" [routerLink]=\"[privacyRoute]\"> {{ 'FOOTER.PRIVACY'| translate }}</a>\r\n <a class=\"semi-bold\" *ngIf=\"contactUsRoute\" [routerLink]=\"[contactUsRoute]\"> {{ 'FOOTER.CONTACT_US'| translate\r\n }}</a>\r\n </ng-template>\r\n </div>\r\n </div>\r\n</footer>\r\n","import { NgModule } from '@angular/core';\r\nimport { CommonModule } from '@angular/common';\r\nimport { FooterComponent } from './footer.component';\r\nimport { FlexLayoutModule } from '@angular/flex-layout';\r\nimport { TranslateModule } from '@ngx-translate/core';\r\nimport { RouterModule } from '@angular/router';\r\n\r\n\r\n\r\n@NgModule({\r\n declarations: [\r\n FooterComponent\r\n ],\r\n imports: [\r\n CommonModule,\r\n FlexLayoutModule,\r\n TranslateModule,\r\n RouterModule\r\n ],\r\n exports: [FooterComponent]\r\n})\r\nexport class FooterModule { }\r\n","/*\r\n * Public API Surface of ngx-common\r\n */\r\n\r\nexport * from './lib/services';\r\nexport * from './lib/plausible';\r\nexport * from './lib/inline-message';\r\nexport * from './lib/pipes';\r\nexport * from './lib/directives';\r\nexport * from './lib/close-button';\r\nexport * from './lib/notification-message';\r\nexport * from './lib/tld-loader'\r\nexport * from './lib/helpers';\r\nexport * from './lib/company-product';\r\nexport * from './lib/footer';\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["i1","i2","i3","i1.CloseButtonComponent","i5","i7","i4"],"mappings":"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"}
@@ -0,0 +1,13 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { MatButton } from '@angular/material/button';
3
+ import * as i0 from "@angular/core";
4
+ export declare class CloseButtonComponent {
5
+ tldClick: EventEmitter<any>;
6
+ ariaCode: string;
7
+ clearButton: MatButton;
8
+ disabled: boolean;
9
+ tooltip: string;
10
+ clicked(): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<CloseButtonComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<CloseButtonComponent, "tld-close-button", never, { "ariaCode": "ariaCode"; "disabled": "disabled"; "tooltip": "tooltip"; }, { "tldClick": "tldClick"; }, never, never>;
13
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./close-button.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/material/button";
5
+ import * as i4 from "@ngx-translate/core";
6
+ import * as i5 from "@angular/material/tooltip";
7
+ export declare class CloseButtonModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<CloseButtonModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CloseButtonModule, [typeof i1.CloseButtonComponent], [typeof i2.CommonModule, typeof i3.MatButtonModule, typeof i4.TranslateModule, typeof i5.MatTooltipModule], [typeof i1.CloseButtonComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<CloseButtonModule>;
11
+ }
@@ -0,0 +1,2 @@
1
+ export * from "./close-button.component";
2
+ export * from "./close-button.module";
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class CompanyProductComponent {
3
+ company: string;
4
+ product: string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<CompanyProductComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<CompanyProductComponent, "lib-company-product", never, { "company": "company"; "product": "product"; }, {}, never, never>;
7
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./company-product.component";
3
+ import * as i2 from "@angular/common";
4
+ export declare class CompanyProductModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<CompanyProductModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CompanyProductModule, [typeof i1.CompanyProductComponent], [typeof i2.CommonModule], [typeof i1.CompanyProductComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<CompanyProductModule>;
8
+ }
@@ -0,0 +1,2 @@
1
+ export * from "./company-product.component";
2
+ export * from "./company-product.module";
@@ -0,0 +1,10 @@
1
+ import { ElementRef, EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ClickOutsideDirective {
4
+ private elementRef;
5
+ clickOutside: EventEmitter<void>;
6
+ constructor(elementRef: ElementRef);
7
+ onClick(target: HTMLElement): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<ClickOutsideDirective, never>;
9
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ClickOutsideDirective, "[clickOutside]", never, {}, { "clickOutside": "clickOutside"; }, never>;
10
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./click-outside.directive";
3
+ import * as i2 from "@angular/common";
4
+ export declare class ClickOutsideModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ClickOutsideModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ClickOutsideModule, [typeof i1.ClickOutsideDirective], [typeof i2.CommonModule], [typeof i1.ClickOutsideDirective]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<ClickOutsideModule>;
8
+ }
@@ -0,0 +1,2 @@
1
+ export * from './click-outside.directive';
2
+ export * from './click-outside.module';
@@ -0,0 +1 @@
1
+ export * from './click-outside';
@@ -0,0 +1,15 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class FooterComponent implements OnInit {
4
+ currentYear: number;
5
+ readonly defaultTermsRoute = "terms-of-use";
6
+ readonly defaultPrivacyRoute = "privacy-policy";
7
+ privacyRoute: string;
8
+ termsOfUseRoute: string;
9
+ contactUsRoute: string;
10
+ baseUrl: string;
11
+ constructor();
12
+ ngOnInit(): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<FooterComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<FooterComponent, "tld-footer", never, { "privacyRoute": "privacyRoute"; "termsOfUseRoute": "termsOfUseRoute"; "contactUsRoute": "contactUsRoute"; "baseUrl": "baseUrl"; }, {}, never, never>;
15
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./footer.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/flex-layout";
5
+ import * as i4 from "@ngx-translate/core";
6
+ import * as i5 from "@angular/router";
7
+ export declare class FooterModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<FooterModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FooterModule, [typeof i1.FooterComponent], [typeof i2.CommonModule, typeof i3.FlexLayoutModule, typeof i4.TranslateModule, typeof i5.RouterModule], [typeof i1.FooterComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<FooterModule>;
11
+ }
@@ -0,0 +1,2 @@
1
+ export * from './footer.module';
2
+ export * from './footer.component';
@@ -0,0 +1 @@
1
+ export * from "./missing-translation-helper";
@@ -0,0 +1,4 @@
1
+ import { MissingTranslationHandler, MissingTranslationHandlerParams } from "@ngx-translate/core";
2
+ export declare class MissingTranslationHelper implements MissingTranslationHandler {
3
+ handle(params: MissingTranslationHandlerParams): any;
4
+ }
@@ -0,0 +1,3 @@
1
+ export * from './inline-message.module';
2
+ export * from './inline-message.component';
3
+ export * from './models';
@@ -0,0 +1,10 @@
1
+ import { InlineMessageIconPosition } from './models/inline-message-icon-position.enum';
2
+ import { InlineMessage } from './models/inline-message.model';
3
+ import * as i0 from "@angular/core";
4
+ export declare class InlineMessageComponent {
5
+ readonly END_ICON_POSITION = InlineMessageIconPosition.END;
6
+ iconName: string;
7
+ message: InlineMessage;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<InlineMessageComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<InlineMessageComponent, "lib-inline-message", never, { "iconName": "iconName"; "message": "message"; }, {}, never, never>;
10
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./inline-message.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@ngx-translate/core";
5
+ import * as i4 from "@angular/material/tooltip";
6
+ export declare class InlineMessageModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<InlineMessageModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<InlineMessageModule, [typeof i1.InlineMessageComponent], [typeof i2.CommonModule, typeof i3.TranslateModule, typeof i4.MatTooltipModule], [typeof i1.InlineMessageComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<InlineMessageModule>;
10
+ }
@@ -0,0 +1,3 @@
1
+ export * from './inline-message-type.enum';
2
+ export * from './inline-message.model';
3
+ export * from './inline-message-icon-position.enum';
@@ -0,0 +1,4 @@
1
+ export declare enum InlineMessageIconPosition {
2
+ START = 0,
3
+ END = 1
4
+ }
@@ -0,0 +1,5 @@
1
+ export declare enum InlineMessageType {
2
+ INFO = "info",
3
+ WARNING = "warning",
4
+ ERROR = "error"
5
+ }
@@ -0,0 +1,10 @@
1
+ import { InlineMessageIconPosition } from "./inline-message-icon-position.enum";
2
+ import { InlineMessageType } from "./inline-message-type.enum";
3
+ export interface InlineMessage {
4
+ title: string;
5
+ description: string;
6
+ localizationParams: unknown;
7
+ type: InlineMessageType;
8
+ iconPosition?: InlineMessageIconPosition;
9
+ iconTooltip?: string;
10
+ }
@@ -0,0 +1 @@
1
+ export * from './notification-message-type.enum';
@@ -0,0 +1,6 @@
1
+ export declare enum NotificationMessageType {
2
+ BASIC = "BASIC",
3
+ WARNING = "WARNING",
4
+ SUCCESS = "SUCCESS",
5
+ ERROR = "ERROR"
6
+ }
@@ -0,0 +1,4 @@
1
+ export * from "./notification-message.module";
2
+ export * from "./notification-message.component";
3
+ export * from "./enums";
4
+ export * from "./interfaces";
@@ -0,0 +1 @@
1
+ export * from "./notification-message.model";
@@ -0,0 +1,18 @@
1
+ import { NotificationMessageType } from "../enums/notification-message-type.enum";
2
+ export interface NotificationMessage {
3
+ type: NotificationMessageType;
4
+ id?: string;
5
+ title?: string;
6
+ body?: string;
7
+ localizationParams?: any;
8
+ buttonText?: string;
9
+ linkText?: string;
10
+ linkHref?: string;
11
+ routerLink?: string;
12
+ hideClose?: boolean;
13
+ error?: any;
14
+ /**
15
+ * Localization key for support info for message. If value is not null, it is displayed right after body text.
16
+ */
17
+ support?: string;
18
+ }
@@ -0,0 +1,22 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { NotificationMessageType } from './enums/notification-message-type.enum';
3
+ import { NotificationMessage } from './interfaces/notification-message.model';
4
+ import * as i0 from "@angular/core";
5
+ export declare class NotificationMessageComponent implements OnInit {
6
+ message: NotificationMessage;
7
+ buttonClicked: EventEmitter<any>;
8
+ closeClicked: EventEmitter<any>;
9
+ linkClicked: EventEmitter<any>;
10
+ /** Adds additional class that makes message to take less space on screen. */
11
+ inline: boolean;
12
+ readonly iconNames: {
13
+ [key in NotificationMessageType]: string;
14
+ };
15
+ className: string;
16
+ ngOnInit(): void;
17
+ buttonClick(): void;
18
+ closeClick(): void;
19
+ linkClick(): void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotificationMessageComponent, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<NotificationMessageComponent, "lib-tld-notification-message", never, { "message": "message"; "inline": "inline"; }, { "buttonClicked": "buttonClicked"; "closeClicked": "closeClicked"; "linkClicked": "linkClicked"; }, never, never>;
22
+ }
@@ -0,0 +1,13 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./notification-message.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/flex-layout";
5
+ import * as i4 from "../close-button/close-button.module";
6
+ import * as i5 from "@angular/material/button";
7
+ import * as i6 from "@ngx-translate/core";
8
+ import * as i7 from "@angular/router";
9
+ export declare class NotificationMessageModule {
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotificationMessageModule, never>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NotificationMessageModule, [typeof i1.NotificationMessageComponent], [typeof i2.CommonModule, typeof i3.FlexLayoutModule, typeof i4.CloseButtonModule, typeof i5.MatButtonModule, typeof i6.TranslateModule, typeof i7.RouterModule], [typeof i1.NotificationMessageComponent]>;
12
+ static ɵinj: i0.ɵɵInjectorDeclaration<NotificationMessageModule>;
13
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./filter-with-highlight.pipe";
3
+ import * as i2 from "@angular/common";
4
+ export declare class FilterWithHighlightModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterWithHighlightModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FilterWithHighlightModule, [typeof i1.FilterWithHighlightPipe], [typeof i2.CommonModule], [typeof i1.FilterWithHighlightPipe]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<FilterWithHighlightModule>;
8
+ }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class FilterWithHighlightPipe implements PipeTransform {
4
+ transform(value: any[], filter: string, key?: string): any[];
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterWithHighlightPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<FilterWithHighlightPipe, "filterWithHighlight">;
7
+ }
@@ -0,0 +1,2 @@
1
+ export * from './filter-with-highlight.module';
2
+ export * from './filter-with-highlight.pipe';
@@ -0,0 +1,2 @@
1
+ export * from './filter-with-highlight';
2
+ export * from './sort-translations';
@@ -0,0 +1,2 @@
1
+ export * from "./sort-translations.module";
2
+ export * from "./sort-translations.pipe";
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./sort-translations.pipe";
3
+ import * as i2 from "@angular/common";
4
+ export declare class SortTranslationsModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<SortTranslationsModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SortTranslationsModule, [typeof i1.SortTranslationsPipe], [typeof i2.CommonModule], [typeof i1.SortTranslationsPipe]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<SortTranslationsModule>;
8
+ }
@@ -0,0 +1,20 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { TranslateService } from '@ngx-translate/core';
3
+ import { Observable } from 'rxjs';
4
+ import * as i0 from "@angular/core";
5
+ export declare class SortTranslationsPipe implements PipeTransform {
6
+ private translate;
7
+ constructor(translate: TranslateService);
8
+ /**
9
+ *
10
+ * @param objects array of objects to be sorted
11
+ * @param localizationPrefix prefix for localization code. This is used to get necessary object translations.
12
+ * @param key Which object property needs to be used for sorting.
13
+ * @param currentLanguage This is necessary to update values if language is changed.
14
+ * @returns
15
+ */
16
+ transform(objects: Array<any>, localizationPrefix: string | null, key: string | null | undefined, currentLanguage: string, translationKey?: string | null): Observable<Array<any>>;
17
+ private sortObjects;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<SortTranslationsPipe, never>;
19
+ static ɵpipe: i0.ɵɵPipeDeclaration<SortTranslationsPipe, "sortTranslations">;
20
+ }
@@ -0,0 +1,4 @@
1
+ export * from './plausible.helper';
2
+ export * from './plausible-event.directive';
3
+ export * from './plausible.module';
4
+ export * from './models';
@@ -0,0 +1 @@
1
+ export * from './plausible-event.model';
@@ -0,0 +1,7 @@
1
+ export interface PlausibleEvent {
2
+ eventId: string;
3
+ properties?: {
4
+ key: string;
5
+ value: string;
6
+ }[];
7
+ }
@@ -0,0 +1,11 @@
1
+ import { PlausibleEvent } from './models';
2
+ import * as i0 from "@angular/core";
3
+ export declare class PlausibleEventDirective {
4
+ private id;
5
+ private properties;
6
+ /** Plausible event id. */
7
+ set libPlausibleEvent(value: PlausibleEvent | undefined);
8
+ onClick(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<PlausibleEventDirective, never>;
10
+ static ɵdir: i0.ɵɵDirectiveDeclaration<PlausibleEventDirective, "[libPlausibleEvent]", never, { "libPlausibleEvent": "libPlausibleEvent"; }, {}, never>;
11
+ }
@@ -0,0 +1,15 @@
1
+ export declare class PlausibleHelper {
2
+ /**
3
+ * Adds plausible for selected domain and adds additional script for custom event (goal) triggering
4
+ * @param domain domain that is registered in your plausible account
5
+ * @returns
6
+ */
7
+ static addPlausible(domain: string): void;
8
+ /**
9
+ * Emits custom plausible event
10
+ * @param id plausible event id that should be the same as registered in plausible
11
+ * @param properties an object with custom properties for the event
12
+ * @returns
13
+ */
14
+ static customEvent(id: string, properties?: any): void;
15
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./plausible-event.directive";
3
+ import * as i2 from "@angular/common";
4
+ export declare class PlausibleModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<PlausibleModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PlausibleModule, [typeof i1.PlausibleEventDirective], [typeof i2.CommonModule], [typeof i1.PlausibleEventDirective]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<PlausibleModule>;
8
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class DOMService {
3
+ get window(): Window | null;
4
+ get localStorage(): Storage | null;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<DOMService, never>;
6
+ static ɵprov: i0.ɵɵInjectableDeclaration<DOMService>;
7
+ }
@@ -0,0 +1,14 @@
1
+ import { MatIconRegistry } from '@angular/material/icon';
2
+ import { DomSanitizer } from '@angular/platform-browser';
3
+ import * as i0 from "@angular/core";
4
+ export declare class IconService {
5
+ private readonly iconRegistry;
6
+ private readonly sanitizer;
7
+ constructor(iconRegistry: MatIconRegistry, sanitizer: DomSanitizer);
8
+ /** Registers svg icons to mat icon registry. Icon SVG's should be under some key in object. Icon name can be used with property name in lowercase. */
9
+ registerIcons(icons: any): void;
10
+ registerIconFromUrl(name: string, url: string): void;
11
+ addSvgIconSet(path: string, namespace?: string): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<IconService, never>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<IconService>;
14
+ }
@@ -0,0 +1,2 @@
1
+ export * from "./icon.service";
2
+ export * from "./dom.service";
@@ -0,0 +1,2 @@
1
+ export * from './tld-loader.module';
2
+ export * from './tld-loader.component';
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class TldLoaderComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<TldLoaderComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<TldLoaderComponent, "lib-tld-loader", never, {}, {}, never, never>;
5
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./tld-loader.component";
3
+ export declare class TldLoaderModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<TldLoaderModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TldLoaderModule, [typeof i1.TldLoaderComponent], never, [typeof i1.TldLoaderComponent]>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<TldLoaderModule>;
7
+ }
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "@tilde-nlp/ngx-common",
3
+ "version": "0.0.0",
4
+ "peerDependencies": {
5
+ "@angular/common": "^13.0.0 || ^14.0.0 || ^15.0.0",
6
+ "@angular/core": "^13.0.0 || ^14.0.0 || ^15.0.0",
7
+ "@ngx-translate/core": "^13.0.0 || ^14.0.0 || ^15.0.0"
8
+ },
9
+ "dependencies": {
10
+ "tslib": "^2.3.0"
11
+ },
12
+ "author": "Tilde",
13
+ "license": "Apache-2.0",
14
+ "module": "fesm2015/tilde-nlp-ngx-common.mjs",
15
+ "es2020": "fesm2020/tilde-nlp-ngx-common.mjs",
16
+ "esm2020": "esm2020/tilde-nlp-ngx-common.mjs",
17
+ "fesm2020": "fesm2020/tilde-nlp-ngx-common.mjs",
18
+ "fesm2015": "fesm2015/tilde-nlp-ngx-common.mjs",
19
+ "typings": "tilde-nlp-ngx-common.d.ts",
20
+ "exports": {
21
+ "./package.json": {
22
+ "default": "./package.json"
23
+ },
24
+ ".": {
25
+ "types": "./tilde-nlp-ngx-common.d.ts",
26
+ "esm2020": "./esm2020/tilde-nlp-ngx-common.mjs",
27
+ "es2020": "./fesm2020/tilde-nlp-ngx-common.mjs",
28
+ "es2015": "./fesm2015/tilde-nlp-ngx-common.mjs",
29
+ "node": "./fesm2015/tilde-nlp-ngx-common.mjs",
30
+ "default": "./fesm2020/tilde-nlp-ngx-common.mjs"
31
+ }
32
+ },
33
+ "sideEffects": false
34
+ }