@app-studio/web 0.8.49 → 0.8.52
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/File/File.d.ts +4 -3
- package/dist/components/Form/CountryPicker/CountryPicker/CountryPicker.props.d.ts +1 -1
- package/dist/components/Form/CountryPicker/CountryPicker/CountryPicker.view.d.ts +2 -2
- package/dist/components/Icon/Icon.d.ts +1 -2
- package/dist/components/index.d.ts +27 -0
- package/dist/web.cjs.development.js.map +1 -1
- package/dist/web.cjs.production.min.js.map +1 -1
- package/dist/web.esm.js.map +1 -1
- package/dist/web.umd.development.js.map +1 -1
- package/dist/web.umd.production.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { ViewProps, ImageProps } from 'app-studio';
|
|
3
|
-
export declare
|
|
3
|
+
export declare type FileProps = {
|
|
4
4
|
src: string;
|
|
5
|
-
color?: string
|
|
6
|
-
} & ViewProps
|
|
5
|
+
color?: string;
|
|
6
|
+
} & ViewProps;
|
|
7
|
+
export declare const FileSVG: ({ src, color, ...props }: FileProps) => React.JSX.Element;
|
|
7
8
|
export declare const FileImage: ({ path, ...props }: {
|
|
8
9
|
path: string;
|
|
9
10
|
} & ImageProps) => React.JSX.Element;
|
|
@@ -34,7 +34,7 @@ export interface CountryPickerViewProps extends CountryPickerProps {
|
|
|
34
34
|
newOptions?: Array<Country>;
|
|
35
35
|
setNewOptions?: (newOptions: Array<Country>) => void;
|
|
36
36
|
}
|
|
37
|
-
export interface
|
|
37
|
+
export interface CountryPickerDropDownProps extends Omit<InputProps, 'size'> {
|
|
38
38
|
size?: Size;
|
|
39
39
|
callback?: Function;
|
|
40
40
|
options: Array<Country>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { CountryPickerViewProps, DropDownItemProps,
|
|
2
|
+
import { CountryPickerViewProps, DropDownItemProps, CountryPickerDropDownProps } from './CountryPicker.props';
|
|
3
3
|
export declare const DropDownItem: React.FC<DropDownItemProps>;
|
|
4
|
-
export declare const DropDown: React.FC<
|
|
4
|
+
export declare const DropDown: React.FC<CountryPickerDropDownProps>;
|
|
5
5
|
declare const CountryPickerView: React.FC<CountryPickerViewProps>;
|
|
6
6
|
export default CountryPickerView;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ViewProps } from 'app-studio';
|
|
2
2
|
import React from 'react';
|
|
3
|
-
interface IconProps extends Omit<ViewProps, 'size'> {
|
|
3
|
+
export interface IconProps extends Omit<ViewProps, 'size'> {
|
|
4
4
|
size?: number;
|
|
5
5
|
color?: string;
|
|
6
6
|
filled?: boolean;
|
|
@@ -60,4 +60,3 @@ export declare const BoldArrowIcon: React.FC<IconProps>;
|
|
|
60
60
|
export declare const ArrowIcon: React.FC<IconProps>;
|
|
61
61
|
export declare const SpinnerIcon: React.FC<IconProps>;
|
|
62
62
|
export declare const CalendarIcon: React.FC<IconProps>;
|
|
63
|
-
export {};
|
|
@@ -30,3 +30,30 @@ export * from './Icon/Icon';
|
|
|
30
30
|
export * as Icon from './Icon/Icon';
|
|
31
31
|
export * from './Toggle/Toggle';
|
|
32
32
|
export * from './ToggleGroup/ToggleGroup';
|
|
33
|
+
export * from './Alert/Alert/Alert.props';
|
|
34
|
+
export * from './AspectRatio/AspectRatio/AspectRatio.props';
|
|
35
|
+
export * from './Avatar/Avatar/Avatar.props';
|
|
36
|
+
export * from './Badge/Badge/Badge.props';
|
|
37
|
+
export * from './Button/Button/Button.props';
|
|
38
|
+
export * from './Form/Select/Select/Select.props';
|
|
39
|
+
export * from './Form/Switch/Switch/Switch.props';
|
|
40
|
+
export * from './Form/Switch/Switch/Switch.props';
|
|
41
|
+
export * from './Form/TextArea/TextArea/TextArea.props';
|
|
42
|
+
export * from './Form/TextField/TextField/TextField.props';
|
|
43
|
+
export * from './Form/Checkbox/Checkbox/Checkbox.props';
|
|
44
|
+
export * from './Form/CountryPicker/CountryPicker/CountryPicker.props';
|
|
45
|
+
export * from './Form/DatePicker/DatePicker/DatePicker.props';
|
|
46
|
+
export * from './Form/Password/Password/Password.props';
|
|
47
|
+
export * from './Form/ComboBox/ComboBox/ComboBox.props';
|
|
48
|
+
export * from './Layout/Center/Center.props';
|
|
49
|
+
export * from './Layout/Horizontal/Horizontal.props';
|
|
50
|
+
export * from './Layout/Vertical/Vertical.props';
|
|
51
|
+
export * from './Link/Link/Link.props';
|
|
52
|
+
export * from './Loader/Loader/Loader.props';
|
|
53
|
+
export * from './Message/Message/Message.props';
|
|
54
|
+
export * from './Modal/Modal/Modal.props';
|
|
55
|
+
export * from './Table/Table/Table.props';
|
|
56
|
+
export * from './Tabs/Tabs/Tabs.props';
|
|
57
|
+
export * from './Text/Text/Text.props';
|
|
58
|
+
export * from './Toggle/Toggle/Toggle.props';
|
|
59
|
+
export * from './ToggleGroup/ToggleGroup/ToggleGroup.props';
|