From e67aa1f46310d1e7a0daacb5cb0d56ed6f216d6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Thu, 4 May 2023 13:11:48 +0300 Subject: [PATCH] Refactor #3918 - Galleria .d.ts updates --- components/lib/galleria/Galleria.d.ts | 53 ++++++++++++++++++++++++++- 1 file changed, 51 insertions(+), 2 deletions(-) diff --git a/components/lib/galleria/Galleria.d.ts b/components/lib/galleria/Galleria.d.ts index 35b3e636d..163e1b797 100755 --- a/components/lib/galleria/Galleria.d.ts +++ b/components/lib/galleria/Galleria.d.ts @@ -157,10 +157,59 @@ export interface GalleriaPassThroughAttributes { */ export interface GalleriaState { /** - * Current collapsed state as a boolean. + * Current container visible state as a boolean. * @defaultValue false */ - d_collapsed: boolean; + containerVisible: boolean; + /** + * Style id of the component. + */ + id: string; + /** + * Index of the first item as a number. + * @defaultValue 0 + */ + activeIndex: number; + /** + * Number of items per page as a number. + * @defaultValue 3 + */ + numVisible: number; + /** + * Current slide active state as a boolean. + * @defaultValue false + */ + slideShowActive: boolean; + /** + * Number of items per page as a number. + * @defaultValue 3 + */ + d_numVisible: number; + /** + * Old number of items per page as a number. + * @defaultValue 3 + */ + d_oldNumVisible: number; + /** + * Current active item index as a number. + * @defaultValue 0 + */ + d_activeIndex: number; + /** + * The previous active item index as a number. + * @defaultValue 0 + */ + d_oldActiveItemIndex: number; + /** + * Index of the first item. + * @defaultValue 0 + */ + page: number; + /** + * Total shifted items' count as a number. + * @defaultValue 0 + */ + totalShiftedItems: number; } /**