@clasing/ui 0.0.61-beta.1 → 0.0.61-beta.2
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 +12 -0
- package/dist/index.es.js +22344 -3109
- package/dist/index.umd.js +191 -46
- package/dist/style.css +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -119,6 +119,14 @@ declare interface InputProps extends React.InputHTMLAttributes<HTMLInputElement>
|
|
|
119
119
|
} | TablerIconName;
|
|
120
120
|
}
|
|
121
121
|
|
|
122
|
+
declare interface IPopoverProps {
|
|
123
|
+
children: default_2.ReactNode;
|
|
124
|
+
trigger: JSX.Element;
|
|
125
|
+
open?: boolean;
|
|
126
|
+
placement?: PopoverPlacement;
|
|
127
|
+
closeOnAction?: boolean;
|
|
128
|
+
}
|
|
129
|
+
|
|
122
130
|
declare interface IProgressBarProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'children'>, VariantProps<typeof progressBarStyles> {
|
|
123
131
|
progress: number;
|
|
124
132
|
}
|
|
@@ -141,6 +149,10 @@ declare interface ModalProps {
|
|
|
141
149
|
setIsOpen: React.Dispatch<React.SetStateAction<boolean>>;
|
|
142
150
|
}
|
|
143
151
|
|
|
152
|
+
export declare const Popover: ({ children, trigger, open, placement, closeOnAction, }: IPopoverProps) => JSX_2.Element;
|
|
153
|
+
|
|
154
|
+
declare type PopoverPlacement = 'top' | 'bottom' | 'left' | 'right' | 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left';
|
|
155
|
+
|
|
144
156
|
export declare const ProgressBar: ({ progress, className, intent, size, rounded, ...props }: IProgressBarProps) => JSX_2.Element;
|
|
145
157
|
|
|
146
158
|
declare const progressBarStyles: (props?: ({
|