@uxda/appkit 4.1.6 → 4.1.10
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/index.js +2 -5
- package/package.json +1 -1
- package/src/index.ts +3 -3
package/dist/index.js
CHANGED
|
@@ -7710,9 +7710,9 @@ const nutComponents = [
|
|
|
7710
7710
|
// CellGroup,
|
|
7711
7711
|
// Dialog
|
|
7712
7712
|
];
|
|
7713
|
-
|
|
7713
|
+
({
|
|
7714
7714
|
...components
|
|
7715
|
-
};
|
|
7715
|
+
});
|
|
7716
7716
|
const services = [...services$1];
|
|
7717
7717
|
const $app = {
|
|
7718
7718
|
setToken: (token) => {
|
|
@@ -7746,9 +7746,6 @@ const AppKit = {
|
|
|
7746
7746
|
nutComponents.forEach((component) => {
|
|
7747
7747
|
app.use(component);
|
|
7748
7748
|
});
|
|
7749
|
-
Object.entries(appComponents).forEach(([name, component]) => {
|
|
7750
|
-
app.component(name, component);
|
|
7751
|
-
});
|
|
7752
7749
|
}
|
|
7753
7750
|
};
|
|
7754
7751
|
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -72,9 +72,9 @@ const AppKit = {
|
|
|
72
72
|
nutComponents.forEach((component) => {
|
|
73
73
|
app.use(component)
|
|
74
74
|
})
|
|
75
|
-
Object.entries(appComponents).forEach(([name, component]) => {
|
|
76
|
-
|
|
77
|
-
})
|
|
75
|
+
// Object.entries(appComponents).forEach(([name, component]) => {
|
|
76
|
+
// app.component(name, component)
|
|
77
|
+
// })
|
|
78
78
|
},
|
|
79
79
|
}
|
|
80
80
|
|