gantri-components 1.91.1 → 1.92.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.
@@ -0,0 +1,3 @@
1
+ import { FC, PropsWithChildren } from 'react';
2
+ import { BreadcrumbsProps } from './breadcrumbs.types';
3
+ export declare const Breadcrumbs: FC<PropsWithChildren<BreadcrumbsProps>>;
@@ -0,0 +1,2 @@
1
+ import { BreadcrumbsProps } from './breadcrumbs.types';
2
+ export declare const BreadcrumbsPresets: Partial<BreadcrumbsProps>;
@@ -0,0 +1,5 @@
1
+ import { Property } from 'csstype';
2
+ export declare const StyledBreadcrumb: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
3
+ $gap?: Property.Gap<0 | (string & {})> | undefined;
4
+ $separator?: string | undefined;
5
+ }, never>;
@@ -0,0 +1,6 @@
1
+ import { Property } from 'csstype';
2
+ export interface BreadcrumbsProps {
3
+ 'aria-label'?: string;
4
+ gap?: Property.Gap;
5
+ separator?: string;
6
+ }
@@ -0,0 +1,3 @@
1
+ import { FC, PropsWithChildren } from 'react';
2
+ import { CircularProgressProps } from './circular-progress.types';
3
+ export declare const CircularProgress: FC<PropsWithChildren<CircularProgressProps>>;
@@ -0,0 +1,2 @@
1
+ import { CircularProgressProps } from './circular-progress.types';
2
+ export declare const CircularProgressPresets: Partial<CircularProgressProps>;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const StyledCircularProgressIcon: import("styled-components").StyledComponent<import("react").FC<import("../icon/icon.types").IconProps>, import("styled-components").DefaultTheme, {}, never>;
@@ -0,0 +1,4 @@
1
+ import { Property } from 'csstype';
2
+ export interface CircularProgressProps {
3
+ size?: Property.Height;
4
+ }
@@ -0,0 +1 @@
1
+ export * from './circular-progress';
@@ -0,0 +1 @@
1
+ export * from './linear-progress';
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ import { LinearProgressProps } from './linear-progress.types';
3
+ export declare const LinearProgress: FC<LinearProgressProps>;
@@ -0,0 +1,2 @@
1
+ import { LinearProgressProps } from './linear-progress.types';
2
+ export declare const LinearProgressPresets: Partial<LinearProgressProps>;
@@ -0,0 +1,7 @@
1
+ import { Property } from 'csstype';
2
+ export declare const StyledLinearProgressWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
3
+ $width?: Property.Width<0 | (string & {})> | undefined;
4
+ }, never>;
5
+ export declare const StyledLinearProgressContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
6
+ $percent: number;
7
+ }, never>;
@@ -0,0 +1,7 @@
1
+ import { Property } from 'csstype';
2
+ export interface LinearProgressProps {
3
+ current: number;
4
+ showText?: boolean;
5
+ total: number;
6
+ width?: Property.Width;
7
+ }