Socket
Socket
Sign inDemoInstall

@tilde-nlp/ngx-strapi

Package Overview
Dependencies
22
Maintainers
5
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.0.1 to 4.0.0

esm2022/lib/component-builders/component-builder-base/component-builder-base.component.mjs

2

lib/component-builders/component-builder-base/component-builder-base.component.d.ts

@@ -19,3 +19,3 @@ import { Router } from '@angular/router';

static ɵfac: i0.ɵɵFactoryDeclaration<ComponentBuilderBaseComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ComponentBuilderBaseComponent, "lib-component-builder-base", never, { "route": "route"; "redirectRoute": "redirectRoute"; }, {}, never, never, false, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ComponentBuilderBaseComponent, "lib-component-builder-base", never, { "route": { "alias": "route"; "required": false; }; "redirectRoute": { "alias": "redirectRoute"; "required": false; }; }, {}, never, never, false, never>;
}

@@ -7,3 +7,3 @@ import { ProductInformationPage } from '@tilde-nlp/strapi-models';

static ɵfac: i0.ɵɵFactoryDeclaration<ProductInformationComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ProductInformationComponent, "product-information", never, { "page": "page"; }, {}, never, never, false, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ProductInformationComponent, "product-information", never, { "page": { "alias": "page"; "required": false; }; }, {}, never, never, false, never>;
}

@@ -19,3 +19,3 @@ import { OnDestroy, OnInit } from '@angular/core';

static ɵfac: i0.ɵɵFactoryDeclaration<StrapiHtmlWrapperComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<StrapiHtmlWrapperComponent, "strapi-html-wrapper", never, { "type": "type"; "contentKey": "contentKey"; }, {}, never, never, false, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<StrapiHtmlWrapperComponent, "strapi-html-wrapper", never, { "type": { "alias": "type"; "required": false; }; "contentKey": { "alias": "contentKey"; "required": false; }; }, {}, never, never, false, never>;
}

@@ -23,3 +23,3 @@ import { EventEmitter, OnDestroy, OnInit } from '@angular/core';

static ɵfac: i0.ɵɵFactoryDeclaration<StrapiProductInformationComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<StrapiProductInformationComponent, "strapi-product-information", never, { "route": "route"; }, { "strapiError": "strapiError"; }, never, never, false, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<StrapiProductInformationComponent, "strapi-product-information", never, { "route": { "alias": "route"; "required": false; }; }, { "strapiError": "strapiError"; }, never, never, false, never>;
}

@@ -23,3 +23,3 @@ import { ViewContainerRef } from '@angular/core';

static ɵfac: i0.ɵɵFactoryDeclaration<DynamicZoneComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicZoneComponent, "strapi-dynamic-zone", never, { "data": "data"; }, {}, never, never, false, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicZoneComponent, "strapi-dynamic-zone", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, false, never>;
}

@@ -12,3 +12,3 @@ import { ElementRef, OnInit, Renderer2 } from '@angular/core';

static ɵfac: i0.ɵɵFactoryDeclaration<DynamicHeadingComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicHeadingComponent, "strapi-dynamic-heading", never, { "data": "data"; }, {}, never, never, false, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicHeadingComponent, "strapi-dynamic-heading", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, false, never>;
}

@@ -29,3 +29,3 @@ import { OnDestroy, OnInit } from '@angular/core';

static ɵfac: i0.ɵɵFactoryDeclaration<LinkButtonComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<LinkButtonComponent, "strapi-link-button", never, { "data": "data"; }, {}, never, never, false, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<LinkButtonComponent, "strapi-link-button", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, false, never>;
}

@@ -21,3 +21,3 @@ import { OnDestroy, OnInit } from '@angular/core';

static ɵfac: i0.ɵɵFactoryDeclaration<LinkComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<LinkComponent, "strapi-link", never, { "item": "item"; }, {}, never, never, false, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<LinkComponent, "strapi-link", never, { "item": { "alias": "item"; "required": false; }; }, {}, never, never, false, never>;
}

@@ -15,3 +15,3 @@ import { ElementRef } from '@angular/core';

static ɵfac: i0.ɵɵFactoryDeclaration<StrapiHtmlComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<StrapiHtmlComponent, "strapi-html", never, { "htmlString": "htmlString"; }, {}, never, never, false, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<StrapiHtmlComponent, "strapi-html", never, { "htmlString": { "alias": "htmlString"; "required": false; }; }, {}, never, never, false, never>;
}

@@ -1,13 +0,13 @@

import { OnInit } from '@angular/core';
import { Media } from '@tilde-nlp/strapi-models';
import { StrapiApiConfig } from '../../../models/strapi-api-config.model';
import * as i0 from "@angular/core";
export declare class StrapiImageComponent implements OnInit {
export declare class StrapiImageComponent {
private readonly config;
src: string;
data: Media;
private _data;
get data(): Media;
set data(value: Media);
constructor(config: StrapiApiConfig);
ngOnInit(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<StrapiImageComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<StrapiImageComponent, "strapi-image", never, { "data": "data"; }, {}, never, never, false, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<StrapiImageComponent, "strapi-image", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, false, never>;
}

@@ -10,3 +10,3 @@ import { ElementRef, OnInit } from '@angular/core';

static ɵfac: i0.ɵɵFactoryDeclaration<StrapiStylesDirective, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<StrapiStylesDirective, "[strapiStyles]", never, { "strapiStyles": "strapiStyles"; }, {}, never, never, false, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<StrapiStylesDirective, "[strapiStyles]", never, { "strapiStyles": { "alias": "strapiStyles"; "required": false; }; }, {}, never, never, false, never>;
}

@@ -6,3 +6,3 @@ import { FeatureList } from '@tilde-nlp/strapi-models';

static ɵfac: i0.ɵɵFactoryDeclaration<FeatureListComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<FeatureListComponent, "strapi-feature-list", never, { "data": "data"; }, {}, never, never, false, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<FeatureListComponent, "strapi-feature-list", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, false, never>;
}

@@ -7,3 +7,3 @@ import { FeatureListItem } from '@tilde-nlp/strapi-models';

static ɵfac: i0.ɵɵFactoryDeclaration<ListItemComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ListItemComponent, "strapi-feature-list-item", never, { "item": "item"; }, {}, never, never, false, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ListItemComponent, "strapi-feature-list-item", never, { "item": { "alias": "item"; "required": false; }; }, {}, never, never, false, never>;
}

@@ -11,3 +11,3 @@ import { ImageTitleContentLinks } from '@tilde-nlp/strapi-models';

static ɵfac: i0.ɵɵFactoryDeclaration<ImageTitleContentLinksComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ImageTitleContentLinksComponent, "strapi-image-title-content-links", never, { "data": "data"; }, {}, never, never, false, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ImageTitleContentLinksComponent, "strapi-image-title-content-links", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, false, never>;
}
{
"name": "@tilde-nlp/ngx-strapi",
"version": "3.0.1",
"version": "4.0.0",
"peerDependencies": {

@@ -16,7 +16,3 @@ "@angular/common": "^15.0.0",

"license": "Apache-2.0",
"module": "fesm2015/tilde-nlp-ngx-strapi.mjs",
"es2020": "fesm2020/tilde-nlp-ngx-strapi.mjs",
"esm2020": "esm2020/tilde-nlp-ngx-strapi.mjs",
"fesm2020": "fesm2020/tilde-nlp-ngx-strapi.mjs",
"fesm2015": "fesm2015/tilde-nlp-ngx-strapi.mjs",
"module": "fesm2022/tilde-nlp-ngx-strapi.mjs",
"typings": "index.d.ts",

@@ -29,7 +25,5 @@ "exports": {

"types": "./index.d.ts",
"esm2020": "./esm2020/tilde-nlp-ngx-strapi.mjs",
"es2020": "./fesm2020/tilde-nlp-ngx-strapi.mjs",
"es2015": "./fesm2015/tilde-nlp-ngx-strapi.mjs",
"node": "./fesm2015/tilde-nlp-ngx-strapi.mjs",
"default": "./fesm2020/tilde-nlp-ngx-strapi.mjs"
"esm2022": "./esm2022/tilde-nlp-ngx-strapi.mjs",
"esm": "./esm2022/tilde-nlp-ngx-strapi.mjs",
"default": "./fesm2022/tilde-nlp-ngx-strapi.mjs"
}

@@ -36,0 +30,0 @@ },

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc