not-bulma 1.0.45 → 1.0.46
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/package.json
CHANGED
|
@@ -1,13 +1,17 @@
|
|
|
1
|
-
import UIColumn from
|
|
2
|
-
import UIColumns from
|
|
3
|
-
import UIContainer from
|
|
4
|
-
import UIFooter from
|
|
5
|
-
import UISection from
|
|
1
|
+
import UIColumn from "./ui.column.svelte";
|
|
2
|
+
import UIColumns from "./ui.columns.svelte";
|
|
3
|
+
import UIContainer from "./ui.container.svelte";
|
|
4
|
+
import UIFooter from "./ui.footer.svelte";
|
|
5
|
+
import UISection from "./ui.section.svelte";
|
|
6
|
+
import UILevelItem from "./ui.level.item.svelte";
|
|
7
|
+
import UILevel from "./ui.level.svelte";
|
|
6
8
|
|
|
7
9
|
export {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
UIColumn,
|
|
11
|
+
UIColumns,
|
|
12
|
+
UIContainer,
|
|
13
|
+
UIFooter,
|
|
14
|
+
UISection,
|
|
15
|
+
UILevelItem,
|
|
16
|
+
UILevel,
|
|
13
17
|
};
|
package/src/frame/index.js
CHANGED
|
@@ -47,27 +47,27 @@ import notCRUD from "./crud/controller.crud.js";
|
|
|
47
47
|
const ncCRUD = notCRUD; //legacy alias
|
|
48
48
|
|
|
49
49
|
export {
|
|
50
|
-
notCommon,
|
|
51
|
-
notPath,
|
|
52
|
-
notController,
|
|
53
|
-
notBase,
|
|
54
|
-
notRouter,
|
|
55
|
-
notRecord,
|
|
56
|
-
notInterface,
|
|
57
|
-
notApp,
|
|
58
|
-
notAPI,
|
|
59
|
-
notStores,
|
|
60
|
-
notCRUD,
|
|
61
|
-
ncCRUD,
|
|
62
50
|
COMPONENTS,
|
|
63
51
|
FIELDS,
|
|
64
|
-
VARIANTS,
|
|
65
|
-
notTable,
|
|
66
52
|
UIForm,
|
|
53
|
+
VARIANTS,
|
|
54
|
+
ncCRUD,
|
|
55
|
+
notAPI,
|
|
56
|
+
notApp,
|
|
57
|
+
notBase,
|
|
58
|
+
notBreadcrumbs,
|
|
59
|
+
notCRUD,
|
|
60
|
+
notCommon,
|
|
61
|
+
notController,
|
|
67
62
|
notForm,
|
|
68
63
|
notFormSet,
|
|
69
64
|
notFormUtils,
|
|
70
|
-
|
|
71
|
-
|
|
65
|
+
notInterface,
|
|
66
|
+
notPath,
|
|
67
|
+
notRecord,
|
|
68
|
+
notRouter,
|
|
72
69
|
notSideMenu,
|
|
70
|
+
notStores,
|
|
71
|
+
notTable,
|
|
72
|
+
notTopMenu,
|
|
73
73
|
};
|