bt-core-app 2.1.23 → 2.1.25
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/dist/bt-core-app.js +5606 -5603
- package/dist/index.d.ts +7 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -594,7 +594,13 @@ export declare interface CosmeticData {
|
|
|
594
594
|
theme?: string;
|
|
595
595
|
}
|
|
596
596
|
|
|
597
|
-
|
|
597
|
+
declare interface CreateAForm {
|
|
598
|
+
form: AForm;
|
|
599
|
+
addSlide: (slideName: string, furtherProps?: AFormSlideBase) => CreateAForm;
|
|
600
|
+
addField: (t: FieldType, furtherProps?: AFormFieldBase) => CreateAForm;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
export declare function createAForm(furtherProps?: AFormBase): CreateAForm;
|
|
598
604
|
|
|
599
605
|
export declare function createApi(options?: UseApiOptions): BTApi;
|
|
600
606
|
|
package/package.json
CHANGED