@jobber/components 3.5.5 → 3.5.6-pre.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/dist/Autocomplete/Autocomplete.d.ts +0 -1
- package/dist/Autocomplete/Menu.d.ts +0 -1
- package/dist/Avatar/Avatar.d.ts +0 -1
- package/dist/Card/CardHeader.d.ts +0 -1
- package/dist/Chips/Chip.d.ts +0 -1
- package/dist/Chips/Chips.d.ts +0 -1
- package/dist/Chips/InternalChip.d.ts +0 -1
- package/dist/Chips/InternalChipDismissible/InternalChipDismissible.d.ts +0 -1
- package/dist/Chips/InternalChipDismissible/InternalChipDismissibleInput.d.ts +0 -1
- package/dist/Chips/InternalChipMultiSelect.d.ts +0 -1
- package/dist/Chips/InternalChipSingleSelect.d.ts +0 -1
- package/dist/ConfirmationModal/ConfirmationModal.d.ts +1 -1
- package/dist/Countdown/Countdown.d.ts +0 -1
- package/dist/DataDump/DataDump.d.ts +0 -1
- package/dist/DataTable/Footer.d.ts +0 -1
- package/dist/DataTable/Header.d.ts +0 -1
- package/dist/DataTable/Pagination.d.ts +0 -1
- package/dist/DataTable/SortIcon.d.ts +0 -1
- package/dist/DatePicker/DatePickerCustomHeader.d.ts +0 -1
- package/dist/Divider/Divider.d.ts +0 -1
- package/dist/FormField/FormField.d.ts +0 -1
- package/dist/FormField/FormFieldDescription.d.ts +0 -1
- package/dist/FormField/FormFieldPostFix.d.ts +0 -1
- package/dist/FormatDate/FormatDate.d.ts +0 -1
- package/dist/FormatEmail/FormatEmail.d.ts +0 -1
- package/dist/FormatFile/FormatFileDeleteButton.d.ts +0 -1
- package/dist/FormatFile/InternalThumbnail.d.ts +0 -1
- package/dist/FormatRelativeDateTime/FormatRelativeDateTime.d.ts +0 -1
- package/dist/FormatTime/FormatTime.d.ts +0 -1
- package/dist/Gallery/Gallery.d.ts +0 -1
- package/dist/Icon/Icon.d.ts +0 -1
- package/dist/InputAvatar/InputAvatar.d.ts +0 -1
- package/dist/InputDate/InputDate.d.ts +0 -1
- package/dist/InputEmail/InputEmail.d.ts +0 -1
- package/dist/InputFile/InputFile.d.ts +0 -1
- package/dist/InputPassword/InputPassword.d.ts +0 -1
- package/dist/InputTime/InputTime.d.ts +0 -1
- package/dist/InputTime/InputTimeSafari.d.ts +0 -1
- package/dist/InputValidation/InputValidation.d.ts +0 -1
- package/dist/List/List.d.ts +0 -1
- package/dist/List/List.stories.d.ts +0 -1
- package/dist/Markdown/Markdown.d.ts +0 -1
- package/dist/Menu/Menu.stories.d.ts +0 -1
- package/dist/ProgressBar/ProgressBar.d.ts +0 -1
- package/dist/RecurringSelect/CurrentRecurrenceComponent.d.ts +0 -1
- package/dist/RecurringSelect/RecurringSelect.d.ts +0 -1
- package/dist/RecurringSelect/components/DayOfMonthSelect.d.ts +0 -1
- package/dist/RecurringSelect/components/MonthlyDayOfWeekSelect.d.ts +0 -1
- package/dist/RecurringSelect/components/MonthlySelect.d.ts +0 -1
- package/dist/RecurringSelect/components/WeeklySelect.d.ts +0 -1
- package/dist/Select/Select.d.ts +0 -1
- package/dist/Spinner/Spinner.d.ts +0 -1
- package/dist/StatusLabel/StatusLabel.d.ts +0 -1
- package/dist/Switch/Switch.d.ts +0 -1
- package/dist/Table/Cells/CellCurrency.d.ts +0 -1
- package/dist/Table/Cells/CellNumeric.d.ts +0 -1
- package/dist/Toast/Toast.d.ts +0 -1
- package/package.json +3 -3
package/dist/Avatar/Avatar.d.ts
CHANGED
package/dist/Chips/Chip.d.ts
CHANGED
package/dist/Chips/Chips.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { ChipMultiSelectProps } from "./ChipsTypes";
|
|
3
2
|
declare type InternalChipChoiceMultipleProps = Pick<ChipMultiSelectProps, "selected" | "onChange" | "children" | "onClick">;
|
|
4
3
|
export declare function InternalChipMultiSelect({ children, selected, onChange, onClick, }: InternalChipChoiceMultipleProps): JSX.Element;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { ChipSingleSelectProps } from "./ChipsTypes";
|
|
3
2
|
declare type InternalChipChoiceProps = Pick<ChipSingleSelectProps, "selected" | "onChange" | "children" | "onClick" | "name">;
|
|
4
3
|
export declare function InternalChipSingleSelect({ children, selected, name, onChange, onClick, }: InternalChipChoiceProps): JSX.Element;
|
|
@@ -74,5 +74,5 @@ interface StringMessage extends BaseConfirmationModalProps {
|
|
|
74
74
|
message: string;
|
|
75
75
|
children?: never;
|
|
76
76
|
}
|
|
77
|
-
export declare const ConfirmationModal: React.ForwardRefExoticComponent<(SimpleConfirmationModalProps & ChildrenMessage & React.RefAttributes<ConfirmationModalRef>) | (SimpleConfirmationModalProps & StringMessage & React.RefAttributes<ConfirmationModalRef>) | (
|
|
77
|
+
export declare const ConfirmationModal: React.ForwardRefExoticComponent<(SimpleConfirmationModalProps & ChildrenMessage & React.RefAttributes<ConfirmationModalRef>) | (SimpleConfirmationModalProps & StringMessage & React.RefAttributes<ConfirmationModalRef>) | (ComplexConfirmationModalProps & ChildrenMessage & React.RefAttributes<ConfirmationModalRef>) | (ComplexConfirmationModalProps & StringMessage & React.RefAttributes<ConfirmationModalRef>)>;
|
|
78
78
|
export {};
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { ReactDatePickerCustomHeaderProps } from "react-datepicker";
|
|
3
2
|
export declare function DatePickerCustomHeader({ monthDate, decreaseMonth, increaseMonth, prevMonthButtonDisabled, nextMonthButtonDisabled, }: ReactDatePickerCustomHeaderProps): JSX.Element;
|
package/dist/Icon/Icon.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { CommonFormFieldProps, FormFieldProps } from "../FormField";
|
|
3
2
|
interface InputDateProps extends CommonFormFieldProps, Pick<FormFieldProps, "readonly" | "disabled" | "onEnter" | "onFocus" | "inputRef" | "validations" | "placeholder" | "onChange" | "onBlur"> {
|
|
4
3
|
/**
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { CommonFormFieldProps, FormFieldProps } from "../FormField";
|
|
3
2
|
declare type InputEmailProps = CommonFormFieldProps & Pick<FormFieldProps, "maxLength" | "readonly" | "validations" | "defaultValue">;
|
|
4
3
|
export declare const validationMessage = "Please enter a valid email";
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { CommonFormFieldProps, FormFieldProps } from "../FormField";
|
|
3
2
|
interface InputPasswordProps extends CommonFormFieldProps, Pick<FormFieldProps, "autocomplete" | "onEnter" | "onFocus" | "onBlur" | "inputRef" | "validations" | "defaultValue"> {
|
|
4
3
|
value?: string;
|
package/dist/List/List.d.ts
CHANGED
package/dist/Select/Select.d.ts
CHANGED
package/dist/Switch/Switch.d.ts
CHANGED
package/dist/Toast/Toast.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jobber/components",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.6-pre.0+03511639",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"dist/*"
|
|
18
18
|
],
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@jobber/design": "^0.29.
|
|
20
|
+
"@jobber/design": "^0.29.4-pre.49+03511639",
|
|
21
21
|
"@jobber/formatters": "^0.2.1",
|
|
22
22
|
"@jobber/hooks": "^1.13.2",
|
|
23
23
|
"@popperjs/core": "^2.0.6",
|
|
@@ -83,5 +83,5 @@
|
|
|
83
83
|
"> 1%",
|
|
84
84
|
"IE 10"
|
|
85
85
|
],
|
|
86
|
-
"gitHead": "
|
|
86
|
+
"gitHead": "03511639f4c392a6a1cef792f26bce19bd95b4a6"
|
|
87
87
|
}
|