@box/metadata-editor 0.78.2 → 0.78.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/esm/index.js +29 -27
- package/package.json +2 -2
- package/types/index.d.ts +1 -0
package/esm/index.js
CHANGED
@@ -1,37 +1,39 @@
|
|
1
1
|
import { AddMetadataTemplateDropdown as o } from "./lib/components/add-metadata-template-dropdown/add-metadata-template-dropdown.js";
|
2
2
|
import { ComboboxWithApiPagination as r } from "./lib/components/combobox-with-api-pagination/combobox-with-api-pagination.js";
|
3
3
|
import { FilterDropdownMenu as d } from "./lib/components/filter-dropdown-menu/index.js";
|
4
|
-
import {
|
5
|
-
import {
|
6
|
-
import {
|
7
|
-
import {
|
4
|
+
import { FilterInstancesDropdown as m } from "./lib/components/filter-instances-dropdown/filter-instances-dropdown.js";
|
5
|
+
import { MetadataEmptyState as x } from "./lib/components/metadata-empty-state/metadata-empty-state.js";
|
6
|
+
import { DeleteConfirmationModal as l } from "./lib/components/metadata-instance-editor/subcomponents/delete-confirmation-modal/delete-confirmation-modal.js";
|
7
|
+
import { MetadataInstanceFormHeader as M } from "./lib/components/metadata-instance-editor/subcomponents/metadata-instance-form-header/metadata-instance-form-header.js";
|
8
|
+
import { CustomInstanceNewField as I } from "./lib/components/metadata-instance-editor/subcomponents/custom-instance-new-field/custom-instance-new-field.js";
|
8
9
|
import { MetadataInstanceForm as A } from "./lib/components/metadata-instance-editor/subcomponents/metadata-instance-form/metadata-instance-form.js";
|
9
|
-
import { MetadataInstanceList as
|
10
|
-
import { MetadataInstanceHeader as
|
11
|
-
import { UnsavedChangesModal as
|
12
|
-
import { defaultInitialValues as
|
13
|
-
import { MetadataEditor as
|
14
|
-
import { U as
|
15
|
-
import { AutofillContext as
|
16
|
-
import { withApiWrapper as
|
10
|
+
import { MetadataInstanceList as w } from "./lib/components/metadata-instance-list/metadata-instance-list.js";
|
11
|
+
import { MetadataInstanceHeader as D } from "./lib/components/metadata-instance-list/subcomponents/metadata-instance-header/metadata-instance-header.js";
|
12
|
+
import { UnsavedChangesModal as U } from "./lib/components/unsaved-changes-modal/unsaved-changes-modal.js";
|
13
|
+
import { defaultInitialValues as g, defaultMetadataValueMap as v } from "./lib/defaults.js";
|
14
|
+
import { MetadataEditor as H } from "./lib/metadata-editor.js";
|
15
|
+
import { U as V } from "../chunks/types.js";
|
16
|
+
import { AutofillContext as y, AutofillContextProvider as L, useAutofill as N } from "./lib/utils/autofill-context.js";
|
17
|
+
import { withApiWrapper as T } from "./lib/utils/api-wrapper.js";
|
17
18
|
export {
|
18
19
|
o as AddMetadataTemplateDropdown,
|
19
|
-
|
20
|
-
|
20
|
+
y as AutofillContext,
|
21
|
+
L as AutofillContextProvider,
|
21
22
|
r as ComboboxWithApiPagination,
|
22
|
-
|
23
|
-
|
23
|
+
I as CustomInstanceNewField,
|
24
|
+
l as DeleteConfirmationModal,
|
24
25
|
d as FilterDropdownMenu,
|
25
|
-
|
26
|
-
|
26
|
+
m as FilterInstancesDropdown,
|
27
|
+
H as MetadataEditor,
|
28
|
+
x as MetadataEmptyState,
|
27
29
|
A as MetadataInstanceForm,
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
30
|
+
M as MetadataInstanceFormHeader,
|
31
|
+
D as MetadataInstanceHeader,
|
32
|
+
w as MetadataInstanceList,
|
33
|
+
U as UnsavedChangesModal,
|
34
|
+
V as UpdateMode,
|
35
|
+
g as defaultInitialValues,
|
36
|
+
v as defaultMetadataValueMap,
|
37
|
+
N as useAutofill,
|
38
|
+
T as withApiWrapper
|
37
39
|
};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@box/metadata-editor",
|
3
|
-
"version": "0.78.
|
3
|
+
"version": "0.78.3",
|
4
4
|
"peerDependencies": {
|
5
5
|
"@ariakit/react": "0.4.14",
|
6
6
|
"@box/blueprint-web": "^7.30.3",
|
@@ -53,5 +53,5 @@
|
|
53
53
|
"**/*.css"
|
54
54
|
],
|
55
55
|
"license": "SEE LICENSE IN LICENSE",
|
56
|
-
"gitHead": "
|
56
|
+
"gitHead": "6f8bd01e1da3d8d2aaf928934146dfd14039cc54"
|
57
57
|
}
|
package/types/index.d.ts
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
export * from './lib/components/add-metadata-template-dropdown';
|
2
2
|
export * from './lib/components/combobox-with-api-pagination';
|
3
3
|
export * from './lib/components/filter-dropdown-menu';
|
4
|
+
export * from './lib/components/filter-instances-dropdown';
|
4
5
|
export * from './lib/components/metadata-empty-state/metadata-empty-state';
|
5
6
|
export * from './lib/components/metadata-instance-editor';
|
6
7
|
export * from './lib/components/metadata-instance-list';
|