@ttoss/ui 1.13.2 → 1.14.2

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
@@ -216,6 +216,9 @@ import { Link } from "@theme-ui/components";
216
216
  // src/components/LinearProgress/LinearProgress.tsx
217
217
  import { Progress } from "@theme-ui/components";
218
218
  var LinearProgress = Progress;
219
+
220
+ // src/components/Select/Select.tsx
221
+ import { Select } from "@theme-ui/components";
219
222
  export {
220
223
  Box,
221
224
  Button_default as Button,
@@ -230,6 +233,7 @@ export {
230
233
  Input,
231
234
  LinearProgress,
232
235
  Link,
236
+ Select,
233
237
  Text,
234
238
  ThemeProvider_default as ThemeProvider,
235
239
  Themed,
package/dist/index.d.ts CHANGED
@@ -6,9 +6,9 @@ export { Theme } from '@theme-ui/core';
6
6
  export { useBreakpointIndex, useResponsiveValue } from '@theme-ui/match-media';
7
7
  export { Themed } from '@theme-ui/mdx';
8
8
  import * as React from 'react';
9
- import * as _theme_ui_components from '@theme-ui/components';
10
9
  import { ButtonProps, ProgressProps } from '@theme-ui/components';
11
- export { Box, BoxProps, ButtonProps, Card, CardProps, Divider, DividerProps, Flex, FlexProps, Heading, HeadingProps, Image, ImageProps, Input, InputProps, Link, LinkProps, Text, TextProps } from '@theme-ui/components';
10
+ export { Box, BoxProps, ButtonProps, Card, CardProps, Divider, DividerProps, Flex, FlexProps, Heading, HeadingProps, Image, ImageProps, Input, InputProps, Link, LinkProps, Select, SelectProps, Text, TextProps } from '@theme-ui/components';
11
+ import * as _theme_ui_components_dist_declarations_src_types from '@theme-ui/components/dist/declarations/src/types';
12
12
 
13
13
  declare type ThemeProviderProps = {
14
14
  children?: React.ReactNode;
@@ -32,6 +32,6 @@ declare type FormFieldProps = {
32
32
  declare const FormField: ({ children, label, error }: FormFieldProps) => JSX.Element;
33
33
 
34
34
  declare type LinearProgressProps = ProgressProps;
35
- declare const LinearProgress: _theme_ui_components.ForwardRef<HTMLProgressElement, ProgressProps>;
35
+ declare const LinearProgress: _theme_ui_components_dist_declarations_src_types.ForwardRef<HTMLProgressElement, ProgressProps>;
36
36
 
37
37
  export { Button, FormField, FormFieldProps, LinearProgress, LinearProgressProps, ThemeProvider, ThemeProviderProps, useTheme };
package/dist/index.js CHANGED
@@ -52,6 +52,7 @@ __export(src_exports, {
52
52
  Input: () => import_components10.Input,
53
53
  LinearProgress: () => LinearProgress,
54
54
  Link: () => import_components11.Link,
55
+ Select: () => import_components13.Select,
55
56
  Text: () => import_components7.Text,
56
57
  ThemeProvider: () => ThemeProvider_default,
57
58
  Themed: () => import_mdx.Themed,
@@ -260,6 +261,9 @@ var import_components11 = require("@theme-ui/components");
260
261
  // src/components/LinearProgress/LinearProgress.tsx
261
262
  var import_components12 = require("@theme-ui/components");
262
263
  var LinearProgress = import_components12.Progress;
264
+
265
+ // src/components/Select/Select.tsx
266
+ var import_components13 = require("@theme-ui/components");
263
267
  // Annotate the CommonJS export names for ESM import in node:
264
268
  0 && (module.exports = {
265
269
  Box,
@@ -275,6 +279,7 @@ var LinearProgress = import_components12.Progress;
275
279
  Input,
276
280
  LinearProgress,
277
281
  Link,
282
+ Select,
278
283
  Text,
279
284
  ThemeProvider,
280
285
  Themed,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttoss/ui",
3
- "version": "1.13.2",
3
+ "version": "1.14.2",
4
4
  "description": "Primitive layout, typographic, and other components for styling applications.",
5
5
  "license": "UNLICENSED",
6
6
  "publishConfig": {
@@ -34,18 +34,19 @@
34
34
  "dependencies": {
35
35
  "@emotion/react": "^11",
36
36
  "@emotion/styled": "^11",
37
- "@theme-ui/color": "^0.13.1",
38
- "@theme-ui/components": "^0.13.1",
39
- "@theme-ui/core": "^0.13.1",
40
- "@theme-ui/match-media": "^0.13.1",
41
- "@theme-ui/mdx": "^0.13.1"
37
+ "@mdx-js/react": "^1",
38
+ "@theme-ui/color": "^0.14.3",
39
+ "@theme-ui/components": "^0.14.3",
40
+ "@theme-ui/core": "^0.14.3",
41
+ "@theme-ui/match-media": "^0.14.3",
42
+ "@theme-ui/mdx": "^0.14.3"
42
43
  },
43
44
  "peerDependencies": {
44
45
  "react": ">=16.8.0"
45
46
  },
46
47
  "devDependencies": {
47
- "@ttoss/config": "^1.13.2",
48
- "@ttoss/test-utils": "^1.13.2"
48
+ "@ttoss/config": "^1.14.2",
49
+ "@ttoss/test-utils": "^1.14.2"
49
50
  },
50
- "gitHead": "f995212bbcaa64fac0b16b96625c690146dd541f"
51
+ "gitHead": "4732a3ea8d21ab645bffc17338e87d60c285851f"
51
52
  }
@@ -0,0 +1,3 @@
1
+ export { Select as default } from '@theme-ui/components';
2
+
3
+ export type { SelectProps } from '@theme-ui/components';
package/src/index.ts CHANGED
@@ -28,3 +28,4 @@ export {
28
28
  LinearProgressProps,
29
29
  } from './components/LinearProgress/LinearProgress';
30
30
  export { default as Text, TextProps } from './components/Text/Text';
31
+ export { default as Select, SelectProps } from './components/Select/Select';