@ttoss/ui 1.13.1 → 1.14.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/dist/esm/index.js +4 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +5 -0
- package/package.json +4 -4
- package/src/components/Select/Select.tsx +3 -0
- package/src/index.ts +1 -0
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
|
@@ -8,7 +8,7 @@ export { Themed } from '@theme-ui/mdx';
|
|
|
8
8
|
import * as React from 'react';
|
|
9
9
|
import * as _theme_ui_components from '@theme-ui/components';
|
|
10
10
|
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';
|
|
11
|
+
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';
|
|
12
12
|
|
|
13
13
|
declare type ThemeProviderProps = {
|
|
14
14
|
children?: React.ReactNode;
|
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.
|
|
3
|
+
"version": "1.14.1",
|
|
4
4
|
"description": "Primitive layout, typographic, and other components for styling applications.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"publishConfig": {
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
"react": ">=16.8.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@ttoss/config": "^1.
|
|
48
|
-
"@ttoss/test-utils": "^1.
|
|
47
|
+
"@ttoss/config": "^1.14.1",
|
|
48
|
+
"@ttoss/test-utils": "^1.14.1"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "c47a7a0773b8ccdf631942994abc660e68f0597e"
|
|
51
51
|
}
|
package/src/index.ts
CHANGED