enwawa-ui 2.0.13 → 2.0.16
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/CHANGELOG.md +21 -0
- package/lib/index.d.ts +21 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.es.js +102 -70
- package/lib/index.es.js.map +1 -1
- package/lib/index.js +101 -69
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# (Fri Sep 22 2023)
|
|
2
2
|
|
|
3
|
+
## 2.0.15
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- ac0d1a7: adding empty case for rental quote page
|
|
8
|
+
- ac0d1a7: adding download link to upload component
|
|
9
|
+
- ac0d1a7: fixing styles on rental quote page
|
|
10
|
+
- ac0d1a7: info component in OrFormInlineItems as array too
|
|
11
|
+
- ac0d1a7: fixing extra info
|
|
12
|
+
- ac0d1a7: adding message below form in rental form
|
|
13
|
+
|
|
14
|
+
## 2.0.12
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 6ced34e: adding empty case for rental quote page
|
|
19
|
+
- f868b93: adding download link to upload component
|
|
20
|
+
- f868b93: fixing styles on rental quote page
|
|
21
|
+
- f868b93: info component in OrFormInlineItems as array too
|
|
22
|
+
- f868b93: fixing extra info
|
|
23
|
+
|
|
3
24
|
## 2.0.11
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
package/lib/index.d.ts
CHANGED
|
@@ -28,6 +28,7 @@ import { DefaultOptionType, LabeledValue } from "antd/es/select";
|
|
|
28
28
|
import { CheckboxChangeEvent } from "antd/es/checkbox";
|
|
29
29
|
import { RadioChangeEvent as _RadioChangeEvent1 } from "antd/es/radio";
|
|
30
30
|
import { SegmentedProps, SegmentedValue } from "antd/lib/segmented";
|
|
31
|
+
import { LinkProps } from "antd/es/typography/Link";
|
|
31
32
|
export interface AtAvatarProps {
|
|
32
33
|
/**
|
|
33
34
|
* This attribute defines the alternative text describing the image
|
|
@@ -2013,6 +2014,10 @@ export interface OrColProps {
|
|
|
2013
2014
|
* Custom class name
|
|
2014
2015
|
*/
|
|
2015
2016
|
className?: string;
|
|
2017
|
+
/**
|
|
2018
|
+
* Flex direction
|
|
2019
|
+
*/
|
|
2020
|
+
$flexDirection?: 'row' | 'row-reverse' | 'column' | 'column-reverse';
|
|
2016
2021
|
}
|
|
2017
2022
|
export const OrCol: React.FC<OrColProps>;
|
|
2018
2023
|
export interface OrCollapseProps {
|
|
@@ -4026,8 +4031,12 @@ export interface TmRentalsPageProps<FormType = any> {
|
|
|
4026
4031
|
* Background source
|
|
4027
4032
|
*/
|
|
4028
4033
|
$backgroundSrc?: string;
|
|
4034
|
+
/**
|
|
4035
|
+
* Disclaimer message
|
|
4036
|
+
*/
|
|
4037
|
+
disclaimerMessage?: React.ReactElement;
|
|
4029
4038
|
}
|
|
4030
|
-
export const TmRentalsPage: <FormType extends Store>({ formSteps, onValuesChange, currentFormStep, disabledButtons, showFormStepper, $backgroundSrc, }: TmRentalsPageProps<FormType>) => import("react/jsx-runtime").JSX.Element;
|
|
4039
|
+
export const TmRentalsPage: <FormType extends Store>({ formSteps, onValuesChange, currentFormStep, disabledButtons, showFormStepper, $backgroundSrc, disclaimerMessage, }: TmRentalsPageProps<FormType>) => import("react/jsx-runtime").JSX.Element;
|
|
4031
4040
|
export interface PaymentMethod {
|
|
4032
4041
|
value: string;
|
|
4033
4042
|
icon?: React.ReactNode;
|
|
@@ -4747,5 +4756,16 @@ export interface AtTitleProps {
|
|
|
4747
4756
|
className?: string;
|
|
4748
4757
|
}
|
|
4749
4758
|
export const AtTitle: React.FC<AtTitleProps>;
|
|
4759
|
+
export interface AtLinkProps extends LinkProps {
|
|
4760
|
+
/**
|
|
4761
|
+
* The href of the link
|
|
4762
|
+
*/
|
|
4763
|
+
href?: LinkProps['href'];
|
|
4764
|
+
/**
|
|
4765
|
+
* The target type of the link
|
|
4766
|
+
*/
|
|
4767
|
+
target?: LinkProps['target'];
|
|
4768
|
+
}
|
|
4769
|
+
export const AtLink: React.FC<AtLinkProps>;
|
|
4750
4770
|
|
|
4751
4771
|
//# sourceMappingURL=index.d.ts.map
|