@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.
- package/LICENSE.txt +202 -202
- package/README.md +5 -5
- package/dist/README.md +5 -5
- package/dist/components/date.directive.d.ts +0 -5
- package/dist/components/file.directive.d.ts +0 -5
- package/dist/components/generic-link.directive.d.ts +0 -5
- package/dist/components/image.directive.d.ts +0 -5
- package/dist/components/link.directive.d.ts +0 -5
- package/dist/components/missing-component.component.d.ts +0 -5
- package/dist/components/placeholder-loading.directive.d.ts +0 -5
- package/dist/components/placeholder.component.d.ts +0 -5
- package/dist/components/raw.component.d.ts +0 -5
- package/dist/components/render-component.component.d.ts +0 -5
- package/dist/components/render-each.directive.d.ts +0 -5
- package/dist/components/render-empty.directive.d.ts +0 -5
- package/dist/components/rich-text.directive.d.ts +0 -5
- package/dist/components/router-link.directive.d.ts +0 -5
- package/dist/components/text.directive.d.ts +0 -5
- package/dist/jss-component-factory.service.d.ts +0 -5
- package/dist/layout.service.d.ts +0 -5
- package/dist/lib.module.d.ts +0 -22
- package/dist/package.json +7 -16
- package/dist/sitecore-jss-sitecore-jss-angular.d.ts +0 -2
- package/package.json +3 -3
- package/typings/README.md +2 -2
- package/dist/__ivy_ngcc__/fesm2015/sitecore-jss-sitecore-jss-angular.js +0 -1391
- package/dist/__ivy_ngcc__/fesm2015/sitecore-jss-sitecore-jss-angular.js.map +0 -1
- package/dist/components/date.directive.d.ts.__ivy_ngcc_bak +0 -17
- package/dist/components/date.directive.d.ts.map +0 -1
- package/dist/components/file.directive.d.ts.__ivy_ngcc_bak +0 -14
- package/dist/components/file.directive.d.ts.map +0 -1
- package/dist/components/generic-link.directive.d.ts.__ivy_ngcc_bak +0 -14
- package/dist/components/generic-link.directive.d.ts.map +0 -1
- package/dist/components/image.directive.d.ts.__ivy_ngcc_bak +0 -28
- package/dist/components/image.directive.d.ts.map +0 -1
- package/dist/components/link.directive.d.ts.__ivy_ngcc_bak +0 -18
- package/dist/components/link.directive.d.ts.map +0 -1
- package/dist/components/missing-component.component.d.ts.__ivy_ngcc_bak +0 -3
- package/dist/components/missing-component.component.d.ts.map +0 -1
- package/dist/components/placeholder-loading.directive.d.ts.__ivy_ngcc_bak +0 -5
- package/dist/components/placeholder-loading.directive.d.ts.map +0 -1
- package/dist/components/placeholder.component.d.ts.__ivy_ngcc_bak +0 -45
- package/dist/components/placeholder.component.d.ts.map +0 -1
- package/dist/components/raw.component.d.ts.__ivy_ngcc_bak +0 -9
- package/dist/components/raw.component.d.ts.map +0 -1
- package/dist/components/render-component.component.d.ts.__ivy_ngcc_bak +0 -29
- package/dist/components/render-component.component.d.ts.map +0 -1
- package/dist/components/render-each.directive.d.ts.__ivy_ngcc_bak +0 -5
- package/dist/components/render-each.directive.d.ts.map +0 -1
- package/dist/components/render-empty.directive.d.ts.__ivy_ngcc_bak +0 -5
- package/dist/components/render-empty.directive.d.ts.map +0 -1
- package/dist/components/rich-text.directive.d.ts.__ivy_ngcc_bak +0 -12
- package/dist/components/rich-text.directive.d.ts.map +0 -1
- package/dist/components/router-link.directive.d.ts.__ivy_ngcc_bak +0 -12
- package/dist/components/router-link.directive.d.ts.map +0 -1
- package/dist/components/text.directive.d.ts.__ivy_ngcc_bak +0 -13
- package/dist/components/text.directive.d.ts.map +0 -1
- package/dist/jss-component-factory.service.d.ts.__ivy_ngcc_bak +0 -21
- package/dist/jss-component-factory.service.d.ts.map +0 -1
- package/dist/layout.service.d.ts.__ivy_ngcc_bak +0 -8
- package/dist/layout.service.d.ts.map +0 -1
- package/dist/lib.module.d.ts.__ivy_ngcc_bak +0 -24
- package/dist/lib.module.d.ts.map +0 -1
- package/dist/sitecore-jss-sitecore-jss-angular.d.ts.__ivy_ngcc_bak +0 -12
- 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
|
-
}
|
package/dist/lib.module.d.ts.map
DELETED
|
@@ -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"]}
|