@astral/ui 3.362.2 → 3.363.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/components/TreeAsyncAutocomplete.d.ts +1 -0
- package/components/TreeAsyncAutocomplete.js +1 -0
- package/form/FormTreeAsyncAutocomplete.d.ts +1 -0
- package/form/FormTreeAsyncAutocomplete.js +1 -0
- package/node/components/TreeAsyncAutocomplete.d.ts +1 -0
- package/node/components/TreeAsyncAutocomplete.js +5 -0
- package/node/form/FormTreeAsyncAutocomplete.d.ts +1 -0
- package/node/form/FormTreeAsyncAutocomplete.js +5 -0
- package/package.json +18 -4
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { type FetchOptionsResult, TreeAsyncAutocomplete, type TreeAsyncAutocompleteProps, type TreeAsyncAutocompleteValue, } from '@astral/components/TreeAsyncAutocomplete';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { TreeAsyncAutocomplete, } from '@astral/components/TreeAsyncAutocomplete';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { FormTreeAsyncAutocomplete, type FormTreeAsyncAutocompleteProps, type FormTreeAsyncAutocompleteValue, } from '@astral/form/FormTreeAsyncAutocomplete';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { FormTreeAsyncAutocomplete, } from '@astral/form/FormTreeAsyncAutocomplete';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { type FetchOptionsResult, TreeAsyncAutocomplete, type TreeAsyncAutocompleteProps, type TreeAsyncAutocompleteValue, } from '@astral/components/TreeAsyncAutocomplete';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TreeAsyncAutocomplete = void 0;
|
|
4
|
+
var TreeAsyncAutocomplete_1 = require("@astral/components/TreeAsyncAutocomplete");
|
|
5
|
+
Object.defineProperty(exports, "TreeAsyncAutocomplete", { enumerable: true, get: function () { return TreeAsyncAutocomplete_1.TreeAsyncAutocomplete; } });
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { FormTreeAsyncAutocomplete, type FormTreeAsyncAutocompleteProps, type FormTreeAsyncAutocompleteValue, } from '@astral/form/FormTreeAsyncAutocomplete';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FormTreeAsyncAutocomplete = void 0;
|
|
4
|
+
var FormTreeAsyncAutocomplete_1 = require("@astral/form/FormTreeAsyncAutocomplete");
|
|
5
|
+
Object.defineProperty(exports, "FormTreeAsyncAutocomplete", { enumerable: true, get: function () { return FormTreeAsyncAutocomplete_1.FormTreeAsyncAutocomplete; } });
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@astral/ui",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.363.0",
|
|
4
4
|
"browser": "./index.js",
|
|
5
5
|
"main": "./node/index.js",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@astral/icons": "3.
|
|
8
|
-
"@astral/components": "3.
|
|
9
|
-
"@astral/form": "3.
|
|
7
|
+
"@astral/icons": "3.363.0",
|
|
8
|
+
"@astral/components": "3.363.0",
|
|
9
|
+
"@astral/form": "3.363.0"
|
|
10
10
|
},
|
|
11
11
|
"peerDependencies": {
|
|
12
12
|
"react": "^17.0.0 || ^18.0.0",
|
|
@@ -57,6 +57,20 @@
|
|
|
57
57
|
"types": "./components/InfiniteTreeList.d.ts",
|
|
58
58
|
"default": "./components/InfiniteTreeList.js",
|
|
59
59
|
"import": "./components/InfiniteTreeList.js"
|
|
60
|
+
},
|
|
61
|
+
"./components/TreeAsyncAutocomplete": {
|
|
62
|
+
"module": "./components/TreeAsyncAutocomplete.js",
|
|
63
|
+
"require": "./node/components/TreeAsyncAutocomplete.js",
|
|
64
|
+
"types": "./components/TreeAsyncAutocomplete.d.ts",
|
|
65
|
+
"default": "./components/TreeAsyncAutocomplete.js",
|
|
66
|
+
"import": "./components/TreeAsyncAutocomplete.js"
|
|
67
|
+
},
|
|
68
|
+
"./form/FormTreeAsyncAutocomplete": {
|
|
69
|
+
"module": "./form/FormTreeAsyncAutocomplete.js",
|
|
70
|
+
"require": "./node/form/FormTreeAsyncAutocomplete.js",
|
|
71
|
+
"types": "./form/FormTreeAsyncAutocomplete.d.ts",
|
|
72
|
+
"default": "./form/FormTreeAsyncAutocomplete.js",
|
|
73
|
+
"import": "./form/FormTreeAsyncAutocomplete.js"
|
|
60
74
|
}
|
|
61
75
|
},
|
|
62
76
|
"author": "Astral.Soft",
|