@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/.turbo/turbo-build.log
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
> @max-ts/components@0.0
|
|
3
|
+
> @max-ts/components@0.1.0 build /Users/maksim/Projects/PET/toolkit/packages/components
|
|
4
4
|
> rslib build
|
|
5
5
|
|
|
6
6
|
[1m[38;2;189;255;243m [39m[38;2;189;255;243m [39m[38;2;179;249;235mR[39m[38;2;168;244;227ms[39m[38;2;158;238;219ml[39m[38;2;147;233;211mi[39m[38;2;137;227;203mb[39m[38;2;137;227;203m [39m[38;2;126;222;194mv[39m[38;2;116;216;186m0[39m[38;2;105;211;178m.[39m[38;2;95;205;170m4[39m[38;2;84;200;162m.[39m[38;2;74;194;154m1[39m[38;2;74;194;154m
|
|
7
7
|
[39m[22m
|
|
8
|
-
[1m[32mready [39m[22m Built in [1m0.11[22m s[90m (cjs)[39m
|
|
9
|
-
[1m[32mready [39m[22m Built in [1m0.11[22m s[90m (esm)[39m
|
|
10
|
-
[1m[36mstart [39m[22m Generating DTS... [90m(cjs)[39m
|
|
11
|
-
[1m[36mstart [39m[22m Generating DTS... [90m(esm)[39m
|
|
12
8
|
[1m[36mstart [39m[22m Generating DTS... [90m(esm)[39m
|
|
13
9
|
[1m[36mstart [39m[22m Generating DTS... [90m(cjs)[39m
|
|
14
|
-
[1m[
|
|
15
|
-
[1m[32mready [39m[22m
|
|
16
|
-
[1m[32mready [39m[22m
|
|
17
|
-
[1m[
|
|
10
|
+
[1m[36mstart [39m[22m Generating DTS... [90m(cjs)[39m
|
|
11
|
+
[1m[32mready [39m[22m Built in [1m0.41[22m s[90m (cjs)[39m
|
|
12
|
+
[1m[32mready [39m[22m Built in [1m0.41[22m s[90m (esm)[39m
|
|
13
|
+
[1m[36mstart [39m[22m Generating DTS... [90m(esm)[39m
|
|
14
|
+
[1m[32mready [39m[22m DTS generated in [1m9.83[22m s [90m(esm)[39m
|
|
15
|
+
[1m[32mready [39m[22m DTS generated in [1m9.92[22m s [90m(esm)[39m
|
|
16
|
+
[1m[32mready [39m[22m DTS generated in [1m9.97[22m s [90m(cjs)[39m
|
|
17
|
+
[1m[32mready [39m[22m DTS generated in [1m10.1[22m s [90m(cjs)[39m
|
|
18
18
|
|
|
19
|
-
[34m File (esm) Size
|
|
20
|
-
[2mdist/[22m[36mindex.mjs[39m
|
|
19
|
+
[34m File (esm) Size Gzip [39m
|
|
20
|
+
[2mdist/[22m[36mindex.mjs[39m 111.4 kB
|
|
21
21
|
|
|
22
22
|
[2m -----[22m
|
|
23
23
|
|
|
24
|
-
[34m File (cjs) Size
|
|
25
|
-
[2mdist/[22m[36mindex.js[39m
|
|
24
|
+
[34m File (cjs) Size Gzip [39m
|
|
25
|
+
[2mdist/[22m[36mindex.js[39m 149.4 kB [32m36.1 kB[39m
|
|
26
26
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { TextFieldProps } from '../TextField';
|
|
2
2
|
export type TextAreaProps = Omit<TextFieldProps, 'multiline'>;
|
|
3
|
-
export declare const TextArea:
|
|
3
|
+
export declare const TextArea: ({ rows, ...props }: TextAreaProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -12,6 +12,7 @@ export * from './CircularProgress';
|
|
|
12
12
|
export * from './Collapse';
|
|
13
13
|
export * from './ConfigProvider';
|
|
14
14
|
export * from './ConfirmAction';
|
|
15
|
+
export * from './ConfirmDialog';
|
|
15
16
|
export * from './Container';
|
|
16
17
|
export * from './ContentState';
|
|
17
18
|
export * from './CopyTypography';
|
|
@@ -27,10 +28,13 @@ export * from './DialogContentText';
|
|
|
27
28
|
export * from './DialogHeader';
|
|
28
29
|
export * from './DialogTitle';
|
|
29
30
|
export * from './Divider';
|
|
31
|
+
export * from './DropdownButton';
|
|
30
32
|
export * from './ErrorBoundary';
|
|
33
|
+
export * from './Filename';
|
|
31
34
|
export * from './FormControl';
|
|
32
35
|
export * from './FormControlLabel';
|
|
33
36
|
export * from './FormHelperText';
|
|
37
|
+
export * from './FormLabel';
|
|
34
38
|
export * from './GuidTypography';
|
|
35
39
|
export * from './IconButton';
|
|
36
40
|
export * from './IconDropdownButton';
|
|
@@ -52,11 +56,21 @@ export * from './Pagination';
|
|
|
52
56
|
export * from './Paper';
|
|
53
57
|
export * from './Placeholder';
|
|
54
58
|
export * from './Popover';
|
|
59
|
+
export * from './ProgressBar';
|
|
60
|
+
export * from './Radio';
|
|
61
|
+
export * from './RadioField';
|
|
62
|
+
export * from './RadioGroup';
|
|
63
|
+
export * from './RadioGroupField';
|
|
55
64
|
export * from './SearchField';
|
|
56
65
|
export * from './Select';
|
|
66
|
+
export * from './Skeleton';
|
|
67
|
+
export * from './Switch';
|
|
68
|
+
export * from './Tab';
|
|
69
|
+
export * from './Tabs';
|
|
57
70
|
export * from './Tag';
|
|
58
71
|
export * from './TagBadge';
|
|
59
72
|
export * from './TagsList';
|
|
73
|
+
export * from './TextArea';
|
|
60
74
|
export * from './TextField';
|
|
61
75
|
export * from './Tooltip';
|
|
62
76
|
export * from './Typography';
|