@entropic-bond/crud-panel 4.0.4 → 4.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/crud-controller.spec.d.ts +16 -0
- package/lib/crud-panel.spec.d.ts +1 -0
- package/lib/entropic-bond-crud-panel.js +2362 -0
- package/lib/entropic-bond-crud-panel.umd.cjs +45 -0
- package/lib/progress-controller.spec.d.ts +1 -0
- package/package.json +29 -20
- package/lib/crud-controller.js +0 -249
- package/lib/crud-controller.js.map +0 -1
- package/lib/crud-panel.js +0 -168
- package/lib/crud-panel.js.map +0 -1
- package/lib/index.js +0 -19
- package/lib/index.js.map +0 -1
- package/lib/progress-controller.js +0 -33
- package/lib/progress-controller.js.map +0 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { EntropicComponent, Model } from 'entropic-bond';
|
|
2
|
+
import { CrudController } from './crud-controller';
|
|
3
|
+
export declare class Test extends EntropicComponent {
|
|
4
|
+
set testProp(value: string | undefined);
|
|
5
|
+
get testProp(): string | undefined;
|
|
6
|
+
set testPropWithValidator(value: string | undefined);
|
|
7
|
+
get testPropWithValidator(): string | undefined;
|
|
8
|
+
private _testProp;
|
|
9
|
+
private _testPropWithValidator;
|
|
10
|
+
}
|
|
11
|
+
export declare class TestController extends CrudController<Test> {
|
|
12
|
+
createDocument(): Test;
|
|
13
|
+
protected getModel(): Model<Test>;
|
|
14
|
+
notifyNewEvent(): void;
|
|
15
|
+
callManagedThrow(): void;
|
|
16
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|