Commit 96bc463d authored by Duggan, John's avatar Duggan, John
Browse files

Prepare release 0.18.1

parent 7df65a18
Loading
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
### nova-trame, 0.18.0
### nova-trame, 0.18.1

* The `CompactTheme` has been overhauled and should produce denser UIs (thanks to Kristin Maroun).

### nova-trame, 0.18.0

* You can now use `nova.trame.view.components.FileUpload` to allow the user to upload a file from their computer or pick a file off of the analysis cluster (thanks to John Duggan).
* Content placed in the `post_content` slot will now stick to the bottom of the main `content` slot instead of sticking to the bottom of the page (thanks to John Duggan).
+3 −0
Original line number Diff line number Diff line
@@ -37,6 +37,9 @@ class GridLayout(html.Div):
        valign : optional[str]
            The vertical alignment of items in the grid. See `MDN
            <https://developer.mozilla.org/en-US/docs/Web/CSS/align-items>`__ for available options.
        gap : optional[str]
            The gap to place between items (works both horizontally and vertically). Can be any CSS gap value (e.g.
            "4px" or "0.25em"). Defaults to no gap between items.
        kwargs : Any
            Additional keyword arguments to pass to html.Div.

+6 −0
Original line number Diff line number Diff line
@@ -34,6 +34,12 @@ class HBoxLayout(html.Div):
        valign : optional[str]
            The vertical alignment of items in the grid. See `MDN
            <https://developer.mozilla.org/en-US/docs/Web/CSS/align-items>`__ for available options.
        gap : optional[str]
            The horizontal gap to place between items. Can be any CSS gap value (e.g. "4px" or "0.25em"). Defaults to no
            gap between items.
        vspace : optional[str]
            The vertical gap to place between items. Can be any CSS gap value (e.g. "4px" or "0.25em"). Defaults to no
            gap between items.
        kwargs : Any
            Additional keyword arguments to pass to html.Div.

+6 −0
Original line number Diff line number Diff line
@@ -34,6 +34,12 @@ class VBoxLayout(html.Div):
        valign : optional[str]
            The vertical alignment of items in the grid. See `MDN
            <https://developer.mozilla.org/en-US/docs/Web/CSS/justify-items>`__ for available options.
        gap : optional[str]
            The horizontal gap to place between items. Can be any CSS gap value (e.g. "4px" or "0.25em"). Defaults to no
            gap between items.
        vspace : optional[str]
            The vertical gap to place between items. Can be any CSS gap value (e.g. "4px" or "0.25em"). Defaults to no
            gap between items.
        kwargs : Any
            Additional keyword arguments to pass to html.Div.

+12 −18
Original line number Diff line number Diff line
@@ -12,20 +12,6 @@ html {
    box-shadow: none !important;
}

.v-tab.v-btn {
    height: 30px !important;
    min-width: fit-content !important;
    padding: 10px !important;
}

.v-container {
    padding: 0px !important;
}

.v-checkbox .v-selection-control {
    min-height: 0px !important;
}

.mpl-message, .ui-dialog-titlebar {
    display: none !important;
}
@@ -34,7 +20,7 @@ html {
    resize: none !important;
}

&.v-window {
.v-window {
    overflow-x: visible !important;
    overflow-y: visible !important;
}
@@ -67,6 +53,14 @@ html {
        padding: 10px !important;
    }

    .v-container {
        padding: 0px !important;
    }

    .v-checkbox .v-selection-control {
        min-height: 0px !important;
    }

    .v-card-title,
    .v-list-item-title,
    .v-toolbar-title {
Loading