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 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
@@ -1309,7 +1309,7 @@
1309
1309
  id: "accordionDemo",
1310
1310
  items: [{
1311
1311
  header: "Item 1",
1312
- onRender: function(el) {
1312
+ onRenderBody: function(el) {
1313
1313
  el.innerHTML = "This is the content for item 1.";
1314
1314
  },
1315
1315
  showFl: true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gd-bs",
3
- "version": "6.6.93",
3
+ "version": "6.6.95",
4
4
  "description": "Bootstrap JavaScript, TypeScript and Web Components library.",
5
5
  "main": "build/index.js",
6
6
  "typings": "src/index.d.ts",
@@ -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> {