react-asc 25.18.0 → 25.19.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.
- package/index.d.ts +15 -16
- package/index.es.js +411 -2151
- package/index.js +396 -2136
- package/lib/components/AutoComplete/AutoComplete.d.ts +0 -1
- package/lib/components/Button/ButtonContext.d.ts +0 -1
- package/lib/components/Card/CardBody.d.ts +1 -1
- package/lib/components/Card/CardFooter.d.ts +1 -1
- package/lib/components/Card/CardImage.d.ts +1 -1
- package/lib/components/Card/CardSubtitle.d.ts +1 -1
- package/lib/components/Card/CardText.d.ts +1 -1
- package/lib/components/DatePicker/DatePicker.d.ts +0 -1
- package/lib/components/DateSelect/DateSelect.d.ts +0 -1
- package/lib/components/DateSelect/DaySelect.d.ts +0 -1
- package/lib/components/DateSelect/MonthSelect.d.ts +0 -1
- package/lib/components/DateSelect/YearSelect.d.ts +0 -1
- package/lib/components/Form/FormError.d.ts +0 -1
- package/lib/components/Form/FormHint/FormHint.d.ts +1 -1
- package/lib/components/Form/FormLabel/FormLabel.d.ts +1 -1
- package/lib/components/Form/form.interfaces.d.ts +0 -1
- package/lib/components/Form/form.models.d.ts +1 -1
- package/lib/components/Link/Link.d.ts +1 -1
- package/lib/components/List/ListItemAction.d.ts +1 -1
- package/lib/components/LoadingIndicator/LoadingIndicator.d.ts +1 -1
- package/lib/components/Menu/MenuDivider.d.ts +0 -1
- package/lib/components/Menu/MenuItem.d.ts +0 -1
- package/lib/components/NumberSelect/NumberSelect.d.ts +0 -1
- package/lib/components/Portal/Portal.d.ts +0 -1
- package/lib/components/SpeedDial/SpeedDialActions.d.ts +1 -1
- package/lib/components/Stepper/StepConnector/StepConnector.d.ts +0 -1
- package/lib/components/Stepper/StepperActions/StepperActions.d.ts +0 -1
- package/lib/components/Table/TableBody.d.ts +1 -1
- package/lib/components/Table/TableHead.d.ts +1 -1
- package/lib/components/Table/TableRow.d.ts +1 -1
- package/lib/components/TimeSelect/HourSelect.d.ts +0 -1
- package/lib/components/TimeSelect/MilliSecondSelect.d.ts +0 -1
- package/lib/components/TimeSelect/MinuteSelect.d.ts +0 -1
- package/lib/components/TimeSelect/SecondSelect.d.ts +0 -1
- package/lib/components/TimeSelect/TimeSelect.d.ts +0 -1
- package/lib/components/TreeView/TreeView.d.ts +1 -1
- package/lib/components/component.interfaces.d.ts +0 -1
- package/lib/hooks/useHover.d.ts +0 -1
- package/lib/icons/CaretDownSolidIcon.d.ts +0 -1
- package/lib/icons/CheckSolidIcon.d.ts +0 -1
- package/lib/icons/CheckSquareRegularIcon.d.ts +0 -1
- package/lib/icons/ChevronDownSolidIcon.d.ts +0 -1
- package/lib/icons/ChevronLeftSolidIcon.d.ts +0 -1
- package/lib/icons/ChevronRightSolidIcon.d.ts +0 -1
- package/lib/icons/ChevronUpSolidIcon.d.ts +0 -1
- package/lib/icons/CircleSolidIcon.d.ts +0 -1
- package/lib/icons/HomeSolidIcon.d.ts +0 -1
- package/lib/icons/PlusSolidIcon.d.ts +0 -1
- package/lib/icons/SpinnerSolidIcon.d.ts +0 -1
- package/lib/icons/SquareRegularIcon.d.ts +0 -1
- package/lib/icons/TimesCircleSolidIcon.d.ts +0 -1
- package/lib/icons/TimesSolidIcon.d.ts +0 -1
- package/package.json +7 -7
- package/readme.md +2 -2
package/index.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import React$1, { ReactNode, Component, ComponentProps, ReactElement } from 'react';
|
|
3
2
|
import { UnparseObject, ParseResult } from 'papaparse';
|
|
4
3
|
import { ConfigType, OpUnitType, ManipulateType } from 'dayjs';
|
|
@@ -154,20 +153,20 @@ interface ICardProps extends React$1.ComponentProps<'div'> {
|
|
|
154
153
|
}
|
|
155
154
|
declare const Card: (props: ICardProps) => JSX.Element;
|
|
156
155
|
|
|
157
|
-
declare const CardBody: (props: React$1.ComponentProps<
|
|
156
|
+
declare const CardBody: (props: React$1.ComponentProps<"div">) => JSX.Element;
|
|
158
157
|
|
|
159
|
-
declare const CardFooter: (props: React$1.ComponentProps<
|
|
158
|
+
declare const CardFooter: (props: React$1.ComponentProps<"div">) => JSX.Element;
|
|
160
159
|
|
|
161
|
-
declare const CardSubtitle: (props: React$1.ComponentProps<
|
|
160
|
+
declare const CardSubtitle: (props: React$1.ComponentProps<"div">) => JSX.Element;
|
|
162
161
|
|
|
163
|
-
declare const CardText: (props: React$1.ComponentProps<
|
|
162
|
+
declare const CardText: (props: React$1.ComponentProps<"p">) => JSX.Element;
|
|
164
163
|
|
|
165
164
|
interface ICardTitleProps extends React$1.ComponentProps<'div'> {
|
|
166
165
|
as?: any;
|
|
167
166
|
}
|
|
168
167
|
declare const CardTitle: (props: ICardTitleProps) => JSX.Element;
|
|
169
168
|
|
|
170
|
-
declare const CardImage: (props: React$1.ComponentProps<
|
|
169
|
+
declare const CardImage: (props: React$1.ComponentProps<"img">) => JSX.Element;
|
|
171
170
|
|
|
172
171
|
interface ICheckboxProps extends React$1.ComponentProps<'input'> {
|
|
173
172
|
label?: string;
|
|
@@ -315,7 +314,7 @@ declare class FormControl {
|
|
|
315
314
|
validators: string[];
|
|
316
315
|
type: IFormControlType;
|
|
317
316
|
config: IFormControlConfig;
|
|
318
|
-
constructor(value: any, validators: string[], type: IFormControlType, config: IFormControlConfig);
|
|
317
|
+
constructor(value: any, validators: string[] | undefined, type: IFormControlType, config: IFormControlConfig);
|
|
319
318
|
errors: IFormInputError[];
|
|
320
319
|
isValid: boolean;
|
|
321
320
|
isDirty: boolean;
|
|
@@ -410,7 +409,7 @@ interface IFormGroupProps {
|
|
|
410
409
|
}
|
|
411
410
|
declare const FormGroup: (props: IFormGroupProps) => JSX.Element;
|
|
412
411
|
|
|
413
|
-
declare const FormHint: (props: React$1.ComponentProps<
|
|
412
|
+
declare const FormHint: (props: React$1.ComponentProps<"small">) => JSX.Element;
|
|
414
413
|
|
|
415
414
|
interface IFormInputEvent {
|
|
416
415
|
value: any;
|
|
@@ -439,7 +438,7 @@ interface IFormInputProps {
|
|
|
439
438
|
}
|
|
440
439
|
declare const FormInput: (props: IFormInputProps) => JSX.Element;
|
|
441
440
|
|
|
442
|
-
declare const FormLabel: ({ children, className, htmlFor, ...rest }: React$1.ComponentProps<
|
|
441
|
+
declare const FormLabel: ({ children, className, htmlFor, ...rest }: React$1.ComponentProps<"label">) => JSX.Element;
|
|
443
442
|
|
|
444
443
|
declare const EmailValidator: (value: string) => boolean;
|
|
445
444
|
|
|
@@ -481,7 +480,7 @@ interface IIconButtonProps extends React$1.ComponentProps<'button'> {
|
|
|
481
480
|
}
|
|
482
481
|
declare const IconButton: (props: IIconButtonProps) => JSX.Element;
|
|
483
482
|
|
|
484
|
-
declare const Link: (props: React$1.ComponentProps<
|
|
483
|
+
declare const Link: (props: React$1.ComponentProps<"a">) => JSX.Element;
|
|
485
484
|
|
|
486
485
|
interface IListProps extends React$1.ComponentProps<'ul'> {
|
|
487
486
|
isFlush?: boolean;
|
|
@@ -514,7 +513,7 @@ interface IListItemIconProps extends React$1.ComponentProps<'div'> {
|
|
|
514
513
|
}
|
|
515
514
|
declare const ListItemIcon: ({ icon, ...rest }: IListItemIconProps) => JSX.Element;
|
|
516
515
|
|
|
517
|
-
declare const ListItemAction: ({ children, onClick, ...rest }: React$1.ComponentProps<
|
|
516
|
+
declare const ListItemAction: ({ children, onClick, ...rest }: React$1.ComponentProps<"div">) => JSX.Element;
|
|
518
517
|
|
|
519
518
|
interface IListItemTextProps extends React$1.ComponentProps<'div'> {
|
|
520
519
|
primary: ReactNode;
|
|
@@ -522,7 +521,7 @@ interface IListItemTextProps extends React$1.ComponentProps<'div'> {
|
|
|
522
521
|
}
|
|
523
522
|
declare const ListItemText: ({ primary, secondary, ...rest }: IListItemTextProps) => JSX.Element;
|
|
524
523
|
|
|
525
|
-
declare const LoadingIndicator: ({ ...rest }: React$1.ComponentProps<
|
|
524
|
+
declare const LoadingIndicator: ({ ...rest }: React$1.ComponentProps<"div">) => JSX.Element;
|
|
526
525
|
|
|
527
526
|
interface ILoadingIndicatorContainerProps {
|
|
528
527
|
children: React$1.ReactNode;
|
|
@@ -849,11 +848,11 @@ interface ITableProps extends React$1.ComponentProps<'table'> {
|
|
|
849
848
|
}
|
|
850
849
|
declare const Table: (props: ITableProps) => JSX.Element;
|
|
851
850
|
|
|
852
|
-
declare const TableRow: (props: React$1.ComponentProps<
|
|
851
|
+
declare const TableRow: (props: React$1.ComponentProps<"tr">) => JSX.Element;
|
|
853
852
|
|
|
854
|
-
declare const TableHead: (props: React$1.ComponentProps<
|
|
853
|
+
declare const TableHead: (props: React$1.ComponentProps<"thead">) => JSX.Element;
|
|
855
854
|
|
|
856
|
-
declare const TableBody: (props: React$1.ComponentProps<
|
|
855
|
+
declare const TableBody: (props: React$1.ComponentProps<"tbody">) => JSX.Element;
|
|
857
856
|
|
|
858
857
|
interface ITableCellProps extends React$1.ComponentProps<'th'>, React$1.ComponentProps<'td'> {
|
|
859
858
|
component?: 'th';
|
|
@@ -971,7 +970,7 @@ interface ITooltipProps extends React$1.ComponentProps<'div'> {
|
|
|
971
970
|
}
|
|
972
971
|
declare const Tooltip: (props: ITooltipProps) => JSX.Element;
|
|
973
972
|
|
|
974
|
-
declare const TreeView: (props: React$1.ComponentProps<
|
|
973
|
+
declare const TreeView: (props: React$1.ComponentProps<"ul">) => JSX.Element;
|
|
975
974
|
|
|
976
975
|
interface ITreeItemProps extends React$1.DetailedHTMLProps<React$1.InputHTMLAttributes<HTMLLIElement>, HTMLLIElement> {
|
|
977
976
|
nodeId?: string;
|