@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@max-ts/components",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "publishConfig": {
@@ -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 = forwardRef<HTMLDivElement, TextAreaProps>(
9
- ({ rows = 7, ...props }, ref) => {
10
- return <TextField ref={ref} multiline rows={rows} {...props} />;
11
- },
12
- );
6
+ export const TextArea = ({ rows = 7, ...props }: TextAreaProps) => {
7
+ return <TextField multiline rows={rows} {...props} />;
8
+ };
@@ -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';