not-bulma 1.0.47 → 1.0.48
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 +1 -1
- package/src/elements/layout/ui.column.svelte +4 -4
- package/src/elements/layout/ui.columns.svelte +3 -3
- package/src/elements/layout/ui.container.svelte +17 -16
- package/src/elements/layout/ui.section.svelte +5 -6
- package/src/frame/components/form/index.js +6 -10
- package/src/frame/components/index.js +20 -19
- package/src/frame/index.js +1 -0
package/package.json
CHANGED
|
@@ -1,21 +1,22 @@
|
|
|
1
1
|
<script>
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
export let id = "";
|
|
3
|
+
export let classes = "";
|
|
4
|
+
export let widescreen = false;
|
|
5
|
+
export let fullhd = false;
|
|
6
|
+
export let maxDesktop = false;
|
|
7
|
+
export let maxWidescreen = false;
|
|
8
|
+
export let fluid = false;
|
|
9
9
|
</script>
|
|
10
10
|
|
|
11
11
|
<div
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
12
|
+
{id}
|
|
13
|
+
class="container {classes}"
|
|
14
|
+
class:is-widescreen={widescreen}
|
|
15
|
+
class:is-fullhd={fullhd}
|
|
16
|
+
class:is-max-desktop={maxDesktop}
|
|
17
|
+
class:is-max-widescreen={maxWidescreen}
|
|
18
|
+
class:is-fluid={fluid}
|
|
19
|
+
on:click
|
|
20
|
+
>
|
|
21
|
+
<slot />
|
|
21
22
|
</div>
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
<script>
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
export let id = "";
|
|
3
|
+
export let size; //medium, large
|
|
4
|
+
export let classes = "";
|
|
6
5
|
</script>
|
|
7
6
|
|
|
8
|
-
<section {id} class="section {size?
|
|
9
|
-
|
|
7
|
+
<section {id} class="section {size ? 'is-' + size : ''} {classes}" on:click>
|
|
8
|
+
<slot />
|
|
10
9
|
</section>
|
|
@@ -1,11 +1,7 @@
|
|
|
1
|
-
import notFormUtils from
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
1
|
+
import notFormUtils from "./utils";
|
|
2
|
+
import notFormHelpers from "./form.helpers";
|
|
3
|
+
import notForm from "./form";
|
|
4
|
+
import notFormSet from "./form.set";
|
|
5
|
+
import UIForm from "./form.svelte";
|
|
5
6
|
|
|
6
|
-
export {
|
|
7
|
-
UIForm,
|
|
8
|
-
notForm,
|
|
9
|
-
notFormSet,
|
|
10
|
-
notFormUtils
|
|
11
|
-
};
|
|
7
|
+
export { UIForm, notForm, notFormSet, notFormUtils, notFormHelpers };
|
|
@@ -1,27 +1,28 @@
|
|
|
1
|
-
import {notTable} from
|
|
1
|
+
import { notTable } from "./table";
|
|
2
2
|
|
|
3
|
-
import notActionUI from
|
|
3
|
+
import notActionUI from "./action/action.ui.js";
|
|
4
4
|
|
|
5
5
|
import {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
6
|
+
notForm,
|
|
7
|
+
notFormSet,
|
|
8
|
+
notFormUtils,
|
|
9
|
+
notFormHelpers,
|
|
10
|
+
UIForm,
|
|
11
|
+
} from "./form";
|
|
11
12
|
|
|
12
|
-
import notBreadcrumbs from
|
|
13
|
-
|
|
14
|
-
import {notTopMenu, notSideMenu} from './navigation';
|
|
13
|
+
import notBreadcrumbs from "./breadcrumbs";
|
|
15
14
|
|
|
15
|
+
import { notTopMenu, notSideMenu } from "./navigation";
|
|
16
16
|
|
|
17
17
|
export {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
18
|
+
notActionUI,
|
|
19
|
+
notTable,
|
|
20
|
+
UIForm,
|
|
21
|
+
notForm,
|
|
22
|
+
notFormSet,
|
|
23
|
+
notFormUtils,
|
|
24
|
+
notFormHelpers,
|
|
25
|
+
notBreadcrumbs,
|
|
26
|
+
notTopMenu,
|
|
27
|
+
notSideMenu,
|
|
27
28
|
};
|