@max-ts/components 0.1.0 → 0.1.1
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/.turbo/turbo-build.log +13 -13
- package/CHANGELOG.md +6 -0
- package/dist/components/TextArea/TextArea.d.ts +1 -1
- package/dist/components/index.d.ts +14 -0
- package/dist/index.js +182 -48
- package/dist/index.mjs +276 -142
- package/package.json +1 -1
- package/src/components/TextArea/TextArea.tsx +3 -7
- package/src/components/index.ts +28 -0
package/package.json
CHANGED
|
@@ -1,12 +1,8 @@
|
|
|
1
|
-
import { forwardRef } from 'react';
|
|
2
|
-
|
|
3
1
|
import { TextField } from '../TextField';
|
|
4
2
|
import type { TextFieldProps } from '../TextField';
|
|
5
3
|
|
|
6
4
|
export type TextAreaProps = Omit<TextFieldProps, 'multiline'>;
|
|
7
5
|
|
|
8
|
-
export const TextArea =
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
},
|
|
12
|
-
);
|
|
6
|
+
export const TextArea = ({ rows = 7, ...props }: TextAreaProps) => {
|
|
7
|
+
return <TextField multiline rows={rows} {...props} />;
|
|
8
|
+
};
|
package/src/components/index.ts
CHANGED
|
@@ -26,6 +26,8 @@ export * from './ConfigProvider';
|
|
|
26
26
|
|
|
27
27
|
export * from './ConfirmAction';
|
|
28
28
|
|
|
29
|
+
export * from './ConfirmDialog';
|
|
30
|
+
|
|
29
31
|
export * from './Container';
|
|
30
32
|
|
|
31
33
|
export * from './ContentState';
|
|
@@ -56,14 +58,20 @@ export * from './DialogTitle';
|
|
|
56
58
|
|
|
57
59
|
export * from './Divider';
|
|
58
60
|
|
|
61
|
+
export * from './DropdownButton';
|
|
62
|
+
|
|
59
63
|
export * from './ErrorBoundary';
|
|
60
64
|
|
|
65
|
+
export * from './Filename';
|
|
66
|
+
|
|
61
67
|
export * from './FormControl';
|
|
62
68
|
|
|
63
69
|
export * from './FormControlLabel';
|
|
64
70
|
|
|
65
71
|
export * from './FormHelperText';
|
|
66
72
|
|
|
73
|
+
export * from './FormLabel';
|
|
74
|
+
|
|
67
75
|
export * from './GuidTypography';
|
|
68
76
|
|
|
69
77
|
export * from './IconButton';
|
|
@@ -106,16 +114,36 @@ export * from './Placeholder';
|
|
|
106
114
|
|
|
107
115
|
export * from './Popover';
|
|
108
116
|
|
|
117
|
+
export * from './ProgressBar';
|
|
118
|
+
|
|
119
|
+
export * from './Radio';
|
|
120
|
+
|
|
121
|
+
export * from './RadioField';
|
|
122
|
+
|
|
123
|
+
export * from './RadioGroup';
|
|
124
|
+
|
|
125
|
+
export * from './RadioGroupField';
|
|
126
|
+
|
|
109
127
|
export * from './SearchField';
|
|
110
128
|
|
|
111
129
|
export * from './Select';
|
|
112
130
|
|
|
131
|
+
export * from './Skeleton';
|
|
132
|
+
|
|
133
|
+
export * from './Switch';
|
|
134
|
+
|
|
135
|
+
export * from './Tab';
|
|
136
|
+
|
|
137
|
+
export * from './Tabs';
|
|
138
|
+
|
|
113
139
|
export * from './Tag';
|
|
114
140
|
|
|
115
141
|
export * from './TagBadge';
|
|
116
142
|
|
|
117
143
|
export * from './TagsList';
|
|
118
144
|
|
|
145
|
+
export * from './TextArea';
|
|
146
|
+
|
|
119
147
|
export * from './TextField';
|
|
120
148
|
|
|
121
149
|
export * from './Tooltip';
|