@ttoss/ui 1.15.2 → 1.16.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
@@ -222,6 +222,9 @@ var LinearProgress = Progress;
222
222
 
223
223
  // src/components/Select/Select.tsx
224
224
  import { Select } from "@theme-ui/components";
225
+
226
+ // src/components/Spinner/Spinner.tsx
227
+ import { Spinner } from "@theme-ui/components";
225
228
  export {
226
229
  Box,
227
230
  Button_default as Button,
@@ -236,6 +239,7 @@ export {
236
239
  LinearProgress,
237
240
  Link,
238
241
  Select,
242
+ Spinner,
239
243
  Text,
240
244
  ThemeProvider_default as ThemeProvider,
241
245
  Themed,
package/dist/index.d.ts CHANGED
@@ -7,7 +7,7 @@ export { useBreakpointIndex, useResponsiveValue } from '@theme-ui/match-media';
7
7
  export { Themed } from '@theme-ui/mdx';
8
8
  import * as React from 'react';
9
9
  import { ButtonProps, ProgressProps } from '@theme-ui/components';
10
- export { Box, BoxProps, ButtonProps, Card, CardProps, Divider, DividerProps, Flex, FlexProps, Grid, GridProps, Heading, HeadingProps, Image, ImageProps, Input, InputProps, Link, LinkProps, Select, SelectProps, Text, TextProps } from '@theme-ui/components';
10
+ export { Box, BoxProps, ButtonProps, Card, CardProps, Divider, DividerProps, Flex, FlexProps, Grid, GridProps, Heading, HeadingProps, Image, ImageProps, Input, InputProps, Link, LinkProps, Select, SelectProps, Spinner, SpinnerProps, Text, TextProps } from '@theme-ui/components';
11
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 = {
package/dist/index.js CHANGED
@@ -52,6 +52,7 @@ __export(src_exports, {
52
52
  LinearProgress: () => LinearProgress,
53
53
  Link: () => import_components12.Link,
54
54
  Select: () => import_components14.Select,
55
+ Spinner: () => import_components15.Spinner,
55
56
  Text: () => import_components7.Text,
56
57
  ThemeProvider: () => ThemeProvider_default,
57
58
  Themed: () => import_mdx.Themed,
@@ -266,6 +267,9 @@ var LinearProgress = import_components13.Progress;
266
267
 
267
268
  // src/components/Select/Select.tsx
268
269
  var import_components14 = require("@theme-ui/components");
270
+
271
+ // src/components/Spinner/Spinner.tsx
272
+ var import_components15 = require("@theme-ui/components");
269
273
  // Annotate the CommonJS export names for ESM import in node:
270
274
  0 && (module.exports = {
271
275
  Box,
@@ -281,6 +285,7 @@ var import_components14 = require("@theme-ui/components");
281
285
  LinearProgress,
282
286
  Link,
283
287
  Select,
288
+ Spinner,
284
289
  Text,
285
290
  ThemeProvider,
286
291
  Themed,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttoss/ui",
3
- "version": "1.15.2",
3
+ "version": "1.16.0",
4
4
  "description": "Primitive layout, typographic, and other components for styling applications.",
5
5
  "license": "UNLICENSED",
6
6
  "publishConfig": {
@@ -45,8 +45,8 @@
45
45
  "react": ">=16.8.0"
46
46
  },
47
47
  "devDependencies": {
48
- "@ttoss/config": "^1.15.2",
49
- "@ttoss/test-utils": "^1.15.2"
48
+ "@ttoss/config": "^1.16.0",
49
+ "@ttoss/test-utils": "^1.16.0"
50
50
  },
51
- "gitHead": "edc913c860d3e8d34b385e599fba28093bf0bd14"
51
+ "gitHead": "0412266ba0223a5b42904254a13d96473006e0a3"
52
52
  }
@@ -0,0 +1,3 @@
1
+ export { Spinner as default } from '@theme-ui/components';
2
+
3
+ export type { SpinnerProps } from '@theme-ui/components';
package/src/index.ts CHANGED
@@ -36,3 +36,7 @@ export {
36
36
  default as Select,
37
37
  type SelectProps,
38
38
  } from './components/Select/Select';
39
+ export {
40
+ default as Spinner,
41
+ type SpinnerProps,
42
+ } from './components/Spinner/Spinner'