@cleo/ngx-json-schema-form
Advanced tools
Comparing version 5.0.2 to 6.0.0
@@ -18,4 +18,4 @@ import { AfterContentInit, AfterViewInit, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<ComponentLifeCycle, never>; | ||
static ɵdir: i0.ɵɵDirectiveDeclaration<ComponentLifeCycle, never, never, {}, {}, never>; | ||
static ɵdir: i0.ɵɵDirectiveDeclaration<ComponentLifeCycle, never, never, {}, {}, never, never, false, never>; | ||
} | ||
export declare const getInputValue$: <T extends ComponentLifeCycle, K extends keyof T>(obj: T, property: K, ignoreUndefined?: boolean) => Observable<T[K]>; |
@@ -20,3 +20,3 @@ import { OnInit } from '@angular/core'; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxWithChildrenComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxWithChildrenComponent, "jsf-checkbox-with-children", never, { "formItem": "formItem"; }, {}, never, ["*"]>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxWithChildrenComponent, "jsf-checkbox-with-children", never, { "formItem": "formItem"; }, {}, never, ["*"], false, never>; | ||
} |
import { EventEmitter } from '@angular/core'; | ||
import { FormGroup } from '@angular/forms'; | ||
import { UntypedFormGroup } from '@angular/forms'; | ||
import { ComponentLifeCycle } from '../component-life-cycle'; | ||
@@ -7,3 +7,3 @@ import { JSFConfig } from '../jsf-config'; | ||
export declare class ContentBaseComponent extends ComponentLifeCycle { | ||
formGroup: FormGroup; | ||
formGroup: UntypedFormGroup; | ||
config: JSFConfig; | ||
@@ -29,3 +29,3 @@ isEdit: boolean; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<ContentBaseComponent, never>; | ||
static ɵdir: i0.ɵɵDirectiveDeclaration<ContentBaseComponent, never, never, { "formGroup": "formGroup"; "config": "config"; "isEdit": "isEdit"; "templates": "templates"; }, { "buttonEvent": "buttonEvent"; "templateEvent": "templateEvent"; }, never>; | ||
static ɵdir: i0.ɵɵDirectiveDeclaration<ContentBaseComponent, never, never, { "formGroup": "formGroup"; "config": "config"; "isEdit": "isEdit"; "templates": "templates"; }, { "buttonEvent": "buttonEvent"; "templateEvent": "templateEvent"; }, never, never, false, never>; | ||
} |
import { QueryList } from '@angular/core'; | ||
import { FormGroup } from '@angular/forms'; | ||
import { UntypedFormGroup } from '@angular/forms'; | ||
import { ConditionalParentDataItem } from '../models/conditional-parent-data-item'; | ||
@@ -21,3 +21,3 @@ import { FormDataItem } from '../models/form-data-item'; | ||
getConditionalParentFormItem(item: FormDataItem): ConditionalParentDataItem; | ||
getFormGroup(item: FormDataItem): FormGroup; | ||
getFormGroup(item: FormDataItem): UntypedFormGroup; | ||
isSection(item: FormDataItem): boolean; | ||
@@ -33,3 +33,3 @@ isObject(item: FormDataItem): boolean; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<FormContentComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<FormContentComponent, "jsf-form-content", never, { "formItems": "formItems"; "labelLengthClass": "labelLengthClass"; }, {}, never, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<FormContentComponent, "jsf-form-content", never, { "formItems": "formItems"; "labelLengthClass": "labelLengthClass"; }, {}, never, never, false, never>; | ||
} |
@@ -8,3 +8,3 @@ import { EventEmitter } from '@angular/core'; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "jsf-check-box", never, {}, { "toggle": "toggle"; }, never, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "jsf-check-box", never, {}, { "toggle": "toggle"; }, never, never, false, never>; | ||
} |
@@ -10,3 +10,3 @@ import { EventEmitter } from '@angular/core'; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "jsf-drop-down", never, {}, { "selectedKey": "selectedKey"; }, never, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "jsf-drop-down", never, {}, { "selectedKey": "selectedKey"; }, never, never, false, never>; | ||
} |
@@ -12,3 +12,3 @@ import { EventEmitter } from '@angular/core'; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<EventButtonComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<EventButtonComponent, "jsf-event-button", never, { "buttonData": "buttonData"; }, { "buttonEvent": "buttonEvent"; }, never, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<EventButtonComponent, "jsf-event-button", never, { "buttonData": "buttonData"; }, { "buttonEvent": "buttonEvent"; }, never, never, false, never>; | ||
} |
import { OnInit } from '@angular/core'; | ||
import { FormControl, ValidationErrors } from '@angular/forms'; | ||
import { UntypedFormControl, ValidationErrors } from '@angular/forms'; | ||
import { FormDataItem } from '../../models/form-data-item'; | ||
@@ -10,3 +10,3 @@ import { ContentBaseComponent } from '../content-base.component'; | ||
templates: any; | ||
get formControl(): FormControl; | ||
get formControl(): UntypedFormControl; | ||
get showError(): boolean; | ||
@@ -17,3 +17,3 @@ static formatErrorMessage(errors: ValidationErrors, formItem: FormDataItem): string; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<FormControlBase, never>; | ||
static ɵdir: i0.ɵɵDirectiveDeclaration<FormControlBase, never, never, { "formItem": "formItem"; "labelLengthClass": "labelLengthClass"; "templates": "templates"; }, {}, never>; | ||
static ɵdir: i0.ɵɵDirectiveDeclaration<FormControlBase, never, never, { "formItem": "formItem"; "labelLengthClass": "labelLengthClass"; "templates": "templates"; }, {}, never, never, false, never>; | ||
} |
@@ -1,2 +0,2 @@ | ||
import { FormGroup } from '@angular/forms'; | ||
import { UntypedFormGroup } from '@angular/forms'; | ||
import { JSFConfig } from '../../jsf-config'; | ||
@@ -8,3 +8,3 @@ import { FormDataItem } from '../../models/form-data-item'; | ||
formItem: FormDataItem; | ||
formGroup: FormGroup; | ||
formGroup: UntypedFormGroup; | ||
config: JSFConfig; | ||
@@ -24,3 +24,3 @@ isEdit: boolean; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<FormControlComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<FormControlComponent, "jsf-form-control", never, { "formItem": "formItem"; "formGroup": "formGroup"; "config": "config"; "isEdit": "isEdit"; "templates": "templates"; "labelLengthClass": "labelLengthClass"; }, {}, never, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<FormControlComponent, "jsf-form-control", never, { "formItem": "formItem"; "formGroup": "formGroup"; "config": "config"; "isEdit": "isEdit"; "templates": "templates"; "labelLengthClass": "labelLengthClass"; }, {}, never, never, false, never>; | ||
} |
@@ -13,3 +13,3 @@ import { OnInit } from '@angular/core'; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<LabelComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<LabelComponent, "jsf-label", never, { "formItem": "formItem"; "labelLengthClass": "labelLengthClass"; }, {}, never, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<LabelComponent, "jsf-label", never, { "formItem": "formItem"; "labelLengthClass": "labelLengthClass"; }, {}, never, never, false, never>; | ||
} |
@@ -7,3 +7,3 @@ import { EnumDataItem } from '../../../models/enum-data-item'; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent, "jsf-radio-button", never, {}, {}, never, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent, "jsf-radio-button", never, {}, {}, never, never, false, never>; | ||
} |
@@ -20,3 +20,3 @@ import { JSFConfig } from '../../../jsf-config'; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<SecuredTextComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<SecuredTextComponent, "jsf-secured-text", never, { "config": "config"; }, {}, never, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<SecuredTextComponent, "jsf-secured-text", never, { "config": "config"; }, {}, never, never, false, never>; | ||
} |
@@ -19,3 +19,3 @@ import { OnInit } from '@angular/core'; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<AlertComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<AlertComponent, "jsf-alert", never, { "alertStream": "alertStream"; }, {}, never, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<AlertComponent, "jsf-alert", never, { "alertStream": "alertStream"; }, {}, never, never, false, never>; | ||
} |
@@ -17,3 +17,3 @@ import { ChangeDetectorRef, Injector, OnInit, Type, ViewContainerRef } from '@angular/core'; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<ModalOutletComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<ModalOutletComponent, "jsf-modal-outlet", never, { "modalService": "modalService"; }, {}, never, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<ModalOutletComponent, "jsf-modal-outlet", never, { "modalService": "modalService"; }, {}, never, never, false, never>; | ||
} |
@@ -36,3 +36,3 @@ import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter } from '@angular/core'; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<ModalComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<ModalComponent, "jsf-modal", never, { "title": "title"; }, { "closeInput": "closeInput"; "resizeInput": "resizeInput"; }, never, ["*"]>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<ModalComponent, "jsf-modal", never, { "title": "title"; }, { "closeInput": "closeInput"; "resizeInput": "resizeInput"; }, never, ["*"], false, never>; | ||
} |
@@ -14,3 +14,3 @@ import { OnInit } from '@angular/core'; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<TableSummaryComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<TableSummaryComponent, "jsf-table-summary", never, {}, {}, never, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<TableSummaryComponent, "jsf-table-summary", never, {}, {}, never, never, false, never>; | ||
} |
@@ -9,3 +9,3 @@ import { EventEmitter } from '@angular/core'; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxCellComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxCellComponent, "jsf-checkbox-cell", never, { "params": "params"; }, { "valueChanged": "valueChanged"; }, never, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxCellComponent, "jsf-checkbox-cell", never, { "params": "params"; }, { "valueChanged": "valueChanged"; }, never, never, false, never>; | ||
} |
@@ -12,3 +12,3 @@ import { EventEmitter } from '@angular/core'; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownCellComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownCellComponent, "jsf-dropdown-cell", never, { "params": "params"; }, { "valueChanged": "valueChanged"; }, never, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownCellComponent, "jsf-dropdown-cell", never, { "params": "params"; }, { "valueChanged": "valueChanged"; }, never, never, false, never>; | ||
} |
@@ -9,3 +9,3 @@ import { AfterViewInit } from '@angular/core'; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<TextCellComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<TextCellComponent, "jsf-text-cell", never, { "params": "params"; }, {}, never, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<TextCellComponent, "jsf-text-cell", never, { "params": "params"; }, {}, never, never, false, never>; | ||
} |
@@ -26,3 +26,3 @@ import { ContentBaseComponent } from '../../../../content-base.component'; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<CellRendererComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<CellRendererComponent, "jsf-renderer", never, {}, {}, never, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<CellRendererComponent, "jsf-renderer", never, {}, {}, never, never, false, never>; | ||
} |
@@ -39,3 +39,3 @@ import { ColDef } from 'ag-grid-community'; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<TableModalComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<TableModalComponent, "jsf-table-modal", never, {}, {}, never, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<TableModalComponent, "jsf-table-modal", never, {}, {}, never, never, false, never>; | ||
} | ||
@@ -42,0 +42,0 @@ export interface ITableModalOptions { |
@@ -12,3 +12,3 @@ import { AfterViewInit } from '@angular/core'; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<TemplateComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<TemplateComponent, "jsf-template", never, { "templates": "templates"; }, {}, never, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<TemplateComponent, "jsf-template", never, { "templates": "templates"; }, {}, never, never, false, never>; | ||
} |
@@ -18,3 +18,3 @@ import { OnInit } from '@angular/core'; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaComponent, "jsf-text-area", never, {}, {}, never, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaComponent, "jsf-text-area", never, {}, {}, never, never, false, never>; | ||
} |
@@ -19,3 +19,3 @@ import { StringDataItem, StringFormat, StringLengthOptions } from '../../../models/string-data-item'; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<TextComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<TextComponent, "jsf-text", never, {}, {}, never, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<TextComponent, "jsf-text", never, {}, {}, never, never, false, never>; | ||
} |
import { ElementRef, OnInit } from '@angular/core'; | ||
import { FormControl, FormGroup } from '@angular/forms'; | ||
import { UntypedFormControl, UntypedFormGroup } from '@angular/forms'; | ||
import { FormService } from '../../form.service'; | ||
@@ -18,9 +18,9 @@ import { EnumDataItem } from '../../models/enum-data-item'; | ||
ngOnInit(): void; | ||
getDropdownFormControl(): FormControl; | ||
getDropdownFormControl(): UntypedFormControl; | ||
getDropdownDataItem(): EnumDataItem; | ||
onDropdownChange(key: string): void; | ||
get selectedChildFormGroup(): FormGroup; | ||
get selectedChildFormGroup(): UntypedFormGroup; | ||
get selectedChildDataItem(): ParentDataItem; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<OneOfComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<OneOfComponent, "jsf-one-of", never, { "xOfDataItem": "xOfDataItem"; "labelLengthClass": "labelLengthClass"; }, {}, never, ["*"]>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<OneOfComponent, "jsf-one-of", never, { "xOfDataItem": "xOfDataItem"; "labelLengthClass": "labelLengthClass"; }, {}, never, ["*"], false, never>; | ||
} |
@@ -12,3 +12,3 @@ import { OnInit } from '@angular/core'; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<SectionComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<SectionComponent, "jsf-section", never, { "formItem": "formItem"; }, {}, never, ["*"]>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<SectionComponent, "jsf-section", never, { "formItem": "formItem"; }, {}, never, ["*"], false, never>; | ||
} |
@@ -1,2 +0,2 @@ | ||
import { FormGroup } from '@angular/forms'; | ||
import { UntypedFormGroup } from '@angular/forms'; | ||
import { ParentDataItem } from '../../../models/parent-data-item'; | ||
@@ -7,5 +7,5 @@ import * as i0 from "@angular/core"; | ||
selected: boolean; | ||
formGroup: FormGroup; | ||
formGroup: UntypedFormGroup; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<TabComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<TabComponent, "jsf-tab", never, { "dataItem": "dataItem"; "selected": "selected"; "formGroup": "formGroup"; }, {}, never, ["*"]>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<TabComponent, "jsf-tab", never, { "dataItem": "dataItem"; "selected": "selected"; "formGroup": "formGroup"; }, {}, never, ["*"], false, never>; | ||
} |
import { AfterContentInit, QueryList } from '@angular/core'; | ||
import { FormGroup } from '@angular/forms'; | ||
import { UntypedFormGroup } from '@angular/forms'; | ||
import { FormDataItem } from '../../models/form-data-item'; | ||
@@ -14,3 +14,3 @@ import { ParentDataItem } from '../../models/parent-data-item'; | ||
ngAfterContentInit(): void; | ||
getFormGroup(item: FormDataItem): FormGroup; | ||
getFormGroup(item: FormDataItem): UntypedFormGroup; | ||
getLabelLengthClass(tab: ParentDataItem): string; | ||
@@ -24,3 +24,3 @@ onTabClicked(clickedTab: TabComponent): void; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<TabsComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "jsf-tabs", never, { "items": "items"; "title": "title"; }, {}, ["tabs"], ["*"]>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "jsf-tabs", never, { "items": "items"; "title": "title"; }, {}, ["tabs"], ["*"], false, never>; | ||
} |
@@ -1,2 +0,2 @@ | ||
import { AbstractControl, FormGroup } from '@angular/forms'; | ||
import { AbstractControl, UntypedFormGroup } from '@angular/forms'; | ||
import { FormDataItem } from './models/form-data-item'; | ||
@@ -9,6 +9,6 @@ import { ParentDataItem } from './models/parent-data-item'; | ||
constructor(validatorService: ValidatorService); | ||
getForm(form: FormGroup, itemsToAdd: FormDataItem[]): FormGroup; | ||
getForm(form: UntypedFormGroup, itemsToAdd: FormDataItem[]): UntypedFormGroup; | ||
private fillForm; | ||
private createControl; | ||
findAbstractControl(targetPathSegments: string[], formGroup: FormGroup): AbstractControl; | ||
findAbstractControl(targetPathSegments: string[], formGroup: UntypedFormGroup): AbstractControl; | ||
/** | ||
@@ -29,3 +29,3 @@ * This method is used to toggle conditionally displayed children. | ||
setVisibilityForConditionalChild(formDataItem: FormDataItem, control: AbstractControl, isVisible: boolean): void; | ||
setVisibilityForAllConditionalChildren(parentDataItem: ParentDataItem, formGroup: FormGroup, isVisible: boolean): void; | ||
setVisibilityForAllConditionalChildren(parentDataItem: ParentDataItem, formGroup: UntypedFormGroup, isVisible: boolean): void; | ||
/** | ||
@@ -38,3 +38,3 @@ * Will find the child AbstractControls with keys that match the childKeys array and make them visible. | ||
*/ | ||
showNecessaryConditionalChildren(parentDataItem: ParentDataItem, formGroup: FormGroup, childKeys: string[]): void; | ||
showNecessaryConditionalChildren(parentDataItem: ParentDataItem, formGroup: UntypedFormGroup, childKeys: string[]): void; | ||
/** | ||
@@ -41,0 +41,0 @@ * There are some values in the form that are not meant to be returned with the data upon |
import { AfterViewInit, ElementRef, EventEmitter, OnInit } from '@angular/core'; | ||
import { FormGroup } from '@angular/forms'; | ||
import { UntypedFormGroup } from '@angular/forms'; | ||
import { ComponentLifeCycle } from './component-life-cycle'; | ||
@@ -25,3 +25,3 @@ import { FormContentComponent } from './form-content/form-content.component'; | ||
formDataItems: FormDataItem[]; | ||
formGroup: FormGroup; | ||
formGroup: UntypedFormGroup; | ||
isEdit: boolean; | ||
@@ -59,3 +59,3 @@ sectionLabelLengthClass: string; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<JSFComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<JSFComponent, "jsf-component", never, { "config": "config"; "schemaData": "schemaData"; "templates": "templates"; }, { "disableSubmit": "disableSubmit"; "formHeightChange": "formHeightChange"; "buttonEvent": "buttonEvent"; "templateEvent": "templateEvent"; }, never, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<JSFComponent, "jsf-component", never, { "config": "config"; "schemaData": "schemaData"; "templates": "templates"; }, { "disableSubmit": "disableSubmit"; "formHeightChange": "formHeightChange"; "buttonEvent": "buttonEvent"; "templateEvent": "templateEvent"; }, never, never, false, never>; | ||
} |
@@ -10,3 +10,3 @@ import { FormDataItem } from './form-data-item'; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<TemplateDataItem, never>; | ||
static ɵdir: i0.ɵɵDirectiveDeclaration<TemplateDataItem, never, never, { "templates": "templates"; }, {}, never>; | ||
static ɵdir: i0.ɵɵDirectiveDeclaration<TemplateDataItem, never, never, { "templates": "templates"; }, {}, never, never, false, never>; | ||
} |
{ | ||
"name": "@cleo/ngx-json-schema-form", | ||
"version": "5.0.2", | ||
"version": "6.0.0", | ||
"repository": { | ||
@@ -12,5 +12,5 @@ "type": "git", | ||
"peerDependencies": { | ||
"@angular/common": "13.3.12", | ||
"@angular/core": "13.3.12", | ||
"@angular/forms": "13.3.12", | ||
"@angular/common": "15.2.9", | ||
"@angular/core": "15.2.9", | ||
"@angular/forms": "15.2.9", | ||
"bootstrap-sass": "^3.3.7", | ||
@@ -24,3 +24,3 @@ "rxjs": "^6.5.4" | ||
"fesm2015": "fesm2015/cleo-ngx-json-schema-form.mjs", | ||
"typings": "cleo-ngx-json-schema-form.d.ts", | ||
"typings": "index.d.ts", | ||
"exports": { | ||
@@ -31,3 +31,3 @@ "./package.json": { | ||
".": { | ||
"types": "./cleo-ngx-json-schema-form.d.ts", | ||
"types": "./index.d.ts", | ||
"esm2020": "./esm2020/cleo-ngx-json-schema-form.mjs", | ||
@@ -34,0 +34,0 @@ "es2020": "./fesm2020/cleo-ngx-json-schema-form.mjs", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
1626954
10417