@ttoss/ui 1.28.0 → 1.30.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 +8 -8
- package/src/components/Container.tsx +1 -0
- package/src/index.ts +1 -0
package/dist/esm/index.js
CHANGED
|
@@ -312,11 +312,15 @@ var InfiniteLinearProgress = () => {
|
|
|
312
312
|
|
|
313
313
|
// src/components/Textarea.tsx
|
|
314
314
|
import { Textarea } from "theme-ui";
|
|
315
|
+
|
|
316
|
+
// src/components/Container.tsx
|
|
317
|
+
import { Container } from "theme-ui";
|
|
315
318
|
export {
|
|
316
319
|
Box,
|
|
317
320
|
Button,
|
|
318
321
|
Card,
|
|
319
322
|
Checkbox,
|
|
323
|
+
Container,
|
|
320
324
|
Divider,
|
|
321
325
|
Flex,
|
|
322
326
|
Grid,
|
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, Textarea, TextareaProps, Theme } from 'theme-ui';
|
|
3
|
+
export { Box, BoxProps, ButtonProps, Card, CardProps, Checkbox, CheckboxProps, Container, ContainerProps, 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
|
@@ -31,6 +31,7 @@ __export(src_exports, {
|
|
|
31
31
|
Button: () => Button,
|
|
32
32
|
Card: () => import_theme_ui5.Card,
|
|
33
33
|
Checkbox: () => import_theme_ui20.Checkbox,
|
|
34
|
+
Container: () => import_theme_ui22.Container,
|
|
34
35
|
Divider: () => import_theme_ui6.Divider,
|
|
35
36
|
Flex: () => import_theme_ui7.Flex,
|
|
36
37
|
Grid: () => import_theme_ui8.Grid,
|
|
@@ -363,12 +364,16 @@ var InfiniteLinearProgress = () => {
|
|
|
363
364
|
|
|
364
365
|
// src/components/Textarea.tsx
|
|
365
366
|
var import_theme_ui21 = require("theme-ui");
|
|
367
|
+
|
|
368
|
+
// src/components/Container.tsx
|
|
369
|
+
var import_theme_ui22 = require("theme-ui");
|
|
366
370
|
// Annotate the CommonJS export names for ESM import in node:
|
|
367
371
|
0 && (module.exports = {
|
|
368
372
|
Box,
|
|
369
373
|
Button,
|
|
370
374
|
Card,
|
|
371
375
|
Checkbox,
|
|
376
|
+
Container,
|
|
372
377
|
Divider,
|
|
373
378
|
Flex,
|
|
374
379
|
Grid,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ttoss/ui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.30.0",
|
|
4
4
|
"description": "Primitive layout, typographic, and other components for styling applications.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"author": "ttoss",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"typings": "dist/index.d.ts",
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@emotion/react": "^11.10.5",
|
|
25
|
-
"@iconify/react": "^4.0
|
|
25
|
+
"@iconify/react": "^4.1.0",
|
|
26
26
|
"@theme-ui/match-media": "^0.15.4",
|
|
27
27
|
"theme-ui": "^0.15.4"
|
|
28
28
|
},
|
|
@@ -30,11 +30,11 @@
|
|
|
30
30
|
"react": ">=16.8.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@ttoss/config": "^1.
|
|
34
|
-
"@ttoss/test-utils": "^1.20.
|
|
35
|
-
"@ttoss/theme": "^1.2.
|
|
36
|
-
"@types/jest": "^29.
|
|
37
|
-
"jest": "^29.
|
|
33
|
+
"@ttoss/config": "^1.28.0",
|
|
34
|
+
"@ttoss/test-utils": "^1.20.2",
|
|
35
|
+
"@ttoss/theme": "^1.2.3",
|
|
36
|
+
"@types/jest": "^29.4.0",
|
|
37
|
+
"jest": "^29.4.1",
|
|
38
38
|
"tsup": "^6.5.0"
|
|
39
39
|
},
|
|
40
40
|
"keywords": [
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"publishConfig": {
|
|
46
46
|
"access": "public"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "7852c1c6c570e30cd03a603902f45fb4849c7701"
|
|
49
49
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Container, type ContainerProps } from 'theme-ui';
|
package/src/index.ts
CHANGED
|
@@ -32,3 +32,4 @@ export { Slider, type SliderProps } from './components/Slider';
|
|
|
32
32
|
export { Checkbox, type CheckboxProps } from './components/Checkbox';
|
|
33
33
|
export { InfiniteLinearProgress } from './components/InfiniteLinearProgress';
|
|
34
34
|
export { Textarea, type TextareaProps } from './components/Textarea';
|
|
35
|
+
export { Container, type ContainerProps } from './components/Container';
|