@moises.ai/design-system 3.6.0 → 3.6.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moises.ai/design-system",
3
- "version": "3.6.0",
3
+ "version": "3.6.1",
4
4
  "description": "Design System package based on @radix-ui/themes with custom defaults",
5
5
  "private": false,
6
6
  "type": "module",
@@ -1,7 +1,6 @@
1
1
  import { useEffect, useState } from 'react'
2
- import { Badge, Button, Card, Flex, IconButton, Text } from '../../index'
2
+ import { Badge, Button, Card, Flex, IconButton, Text, Extension, useNavigation, useScreen } from '../../index'
3
3
  import { DotsVerticalIcon } from '../../icons'
4
- import { Extension, useNavigation, useScreen } from './Extension'
5
4
 
6
5
  const mockMoises = {
7
6
  extension: { close: () => console.log('extension.close()') },
@@ -10,8 +10,8 @@ import {
10
10
  Text,
11
11
  TextArea,
12
12
  TextField,
13
+ useForm
13
14
  } from '../../index'
14
- import { useForm } from './useForm'
15
15
 
16
16
 
17
17
  const sidebarDecorator = (Story) => (
package/src/index.jsx CHANGED
@@ -97,7 +97,7 @@ export { GenerationStatus } from './components/StemSeparationForm/GenerationStat
97
97
  export { Slider } from './components/Slider/Slider'
98
98
 
99
99
  export { useForm } from './components/useForm/useForm'
100
- export { Extension } from './components/Extension/Extension'
100
+ export { Extension, useExtension, useNavigation, useScreen } from './components/Extension/Extension'
101
101
 
102
102
  export { TextArea } from './components/TextArea/TextArea'
103
103