bt-core-app 2.1.21 → 2.1.22
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 +2 -20
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -606,29 +606,11 @@ export declare function createAField(fieldType: FieldType, furtherProps?: AFormF
|
|
|
606
606
|
icon?: string | undefined;
|
|
607
607
|
};
|
|
608
608
|
|
|
609
|
-
export declare function createAForm(slides: AFormSlide[], furtherProps?:
|
|
610
|
-
slides: AFormSlide[];
|
|
611
|
-
bgColor?: string | undefined;
|
|
612
|
-
bgSrc?: string | undefined;
|
|
613
|
-
ctlColor?: string | undefined;
|
|
614
|
-
logoSrc?: string | undefined;
|
|
615
|
-
textColor?: string | undefined;
|
|
616
|
-
theme?: "dark" | "light" | undefined;
|
|
617
|
-
title?: string | undefined;
|
|
618
|
-
useBgSrc?: boolean | undefined;
|
|
619
|
-
useLogoSrc?: boolean | undefined;
|
|
620
|
-
variant?: AFormVariant | undefined;
|
|
621
|
-
version?: number | undefined;
|
|
622
|
-
};
|
|
609
|
+
export declare function createAForm(slides: AFormSlide[], furtherProps?: AFormBase): AForm;
|
|
623
610
|
|
|
624
611
|
export declare function createApi(options?: UseApiOptions): BTApi;
|
|
625
612
|
|
|
626
|
-
export declare function createASlide(fields: AFormField[], furtherProps
|
|
627
|
-
fields: AFormField[];
|
|
628
|
-
canDelete?: boolean | undefined;
|
|
629
|
-
canEdit?: boolean | undefined;
|
|
630
|
-
name?: string | undefined;
|
|
631
|
-
};
|
|
613
|
+
export declare function createASlide(fields: AFormField[], furtherProps: AFormSlideBase): AFormSlide;
|
|
632
614
|
|
|
633
615
|
export declare function createAssistant(options?: CreateAssistantOptions): BTAssistant;
|
|
634
616
|
|
package/package.json
CHANGED