@qin-ui/antdv-next-pro 1.0.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/es/antdv-next-pro.css +58 -0
- package/es/component-provider/index-B-Yy-eoc.js +519 -0
- package/es/component-provider/index.js +5 -0
- package/es/form/index-DnjfDQC_.js +439 -0
- package/es/form/index.js +20 -0
- package/es/index.d.ts +840 -0
- package/es/index.js +47 -0
- package/es/table/index.js +679 -0
- package/es/vendor/utils/lodash-es-p6jau26B.js +1120 -0
- package/package.json +44 -0
package/es/index.js
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import "./antdv-next-pro.css";
|
|
2
|
+
import { _ as _sfc_main } from "./form/index-DnjfDQC_.js";
|
|
3
|
+
import { c, b, C, a, F, d, T, g, e, u, f } from "./form/index-DnjfDQC_.js";
|
|
4
|
+
import { _ as _sfc_main$1 } from "./component-provider/index-B-Yy-eoc.js";
|
|
5
|
+
import { a as a2, I, b as b2, f as f2 } from "./component-provider/index-B-Yy-eoc.js";
|
|
6
|
+
import BaseTable from "./table/index.js";
|
|
7
|
+
import { useTable } from "./table/index.js";
|
|
8
|
+
const withInstall = (comp) => {
|
|
9
|
+
comp.install = (app) => {
|
|
10
|
+
app.component(comp.name, comp);
|
|
11
|
+
};
|
|
12
|
+
return comp;
|
|
13
|
+
};
|
|
14
|
+
const ProForm = withInstall(_sfc_main);
|
|
15
|
+
const ProTable = withInstall(BaseTable);
|
|
16
|
+
const ProComponentProvider = withInstall(_sfc_main$1);
|
|
17
|
+
const components = [ProForm, ProTable, ProComponentProvider];
|
|
18
|
+
const index = {
|
|
19
|
+
install(app) {
|
|
20
|
+
components.forEach((component) => {
|
|
21
|
+
app.component(component.name, component);
|
|
22
|
+
});
|
|
23
|
+
}
|
|
24
|
+
};
|
|
25
|
+
export {
|
|
26
|
+
c as BaseField,
|
|
27
|
+
_sfc_main as BaseForm,
|
|
28
|
+
b as BaseFormItem,
|
|
29
|
+
C as COMPONENT_MAP,
|
|
30
|
+
a as ContainerFragment,
|
|
31
|
+
F as FORM_ITEM_SLOT_KEYS,
|
|
32
|
+
a2 as INJECT_CONFIG,
|
|
33
|
+
I as InjectionFormKey,
|
|
34
|
+
b2 as InjectionPathKey,
|
|
35
|
+
ProComponentProvider,
|
|
36
|
+
ProForm,
|
|
37
|
+
ProTable,
|
|
38
|
+
d as SlotComponent,
|
|
39
|
+
T as TeleportComponentNamePrefix,
|
|
40
|
+
index as default,
|
|
41
|
+
g as getInitProps,
|
|
42
|
+
e as useFields,
|
|
43
|
+
u as useForm,
|
|
44
|
+
f2 as useFormData,
|
|
45
|
+
f as useFormRef,
|
|
46
|
+
useTable
|
|
47
|
+
};
|