@ttoss/ui 1.22.0 → 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 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.22.0",
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",
@@ -45,5 +45,5 @@
45
45
  "publishConfig": {
46
46
  "access": "public"
47
47
  },
48
- "gitHead": "d1583c4306e792373d84030dba29f9e6cc57031d"
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';