@ttoss/ui 1.27.2 → 1.28.0

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/esm/index.js CHANGED
@@ -309,6 +309,9 @@ var InfiniteLinearProgress = () => {
309
309
  }, []);
310
310
  return /* @__PURE__ */ jsx4(Progress, { max: MAX_PROGRESS, value: progress, role: "progressbar" });
311
311
  };
312
+
313
+ // src/components/Textarea.tsx
314
+ import { Textarea } from "theme-ui";
312
315
  export {
313
316
  Box,
314
317
  Button,
@@ -330,6 +333,7 @@ export {
330
333
  Slider,
331
334
  Spinner,
332
335
  Text,
336
+ Textarea,
333
337
  ThemeProvider_default as ThemeProvider,
334
338
  useBreakpointIndex,
335
339
  useResponsiveValue,
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as theme_ui from 'theme-ui';
2
2
  import { Theme, ButtonProps, TextProps } from 'theme-ui';
3
- export { Box, BoxProps, ButtonProps, Card, CardProps, Checkbox, CheckboxProps, Divider, DividerProps, Flex, FlexProps, Grid, GridProps, Heading, HeadingProps, Image, ImageProps, Input, InputProps, Label, LabelProps, Progress as LinearProgress, ProgressProps as LinearProgressProps, Link, LinkProps, Radio, RadioProps, Select, SelectProps, Slider, SliderProps, Spinner, SpinnerProps, Text, TextProps, Theme } from 'theme-ui';
3
+ export { Box, BoxProps, ButtonProps, Card, CardProps, Checkbox, CheckboxProps, Divider, DividerProps, Flex, FlexProps, Grid, GridProps, Heading, HeadingProps, Image, ImageProps, Input, InputProps, Label, LabelProps, Progress as LinearProgress, ProgressProps as LinearProgressProps, Link, LinkProps, Radio, RadioProps, Select, SelectProps, Slider, SliderProps, Spinner, SpinnerProps, Text, TextProps, Textarea, TextareaProps, Theme } from 'theme-ui';
4
4
  export { useBreakpointIndex, useResponsiveValue } from '@theme-ui/match-media';
5
5
  import * as React from 'react';
6
6
  import { IconProps as IconProps$1 } from '@iconify/react';
package/dist/index.js CHANGED
@@ -47,6 +47,7 @@ __export(src_exports, {
47
47
  Slider: () => import_theme_ui19.Slider,
48
48
  Spinner: () => import_theme_ui17.Spinner,
49
49
  Text: () => import_theme_ui15.Text,
50
+ Textarea: () => import_theme_ui21.Textarea,
50
51
  ThemeProvider: () => ThemeProvider_default,
51
52
  useBreakpointIndex: () => import_match_media.useBreakpointIndex,
52
53
  useResponsiveValue: () => import_match_media.useResponsiveValue,
@@ -359,6 +360,9 @@ var InfiniteLinearProgress = () => {
359
360
  }, []);
360
361
  return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_theme_ui14.Progress, { max: MAX_PROGRESS, value: progress, role: "progressbar" });
361
362
  };
363
+
364
+ // src/components/Textarea.tsx
365
+ var import_theme_ui21 = require("theme-ui");
362
366
  // Annotate the CommonJS export names for ESM import in node:
363
367
  0 && (module.exports = {
364
368
  Box,
@@ -381,6 +385,7 @@ var InfiniteLinearProgress = () => {
381
385
  Slider,
382
386
  Spinner,
383
387
  Text,
388
+ Textarea,
384
389
  ThemeProvider,
385
390
  useBreakpointIndex,
386
391
  useResponsiveValue,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttoss/ui",
3
- "version": "1.27.2",
3
+ "version": "1.28.0",
4
4
  "description": "Primitive layout, typographic, and other components for styling applications.",
5
5
  "license": "UNLICENSED",
6
6
  "author": "ttoss",
@@ -30,9 +30,9 @@
30
30
  "react": ">=16.8.0"
31
31
  },
32
32
  "devDependencies": {
33
- "@ttoss/config": "^1.25.0",
34
- "@ttoss/test-utils": "^1.18.3",
35
- "@ttoss/theme": "^1.1.2",
33
+ "@ttoss/config": "^1.26.0",
34
+ "@ttoss/test-utils": "^1.20.0",
35
+ "@ttoss/theme": "^1.2.1",
36
36
  "@types/jest": "^29.2.4",
37
37
  "jest": "^29.3.1",
38
38
  "tsup": "^6.5.0"
@@ -45,5 +45,5 @@
45
45
  "publishConfig": {
46
46
  "access": "public"
47
47
  },
48
- "gitHead": "b77c8fe64f8fbf6198436a56d887d9b8807371f7"
48
+ "gitHead": "4b7a4d3035f4b4d43b02069df62fcc9ca57c2bc6"
49
49
  }
@@ -0,0 +1 @@
1
+ export { Textarea, type TextareaProps } from 'theme-ui';
package/src/index.ts CHANGED
@@ -31,3 +31,4 @@ export { Icon, type IconProps } from './components/Icon';
31
31
  export { Slider, type SliderProps } from './components/Slider';
32
32
  export { Checkbox, type CheckboxProps } from './components/Checkbox';
33
33
  export { InfiniteLinearProgress } from './components/InfiniteLinearProgress';
34
+ export { Textarea, type TextareaProps } from './components/Textarea';