@ttoss/ui 1.12.2 → 1.13.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
@@ -201,6 +201,9 @@ var FormField = ({ children, label, error }) => {
201
201
  };
202
202
  var FormField_default = FormField;
203
203
 
204
+ // src/components/Heading/Heading.tsx
205
+ import { Heading, HeadingProps } from "@theme-ui/components";
206
+
204
207
  // src/components/Image/Image.tsx
205
208
  import { Image } from "@theme-ui/components";
206
209
 
@@ -221,6 +224,8 @@ export {
221
224
  DividerProps,
222
225
  Flex,
223
226
  FormField_default as FormField,
227
+ Heading,
228
+ HeadingProps,
224
229
  Image,
225
230
  Input,
226
231
  LinearProgress,
package/dist/index.d.ts CHANGED
@@ -8,7 +8,7 @@ export { Themed } from '@theme-ui/mdx';
8
8
  import * as React from 'react';
9
9
  import * as _theme_ui_components from '@theme-ui/components';
10
10
  import { ButtonProps, ProgressProps } from '@theme-ui/components';
11
- export { Box, BoxProps, ButtonProps, Card, CardProps, Divider, DividerProps, Flex, FlexProps, Image, ImageProps, Input, InputProps, Link, LinkProps, Text, TextProps } from '@theme-ui/components';
11
+ export { Box, BoxProps, ButtonProps, Card, CardProps, Divider, DividerProps, Flex, FlexProps, Heading, HeadingProps, Image, ImageProps, Input, InputProps, Link, LinkProps, Text, TextProps } from '@theme-ui/components';
12
12
 
13
13
  declare type ThemeProviderProps = {
14
14
  children?: React.ReactNode;
package/dist/index.js CHANGED
@@ -46,10 +46,12 @@ __export(src_exports, {
46
46
  DividerProps: () => import_components4.DividerProps,
47
47
  Flex: () => import_components5.Flex,
48
48
  FormField: () => FormField_default,
49
- Image: () => import_components8.Image,
50
- Input: () => import_components9.Input,
49
+ Heading: () => import_components8.Heading,
50
+ HeadingProps: () => import_components8.HeadingProps,
51
+ Image: () => import_components9.Image,
52
+ Input: () => import_components10.Input,
51
53
  LinearProgress: () => LinearProgress,
52
- Link: () => import_components10.Link,
54
+ Link: () => import_components11.Link,
53
55
  Text: () => import_components7.Text,
54
56
  ThemeProvider: () => ThemeProvider_default,
55
57
  Themed: () => import_mdx.Themed,
@@ -243,18 +245,21 @@ var FormField = ({ children, label, error }) => {
243
245
  };
244
246
  var FormField_default = FormField;
245
247
 
246
- // src/components/Image/Image.tsx
248
+ // src/components/Heading/Heading.tsx
247
249
  var import_components8 = require("@theme-ui/components");
248
250
 
249
- // src/components/Input/Input.tsx
251
+ // src/components/Image/Image.tsx
250
252
  var import_components9 = require("@theme-ui/components");
251
253
 
252
- // src/components/Link/Link.tsx
254
+ // src/components/Input/Input.tsx
253
255
  var import_components10 = require("@theme-ui/components");
254
256
 
255
- // src/components/LinearProgress/LinearProgress.tsx
257
+ // src/components/Link/Link.tsx
256
258
  var import_components11 = require("@theme-ui/components");
257
- var LinearProgress = import_components11.Progress;
259
+
260
+ // src/components/LinearProgress/LinearProgress.tsx
261
+ var import_components12 = require("@theme-ui/components");
262
+ var LinearProgress = import_components12.Progress;
258
263
  // Annotate the CommonJS export names for ESM import in node:
259
264
  0 && (module.exports = {
260
265
  Box,
@@ -264,6 +269,8 @@ var LinearProgress = import_components11.Progress;
264
269
  DividerProps,
265
270
  Flex,
266
271
  FormField,
272
+ Heading,
273
+ HeadingProps,
267
274
  Image,
268
275
  Input,
269
276
  LinearProgress,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttoss/ui",
3
- "version": "1.12.2",
3
+ "version": "1.13.0",
4
4
  "description": "Primitive layout, typographic, and other components for styling applications.",
5
5
  "license": "UNLICENSED",
6
6
  "publishConfig": {
@@ -44,8 +44,8 @@
44
44
  "react": ">=16.8.0"
45
45
  },
46
46
  "devDependencies": {
47
- "@ttoss/config": "^1.12.2",
48
- "@ttoss/test-utils": "^1.12.2"
47
+ "@ttoss/config": "^1.13.0",
48
+ "@ttoss/test-utils": "^1.13.0"
49
49
  },
50
- "gitHead": "da3750c7ee25f994a1fd647d48278fc46707257e"
50
+ "gitHead": "1b2a787000750e9e24e65229dd21aee9189c132d"
51
51
  }
@@ -0,0 +1 @@
1
+ export { Heading, HeadingProps } from '@theme-ui/components';
package/src/index.ts CHANGED
@@ -19,6 +19,7 @@ export {
19
19
  default as FormField,
20
20
  FormFieldProps,
21
21
  } from './components/FormField/FormField';
22
+ export { Heading, HeadingProps } from './components/Heading/Heading';
22
23
  export { default as Image, ImageProps } from './components/Image/Image';
23
24
  export { default as Input, InputProps } from './components/Input/Input';
24
25
  export { default as Link, LinkProps } from './components/Link/Link';