@ttoss/ui 1.18.0 → 1.19.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 +4 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +5 -0
- package/package.json +4 -4
- package/src/components/Spinner/Spinner.tsx +1 -0
- package/src/index.ts +1 -0
package/dist/esm/index.js
CHANGED
|
@@ -168,6 +168,9 @@ import { Text } from "theme-ui";
|
|
|
168
168
|
|
|
169
169
|
// src/components/Select/Select.tsx
|
|
170
170
|
import { Select } from "theme-ui";
|
|
171
|
+
|
|
172
|
+
// src/components/Spinner/Spinner.tsx
|
|
173
|
+
import { Spinner } from "theme-ui";
|
|
171
174
|
export {
|
|
172
175
|
Box,
|
|
173
176
|
Button,
|
|
@@ -181,6 +184,7 @@ export {
|
|
|
181
184
|
Progress as LinearProgress,
|
|
182
185
|
Link,
|
|
183
186
|
Select,
|
|
187
|
+
Spinner,
|
|
184
188
|
Text,
|
|
185
189
|
ThemeProvider_default as ThemeProvider,
|
|
186
190
|
useBreakpointIndex,
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as theme_ui from 'theme-ui';
|
|
2
2
|
import { Theme, ButtonProps } from 'theme-ui';
|
|
3
|
-
export { Box, BoxProps, ButtonProps, Card, CardProps, Divider, DividerProps, Flex, FlexProps, Grid, GridProps, Heading, HeadingProps, Image, ImageProps, Input, InputProps, Progress as LinearProgress, ProgressProps as LinearProgressProps, Link, LinkProps, Select, SelectProps, Text, TextProps, Theme } from 'theme-ui';
|
|
3
|
+
export { Box, BoxProps, ButtonProps, Card, CardProps, Divider, DividerProps, Flex, FlexProps, Grid, GridProps, Heading, HeadingProps, Image, ImageProps, Input, InputProps, Progress as LinearProgress, ProgressProps as LinearProgressProps, Link, LinkProps, Select, SelectProps, Spinner, SpinnerProps, Text, TextProps, Theme } from 'theme-ui';
|
|
4
4
|
export { useBreakpointIndex, useResponsiveValue } from '@theme-ui/match-media';
|
|
5
5
|
import * as React from 'react';
|
|
6
6
|
|
package/dist/index.js
CHANGED
|
@@ -35,6 +35,7 @@ __export(src_exports, {
|
|
|
35
35
|
LinearProgress: () => import_theme_ui13.Progress,
|
|
36
36
|
Link: () => import_theme_ui12.Link,
|
|
37
37
|
Select: () => import_theme_ui15.Select,
|
|
38
|
+
Spinner: () => import_theme_ui16.Spinner,
|
|
38
39
|
Text: () => import_theme_ui14.Text,
|
|
39
40
|
ThemeProvider: () => ThemeProvider_default,
|
|
40
41
|
useBreakpointIndex: () => import_match_media.useBreakpointIndex,
|
|
@@ -209,6 +210,9 @@ var import_theme_ui14 = require("theme-ui");
|
|
|
209
210
|
|
|
210
211
|
// src/components/Select/Select.tsx
|
|
211
212
|
var import_theme_ui15 = require("theme-ui");
|
|
213
|
+
|
|
214
|
+
// src/components/Spinner/Spinner.tsx
|
|
215
|
+
var import_theme_ui16 = require("theme-ui");
|
|
212
216
|
// Annotate the CommonJS export names for ESM import in node:
|
|
213
217
|
0 && (module.exports = {
|
|
214
218
|
Box,
|
|
@@ -223,6 +227,7 @@ var import_theme_ui15 = require("theme-ui");
|
|
|
223
227
|
LinearProgress,
|
|
224
228
|
Link,
|
|
225
229
|
Select,
|
|
230
|
+
Spinner,
|
|
226
231
|
Text,
|
|
227
232
|
ThemeProvider,
|
|
228
233
|
useBreakpointIndex,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ttoss/ui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.19.0",
|
|
4
4
|
"description": "Primitive layout, typographic, and other components for styling applications.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"publishConfig": {
|
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
"react": ">=18.0.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@ttoss/config": "^1.
|
|
45
|
-
"@ttoss/test-utils": "^1.16.
|
|
44
|
+
"@ttoss/config": "^1.17.0",
|
|
45
|
+
"@ttoss/test-utils": "^1.16.6",
|
|
46
46
|
"@types/jest": "^28.1.3",
|
|
47
47
|
"jest": "^28.1.1",
|
|
48
48
|
"tsup": "^6.1.2"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "bea31ace95128d57607156807e402a793b0c46e4"
|
|
51
51
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Spinner, type SpinnerProps } from 'theme-ui';
|
package/src/index.ts
CHANGED
|
@@ -24,3 +24,4 @@ export {
|
|
|
24
24
|
} from './components/LinearProgress/LinearProgress';
|
|
25
25
|
export { Text, type TextProps } from './components/Text/Text';
|
|
26
26
|
export { Select, type SelectProps } from './components/Select/Select';
|
|
27
|
+
export { Spinner, type SpinnerProps } from './components/Spinner/Spinner';
|