gd-bs 5.7.7 → 5.8.0

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
@@ -2223,6 +2223,9 @@ declare module 'gd-bs/components/offcanvas/types' {
2223
2223
  /** Updates the auto close flag. */
2224
2224
  setAutoClose: (value: boolean) => void;
2225
2225
 
2226
+ /** Updates the size. */
2227
+ setSize: (canvasSize: number) => void;
2228
+
2226
2229
  /** Updates the type. */
2227
2230
  setType: (canvasType: number) => void;
2228
2231
 
@@ -2243,6 +2246,7 @@ declare module 'gd-bs/components/offcanvas/types' {
2243
2246
  onRenderBody?: (el?: HTMLDivElement, props?: IOffcanvasProps) => void;
2244
2247
  onRenderHeader?: (el?: HTMLDivElement, props?: IOffcanvasProps) => void;
2245
2248
  options?: IOffcanvasOptions;
2249
+ size?: number;
2246
2250
  title?: string | T;
2247
2251
  type?: number;
2248
2252
  }
@@ -2270,6 +2274,22 @@ declare module 'gd-bs/components/offcanvas/types' {
2270
2274
  visible?: boolean;
2271
2275
  }
2272
2276
 
2277
+ /**
2278
+ * Offcanvas Size
2279
+ */
2280
+ export type IOffcanvasSize = {
2281
+ Small1: number;
2282
+ Small2: number;
2283
+ Small3: number;
2284
+ Medium1: number;
2285
+ Medium2: number;
2286
+ Medium3: number;
2287
+ Large1: number;
2288
+ Large2: number;
2289
+ Large3: number;
2290
+ Full: number;
2291
+ }
2292
+
2273
2293
  /**
2274
2294
  * Offcanvas Types
2275
2295
  */
@@ -2277,6 +2297,7 @@ declare module 'gd-bs/components/offcanvas/types' {
2277
2297
  Bottom: number;
2278
2298
  End: number;
2279
2299
  Start: number;
2300
+ Top: number;
2280
2301
  }
2281
2302
  }
2282
2303