buildgrid-ui 1.1.0-dev.33 → 1.1.0-dev.35

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.
@@ -1,9 +1,9 @@
1
1
  import * as React from 'react';
2
2
  import { InputProps } from '../input';
3
- interface AdaptiveInputProps extends InputProps {
3
+ export interface AdaptiveInputProps extends InputProps {
4
4
  leftIcon?: React.ReactNode;
5
5
  rightIcon?: React.ReactNode;
6
6
  mask?: string;
7
7
  }
8
8
  declare const AdaptiveInput: React.ForwardRefExoticComponent<AdaptiveInputProps & React.RefAttributes<HTMLInputElement>>;
9
- export { AdaptiveInput, AdaptiveInputProps };
9
+ export { AdaptiveInput };
@@ -1 +1 @@
1
- export { AdaptiveInput } from './adaptive-input';
1
+ export * from './adaptive-input';
@@ -1 +1 @@
1
- export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, } from './alert-dialog';
1
+ export * from './alert-dialog';
@@ -1 +1 @@
1
- export { Autocomplete } from './autocomplete';
1
+ export * from './autocomplete';
@@ -1 +1 @@
1
- export { Avatar, AvatarFallback, AvatarImage } from './avatar';
1
+ export * from './avatar';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "buildgrid-ui",
3
- "version": "1.1.0-dev.33",
3
+ "version": "1.1.0-dev.35",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },