@noya-app/noya-designsystem 0.0.2 → 0.0.3
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/.turbo/turbo-build.log +8 -8
- package/CHANGELOG.md +6 -0
- package/dist/index.d.mts +10 -1
- package/dist/index.d.ts +10 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -0
- package/package.json +1 -1
- package/src/index.tsx +1 -0
package/dist/index.mjs
CHANGED
|
@@ -15598,6 +15598,7 @@ export {
|
|
|
15598
15598
|
Heading4,
|
|
15599
15599
|
Heading5,
|
|
15600
15600
|
IconButton,
|
|
15601
|
+
ImageDataProvider,
|
|
15601
15602
|
InputElement,
|
|
15602
15603
|
InputField,
|
|
15603
15604
|
InputFieldWithCompletions,
|
|
@@ -15652,6 +15653,7 @@ export {
|
|
|
15652
15653
|
useGlobalInputBlurListener,
|
|
15653
15654
|
useGlobalInputBlurTrigger,
|
|
15654
15655
|
useHover,
|
|
15656
|
+
useImageData,
|
|
15655
15657
|
useOpenInputDialog,
|
|
15656
15658
|
usePlatform,
|
|
15657
15659
|
usePlatformModKey,
|
package/package.json
CHANGED
package/src/index.tsx
CHANGED
|
@@ -56,6 +56,7 @@ export type {
|
|
|
56
56
|
} from "./components/internal/Menu";
|
|
57
57
|
export * from "./contexts/DesignSystemConfiguration";
|
|
58
58
|
export * from "./contexts/DialogContext";
|
|
59
|
+
export * from "./contexts/ImageDataContext";
|
|
59
60
|
// Contexts
|
|
60
61
|
export * from "./contexts/GlobalInputBlurContext";
|
|
61
62
|
// Hooks
|