gd-bs 6.6.93 → 6.6.95
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/gd-bs.d.ts +2 -2
- package/index.html +1 -1
- package/package.json +1 -1
- package/src/components/floating-ui/types.d.ts +2 -2
package/dist/gd-bs.d.ts
CHANGED
|
@@ -3189,14 +3189,14 @@ declare module 'gd-bs/components/floating-ui/types' {
|
|
|
3189
3189
|
arrow?: boolean;
|
|
3190
3190
|
autoPlacement?: boolean | any;
|
|
3191
3191
|
className?: string;
|
|
3192
|
-
content?: string;
|
|
3192
|
+
content?: string | Element;
|
|
3193
3193
|
flip?: boolean | any;
|
|
3194
3194
|
hide?: boolean | any;
|
|
3195
3195
|
inline?: boolean | any;
|
|
3196
3196
|
offset?: number | any;
|
|
3197
3197
|
shift?: boolean | any;
|
|
3198
3198
|
size?: boolean | any;
|
|
3199
|
-
trigger?: 'click' | 'focus' | 'mouse';
|
|
3199
|
+
trigger?: '' | 'click' | 'focus' | 'mouse';
|
|
3200
3200
|
}
|
|
3201
3201
|
|
|
3202
3202
|
export interface IFloatingUIProps extends IBaseProps<IFloatingUI> {
|
package/index.html
CHANGED
package/package.json
CHANGED
|
@@ -16,14 +16,14 @@ export interface IFloatingUIOptions {
|
|
|
16
16
|
arrow?: boolean;
|
|
17
17
|
autoPlacement?: boolean | any;
|
|
18
18
|
className?: string;
|
|
19
|
-
content?: string;
|
|
19
|
+
content?: string | Element;
|
|
20
20
|
flip?: boolean | any;
|
|
21
21
|
hide?: boolean | any;
|
|
22
22
|
inline?: boolean | any;
|
|
23
23
|
offset?: number | any;
|
|
24
24
|
shift?: boolean | any;
|
|
25
25
|
size?: boolean | any;
|
|
26
|
-
trigger?: 'click' | 'focus' | 'mouse';
|
|
26
|
+
trigger?: '' | 'click' | 'focus' | 'mouse';
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
export interface IFloatingUIProps extends IBaseProps<IFloatingUI> {
|