@sitecore-jss/sitecore-jss-angular 18.0.1 → 18.0.2

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 (65) hide show
  1. package/LICENSE.txt +202 -202
  2. package/README.md +5 -5
  3. package/dist/README.md +5 -5
  4. package/dist/components/date.directive.d.ts +0 -5
  5. package/dist/components/file.directive.d.ts +0 -5
  6. package/dist/components/generic-link.directive.d.ts +0 -5
  7. package/dist/components/image.directive.d.ts +0 -5
  8. package/dist/components/link.directive.d.ts +0 -5
  9. package/dist/components/missing-component.component.d.ts +0 -5
  10. package/dist/components/placeholder-loading.directive.d.ts +0 -5
  11. package/dist/components/placeholder.component.d.ts +0 -5
  12. package/dist/components/raw.component.d.ts +0 -5
  13. package/dist/components/render-component.component.d.ts +0 -5
  14. package/dist/components/render-each.directive.d.ts +0 -5
  15. package/dist/components/render-empty.directive.d.ts +0 -5
  16. package/dist/components/rich-text.directive.d.ts +0 -5
  17. package/dist/components/router-link.directive.d.ts +0 -5
  18. package/dist/components/text.directive.d.ts +0 -5
  19. package/dist/jss-component-factory.service.d.ts +0 -5
  20. package/dist/layout.service.d.ts +0 -5
  21. package/dist/lib.module.d.ts +0 -22
  22. package/dist/package.json +7 -16
  23. package/dist/sitecore-jss-sitecore-jss-angular.d.ts +0 -2
  24. package/package.json +3 -3
  25. package/typings/README.md +2 -2
  26. package/dist/__ivy_ngcc__/fesm2015/sitecore-jss-sitecore-jss-angular.js +0 -1391
  27. package/dist/__ivy_ngcc__/fesm2015/sitecore-jss-sitecore-jss-angular.js.map +0 -1
  28. package/dist/components/date.directive.d.ts.__ivy_ngcc_bak +0 -17
  29. package/dist/components/date.directive.d.ts.map +0 -1
  30. package/dist/components/file.directive.d.ts.__ivy_ngcc_bak +0 -14
  31. package/dist/components/file.directive.d.ts.map +0 -1
  32. package/dist/components/generic-link.directive.d.ts.__ivy_ngcc_bak +0 -14
  33. package/dist/components/generic-link.directive.d.ts.map +0 -1
  34. package/dist/components/image.directive.d.ts.__ivy_ngcc_bak +0 -28
  35. package/dist/components/image.directive.d.ts.map +0 -1
  36. package/dist/components/link.directive.d.ts.__ivy_ngcc_bak +0 -18
  37. package/dist/components/link.directive.d.ts.map +0 -1
  38. package/dist/components/missing-component.component.d.ts.__ivy_ngcc_bak +0 -3
  39. package/dist/components/missing-component.component.d.ts.map +0 -1
  40. package/dist/components/placeholder-loading.directive.d.ts.__ivy_ngcc_bak +0 -5
  41. package/dist/components/placeholder-loading.directive.d.ts.map +0 -1
  42. package/dist/components/placeholder.component.d.ts.__ivy_ngcc_bak +0 -45
  43. package/dist/components/placeholder.component.d.ts.map +0 -1
  44. package/dist/components/raw.component.d.ts.__ivy_ngcc_bak +0 -9
  45. package/dist/components/raw.component.d.ts.map +0 -1
  46. package/dist/components/render-component.component.d.ts.__ivy_ngcc_bak +0 -29
  47. package/dist/components/render-component.component.d.ts.map +0 -1
  48. package/dist/components/render-each.directive.d.ts.__ivy_ngcc_bak +0 -5
  49. package/dist/components/render-each.directive.d.ts.map +0 -1
  50. package/dist/components/render-empty.directive.d.ts.__ivy_ngcc_bak +0 -5
  51. package/dist/components/render-empty.directive.d.ts.map +0 -1
  52. package/dist/components/rich-text.directive.d.ts.__ivy_ngcc_bak +0 -12
  53. package/dist/components/rich-text.directive.d.ts.map +0 -1
  54. package/dist/components/router-link.directive.d.ts.__ivy_ngcc_bak +0 -12
  55. package/dist/components/router-link.directive.d.ts.map +0 -1
  56. package/dist/components/text.directive.d.ts.__ivy_ngcc_bak +0 -13
  57. package/dist/components/text.directive.d.ts.map +0 -1
  58. package/dist/jss-component-factory.service.d.ts.__ivy_ngcc_bak +0 -21
  59. package/dist/jss-component-factory.service.d.ts.map +0 -1
  60. package/dist/layout.service.d.ts.__ivy_ngcc_bak +0 -8
  61. package/dist/layout.service.d.ts.map +0 -1
  62. package/dist/lib.module.d.ts.__ivy_ngcc_bak +0 -24
  63. package/dist/lib.module.d.ts.map +0 -1
  64. package/dist/sitecore-jss-sitecore-jss-angular.d.ts.__ivy_ngcc_bak +0 -12
  65. package/dist/sitecore-jss-sitecore-jss-angular.d.ts.map +0 -1
@@ -1,24 +0,0 @@
1
- import { ModuleWithProviders, Type } from '@angular/core';
2
- import { ComponentNameAndModule, ComponentNameAndType } from './components/placeholder.token';
3
- export declare class JssModule {
4
- /**
5
- * Instantiates the JSS module with no component factory.
6
- * Useful for using it from libraries. Most of the time you'd want withComponents()
7
- * @returns {ModuleWithProviders<JssModule>} module
8
- */
9
- static forRoot(): ModuleWithProviders<JssModule>;
10
- /**
11
- * Instantiates a module for a lazy-loaded JSS component
12
- * @param {Type<any>} component
13
- * @returns {ModuleWithProviders<JssModule>} module
14
- */
15
- static forChild(component: Type<any>): ModuleWithProviders<JssModule>;
16
- /**
17
- * Instantiates the JSS module and specifies the mapping from component name to component implementation.
18
- * Appropriate when defining the set of JSS components that your app is aware of.
19
- * @param {ComponentNameAndType[]} components
20
- * @param {ComponentNameAndModule[]} [lazyComponents]
21
- * @returns {ModuleWithProviders<JssModule>} module
22
- */
23
- static withComponents(components: ComponentNameAndType[], lazyComponents?: ComponentNameAndModule[]): ModuleWithProviders<JssModule>;
24
- }
@@ -1 +0,0 @@
1
- {"version":3,"file":"lib.module.d.ts","sources":["lib.module.d.ts"],"names":[],"mappings":"AAAA;AACA;;;;;;;;;;;;;;;;;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;AACA","sourcesContent":["import { ModuleWithProviders, Type } from '@angular/core';\r\nimport { ComponentNameAndModule, ComponentNameAndType } from './components/placeholder.token';\r\nexport declare class JssModule {\r\n /**\r\n * Instantiates the JSS module with no component factory.\r\n * Useful for using it from libraries. Most of the time you'd want withComponents()\r\n * @returns {ModuleWithProviders<JssModule>} module\r\n */\r\n static forRoot(): ModuleWithProviders<JssModule>;\r\n /**\r\n * Instantiates a module for a lazy-loaded JSS component\r\n * @param {Type<any>} component\r\n * @returns {ModuleWithProviders<JssModule>} module\r\n */\r\n static forChild(component: Type<any>): ModuleWithProviders<JssModule>;\r\n /**\r\n * Instantiates the JSS module and specifies the mapping from component name to component implementation.\r\n * Appropriate when defining the set of JSS components that your app is aware of.\r\n * @param {ComponentNameAndType[]} components\r\n * @param {ComponentNameAndModule[]} [lazyComponents]\r\n * @returns {ModuleWithProviders<JssModule>} module\r\n */\r\n static withComponents(components: ComponentNameAndType[], lazyComponents?: ComponentNameAndModule[]): ModuleWithProviders<JssModule>;\r\n}\r\n"]}
@@ -1,12 +0,0 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- export * from './public_api';
5
- export { DateDirective as ɵh } from './components/date.directive';
6
- export { MissingComponentComponent as ɵk } from './components/missing-component.component';
7
- export { ComponentNameAndModule as ɵa, PLACEHOLDER_COMPONENTS as ɵb, PLACEHOLDER_LAZY_COMPONENTS as ɵc, PLACEHOLDER_MISSING_COMPONENT_COMPONENT as ɵd } from './components/placeholder.token';
8
- export { RawComponent as ɵj } from './components/raw.component';
9
- export { RenderComponentComponent as ɵi } from './components/render-component.component';
10
- export { RenderEachDirective as ɵe } from './components/render-each.directive';
11
- export { RenderEmptyDirective as ɵf } from './components/render-empty.directive';
12
- export { JssComponentFactoryService as ɵg } from './jss-component-factory.service';
@@ -1 +0,0 @@
1
- {"version":3,"file":"sitecore-jss-sitecore-jss-angular.d.ts","sources":["sitecore-jss-sitecore-jss-angular.d.ts"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","sourcesContent":["/**\r\n * Generated bundle index. Do not edit.\r\n */\r\nexport * from './public_api';\r\nexport { DateDirective as ɵh } from './components/date.directive';\r\nexport { MissingComponentComponent as ɵk } from './components/missing-component.component';\r\nexport { ComponentNameAndModule as ɵa, PLACEHOLDER_COMPONENTS as ɵb, PLACEHOLDER_LAZY_COMPONENTS as ɵc, PLACEHOLDER_MISSING_COMPONENT_COMPONENT as ɵd } from './components/placeholder.token';\r\nexport { RawComponent as ɵj } from './components/raw.component';\r\nexport { RenderComponentComponent as ɵi } from './components/render-component.component';\r\nexport { RenderEachDirective as ɵe } from './components/render-each.directive';\r\nexport { RenderEmptyDirective as ɵf } from './components/render-empty.directive';\r\nexport { JssComponentFactoryService as ɵg } from './jss-component-factory.service';\r\n"]}