gd-bs 5.7.5 → 5.7.8

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.
Files changed (39) hide show
  1. package/build/bs.js +1 -1
  2. package/build/components/checkboxGroup/index.js +1 -12
  3. package/build/components/checkboxGroup/item.js +3 -0
  4. package/build/components/checkboxGroup/templates.js +1 -1
  5. package/build/components/form/control.js +6 -0
  6. package/build/components/offcanvas/index.js +55 -7
  7. package/build/components/popover/index.js +1 -1
  8. package/build/components/tooltip/index.js +1 -1
  9. package/build/index-icons.js +1 -1
  10. package/build/index.js +1 -1
  11. package/clean.js +0 -9
  12. package/dist/gd-bs-icons.js +642 -37
  13. package/dist/gd-bs-icons.min.js +1 -2
  14. package/dist/gd-bs.d.ts +20 -0
  15. package/dist/gd-bs.js +675 -19
  16. package/dist/gd-bs.min.js +1 -2
  17. package/index.html +4 -1
  18. package/package.json +5 -5
  19. package/pnpm-lock.yaml +1 -1
  20. package/post-build.js +0 -6
  21. package/src/bs.scss +30 -0
  22. package/src/components/checkboxGroup/index.ts +1 -12
  23. package/src/components/checkboxGroup/item.ts +4 -0
  24. package/src/components/checkboxGroup/templates.ts +2 -2
  25. package/src/components/form/control.ts +6 -0
  26. package/src/components/form/controlTypes.d.ts +2 -0
  27. package/src/components/offcanvas/index.ts +56 -7
  28. package/src/components/offcanvas/types.d.ts +18 -0
  29. package/src/components/popover/index.ts +2 -2
  30. package/src/components/tooltip/index.ts +2 -2
  31. package/src/index-icons.ts +1 -1
  32. package/src/index.ts +1 -1
  33. package/build/tippy.js +0 -2
  34. package/dist/gd-bs-icons.min.js.LICENSE.txt +0 -5
  35. package/dist/gd-bs.min.js.LICENSE.txt +0 -1
  36. package/pre-build.js +0 -30
  37. package/src/tippy.js/index.ts +0 -15
  38. package/src/tippy.js/popper.js +0 -1991
  39. package/src/tippy.js/tippy.js +0 -2497
package/dist/gd-bs.d.ts CHANGED
@@ -1189,6 +1189,7 @@ declare module 'gd-bs/components/form/controlTypes' {
1189
1189
  onControlRendering?: (control: IFormControlPropsCheckbox) => void | PromiseLike<IFormControlPropsCheckbox>;
1190
1190
  onGetValue?: (control: IFormControlPropsCheckbox) => any;
1191
1191
  onValidate?: (control: IFormControlPropsCheckbox, value: IFormControlValidationResult) => boolean | IFormControlValidationResult;
1192
+ renderRow?: boolean;
1192
1193
  }
1193
1194
 
1194
1195
  /**
@@ -1228,6 +1229,7 @@ declare module 'gd-bs/components/form/controlTypes' {
1228
1229
  onControlRendering?: (control: IFormControlPropsCheckbox) => void | PromiseLike<IFormControlPropsCheckbox>;
1229
1230
  onGetValue?: (control: IFormControlPropsCheckbox) => any;
1230
1231
  onValidate?: (control: IFormControlPropsCheckbox, value: IFormControlValidationResult) => boolean | IFormControlValidationResult;
1232
+ renderRow?: boolean;
1231
1233
  }
1232
1234
 
1233
1235
  /**
@@ -2241,6 +2243,7 @@ declare module 'gd-bs/components/offcanvas/types' {
2241
2243
  onRenderBody?: (el?: HTMLDivElement, props?: IOffcanvasProps) => void;
2242
2244
  onRenderHeader?: (el?: HTMLDivElement, props?: IOffcanvasProps) => void;
2243
2245
  options?: IOffcanvasOptions;
2246
+ size?: number;
2244
2247
  title?: string | T;
2245
2248
  type?: number;
2246
2249
  }
@@ -2268,6 +2271,22 @@ declare module 'gd-bs/components/offcanvas/types' {
2268
2271
  visible?: boolean;
2269
2272
  }
2270
2273
 
2274
+ /**
2275
+ * Offcanvas Size
2276
+ */
2277
+ export type IOffcanvasSize = {
2278
+ Small1: number;
2279
+ Small2: number;
2280
+ Small3: number;
2281
+ Medium1: number;
2282
+ Medium2: number;
2283
+ Medium3: number;
2284
+ Large1: number;
2285
+ Large2: number;
2286
+ Large3: number;
2287
+ Full: number;
2288
+ }
2289
+
2271
2290
  /**
2272
2291
  * Offcanvas Types
2273
2292
  */
@@ -2275,6 +2294,7 @@ declare module 'gd-bs/components/offcanvas/types' {
2275
2294
  Bottom: number;
2276
2295
  End: number;
2277
2296
  Start: number;
2297
+ Top: number;
2278
2298
  }
2279
2299
  }
2280
2300