@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,15 @@
1
+ /*
2
+ * Public API Surface of ngx-common
3
+ */
4
+ export * from './lib/services';
5
+ export * from './lib/plausible';
6
+ export * from './lib/inline-message';
7
+ export * from './lib/pipes';
8
+ export * from './lib/directives';
9
+ export * from './lib/close-button';
10
+ export * from './lib/notification-message';
11
+ export * from './lib/tld-loader';
12
+ export * from './lib/helpers';
13
+ export * from './lib/company-product';
14
+ export * from './lib/footer';
15
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL25neC1jb21tb24vc3JjL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGdCQUFnQixDQUFDO0FBQy9CLGNBQWMsaUJBQWlCLENBQUM7QUFDaEMsY0FBYyxzQkFBc0IsQ0FBQztBQUNyQyxjQUFjLGFBQWEsQ0FBQztBQUM1QixjQUFjLGtCQUFrQixDQUFDO0FBQ2pDLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYyw0QkFBNEIsQ0FBQztBQUMzQyxjQUFjLGtCQUFrQixDQUFBO0FBQ2hDLGNBQWMsZUFBZSxDQUFDO0FBQzlCLGNBQWMsdUJBQXVCLENBQUM7QUFDdEMsY0FBYyxjQUFjLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKlxyXG4gKiBQdWJsaWMgQVBJIFN1cmZhY2Ugb2Ygbmd4LWNvbW1vblxyXG4gKi9cclxuXHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL3NlcnZpY2VzJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvcGxhdXNpYmxlJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvaW5saW5lLW1lc3NhZ2UnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9waXBlcyc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2RpcmVjdGl2ZXMnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9jbG9zZS1idXR0b24nO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9ub3RpZmljYXRpb24tbWVzc2FnZSc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL3RsZC1sb2FkZXInXHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2hlbHBlcnMnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wYW55LXByb2R1Y3QnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9mb290ZXInO1xyXG4iXX0=
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './public-api';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGlsZGUtbmxwLW5neC1jb21tb24uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9wcm9qZWN0cy9uZ3gtY29tbW9uL3NyYy90aWxkZS1ubHAtbmd4LWNvbW1vbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19