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/index.d.ts CHANGED
@@ -594,7 +594,13 @@ export declare interface CosmeticData {
594
594
  theme?: string;
595
595
  }
596
596
 
597
- export declare function createAForm(furtherProps?: AFormBase): any;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bt-core-app",
3
- "version": "2.1.23",
3
+ "version": "2.1.25",
4
4
  "description": "Core app tools for some basic features like navigation, authentication, server apis, and cosmetics",
5
5
  "homepage": "https://github.com/BlitzItTech/bt-core",
6
6
  "bugs": {