@clasing/ui 0.0.47 → 0.0.49
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/index.d.ts +0 -13
- package/dist/index.es.js +1047 -5711
- package/dist/index.umd.js +10 -18
- package/dist/style.css +1 -1
- package/package.json +1 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { ClassProp } from 'class-variance-authority/types';
|
|
2
|
-
import { default as default_2 } from 'react';
|
|
3
2
|
import { JSX as JSX_2 } from 'react/jsx-runtime';
|
|
4
3
|
import * as TablerIcons from '@tabler/icons-react';
|
|
5
4
|
import { VariantProps } from 'class-variance-authority';
|
|
@@ -81,14 +80,6 @@ declare interface IIconComponentProps {
|
|
|
81
80
|
className?: string;
|
|
82
81
|
}
|
|
83
82
|
|
|
84
|
-
declare interface IPopoverProps {
|
|
85
|
-
children: default_2.ReactNode;
|
|
86
|
-
trigger: JSX.Element;
|
|
87
|
-
open?: boolean;
|
|
88
|
-
placement?: PopoverPlacement;
|
|
89
|
-
closeOnAction?: boolean;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
83
|
declare interface IProgressBarProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'children'>, VariantProps<typeof progressBarStyles> {
|
|
93
84
|
progress: number;
|
|
94
85
|
}
|
|
@@ -102,10 +93,6 @@ declare interface ITextProps extends React.HTMLAttributes<HTMLSpanElement>, Vari
|
|
|
102
93
|
className?: string;
|
|
103
94
|
}
|
|
104
95
|
|
|
105
|
-
export declare const Popover: ({ children, trigger, open, placement, closeOnAction, }: IPopoverProps) => JSX_2.Element;
|
|
106
|
-
|
|
107
|
-
declare type PopoverPlacement = 'top' | 'bottom' | 'left' | 'right' | 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left';
|
|
108
|
-
|
|
109
96
|
export declare const ProgressBar: ({ progress, className, intent, size, rounded, ...props }: IProgressBarProps) => JSX_2.Element;
|
|
110
97
|
|
|
111
98
|
declare const progressBarStyles: (props?: ({
|