-
Notifications
You must be signed in to change notification settings - Fork 380
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8269382
commit e0267d3
Showing
163 changed files
with
4,141 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
declare var _default: string; | ||
export default _default; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.