Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@quantumart/qa-engine-page-structure-angular

Package Overview
Dependencies
Maintainers
6
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@quantumart/qa-engine-page-structure-angular - npm Package Compare versions

Comparing version 0.3.3 to 1.0.0-beta

esm2022/lib/pipes/index.mjs

0

lib/pipes/index.d.ts
export * from './safe';
export * from './safe-pipe.module';

@@ -0,0 +0,0 @@ import * as i0 from "@angular/core";

2

lib/pipes/safe/safe.pipe.d.ts

@@ -9,3 +9,3 @@ import { PipeTransform } from '@angular/core';

static ɵfac: i0.ɵɵFactoryDeclaration<SafePipe, never>;
static ɵpipe: i0.ɵɵPipeDeclaration<SafePipe, "safe">;
static ɵpipe: i0.ɵɵPipeDeclaration<SafePipe, "safe", false>;
}

@@ -0,0 +0,0 @@ import { InjectionToken, Type } from '@angular/core';

@@ -0,0 +0,0 @@ import { ModuleWithProviders, Type } from '@angular/core';

@@ -1,12 +0,11 @@

import { ActivatedRouteSnapshot, CanActivate, Router, RouterStateSnapshot, UrlTree } from '@angular/router';
import { ActivatedRouteSnapshot, Router, RouterStateSnapshot, UrlTree } from '@angular/router';
import { Observable } from 'rxjs';
import { BaseUrlService, SiteStructureService } from '../services';
import { SiteStructureService } from '../services';
import { RoutingService } from './routing.service';
import * as i0 from "@angular/core";
export declare class DynamicRoutesInitializer implements CanActivate {
private readonly baseUrlService;
export declare class DynamicRoutesInitializer {
private readonly siteStructureService;
private readonly routingService;
private readonly router;
constructor(baseUrlService: BaseUrlService, siteStructureService: SiteStructureService, routingService: RoutingService, router: Router);
constructor(siteStructureService: SiteStructureService, routingService: RoutingService, router: Router);
canActivate(_: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<boolean | UrlTree>;

@@ -13,0 +12,0 @@ static ɵfac: i0.ɵɵFactoryDeclaration<DynamicRoutesInitializer, never>;

@@ -0,0 +0,0 @@ export * from './initial-request';

export * from './initial-request-component.module';
export * from './initial-request.component';

@@ -0,0 +0,0 @@ import * as i0 from "@angular/core";

import * as i0 from "@angular/core";
export declare class InitialRequestComponent {
static ɵfac: i0.ɵɵFactoryDeclaration<InitialRequestComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<InitialRequestComponent, "qa-initial-request", never, {}, {}, never, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<InitialRequestComponent, "qa-initial-request", never, {}, {}, never, never, false, never>;
}
export * from './not-found-component.module';
export * from './not-found.component';

@@ -0,0 +0,0 @@ import * as i0 from "@angular/core";

import * as i0 from "@angular/core";
export declare class NotFoundComponent {
static ɵfac: i0.ɵɵFactoryDeclaration<NotFoundComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<NotFoundComponent, "qa-not-found", never, {}, {}, never, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<NotFoundComponent, "qa-not-found", never, {}, {}, never, never, false, never>;
}
export * from './layout-widgets.resolver';
export * from './page-details.resolver';

@@ -1,6 +0,6 @@

import { ActivatedRouteSnapshot, Resolve, RouterStateSnapshot } from '@angular/router';
import { ActivatedRouteSnapshot, RouterStateSnapshot } from '@angular/router';
import { Observable } from 'rxjs';
import { WidgetDescriptor, WidgetService } from '../../widgets';
import * as i0 from "@angular/core";
export declare class LayoutWidgetsResolver implements Resolve<WidgetDescriptor[]> {
export declare class LayoutWidgetsResolver {
private readonly widgetService;

@@ -7,0 +7,0 @@ constructor(widgetService: WidgetService);

@@ -1,2 +0,2 @@

import { ActivatedRouteSnapshot, Resolve } from '@angular/router';
import { ActivatedRouteSnapshot } from '@angular/router';
import { Observable } from 'rxjs';

@@ -6,3 +6,3 @@ import { SiteNodeService } from '../../services';

import * as i0 from "@angular/core";
export declare class PageDetailsResolver implements Resolve<NodeDetails> {
export declare class PageDetailsResolver {
private readonly pageService;

@@ -9,0 +9,0 @@ constructor(pageService: SiteNodeService);

export * from './router-navigation-directive.module';
export * from './router-navigation.directive';

@@ -0,0 +0,0 @@ import * as i0 from "@angular/core";

@@ -16,3 +16,3 @@ import { AfterViewInit, ElementRef, OnDestroy } from '@angular/core';

static ɵfac: i0.ɵɵFactoryDeclaration<RouterNavigationDirective, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<RouterNavigationDirective, "[qaRouterNavigation]", never, {}, {}, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<RouterNavigationDirective, "[qaRouterNavigation]", never, {}, {}, never, never, false, never>;
}
import { RouteDescriptor } from './routing.service';
import { SiteStructure } from '../services';
export declare function buildRoutes({ root, redirects }: SiteStructure): RouteDescriptor[];

@@ -0,0 +0,0 @@ import { Route, Router } from '@angular/router';

import * as i0 from "@angular/core";
export declare class BaseUrlService {
private readonly windowRef;
private readonly platformId;
constructor(windowRef: Window, platformId: Object);
constructor(windowRef: Window);
getBaseUrl(): string;

@@ -7,0 +6,0 @@ static ɵfac: i0.ɵɵFactoryDeclaration<BaseUrlService, never>;

@@ -0,0 +0,0 @@ import { OnDestroy } from '@angular/core';

@@ -0,0 +0,0 @@ export * from './destroy.service';

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

@@ -0,0 +0,0 @@ import { SiteNodeApiModel, SiteRedirect } from './site-structure.service';

@@ -9,3 +9,3 @@ import { HttpClient } from '@angular/common/http';

}
export declare type SiteNodeDetails = Record<string, SiteNodeDetailsValue>;
export type SiteNodeDetails = Record<string, SiteNodeDetailsValue>;
export interface WidgetDetailsApiModel {

@@ -12,0 +12,0 @@ id: number;

@@ -29,6 +29,2 @@ import { HttpClient } from '@angular/common/http';

export declare class SiteStructureService {
private readonly httpClient;
private readonly baseUrlService;
private readonly redirectService;
private readonly widgetPlatformApiUrl;
private readonly siteStructure$;

@@ -35,0 +31,0 @@ constructor(httpClient: HttpClient, baseUrlService: BaseUrlService, redirectService: RedirectService, widgetPlatformApiUrl: string);

@@ -0,0 +0,0 @@ import { WidgetDetailsApiModel } from '../services';

@@ -0,0 +0,0 @@ export interface WildcardMatchingOption {

export * from './string';
export * from './url';

@@ -0,0 +0,0 @@ export declare function trim(input: string | undefined, char?: string): string;

@@ -0,0 +0,0 @@ export declare const GOTO_PARAMETER_KEY = "goto";

@@ -0,0 +0,0 @@ import { PlatformBrowserService } from 'ngx-dynamic-hooks';

@@ -0,0 +0,0 @@ import { HookBindings, HookComponentData, HookFinder, HookParser, HookPosition, HookValue } from 'ngx-dynamic-hooks';

export * from './widget-filter';
export * from './widget-filter.service';

@@ -0,0 +0,0 @@ import { Observable } from 'rxjs';

@@ -0,0 +0,0 @@ import { Observable } from 'rxjs';

@@ -0,0 +0,0 @@ export * from './filters';

@@ -0,0 +0,0 @@ import { Type } from '@angular/core';

@@ -0,0 +0,0 @@ import { WidgetDescriptor } from './widgets.types';

export * from './widget-zone.module';
export * from './widget-zone.component';

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

static ɵfac: i0.ɵɵFactoryDeclaration<WidgetZoneHostDirective, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<WidgetZoneHostDirective, "[qaWidgetZoneHost]", never, {}, {}, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<WidgetZoneHostDirective, "[qaWidgetZoneHost]", never, {}, {}, never, never, false, never>;
}

@@ -1,2 +0,2 @@

import { ChangeDetectorRef, ElementRef, OnDestroy, OnInit } from '@angular/core';
import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
import { Router } from '@angular/router';

@@ -13,3 +13,2 @@ import { Observable } from 'rxjs';

private readonly router;
private readonly elementRef;
private readonly cdr;

@@ -25,3 +24,3 @@ set zone(value: string | string[]);

private zones;
constructor(ngUnsubscribe$: Observable<void>, widgetService: WidgetService, filterService: WidgetFilterService, router: Router, elementRef: ElementRef<Element>, cdr: ChangeDetectorRef);
constructor(ngUnsubscribe$: Observable<void>, widgetService: WidgetService, filterService: WidgetFilterService, router: Router, cdr: ChangeDetectorRef);
ngOnInit(): void;

@@ -32,3 +31,3 @@ ngOnDestroy(): void;

static ɵfac: i0.ɵɵFactoryDeclaration<WidgetZoneComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetZoneComponent, "qa-widget-zone", never, { "zone": "zone"; "filters": "filters"; "nodeId": "nodeId"; }, {}, never, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetZoneComponent, "qa-widget-zone", never, { "zone": { "alias": "zone"; "required": false; }; "filters": { "alias": "filters"; "required": false; }; "nodeId": { "alias": "nodeId"; "required": false; }; }, {}, never, never, false, never>;
}

@@ -0,0 +0,0 @@ import * as i0 from "@angular/core";

@@ -0,0 +0,0 @@ import { Observable } from 'rxjs';

@@ -23,2 +23,2 @@ import { Type } from '@angular/core';

}
export declare type WidgetsDetailsMap = Record<string, WidgetDetails[] | undefined>;
export type WidgetsDetailsMap = Record<string, WidgetDetails[] | undefined>;
{
"name": "@quantumart/qa-engine-page-structure-angular",
"author": "Quantum Art",
"version": "0.3.3",
"version": "1.0.0-beta",
"license": "MIT",
"peerDependencies": {
"@angular/common": "^13.3.10",
"@angular/core": "^13.3.10",
"@angular/platform-browser": "^13.3.10",
"@angular/router": "^13.3.10",
"@angular/common": "~16.1.6",
"@angular/core": "~16.1.6",
"@angular/platform-browser": "~16.1.6",
"@angular/router": "~16.1.6",
"camelcase": "^7.0.0",
"ngx-dynamic-hooks": "^2.0.3",
"ngx-dynamic-hooks": "^2.1.0",
"rxjs": "^7.4.0"
},
"dependencies": {
"tslib": "^2.3.0"
"tslib": "^2.6.1"
},
"module": "fesm2015/quantumart-qa-engine-page-structure-angular.mjs",
"es2020": "fesm2020/quantumart-qa-engine-page-structure-angular.mjs",
"esm2020": "esm2020/quantumart-qa-engine-page-structure-angular.mjs",
"fesm2020": "fesm2020/quantumart-qa-engine-page-structure-angular.mjs",
"fesm2015": "fesm2015/quantumart-qa-engine-page-structure-angular.mjs",
"typings": "quantumart-qa-engine-page-structure-angular.d.ts",
"module": "fesm2022/quantumart-qa-engine-page-structure-angular.mjs",
"typings": "index.d.ts",
"exports": {

@@ -29,8 +25,6 @@ "./package.json": {

".": {
"types": "./quantumart-qa-engine-page-structure-angular.d.ts",
"esm2020": "./esm2020/quantumart-qa-engine-page-structure-angular.mjs",
"es2020": "./fesm2020/quantumart-qa-engine-page-structure-angular.mjs",
"es2015": "./fesm2015/quantumart-qa-engine-page-structure-angular.mjs",
"node": "./fesm2015/quantumart-qa-engine-page-structure-angular.mjs",
"default": "./fesm2020/quantumart-qa-engine-page-structure-angular.mjs"
"types": "./index.d.ts",
"esm2022": "./esm2022/quantumart-qa-engine-page-structure-angular.mjs",
"esm": "./esm2022/quantumart-qa-engine-page-structure-angular.mjs",
"default": "./fesm2022/quantumart-qa-engine-page-structure-angular.mjs"
}

@@ -37,0 +31,0 @@ },

@@ -0,0 +0,0 @@ export { QaEnginePageStructureModule } from './lib/qa-engine-page-structure.module';

@@ -0,0 +0,0 @@ **@quantumart/qa-engine-page-structure-angular**

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc