gd-bs 5.7.8 → 5.7.9
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
|
|
package/package.json
CHANGED
|
@@ -88,6 +88,9 @@ export interface IOffcanvas {
|
|
|
88
88
|
/** Updates the auto close flag. */
|
|
89
89
|
setAutoClose: (value: boolean) => void;
|
|
90
90
|
|
|
91
|
+
/** Updates the size. */
|
|
92
|
+
setSize: (canvasSize: number) => void;
|
|
93
|
+
|
|
91
94
|
/** Updates the type. */
|
|
92
95
|
setType: (canvasType: number) => void;
|
|
93
96
|
|