Skip to content

Commit

Permalink
Release 1.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sdirix committed Mar 14, 2018
1 parent 9dc946d commit 9461a4c
Show file tree
Hide file tree
Showing 163 changed files with 4,141 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dist/ts-build/components/form/form.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare var _default: string;
export default _default;
71 changes: 71 additions & 0 deletions dist/ts-build/components/form/form.directive.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
import { UiSchemaRegistry } from '../ng-services/ui-schema-registry/ui-schema-registry.service';
import { ISchemaGenerator } from '../generators/generators';
import { RendererService } from '../renderers/renderer.service';
import { IUISchemaElement } from '../../uischema';
import { DataService } from '../ng-services/data/data.service';
export declare class FormController {
private rendererService;
private UISchemaRegistry;
private dataService;
private SchemaGenerator;
private $compile;
private $q;
private scope;
private timeout;
static $inject: string[];
element: any;
uiSchema: IUISchemaElement;
private isInitialized;
private childScope;
private static isDataProvider(testMe);
constructor(rendererService: RendererService, UISchemaRegistry: UiSchemaRegistry, dataService: DataService, SchemaGenerator: ISchemaGenerator, $compile: ng.ICompileService, $q: ng.IQService, scope: JsonFormsDirectiveScope, timeout: ng.ITimeoutService);
init(): void;
private render(schema, data, uischema);
private fetch(any);
private isPromise(data);
}
export interface JsonFormsDirectiveScope extends ng.IScope {
schema: any;
uischema: any;
data: any;
}
export declare class JsonFormsDirective implements ng.IDirective {
private DataService;
restrict: string;
templateUrl: string;
controller: typeof FormController;
controllerAs: string;
scope: {
schema: string;
uischema: string;
data: string;
};
link: (scope: any, el: any, attrs: any, ctrl: any) => void;
constructor(DataService: DataService);
}
export declare class InnerFormController {
private rendererService;
private $compile;
private scope;
static $inject: string[];
element: any;
private uischema;
constructor(rendererService: RendererService, $compile: ng.ICompileService, scope: JsonFormsInnerDirectiveScope);
init(): void;
}
export interface JsonFormsInnerDirectiveScope extends ng.IScope {
uischema: any;
}
export declare class JsonFormsInnerDirective implements ng.IDirective {
restrict: string;
templateUrl: string;
controller: typeof InnerFormController;
controllerAs: string;
bindToController: {
uischema: string;
};
scope: boolean;
link: (scope: any, el: any, attrs: any, ctrl: any) => void;
}
declare var _default: string;
export default _default;
189 changes: 189 additions & 0 deletions dist/ts-build/components/form/form.directive.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/ts-build/components/form/form.directive.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 9461a4c

Please sign in to comment.