chayns-api 1.1.15 → 1.1.16
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.
|
@@ -626,16 +626,16 @@ export declare enum FloatingButtonAnimation {
|
|
|
626
626
|
}
|
|
627
627
|
export interface FloatingButton {
|
|
628
628
|
isEnabled: boolean;
|
|
629
|
-
position
|
|
630
|
-
zIndex
|
|
631
|
-
badge
|
|
632
|
-
textSize
|
|
633
|
-
color
|
|
634
|
-
colorText
|
|
635
|
-
icon
|
|
636
|
-
text
|
|
637
|
-
rotateIcon
|
|
638
|
-
items
|
|
629
|
+
position?: FloatingButtonPosition;
|
|
630
|
+
zIndex?: number;
|
|
631
|
+
badge?: string;
|
|
632
|
+
textSize?: number;
|
|
633
|
+
color?: string;
|
|
634
|
+
colorText?: string;
|
|
635
|
+
icon?: string;
|
|
636
|
+
text?: string;
|
|
637
|
+
rotateIcon?: boolean;
|
|
638
|
+
items?: {
|
|
639
639
|
onClick?: () => Promise<void>;
|
|
640
640
|
text: string;
|
|
641
641
|
icon: string;
|