@ttoss/ui 1.21.3 → 1.23.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/Checkbox/Checkbox.tsx +1 -0
- package/src/index.ts +1 -0
package/dist/esm/index.js
CHANGED
|
@@ -197,10 +197,14 @@ var Icon = ({ icon, sx }) => {
|
|
|
197
197
|
|
|
198
198
|
// src/components/Slider/Slider.tsx
|
|
199
199
|
import { Slider } from "theme-ui";
|
|
200
|
+
|
|
201
|
+
// src/components/Checkbox/Checkbox.tsx
|
|
202
|
+
import { Checkbox } from "theme-ui";
|
|
200
203
|
export {
|
|
201
204
|
Box,
|
|
202
205
|
Button,
|
|
203
206
|
Card,
|
|
207
|
+
Checkbox,
|
|
204
208
|
Divider,
|
|
205
209
|
Flex,
|
|
206
210
|
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, 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, Theme } 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, 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
|
@@ -30,6 +30,7 @@ __export(src_exports, {
|
|
|
30
30
|
Box: () => import_theme_ui3.Box,
|
|
31
31
|
Button: () => Button,
|
|
32
32
|
Card: () => import_theme_ui5.Card,
|
|
33
|
+
Checkbox: () => import_theme_ui20.Checkbox,
|
|
33
34
|
Divider: () => import_theme_ui6.Divider,
|
|
34
35
|
Flex: () => import_theme_ui7.Flex,
|
|
35
36
|
Grid: () => import_theme_ui8.Grid,
|
|
@@ -247,11 +248,15 @@ var Icon = ({ icon, sx }) => {
|
|
|
247
248
|
|
|
248
249
|
// src/components/Slider/Slider.tsx
|
|
249
250
|
var import_theme_ui19 = require("theme-ui");
|
|
251
|
+
|
|
252
|
+
// src/components/Checkbox/Checkbox.tsx
|
|
253
|
+
var import_theme_ui20 = require("theme-ui");
|
|
250
254
|
// Annotate the CommonJS export names for ESM import in node:
|
|
251
255
|
0 && (module.exports = {
|
|
252
256
|
Box,
|
|
253
257
|
Button,
|
|
254
258
|
Card,
|
|
259
|
+
Checkbox,
|
|
255
260
|
Divider,
|
|
256
261
|
Flex,
|
|
257
262
|
Grid,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ttoss/ui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.23.0",
|
|
4
4
|
"description": "Primitive layout, typographic, and other components for styling applications.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"author": "ttoss",
|
|
@@ -21,21 +21,21 @@
|
|
|
21
21
|
"typings": "dist/index.d.ts",
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@iconify/react": "^4.0.0",
|
|
24
|
-
"@theme-ui/match-media": "^0.15.
|
|
25
|
-
"theme-ui": "^0.15.
|
|
24
|
+
"@theme-ui/match-media": "^0.15.4",
|
|
25
|
+
"theme-ui": "^0.15.4"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"@emotion/react": "^11",
|
|
29
|
-
"react": ">=18.
|
|
29
|
+
"react": ">=18.2.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@emotion/react": "^11.10.4",
|
|
33
33
|
"@ttoss/config": "^1.18.3",
|
|
34
34
|
"@ttoss/test-utils": "^1.16.10",
|
|
35
35
|
"@ttoss/theme": "^1.0.3",
|
|
36
|
-
"@types/jest": "^29.
|
|
37
|
-
"jest": "^29.1
|
|
38
|
-
"tsup": "^6.
|
|
36
|
+
"@types/jest": "^29.2.3",
|
|
37
|
+
"jest": "^29.3.1",
|
|
38
|
+
"tsup": "^6.5.0"
|
|
39
39
|
},
|
|
40
40
|
"keywords": [
|
|
41
41
|
"React",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"publishConfig": {
|
|
46
46
|
"access": "public"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "e2b509ee8717f07f7365191b651dcbb5f080e05a"
|
|
49
49
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Checkbox, type CheckboxProps } from 'theme-ui';
|
package/src/index.ts
CHANGED
|
@@ -29,3 +29,4 @@ export { Spinner, type SpinnerProps } from './components/Spinner/Spinner';
|
|
|
29
29
|
export { Radio, type RadioProps } from './components/Radio/Radio';
|
|
30
30
|
export { Icon, type IconProps } from './components/Icon/Icon';
|
|
31
31
|
export { Slider, type SliderProps } from './components/Slider/Slider';
|
|
32
|
+
export { Checkbox, type CheckboxProps } from './components/Checkbox/Checkbox';
|