@ansible/ansible-ui-framework 2.4.202 → 2.4.204

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ import { ReactNode } from 'react';
2
+ export declare function PageCarousel(props: {
3
+ children: ReactNode;
4
+ carouselId: string;
5
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,9 @@
1
+ import { ReactNode } from 'react';
2
+ type PageCarouselCardPageProps = {
3
+ carouselId: string;
4
+ children: ReactNode;
5
+ visibleCardsPerPage: number;
6
+ pageIndex: number;
7
+ };
8
+ export declare function PageCarouselCardPage(props: PageCarouselCardPageProps): import("react/jsx-runtime").JSX.Element;
9
+ export {};
@@ -0,0 +1,5 @@
1
+ export declare function PageCarouselNav(props: {
2
+ setPage: (value: number) => void;
3
+ currentPage: number;
4
+ totalPages: number;
5
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,8 @@
1
+ import { PageDashboardCardWidth } from './PageDashboardCard';
2
+ import { ReactNode } from 'react';
3
+ export declare function PageDashboardCarousel(props: {
4
+ title: string;
5
+ linkText?: string;
6
+ width?: PageDashboardCardWidth;
7
+ children: ReactNode;
8
+ }): import("react/jsx-runtime").JSX.Element;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ansible/ansible-ui-framework",
3
3
  "description": "A framework for building applications using PatternFly.",
4
- "version": "2.4.202",
4
+ "version": "2.4.204",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
7
7
  "type": "git",