buildgrid-ui 1.1.0-dev.28 → 1.1.0-dev.30
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/components/adaptive-input/adaptive-input.d.ts +2 -2
- package/dist/components/adaptive-input/index.d.ts +1 -1
- package/dist/components/alert-dialog/index.d.ts +1 -1
- package/dist/components/autocomplete/index.d.ts +1 -1
- package/dist/components/avatar/index.d.ts +1 -1
- package/dist/components/currency-input/currency-input.d.ts +1 -1
- package/package.json +14 -11
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { InputProps } from '../input';
|
|
3
|
-
|
|
3
|
+
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 };
|
|
9
|
+
export { AdaptiveInput, AdaptiveInputProps };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export { AdaptiveInput } from './adaptive-input';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, } from './alert-dialog';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export { Autocomplete } from './autocomplete';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export { Avatar, AvatarFallback, AvatarImage } from './avatar';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { AdaptiveInputProps } from '../adaptive-input';
|
|
2
|
+
import { AdaptiveInputProps } from '../adaptive-input/adaptive-input';
|
|
3
3
|
export interface CurrencyInputProps extends AdaptiveInputProps {
|
|
4
4
|
currencySymbol?: string;
|
|
5
5
|
decimalSeparator?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "buildgrid-ui",
|
|
3
|
-
"version": "1.1.0-dev.
|
|
3
|
+
"version": "1.1.0-dev.30",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -11,23 +11,26 @@
|
|
|
11
11
|
"LICENSE"
|
|
12
12
|
],
|
|
13
13
|
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"default": "./dist/index.js"
|
|
17
|
+
},
|
|
14
18
|
"./components": {
|
|
15
|
-
"
|
|
16
|
-
"
|
|
19
|
+
"types": "./dist/components/index.d.ts",
|
|
20
|
+
"default": "./dist/components/index.js"
|
|
17
21
|
},
|
|
18
22
|
"./blocks": {
|
|
19
|
-
"
|
|
20
|
-
"
|
|
23
|
+
"types": "./dist/blocks/index.d.ts",
|
|
24
|
+
"default": "./dist/blocks/index.js"
|
|
21
25
|
},
|
|
22
26
|
"./utils": {
|
|
23
|
-
"
|
|
24
|
-
"
|
|
27
|
+
"types": "./dist/lib/utils/index.d.ts",
|
|
28
|
+
"default": "./dist/lib/utils/index.js"
|
|
25
29
|
},
|
|
26
30
|
"./hooks": {
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
}
|
|
30
|
-
".": "./dist/index.d.ts"
|
|
31
|
+
"types": "./dist/lib/hooks/index.d.ts",
|
|
32
|
+
"default": "./dist/lib/hooks/index.js"
|
|
33
|
+
}
|
|
31
34
|
},
|
|
32
35
|
"typesVersions": {
|
|
33
36
|
"*": {
|