bucketwarden-server 0.1.0

BucketWarden storage server runtime.
Documentation
use super::BrowserUiFeatureDefinition;

pub(super) const FEATURES: &[BrowserUiFeatureDefinition] = &[
    (
        "feat:bucketwarden.ui.browser-application",
        "Browser UI application",
        "product",
        "browser-ui.application",
    ),
    (
        "feat:bucketwarden.ui.browser.shell",
        "Browser UI application shell",
        "shell",
        "browser-ui.shell",
    ),
    (
        "feat:bucketwarden.ui.browser.navigation",
        "Browser UI navigation and information architecture",
        "shell",
        "browser-ui.navigation",
    ),
    (
        "feat:bucketwarden.ui.browser.visual-layout-ia",
        "Browser UI visual layout and information architecture",
        "shell",
        "browser-ui.visual-layout-ia",
    ),
    (
        "feat:bucketwarden.ui.browser.sidebar-order",
        "Browser UI sidebar order",
        "shell",
        "browser-ui.sidebar-order",
    ),
    (
        "feat:bucketwarden.ui.browser.topbar-context-order",
        "Browser UI topbar context order",
        "shell",
        "browser-ui.topbar-context-order",
    ),
    (
        "feat:bucketwarden.ui.browser.page-header-structure",
        "Browser UI page header structure",
        "shell",
        "browser-ui.page-header-structure",
    ),
    (
        "feat:bucketwarden.ui.browser.secondary-inspector-drawer",
        "Browser UI secondary inspector drawer",
        "shell",
        "browser-ui.secondary-inspector-drawer",
    ),
    (
        "feat:bucketwarden.ui.browser.security-boundaries",
        "Browser UI security boundaries",
        "security",
        "browser-ui.security-boundaries",
    ),
    (
        "feat:bucketwarden.ui.browser.client-router",
        "Browser UI client router",
        "shell",
        "browser-ui.client-router",
    ),
    (
        "feat:bucketwarden.ui.browser.navigation-shell",
        "Browser UI navigation shell",
        "shell",
        "browser-ui.navigation-shell",
    ),
    (
        "feat:bucketwarden.ui.browser.shell.persistent-layout",
        "Browser UI persistent shell layout",
        "shell",
        "browser-ui.shell.persistent-layout",
    ),
    (
        "feat:bucketwarden.ui.browser.shell.route-aware-pages",
        "Browser UI route-aware pages",
        "shell",
        "browser-ui.shell.route-aware-pages",
    ),
    (
        "feat:bucketwarden.ui.browser.shell.sidebar-navigation",
        "Browser UI sidebar navigation",
        "shell",
        "browser-ui.shell.sidebar-navigation",
    ),
    (
        "feat:bucketwarden.ui.browser.shell.topbar-context",
        "Browser UI topbar context",
        "shell",
        "browser-ui.shell.topbar-context",
    ),
    (
        "feat:bucketwarden.ui.browser.shell.loading-empty-error-denied-states",
        "Browser UI page state model",
        "shell",
        "browser-ui.shell.loading-empty-error-denied-states",
    ),
    (
        "feat:bucketwarden.ui.browser.route-hydration-visible-state",
        "Browser UI route hydration visible state",
        "shell",
        "browser-ui.route-hydration-visible-state",
    ),
    (
        "feat:bucketwarden.ui.browser.versioned-route-v1",
        "Browser UI v1 route namespace",
        "shell",
        "browser-ui.versioned-route-v1",
    ),
    (
        "feat:bucketwarden.ui.browser.api-client",
        "Browser UI governed API client",
        "api",
        "browser-ui.api-client",
    ),
];