pesona-ui 0.1.8 → 0.1.10
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 +13 -24
- package/dist/pesona-ui.cjs.js +53 -5
- package/dist/pesona-ui.css +7 -1
- package/dist/pesona-ui.es.js +9817 -2164
- package/package.json +3 -1
package/dist/index.d.ts
CHANGED
|
@@ -102,17 +102,6 @@ declare interface CardProps extends default_2.HTMLAttributes<HTMLDivElement> {
|
|
|
102
102
|
|
|
103
103
|
export declare const Checkbox: default_2.ForwardRefExoticComponent<CheckboxProps & default_2.RefAttributes<HTMLInputElement>>;
|
|
104
104
|
|
|
105
|
-
export declare const CheckboxAgreement: default_2.ForwardRefExoticComponent<CheckboxAgreementProps & default_2.RefAttributes<HTMLInputElement>>;
|
|
106
|
-
|
|
107
|
-
declare interface CheckboxAgreementProps extends default_2.InputHTMLAttributes<HTMLInputElement> {
|
|
108
|
-
name: string | undefined;
|
|
109
|
-
label?: string;
|
|
110
|
-
required?: boolean;
|
|
111
|
-
error?: string | undefined;
|
|
112
|
-
checked?: boolean;
|
|
113
|
-
onChange: (event: default_2.ChangeEvent<HTMLInputElement>) => void;
|
|
114
|
-
}
|
|
115
|
-
|
|
116
105
|
declare interface CheckboxProps extends default_2.InputHTMLAttributes<HTMLInputElement> {
|
|
117
106
|
name: string | undefined;
|
|
118
107
|
label?: string;
|
|
@@ -331,19 +320,6 @@ declare interface InputTextAreaProps extends default_2.TextareaHTMLAttributes<HT
|
|
|
331
320
|
|
|
332
321
|
export declare const InputWithAction: default_2.ForwardRefExoticComponent<Omit<InputProps_2, "ref"> & default_2.RefAttributes<HTMLInputElement>>;
|
|
333
322
|
|
|
334
|
-
export declare const InputWysiwyg: default_2.ForwardRefExoticComponent<InputWysiwygProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
335
|
-
|
|
336
|
-
declare interface InputWysiwygProps {
|
|
337
|
-
name: string;
|
|
338
|
-
label: string;
|
|
339
|
-
message?: string;
|
|
340
|
-
floatingLabel?: boolean;
|
|
341
|
-
error?: string;
|
|
342
|
-
value?: string;
|
|
343
|
-
required?: boolean;
|
|
344
|
-
onChange?: (event: default_2.ChangeEvent<HTMLDivElement>) => void;
|
|
345
|
-
}
|
|
346
|
-
|
|
347
323
|
export declare const LinearProgress: default_2.FC<LinearProgressProps>;
|
|
348
324
|
|
|
349
325
|
declare interface LinearProgressProps {
|
|
@@ -419,6 +395,17 @@ declare interface PopoverProps {
|
|
|
419
395
|
text: string;
|
|
420
396
|
}
|
|
421
397
|
|
|
398
|
+
declare type Props = {
|
|
399
|
+
name: string;
|
|
400
|
+
label: string;
|
|
401
|
+
message?: string;
|
|
402
|
+
required?: boolean;
|
|
403
|
+
value: string;
|
|
404
|
+
error?: string | undefined;
|
|
405
|
+
onChange: (val: string) => void;
|
|
406
|
+
minimizeToolbar?: boolean;
|
|
407
|
+
};
|
|
408
|
+
|
|
422
409
|
export declare const Radio: default_2.ForwardRefExoticComponent<Omit<RadioProps, "ref"> & default_2.RefAttributes<HTMLInputElement>>;
|
|
423
410
|
|
|
424
411
|
export declare const RadioButtonGroup: default_2.ForwardRefExoticComponent<RadioButtonGroupProps & default_2.RefAttributes<HTMLInputElement>>;
|
|
@@ -443,6 +430,8 @@ declare interface RadioProps extends HTMLProps<HTMLInputElement> {
|
|
|
443
430
|
error?: string | undefined;
|
|
444
431
|
}
|
|
445
432
|
|
|
433
|
+
export declare const ReactQuillEditor: default_2.FC<Props>;
|
|
434
|
+
|
|
446
435
|
export declare const Select: default_2.ForwardRefExoticComponent<SelectProps & default_2.RefAttributes<HTMLSelectElement>>;
|
|
447
436
|
|
|
448
437
|
export declare const SelectMultiple: default_2.ForwardRefExoticComponent<SelectMultipleProps & default_2.RefAttributes<HTMLDivElement>>;
|