@app-studio/web 0.7.12 → 0.7.14
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/components/Form/DatePicker/DatePicker/DatePicker.props.d.ts +2 -6
- package/dist/components/Text/Text/Text.props.d.ts +0 -4
- package/dist/components/index.d.ts +13 -12
- package/dist/web.cjs.development.js +5293 -5171
- package/dist/web.cjs.development.js.map +1 -1
- package/dist/web.cjs.production.min.js +1 -1
- package/dist/web.cjs.production.min.js.map +1 -1
- package/dist/web.esm.js +5295 -5174
- package/dist/web.esm.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import React, { CSSProperties } from 'react';
|
|
2
2
|
import { Elevation } from 'src/utils/elevation';
|
|
3
|
-
import { Shadow } from 'app-studio';
|
|
3
|
+
import { Shadow, ViewProps } from 'app-studio';
|
|
4
4
|
import { DatePickerStyles, Shape, Size, Variant } from './DatePicker.type';
|
|
5
|
-
export interface DatePickerProps {
|
|
5
|
+
export interface DatePickerProps extends Omit<ViewProps, 'size'> {
|
|
6
6
|
id?: string;
|
|
7
7
|
/**
|
|
8
8
|
* Custom icon to display when the DatePicker is checked.
|
|
@@ -64,10 +64,6 @@ export interface DatePickerProps {
|
|
|
64
64
|
* Adds a shadow effect to the DatePicker.
|
|
65
65
|
*/
|
|
66
66
|
shadow?: Shadow | Elevation | CSSProperties;
|
|
67
|
-
/**
|
|
68
|
-
* Other properties that can be passed to the component.
|
|
69
|
-
*/
|
|
70
|
-
[x: string]: any;
|
|
71
67
|
}
|
|
72
68
|
export interface DatePickerViewProps extends DatePickerProps {
|
|
73
69
|
/**
|
|
@@ -46,10 +46,6 @@ export interface TextProps extends Omit<TextAppProps, 'children' | 'style' | 'po
|
|
|
46
46
|
* Specifies the font weight of the text.
|
|
47
47
|
*/
|
|
48
48
|
weight?: TextWeights;
|
|
49
|
-
/**
|
|
50
|
-
* Additional properties for customization and extension.
|
|
51
|
-
*/
|
|
52
|
-
[x: string]: any;
|
|
53
49
|
}
|
|
54
50
|
export interface ContentProps {
|
|
55
51
|
/**
|
|
@@ -1,28 +1,29 @@
|
|
|
1
|
+
export * from './Alert/Alert';
|
|
2
|
+
export * from './AspectRatio/AspectRatio';
|
|
3
|
+
export * from './Avatar/Avatar';
|
|
4
|
+
export * from './Badge/Badge';
|
|
1
5
|
export * from './Button/Button';
|
|
2
|
-
export * from './
|
|
3
|
-
export * from './Form/CountryPicker/CountryPicker';
|
|
4
|
-
export * from './Form/DatePicker/DatePicker';
|
|
5
|
-
export * from './Form/Password/Password';
|
|
6
|
+
export * from './File/File';
|
|
6
7
|
export * from './Form/Select/Select';
|
|
7
8
|
export * from './Form/Switch/Switch';
|
|
8
9
|
export * from './Form/Switch/Switch';
|
|
9
10
|
export * from './Form/TextArea/TextArea';
|
|
10
11
|
export * from './Form/TextField/TextField';
|
|
11
|
-
export * from './
|
|
12
|
+
export * from './Form/Checkbox/Checkbox';
|
|
13
|
+
export * from './Form/CountryPicker/CountryPicker';
|
|
14
|
+
export * from './Form/DatePicker/DatePicker';
|
|
15
|
+
export * from './Form/Password/Password';
|
|
12
16
|
export * from './Formik';
|
|
17
|
+
export * from './Layout/Center/Center';
|
|
13
18
|
export * from './Layout/Horizontal/Horizontal';
|
|
14
19
|
export * from './Layout/Vertical/Vertical';
|
|
15
20
|
export * from './Layout/View/View';
|
|
16
21
|
export * from './Link/Link';
|
|
17
22
|
export * from './Loader/Loader';
|
|
23
|
+
export * from './Message/Message';
|
|
18
24
|
export * from './Modal/Modal';
|
|
19
|
-
export * from './
|
|
20
|
-
export * from './File/File';
|
|
25
|
+
export * from './Table/Table';
|
|
21
26
|
export * from './Tabs/Tabs';
|
|
22
|
-
export * from './
|
|
23
|
-
export * from './AspectRatio/AspectRatio';
|
|
24
|
-
export * from './Avatar/Avatar';
|
|
25
|
-
export * from './Badge/Badge';
|
|
27
|
+
export * from './Text/Text';
|
|
26
28
|
export * from './Toggle/Toggle';
|
|
27
29
|
export * from './ToggleGroup/ToggleGroup';
|
|
28
|
-
export * from './Message/Message';
|