@cagatayfdn/flora-components 0.0.41 → 0.0.43
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.cjs.js +35 -35
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +19 -0
- package/dist/index.es.js +5625 -5533
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +32 -32
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1261,6 +1261,20 @@ declare type TabProps = {
|
|
|
1261
1261
|
selected: number;
|
|
1262
1262
|
};
|
|
1263
1263
|
|
|
1264
|
+
export declare const Textarea: React_2.ForwardRefExoticComponent<{
|
|
1265
|
+
id?: string | undefined;
|
|
1266
|
+
className?: string | undefined;
|
|
1267
|
+
wrapperClassName?: string | undefined;
|
|
1268
|
+
rows?: number | undefined;
|
|
1269
|
+
maxLength?: number | undefined;
|
|
1270
|
+
value?: any;
|
|
1271
|
+
size?: Size | undefined;
|
|
1272
|
+
readOnly?: boolean | undefined;
|
|
1273
|
+
appearance?: FormFieldAppearance | undefined;
|
|
1274
|
+
onChange?: ((value: any) => void) | undefined;
|
|
1275
|
+
required?: boolean | undefined;
|
|
1276
|
+
} & Omit<FormElementProps, "value"> & Omit<EventProps<HTMLTextAreaElement>, "onMouseDown" | "onMouseUp" | "onMouseEnter" | "onMouseLeave" | "readOnly"> & React_2.RefAttributes<HTMLTextAreaElement>>;
|
|
1277
|
+
|
|
1264
1278
|
export declare enum ThemeAppearance {
|
|
1265
1279
|
LIGHT = "light",
|
|
1266
1280
|
DARK = "dark",
|
|
@@ -1287,6 +1301,11 @@ declare type TypographyTextProps = {
|
|
|
1287
1301
|
children: string;
|
|
1288
1302
|
id?: string;
|
|
1289
1303
|
copyable?: boolean;
|
|
1304
|
+
notificationProps?: {
|
|
1305
|
+
type: NotificationAppearanceType;
|
|
1306
|
+
message: string;
|
|
1307
|
+
closeTime: number;
|
|
1308
|
+
} | null;
|
|
1290
1309
|
className?: string;
|
|
1291
1310
|
ellipsis?: boolean;
|
|
1292
1311
|
href?: string;
|