mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
Run npm run lint
This commit is contained in:
parent
b982387a8c
commit
2031cb7585
480 changed files with 8985 additions and 9048 deletions
|
@ -30,10 +30,7 @@
|
||||||
"routify": {
|
"routify": {
|
||||||
"routifyDir": ".routify",
|
"routifyDir": ".routify",
|
||||||
"dynamicImports": true,
|
"dynamicImports": true,
|
||||||
"extensions": [
|
"extensions": ["svelte", "svx"]
|
||||||
"svelte",
|
|
||||||
"svx"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"type": "module"
|
"type": "module"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<script>
|
<script>
|
||||||
import { Router } from "@sveltech/routify";
|
import { Router } from "@sveltech/routify";
|
||||||
import { routes } from "../.routify/routes";
|
import { routes } from "../.routify/routes";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Router {routes} />
|
<Router {routes} />
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
<script>
|
<script>
|
||||||
export let component = {
|
export let component = {
|
||||||
props: [],
|
props: [],
|
||||||
slots: [],
|
slots: [],
|
||||||
events: [],
|
events: [],
|
||||||
rest_props: undefined,
|
rest_props: undefined,
|
||||||
typedefs: [],
|
typedefs: [],
|
||||||
};
|
};
|
||||||
|
|
||||||
import { onMount } from "svelte";
|
import { onMount } from "svelte";
|
||||||
import {
|
import {
|
||||||
OutboundLink,
|
OutboundLink,
|
||||||
StructuredList,
|
StructuredList,
|
||||||
StructuredListHead,
|
StructuredListHead,
|
||||||
|
@ -18,32 +18,31 @@
|
||||||
UnorderedList,
|
UnorderedList,
|
||||||
ListItem,
|
ListItem,
|
||||||
Tag,
|
Tag,
|
||||||
} from "carbon-components-svelte";
|
} from "carbon-components-svelte";
|
||||||
import InlineSnippet from "./InlineSnippet.svelte";
|
import InlineSnippet from "./InlineSnippet.svelte";
|
||||||
|
|
||||||
let AsyncPreviewTypeScript;
|
let AsyncPreviewTypeScript;
|
||||||
|
|
||||||
onMount(async () => {
|
onMount(async () => {
|
||||||
AsyncPreviewTypeScript = (await import("./PreviewTypeScript.svelte"))
|
AsyncPreviewTypeScript = (await import("./PreviewTypeScript.svelte")).default;
|
||||||
.default;
|
});
|
||||||
});
|
|
||||||
|
|
||||||
const mdn_api = "https://developer.mozilla.org/en-US/docs/Web/API/";
|
const mdn_api = "https://developer.mozilla.org/en-US/docs/Web/API/";
|
||||||
const typeMap = {
|
const typeMap = {
|
||||||
string: "string",
|
string: "string",
|
||||||
boolean: "boolean",
|
boolean: "boolean",
|
||||||
number: "number",
|
number: "number",
|
||||||
null: "null",
|
null: "null",
|
||||||
Date: "JavaScript Date",
|
Date: "JavaScript Date",
|
||||||
};
|
};
|
||||||
|
|
||||||
$: source = `https://github.com/carbon-design-system/carbon-components-svelte/tree/master/${component.filePath}`;
|
$: source = `https://github.com/carbon-design-system/carbon-components-svelte/tree/master/${component.filePath}`;
|
||||||
$: forwarded_events = component.events.filter(
|
$: forwarded_events = component.events.filter(
|
||||||
(event) => event.type === "forwarded",
|
(event) => event.type === "forwarded",
|
||||||
);
|
);
|
||||||
$: dispatched_events = component.events.filter(
|
$: dispatched_events = component.events.filter(
|
||||||
(event) => event.type === "dispatched",
|
(event) => event.type === "dispatched",
|
||||||
);
|
);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<p style="margin-bottom: var(--cds-layout-02)">
|
<p style="margin-bottom: var(--cds-layout-02)">
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<script>
|
<script>
|
||||||
export let code = "";
|
export let code = "";
|
||||||
|
|
||||||
import copy from "clipboard-copy";
|
import copy from "clipboard-copy";
|
||||||
import { CodeSnippet } from "carbon-components-svelte";
|
import { CodeSnippet } from "carbon-components-svelte";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
|
|
|
@ -1,16 +1,16 @@
|
||||||
<script>
|
<script>
|
||||||
export let code = "";
|
export let code = "";
|
||||||
export let codeRaw = "";
|
export let codeRaw = "";
|
||||||
export let src = "";
|
export let src = "";
|
||||||
export let framed = false;
|
export let framed = false;
|
||||||
|
|
||||||
import copy from "clipboard-copy";
|
import copy from "clipboard-copy";
|
||||||
import { CodeSnippet, Button } from "carbon-components-svelte";
|
import { CodeSnippet, Button } from "carbon-components-svelte";
|
||||||
import Launch from "carbon-icons-svelte/lib/Launch.svelte";
|
import Launch from "carbon-icons-svelte/lib/Launch.svelte";
|
||||||
import { url } from "@sveltech/routify";
|
import { url } from "@sveltech/routify";
|
||||||
import { theme } from "../store";
|
import { theme } from "../store";
|
||||||
|
|
||||||
$: themedSrcUrl = $url(`${src}?theme=${$theme}`);
|
$: themedSrcUrl = $url(`${src}?theme=${$theme}`);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="preview">
|
<div class="preview">
|
||||||
|
|
|
@ -1,17 +1,13 @@
|
||||||
<script>
|
<script>
|
||||||
export let code = "";
|
export let code = "";
|
||||||
export let type = "multi";
|
export let type = "multi";
|
||||||
|
|
||||||
import { CodeSnippet } from "carbon-components-svelte";
|
import { CodeSnippet } from "carbon-components-svelte";
|
||||||
import { highlight } from "prismjs";
|
import { highlight } from "prismjs";
|
||||||
import "prismjs/components/prism-typescript";
|
import "prismjs/components/prism-typescript";
|
||||||
import copy from "clipboard-copy";
|
import copy from "clipboard-copy";
|
||||||
|
|
||||||
$: highlightedCode = highlight(
|
$: highlightedCode = highlight(code, Prism.languages.typescript, "typescript");
|
||||||
code,
|
|
||||||
Prism.languages.typescript,
|
|
||||||
"typescript",
|
|
||||||
);
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
{#if type === "multi"}
|
{#if type === "multi"}
|
||||||
|
|
|
@ -1,15 +1,15 @@
|
||||||
<script>
|
<script>
|
||||||
export let href = undefined;
|
export let href = undefined;
|
||||||
export let title = "";
|
export let title = "";
|
||||||
export let subtitle = "";
|
export let subtitle = "";
|
||||||
export let borderRight = false;
|
export let borderRight = false;
|
||||||
export let borderBottom = false;
|
export let borderBottom = false;
|
||||||
|
|
||||||
import { AspectRatio, ClickableTile, Tile } from "carbon-components-svelte";
|
import { AspectRatio, ClickableTile, Tile } from "carbon-components-svelte";
|
||||||
import LogoGithub from "carbon-icons-svelte/lib/LogoGithub.svelte";
|
import LogoGithub from "carbon-icons-svelte/lib/LogoGithub.svelte";
|
||||||
import Launch from "carbon-icons-svelte/lib/Launch.svelte";
|
import Launch from "carbon-icons-svelte/lib/Launch.svelte";
|
||||||
|
|
||||||
$: tileComponent = href ? ClickableTile : Tile;
|
$: tileComponent = href ? ClickableTile : Tile;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="card-wrapper" class:borderRight class:borderBottom>
|
<div class="card-wrapper" class:borderRight class:borderBottom>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
Grid,
|
Grid,
|
||||||
Link,
|
Link,
|
||||||
Row,
|
Row,
|
||||||
|
@ -12,37 +12,37 @@
|
||||||
Tabs,
|
Tabs,
|
||||||
Tab,
|
Tab,
|
||||||
TabContent,
|
TabContent,
|
||||||
} from "carbon-components-svelte";
|
} from "carbon-components-svelte";
|
||||||
import Code from "carbon-icons-svelte/lib/Code.svelte";
|
import Code from "carbon-icons-svelte/lib/Code.svelte";
|
||||||
import { page, metatags } from "@sveltech/routify";
|
import { page, metatags } from "@sveltech/routify";
|
||||||
import { onMount } from "svelte";
|
import { onMount } from "svelte";
|
||||||
import { theme } from "../store";
|
import { theme } from "../store";
|
||||||
import ComponentApi from "../components/ComponentApi.svelte";
|
import ComponentApi from "../components/ComponentApi.svelte";
|
||||||
import COMPONENT_API from "../COMPONENT_API.json";
|
import COMPONENT_API from "../COMPONENT_API.json";
|
||||||
|
|
||||||
export let component = $page.title;
|
export let component = $page.title;
|
||||||
export let components = [component];
|
export let components = [component];
|
||||||
export let unreleased = false;
|
export let unreleased = false;
|
||||||
export let unstable = false;
|
export let unstable = false;
|
||||||
|
|
||||||
metatags.title = $page.title;
|
metatags.title = $page.title;
|
||||||
|
|
||||||
// TODO: `find` is not supported in IE
|
// TODO: `find` is not supported in IE
|
||||||
$: api_components = components.map((i) =>
|
$: api_components = components.map((i) =>
|
||||||
COMPONENT_API.components.find((_) => _.moduleName === i),
|
COMPONENT_API.components.find((_) => _.moduleName === i),
|
||||||
);
|
);
|
||||||
$: multiple = api_components.length > 1;
|
$: multiple = api_components.length > 1;
|
||||||
|
|
||||||
onMount(() => {
|
onMount(() => {
|
||||||
const searchParams = new URLSearchParams(window.location.search);
|
const searchParams = new URLSearchParams(window.location.search);
|
||||||
const current_theme = searchParams.get("theme");
|
const current_theme = searchParams.get("theme");
|
||||||
|
|
||||||
if (["white", "g10", "g80", "g90", "g100"].includes(current_theme)) {
|
if (["white", "g10", "g80", "g90", "g100"].includes(current_theme)) {
|
||||||
theme.set(current_theme);
|
theme.set(current_theme);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
function formatSourceURL(multiple) {
|
function formatSourceURL(multiple) {
|
||||||
const filePath = api_components[0]?.filePath ?? "";
|
const filePath = api_components[0]?.filePath ?? "";
|
||||||
|
|
||||||
if (multiple) {
|
if (multiple) {
|
||||||
|
@ -58,12 +58,12 @@
|
||||||
* @example "src/Tile/ClickableTile.svelte"
|
* @example "src/Tile/ClickableTile.svelte"
|
||||||
*/
|
*/
|
||||||
return filePath;
|
return filePath;
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: [refactor] read from package.json value
|
// TODO: [refactor] read from package.json value
|
||||||
$: sourceCode = `https://github.com/carbon-design-system/carbon-components-svelte/tree/master/${formatSourceURL(
|
$: sourceCode = `https://github.com/carbon-design-system/carbon-components-svelte/tree/master/${formatSourceURL(
|
||||||
multiple,
|
multiple,
|
||||||
)}`;
|
)}`;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<svelte:head>
|
<svelte:head>
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<script>
|
<script>
|
||||||
import { Content, Grid, Row, Column, Link } from "carbon-components-svelte";
|
import { Content, Grid, Row, Column, Link } from "carbon-components-svelte";
|
||||||
import { url, metatags } from "@sveltech/routify";
|
import { url, metatags } from "@sveltech/routify";
|
||||||
|
|
||||||
metatags.title = "404";
|
metatags.title = "404";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Content>
|
<Content>
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
isActive,
|
isActive,
|
||||||
url,
|
url,
|
||||||
layout,
|
layout,
|
||||||
beforeUrlChange,
|
beforeUrlChange,
|
||||||
goto,
|
goto,
|
||||||
} from "@sveltech/routify";
|
} from "@sveltech/routify";
|
||||||
import {
|
import {
|
||||||
Header,
|
Header,
|
||||||
HeaderUtilities,
|
HeaderUtilities,
|
||||||
HeaderAction,
|
HeaderAction,
|
||||||
|
@ -21,13 +21,13 @@
|
||||||
SideNavMenuItem,
|
SideNavMenuItem,
|
||||||
Theme,
|
Theme,
|
||||||
Tag,
|
Tag,
|
||||||
} from "carbon-components-svelte";
|
} from "carbon-components-svelte";
|
||||||
import MiniSearch from "minisearch";
|
import MiniSearch from "minisearch";
|
||||||
import LogoGithub from "carbon-icons-svelte/lib/LogoGithub.svelte";
|
import LogoGithub from "carbon-icons-svelte/lib/LogoGithub.svelte";
|
||||||
import { theme } from "../store";
|
import { theme } from "../store";
|
||||||
import SEARCH_INDEX from "../SEARCH_INDEX.json";
|
import SEARCH_INDEX from "../SEARCH_INDEX.json";
|
||||||
|
|
||||||
const miniSearch = new MiniSearch({
|
const miniSearch = new MiniSearch({
|
||||||
fields: ["text", "description"],
|
fields: ["text", "description"],
|
||||||
storeFields: ["text", "description", "href"],
|
storeFields: ["text", "description", "href"],
|
||||||
searchOptions: {
|
searchOptions: {
|
||||||
|
@ -35,30 +35,30 @@
|
||||||
boost: { description: 2 },
|
boost: { description: 2 },
|
||||||
fuzzy: 0.1,
|
fuzzy: 0.1,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
miniSearch.addAll(SEARCH_INDEX);
|
miniSearch.addAll(SEARCH_INDEX);
|
||||||
|
|
||||||
const deprecated = [];
|
const deprecated = [];
|
||||||
const new_components = [];
|
const new_components = [];
|
||||||
|
|
||||||
let value = "";
|
let value = "";
|
||||||
let active = false;
|
let active = false;
|
||||||
$: results = miniSearch.search(value).slice(0, 10);
|
$: results = miniSearch.search(value).slice(0, 10);
|
||||||
|
|
||||||
let isOpen = false;
|
let isOpen = false;
|
||||||
let isSideNavOpen = true;
|
let isSideNavOpen = true;
|
||||||
let innerWidth = 2048;
|
let innerWidth = 2048;
|
||||||
|
|
||||||
$: isMobile = innerWidth < 1056;
|
$: isMobile = innerWidth < 1056;
|
||||||
$: components = $layout.children.filter(
|
$: components = $layout.children.filter(
|
||||||
(child) => child.title === "components",
|
(child) => child.title === "components",
|
||||||
)[0];
|
)[0];
|
||||||
|
|
||||||
$beforeUrlChange(() => {
|
$beforeUrlChange(() => {
|
||||||
if (isMobile) isSideNavOpen = false;
|
if (isMobile) isSideNavOpen = false;
|
||||||
return true;
|
return true;
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<!-- routify:options bundle=true -->
|
<!-- routify:options bundle=true -->
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<script>
|
<script>
|
||||||
import { Accordion, AccordionItem, Button } from "carbon-components-svelte";
|
import { Accordion, AccordionItem, Button } from "carbon-components-svelte";
|
||||||
|
|
||||||
const items = [
|
const items = [
|
||||||
{
|
{
|
||||||
title: "Natural Language Classifier",
|
title: "Natural Language Classifier",
|
||||||
description:
|
description:
|
||||||
|
@ -17,9 +17,9 @@
|
||||||
description:
|
description:
|
||||||
"Translate text, documents, and websites from one language to another. Create industry or region-specific translations via the service's customization capability.",
|
"Translate text, documents, and websites from one language to another. Create industry or region-specific translations via the service's customization capability.",
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
let open = false;
|
let open = false;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Button kind="ghost" size="field" on:click={() => (open = !open)}>
|
<Button kind="ghost" size="field" on:click={() => (open = !open)}>
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<script>
|
<script>
|
||||||
import { Breadcrumb, BreadcrumbItem } from "carbon-components-svelte";
|
import { Breadcrumb, BreadcrumbItem } from "carbon-components-svelte";
|
||||||
|
|
||||||
const items = [
|
const items = [
|
||||||
{ href: "/", text: "Dashboard" },
|
{ href: "/", text: "Dashboard" },
|
||||||
{ href: "/reports", text: "Annual reports" },
|
{ href: "/reports", text: "Annual reports" },
|
||||||
{ href: "/reports/2019", text: "2019" },
|
{ href: "/reports/2019", text: "2019" },
|
||||||
];
|
];
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Breadcrumb>
|
<Breadcrumb>
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<script>
|
<script>
|
||||||
import { Breakpoint } from "carbon-components-svelte";
|
import { Breakpoint } from "carbon-components-svelte";
|
||||||
|
|
||||||
let size;
|
let size;
|
||||||
let events = [];
|
let events = [];
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Breakpoint bind:size on:change={(e) => (events = [...events, e.detail])} />
|
<Breakpoint bind:size on:change={(e) => (events = [...events, e.detail])} />
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
<script>
|
<script>
|
||||||
import { breakpointObserver, breakpoints } from "carbon-components-svelte";
|
import { breakpointObserver, breakpoints } from "carbon-components-svelte";
|
||||||
|
|
||||||
const size = breakpointObserver();
|
const size = breakpointObserver();
|
||||||
const smaller = size.smallerThan("md");
|
const smaller = size.smallerThan("md");
|
||||||
const larger = size.largerThan("md");
|
const larger = size.largerThan("md");
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<p>Current breakpoint size: {$size}</p>
|
<p>Current breakpoint size: {$size}</p>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<script>
|
<script>
|
||||||
import { Button } from "carbon-components-svelte";
|
import { Button } from "carbon-components-svelte";
|
||||||
|
|
||||||
let ref;
|
let ref;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Button bind:ref>Primary button</Button>
|
<Button bind:ref>Primary button</Button>
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
<script>
|
<script>
|
||||||
import { Button } from "carbon-components-svelte";
|
import { Button } from "carbon-components-svelte";
|
||||||
import TextBold from "carbon-icons-svelte/lib/TextBold.svelte";
|
import TextBold from "carbon-icons-svelte/lib/TextBold.svelte";
|
||||||
import TextItalic from "carbon-icons-svelte/lib/TextItalic.svelte";
|
import TextItalic from "carbon-icons-svelte/lib/TextItalic.svelte";
|
||||||
import TextUnderline from "carbon-icons-svelte/lib/TextUnderline.svelte";
|
import TextUnderline from "carbon-icons-svelte/lib/TextUnderline.svelte";
|
||||||
|
|
||||||
let index = 1;
|
let index = 1;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<script>
|
<script>
|
||||||
import { Checkbox, Button } from "carbon-components-svelte";
|
import { Checkbox, Button } from "carbon-components-svelte";
|
||||||
|
|
||||||
let checked = false;
|
let checked = false;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Checkbox labelText="Label text" bind:checked />
|
<Checkbox labelText="Label text" bind:checked />
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<script>
|
<script>
|
||||||
import { Checkbox, Button } from "carbon-components-svelte";
|
import { Checkbox, Button } from "carbon-components-svelte";
|
||||||
|
|
||||||
let values = ["Apple", "Banana", "Coconut"];
|
let values = ["Apple", "Banana", "Coconut"];
|
||||||
let group = values.slice(0, 2);
|
let group = values.slice(0, 2);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
{#each values as value}
|
{#each values as value}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<script>
|
<script>
|
||||||
import copy from "clipboard-copy";
|
import copy from "clipboard-copy";
|
||||||
import { CodeSnippet } from "carbon-components-svelte";
|
import { CodeSnippet } from "carbon-components-svelte";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<CodeSnippet
|
<CodeSnippet
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<script>
|
<script>
|
||||||
import { CodeSnippet, Button } from "carbon-components-svelte";
|
import { CodeSnippet, Button } from "carbon-components-svelte";
|
||||||
|
|
||||||
let expanded = false;
|
let expanded = false;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Button on:click={() => (expanded = !expanded)}>Toggle expansion</Button>
|
<Button on:click={() => (expanded = !expanded)}>Toggle expansion</Button>
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
<script>
|
<script>
|
||||||
import { Toggle, CodeSnippet } from "carbon-components-svelte";
|
import { Toggle, CodeSnippet } from "carbon-components-svelte";
|
||||||
|
|
||||||
let toggled = false;
|
let toggled = false;
|
||||||
|
|
||||||
$: length = toggled ? 20 : 10;
|
$: length = toggled ? 20 : 10;
|
||||||
$: code = Array.from({ length }, (_, i) => i + 1).join("\n");
|
$: code = Array.from({ length }, (_, i) => i + 1).join("\n");
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Toggle
|
<Toggle
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
<script>
|
<script>
|
||||||
import { Toggle, CodeSnippet } from "carbon-components-svelte";
|
import { Toggle, CodeSnippet } from "carbon-components-svelte";
|
||||||
|
|
||||||
let toggled = false;
|
let toggled = false;
|
||||||
|
|
||||||
const code = Array.from({ length: 20 }, (_, i) => i + 1).join("\n");
|
const code = Array.from({ length: 20 }, (_, i) => i + 1).join("\n");
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Toggle
|
<Toggle
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<script>
|
<script>
|
||||||
import { ComboBox, Button } from "carbon-components-svelte";
|
import { ComboBox, Button } from "carbon-components-svelte";
|
||||||
|
|
||||||
let ref;
|
let ref;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<ComboBox
|
<ComboBox
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script>
|
<script>
|
||||||
import { ComboBox } from "carbon-components-svelte";
|
import { ComboBox } from "carbon-components-svelte";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<ComboBox
|
<ComboBox
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
<script>
|
<script>
|
||||||
import { ComboBox } from "carbon-components-svelte";
|
import { ComboBox } from "carbon-components-svelte";
|
||||||
|
|
||||||
function shouldFilterItem(item, value) {
|
function shouldFilterItem(item, value) {
|
||||||
if (!value) return true;
|
if (!value) return true;
|
||||||
return item.text.toLowerCase().includes(value.toLowerCase());
|
return item.text.toLowerCase().includes(value.toLowerCase());
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<ComboBox
|
<ComboBox
|
||||||
|
|
|
@ -1,24 +1,24 @@
|
||||||
<script>
|
<script>
|
||||||
import { ComboBox } from "carbon-components-svelte";
|
import { ComboBox } from "carbon-components-svelte";
|
||||||
|
|
||||||
const translation = {
|
const translation = {
|
||||||
Slack: 'Custom label for "Slack"',
|
Slack: 'Custom label for "Slack"',
|
||||||
Email: 'Custom label for "Email"',
|
Email: 'Custom label for "Email"',
|
||||||
Fax: 'Custom label for "Fax"',
|
Fax: 'Custom label for "Fax"',
|
||||||
};
|
};
|
||||||
|
|
||||||
function itemToString(item) {
|
function itemToString(item) {
|
||||||
return translation[item.key];
|
return translation[item.key];
|
||||||
}
|
}
|
||||||
|
|
||||||
function shouldFilterItem(item, value) {
|
function shouldFilterItem(item, value) {
|
||||||
if (!value) return true;
|
if (!value) return true;
|
||||||
const comparison = value.toLowerCase();
|
const comparison = value.toLowerCase();
|
||||||
return (
|
return (
|
||||||
item.key.toLowerCase().includes(comparison) ||
|
item.key.toLowerCase().includes(comparison) ||
|
||||||
itemToString(item).toLowerCase().includes(comparison)
|
itemToString(item).toLowerCase().includes(comparison)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<ComboBox
|
<ComboBox
|
||||||
|
|
|
@ -1,20 +1,20 @@
|
||||||
<script>
|
<script>
|
||||||
import { ComboBox } from "carbon-components-svelte";
|
import { ComboBox } from "carbon-components-svelte";
|
||||||
|
|
||||||
const items = [
|
const items = [
|
||||||
{ id: "0", text: "Slack" },
|
{ id: "0", text: "Slack" },
|
||||||
{ id: "1", text: "Email" },
|
{ id: "1", text: "Email" },
|
||||||
{ id: "2", text: "Fax" },
|
{ id: "2", text: "Fax" },
|
||||||
];
|
];
|
||||||
|
|
||||||
let comboBox1_selectedId = undefined;
|
let comboBox1_selectedId = undefined;
|
||||||
let comboBox2_selectedId = undefined;
|
let comboBox2_selectedId = undefined;
|
||||||
|
|
||||||
const formatSelected = (id) =>
|
const formatSelected = (id) =>
|
||||||
items.find((item) => item.id === id)?.text ?? "N/A";
|
items.find((item) => item.id === id)?.text ?? "N/A";
|
||||||
|
|
||||||
$: primary = formatSelected(comboBox1_selectedId);
|
$: primary = formatSelected(comboBox1_selectedId);
|
||||||
$: secondary = formatSelected(comboBox2_selectedId);
|
$: secondary = formatSelected(comboBox2_selectedId);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<ComboBox
|
<ComboBox
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<script>
|
<script>
|
||||||
import { ComboBox, Button } from "carbon-components-svelte";
|
import { ComboBox, Button } from "carbon-components-svelte";
|
||||||
let selectedId = "1";
|
let selectedId = "1";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<ComboBox
|
<ComboBox
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<script>
|
<script>
|
||||||
import { ContentSwitcher, Switch, Button } from "carbon-components-svelte";
|
import { ContentSwitcher, Switch, Button } from "carbon-components-svelte";
|
||||||
|
|
||||||
let selectedIndex = 1;
|
let selectedIndex = 1;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<ContentSwitcher bind:selectedIndex>
|
<ContentSwitcher bind:selectedIndex>
|
||||||
|
|
|
@ -1,16 +1,16 @@
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
ContextMenu,
|
ContextMenu,
|
||||||
ContextMenuDivider,
|
ContextMenuDivider,
|
||||||
ContextMenuGroup,
|
ContextMenuGroup,
|
||||||
ContextMenuOption,
|
ContextMenuOption,
|
||||||
} from "carbon-components-svelte";
|
} from "carbon-components-svelte";
|
||||||
import CopyFile from "carbon-icons-svelte/lib/CopyFile.svelte";
|
import CopyFile from "carbon-icons-svelte/lib/CopyFile.svelte";
|
||||||
import Cut from "carbon-icons-svelte/lib/Cut.svelte";
|
import Cut from "carbon-icons-svelte/lib/Cut.svelte";
|
||||||
|
|
||||||
let selectedIds = [];
|
let selectedIds = [];
|
||||||
|
|
||||||
$: console.log("selectedIds", selectedIds);
|
$: console.log("selectedIds", selectedIds);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<ContextMenu>
|
<ContextMenu>
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
ContextMenu,
|
ContextMenu,
|
||||||
ContextMenuDivider,
|
ContextMenuDivider,
|
||||||
ContextMenuOption,
|
ContextMenuOption,
|
||||||
ContextMenuRadioGroup,
|
ContextMenuRadioGroup,
|
||||||
} from "carbon-components-svelte";
|
} from "carbon-components-svelte";
|
||||||
|
|
||||||
let selectedId = "0";
|
let selectedId = "0";
|
||||||
|
|
||||||
$: console.log("selectedId", selectedId);
|
$: console.log("selectedId", selectedId);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<ContextMenu>
|
<ContextMenu>
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
ContextMenu,
|
ContextMenu,
|
||||||
ContextMenuDivider,
|
ContextMenuDivider,
|
||||||
ContextMenuGroup,
|
ContextMenuGroup,
|
||||||
ContextMenuOption,
|
ContextMenuOption,
|
||||||
} from "carbon-components-svelte";
|
} from "carbon-components-svelte";
|
||||||
import CopyFile from "carbon-icons-svelte/lib/CopyFile.svelte";
|
import CopyFile from "carbon-icons-svelte/lib/CopyFile.svelte";
|
||||||
import Cut from "carbon-icons-svelte/lib/Cut.svelte";
|
import Cut from "carbon-icons-svelte/lib/Cut.svelte";
|
||||||
|
|
||||||
let target;
|
let target;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<ContextMenu {target} on:open={(e) => console.log(e.detail)}>
|
<ContextMenu {target} on:open={(e) => console.log(e.detail)}>
|
||||||
|
|
|
@ -1,15 +1,15 @@
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
ContextMenu,
|
ContextMenu,
|
||||||
ContextMenuDivider,
|
ContextMenuDivider,
|
||||||
ContextMenuGroup,
|
ContextMenuGroup,
|
||||||
ContextMenuOption,
|
ContextMenuOption,
|
||||||
} from "carbon-components-svelte";
|
} from "carbon-components-svelte";
|
||||||
import CopyFile from "carbon-icons-svelte/lib/CopyFile.svelte";
|
import CopyFile from "carbon-icons-svelte/lib/CopyFile.svelte";
|
||||||
import Cut from "carbon-icons-svelte/lib/Cut.svelte";
|
import Cut from "carbon-icons-svelte/lib/Cut.svelte";
|
||||||
|
|
||||||
let target;
|
let target;
|
||||||
let target2;
|
let target2;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<ContextMenu target={[target, target2]} on:open={(e) => console.log(e.detail)}>
|
<ContextMenu target={[target, target2]} on:open={(e) => console.log(e.detail)}>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<script>
|
<script>
|
||||||
import copy from "clipboard-copy";
|
import copy from "clipboard-copy";
|
||||||
import { CopyButton } from "carbon-components-svelte";
|
import { CopyButton } from "carbon-components-svelte";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<CopyButton text="Carbon svelte" copy={(text) => copy(text)} />
|
<CopyButton text="Carbon svelte" copy={(text) => copy(text)} />
|
||||||
|
|
|
@ -1,25 +1,25 @@
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
DataTable,
|
DataTable,
|
||||||
OverflowMenu,
|
OverflowMenu,
|
||||||
OverflowMenuItem,
|
OverflowMenuItem,
|
||||||
} from "carbon-components-svelte";
|
} from "carbon-components-svelte";
|
||||||
|
|
||||||
const headers = [
|
const headers = [
|
||||||
{ key: "name", value: "Name" },
|
{ key: "name", value: "Name" },
|
||||||
{ key: "port", value: "Port" },
|
{ key: "port", value: "Port" },
|
||||||
{ key: "rule", value: "Rule" },
|
{ key: "rule", value: "Rule" },
|
||||||
{ key: "overflow", empty: true },
|
{ key: "overflow", empty: true },
|
||||||
];
|
];
|
||||||
|
|
||||||
const rows = [
|
const rows = [
|
||||||
{ id: "a", name: "Load Balancer 3", port: 3000, rule: "Round robin" },
|
{ id: "a", name: "Load Balancer 3", port: 3000, rule: "Round robin" },
|
||||||
{ id: "b", name: "Load Balancer 1", port: 443, rule: "Round robin" },
|
{ id: "b", name: "Load Balancer 1", port: 443, rule: "Round robin" },
|
||||||
{ id: "c", name: "Load Balancer 2", port: 80, rule: "DNS delegation" },
|
{ id: "c", name: "Load Balancer 2", port: 80, rule: "DNS delegation" },
|
||||||
{ id: "d", name: "Load Balancer 6", port: 3000, rule: "Round robin" },
|
{ id: "d", name: "Load Balancer 6", port: 3000, rule: "Round robin" },
|
||||||
{ id: "e", name: "Load Balancer 4", port: 443, rule: "Round robin" },
|
{ id: "e", name: "Load Balancer 4", port: 443, rule: "Round robin" },
|
||||||
{ id: "f", name: "Load Balancer 5", port: 80, rule: "DNS delegation" },
|
{ id: "f", name: "Load Balancer 5", port: 80, rule: "DNS delegation" },
|
||||||
];
|
];
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<DataTable sortable {headers} {rows}>
|
<DataTable sortable {headers} {rows}>
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
<script>
|
<script>
|
||||||
import { DataTable } from "carbon-components-svelte";
|
import { DataTable } from "carbon-components-svelte";
|
||||||
|
|
||||||
let selectedRowIds = [];
|
let selectedRowIds = [];
|
||||||
|
|
||||||
$: console.log("selectedRowIds", selectedRowIds);
|
$: console.log("selectedRowIds", selectedRowIds);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<DataTable
|
<DataTable
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
<script>
|
<script>
|
||||||
import { DataTable } from "carbon-components-svelte";
|
import { DataTable } from "carbon-components-svelte";
|
||||||
|
|
||||||
let selectedRowIds = [2, 4];
|
let selectedRowIds = [2, 4];
|
||||||
|
|
||||||
$: console.log("selectedRowIds", selectedRowIds);
|
$: console.log("selectedRowIds", selectedRowIds);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<DataTable
|
<DataTable
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
DataTable,
|
DataTable,
|
||||||
Toolbar,
|
Toolbar,
|
||||||
ToolbarContent,
|
ToolbarContent,
|
||||||
|
@ -8,27 +8,27 @@
|
||||||
ToolbarMenuItem,
|
ToolbarMenuItem,
|
||||||
ToolbarBatchActions,
|
ToolbarBatchActions,
|
||||||
Button,
|
Button,
|
||||||
} from "carbon-components-svelte";
|
} from "carbon-components-svelte";
|
||||||
import Save from "carbon-icons-svelte/lib/Save.svelte";
|
import Save from "carbon-icons-svelte/lib/Save.svelte";
|
||||||
|
|
||||||
const headers = [
|
const headers = [
|
||||||
{ key: "name", value: "Name" },
|
{ key: "name", value: "Name" },
|
||||||
{ key: "port", value: "Port" },
|
{ key: "port", value: "Port" },
|
||||||
{ key: "rule", value: "Rule" },
|
{ key: "rule", value: "Rule" },
|
||||||
];
|
];
|
||||||
|
|
||||||
const rows = [
|
const rows = [
|
||||||
{ id: "a", name: "Load Balancer 3", port: 3000, rule: "Round robin" },
|
{ id: "a", name: "Load Balancer 3", port: 3000, rule: "Round robin" },
|
||||||
{ id: "b", name: "Load Balancer 1", port: 443, rule: "Round robin" },
|
{ id: "b", name: "Load Balancer 1", port: 443, rule: "Round robin" },
|
||||||
{ id: "c", name: "Load Balancer 2", port: 80, rule: "DNS delegation" },
|
{ id: "c", name: "Load Balancer 2", port: 80, rule: "DNS delegation" },
|
||||||
{ id: "d", name: "Load Balancer 6", port: 3000, rule: "Round robin" },
|
{ id: "d", name: "Load Balancer 6", port: 3000, rule: "Round robin" },
|
||||||
{ id: "e", name: "Load Balancer 4", port: 443, rule: "Round robin" },
|
{ id: "e", name: "Load Balancer 4", port: 443, rule: "Round robin" },
|
||||||
{ id: "f", name: "Load Balancer 5", port: 80, rule: "DNS delegation" },
|
{ id: "f", name: "Load Balancer 5", port: 80, rule: "DNS delegation" },
|
||||||
];
|
];
|
||||||
|
|
||||||
let selectedRowIds = [rows[0].id, rows[1].id];
|
let selectedRowIds = [rows[0].id, rows[1].id];
|
||||||
|
|
||||||
$: console.log("selectedRowIds", selectedRowIds);
|
$: console.log("selectedRowIds", selectedRowIds);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<DataTable batchSelection bind:selectedRowIds {headers} {rows}>
|
<DataTable batchSelection bind:selectedRowIds {headers} {rows}>
|
||||||
|
|
|
@ -1,33 +1,33 @@
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
DataTable,
|
DataTable,
|
||||||
Toolbar,
|
Toolbar,
|
||||||
ToolbarContent,
|
ToolbarContent,
|
||||||
ToolbarBatchActions,
|
ToolbarBatchActions,
|
||||||
Button,
|
Button,
|
||||||
} from "carbon-components-svelte";
|
} from "carbon-components-svelte";
|
||||||
import TrashCan from "carbon-icons-svelte/lib/TrashCan.svelte";
|
import TrashCan from "carbon-icons-svelte/lib/TrashCan.svelte";
|
||||||
|
|
||||||
const headers = [
|
const headers = [
|
||||||
{ key: "name", value: "Name" },
|
{ key: "name", value: "Name" },
|
||||||
{ key: "port", value: "Port" },
|
{ key: "port", value: "Port" },
|
||||||
{ key: "rule", value: "Rule" },
|
{ key: "rule", value: "Rule" },
|
||||||
];
|
];
|
||||||
|
|
||||||
let rows = [
|
let rows = [
|
||||||
{ id: "a", name: "Load Balancer 3", port: 3000, rule: "Round robin" },
|
{ id: "a", name: "Load Balancer 3", port: 3000, rule: "Round robin" },
|
||||||
{ id: "b", name: "Load Balancer 1", port: 443, rule: "Round robin" },
|
{ id: "b", name: "Load Balancer 1", port: 443, rule: "Round robin" },
|
||||||
{ id: "c", name: "Load Balancer 2", port: 80, rule: "DNS delegation" },
|
{ id: "c", name: "Load Balancer 2", port: 80, rule: "DNS delegation" },
|
||||||
{ id: "d", name: "Load Balancer 6", port: 3000, rule: "Round robin" },
|
{ id: "d", name: "Load Balancer 6", port: 3000, rule: "Round robin" },
|
||||||
{ id: "e", name: "Load Balancer 4", port: 443, rule: "Round robin" },
|
{ id: "e", name: "Load Balancer 4", port: 443, rule: "Round robin" },
|
||||||
{ id: "f", name: "Load Balancer 5", port: 80, rule: "DNS delegation" },
|
{ id: "f", name: "Load Balancer 5", port: 80, rule: "DNS delegation" },
|
||||||
];
|
];
|
||||||
|
|
||||||
let active = false;
|
let active = false;
|
||||||
let selectedRowIds = [];
|
let selectedRowIds = [];
|
||||||
|
|
||||||
$: console.log("active", active);
|
$: console.log("active", active);
|
||||||
$: console.log("selectedRowIds", selectedRowIds);
|
$: console.log("selectedRowIds", selectedRowIds);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<DataTable
|
<DataTable
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
<script>
|
<script>
|
||||||
import { DataTable } from "carbon-components-svelte";
|
import { DataTable } from "carbon-components-svelte";
|
||||||
|
|
||||||
let expandedRowIds = [];
|
let expandedRowIds = [];
|
||||||
let selectedRowIds = [];
|
let selectedRowIds = [];
|
||||||
|
|
||||||
$: {
|
$: {
|
||||||
console.log("expandedRowIds", expandedRowIds);
|
console.log("expandedRowIds", expandedRowIds);
|
||||||
console.log("selectedRowIds", selectedRowIds);
|
console.log("selectedRowIds", selectedRowIds);
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<DataTable
|
<DataTable
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script>
|
<script>
|
||||||
import { DataTable } from "carbon-components-svelte";
|
import { DataTable } from "carbon-components-svelte";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<DataTable
|
<DataTable
|
||||||
|
|
|
@ -1,24 +1,24 @@
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
DataTable,
|
DataTable,
|
||||||
Toolbar,
|
Toolbar,
|
||||||
ToolbarContent,
|
ToolbarContent,
|
||||||
ToolbarSearch,
|
ToolbarSearch,
|
||||||
Pagination,
|
Pagination,
|
||||||
} from "carbon-components-svelte";
|
} from "carbon-components-svelte";
|
||||||
|
|
||||||
let rows = Array.from({ length: 10 }).map((_, i) => ({
|
let rows = Array.from({ length: 10 }).map((_, i) => ({
|
||||||
id: i,
|
id: i,
|
||||||
name: "Load Balancer " + (i + 1),
|
name: "Load Balancer " + (i + 1),
|
||||||
protocol: "HTTP",
|
protocol: "HTTP",
|
||||||
port: 3000 + i * 10,
|
port: 3000 + i * 10,
|
||||||
rule: i % 2 ? "Round robin" : "DNS delegation",
|
rule: i % 2 ? "Round robin" : "DNS delegation",
|
||||||
}));
|
}));
|
||||||
let pageSize = 5;
|
let pageSize = 5;
|
||||||
let page = 1;
|
let page = 1;
|
||||||
let filteredRowIds = [];
|
let filteredRowIds = [];
|
||||||
|
|
||||||
$: console.log("filteredRowIds", filteredRowIds);
|
$: console.log("filteredRowIds", filteredRowIds);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<DataTable
|
<DataTable
|
||||||
|
|
|
@ -1,24 +1,24 @@
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
DataTable,
|
DataTable,
|
||||||
Toolbar,
|
Toolbar,
|
||||||
ToolbarContent,
|
ToolbarContent,
|
||||||
ToolbarSearch,
|
ToolbarSearch,
|
||||||
Pagination,
|
Pagination,
|
||||||
} from "carbon-components-svelte";
|
} from "carbon-components-svelte";
|
||||||
|
|
||||||
let rows = Array.from({ length: 10 }).map((_, i) => ({
|
let rows = Array.from({ length: 10 }).map((_, i) => ({
|
||||||
id: i,
|
id: i,
|
||||||
name: "Load Balancer " + (i + 1),
|
name: "Load Balancer " + (i + 1),
|
||||||
protocol: "HTTP",
|
protocol: "HTTP",
|
||||||
port: 3000 + i * 10,
|
port: 3000 + i * 10,
|
||||||
rule: i % 2 ? "Round robin" : "DNS delegation",
|
rule: i % 2 ? "Round robin" : "DNS delegation",
|
||||||
}));
|
}));
|
||||||
let pageSize = 5;
|
let pageSize = 5;
|
||||||
let page = 1;
|
let page = 1;
|
||||||
let filteredRowIds = [];
|
let filteredRowIds = [];
|
||||||
|
|
||||||
$: console.log("filteredRowIds", filteredRowIds);
|
$: console.log("filteredRowIds", filteredRowIds);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<DataTable
|
<DataTable
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script>
|
<script>
|
||||||
import { DataTable } from "carbon-components-svelte";
|
import { DataTable } from "carbon-components-svelte";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<DataTable
|
<DataTable
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<script>
|
<script>
|
||||||
import { DataTable } from "carbon-components-svelte";
|
import { DataTable } from "carbon-components-svelte";
|
||||||
|
|
||||||
const rows = [
|
const rows = [
|
||||||
{
|
{
|
||||||
id: "a",
|
id: "a",
|
||||||
name: "Load Balancer 3",
|
name: "Load Balancer 3",
|
||||||
|
@ -44,7 +44,7 @@
|
||||||
port: 80,
|
port: 80,
|
||||||
rule: "DNS delegation",
|
rule: "DNS delegation",
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<DataTable
|
<DataTable
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<script>
|
<script>
|
||||||
import { DataTable } from "carbon-components-svelte";
|
import { DataTable } from "carbon-components-svelte";
|
||||||
|
|
||||||
const rows = [
|
const rows = [
|
||||||
{
|
{
|
||||||
id: "a",
|
id: "a",
|
||||||
name: "Load Balancer 3",
|
name: "Load Balancer 3",
|
||||||
|
@ -44,7 +44,7 @@
|
||||||
port: 80,
|
port: 80,
|
||||||
rule: "DNS delegation",
|
rule: "DNS delegation",
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<DataTable
|
<DataTable
|
||||||
|
|
|
@ -1,15 +1,15 @@
|
||||||
<script>
|
<script>
|
||||||
import { DataTable, Pagination } from "carbon-components-svelte";
|
import { DataTable, Pagination } from "carbon-components-svelte";
|
||||||
|
|
||||||
let rows = Array.from({ length: 10 }).map((_, i) => ({
|
let rows = Array.from({ length: 10 }).map((_, i) => ({
|
||||||
id: i,
|
id: i,
|
||||||
name: "Load Balancer " + (i + 1),
|
name: "Load Balancer " + (i + 1),
|
||||||
protocol: "HTTP",
|
protocol: "HTTP",
|
||||||
port: 3000 + i * 10,
|
port: 3000 + i * 10,
|
||||||
rule: i % 2 ? "Round robin" : "DNS delegation",
|
rule: i % 2 ? "Round robin" : "DNS delegation",
|
||||||
}));
|
}));
|
||||||
let pageSize = 5;
|
let pageSize = 5;
|
||||||
let page = 1;
|
let page = 1;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<DataTable
|
<DataTable
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<script>
|
<script>
|
||||||
import { DataTable, Button } from "carbon-components-svelte";
|
import { DataTable, Button } from "carbon-components-svelte";
|
||||||
|
|
||||||
let sortKey = "port";
|
let sortKey = "port";
|
||||||
let sortDirection = "ascending";
|
let sortDirection = "ascending";
|
||||||
|
|
||||||
$: console.log("sortKey", sortKey);
|
$: console.log("sortKey", sortKey);
|
||||||
$: console.log("sortDirection", sortDirection);
|
$: console.log("sortDirection", sortDirection);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
|
|
|
@ -1,24 +1,24 @@
|
||||||
<script>
|
<script>
|
||||||
import { DataTable } from "carbon-components-svelte";
|
import { DataTable } from "carbon-components-svelte";
|
||||||
|
|
||||||
const headers = [
|
const headers = [
|
||||||
{ key: "name", value: "Name" },
|
{ key: "name", value: "Name" },
|
||||||
{ key: "port", value: "Port" },
|
{ key: "port", value: "Port" },
|
||||||
{ key: "rule", value: "Rule" },
|
{ key: "rule", value: "Rule" },
|
||||||
];
|
];
|
||||||
|
|
||||||
const rows = [
|
const rows = [
|
||||||
{ id: "a", name: "Load Balancer 3", port: 3000, rule: "Round robin" },
|
{ id: "a", name: "Load Balancer 3", port: 3000, rule: "Round robin" },
|
||||||
{ id: "b", name: "Load Balancer 1", port: 443, rule: "Round robin" },
|
{ id: "b", name: "Load Balancer 1", port: 443, rule: "Round robin" },
|
||||||
{ id: "c", name: "Load Balancer 2", port: 80, rule: "DNS delegation" },
|
{ id: "c", name: "Load Balancer 2", port: 80, rule: "DNS delegation" },
|
||||||
{ id: "d", name: "Load Balancer 6", port: 3000, rule: "Round robin" },
|
{ id: "d", name: "Load Balancer 6", port: 3000, rule: "Round robin" },
|
||||||
{ id: "e", name: "Load Balancer 4", port: 443, rule: "Round robin" },
|
{ id: "e", name: "Load Balancer 4", port: 443, rule: "Round robin" },
|
||||||
{ id: "f", name: "Load Balancer 5", port: 80, rule: "DNS delegation" },
|
{ id: "f", name: "Load Balancer 5", port: 80, rule: "DNS delegation" },
|
||||||
];
|
];
|
||||||
|
|
||||||
let selectedRowIds = [rows[1].id];
|
let selectedRowIds = [rows[1].id];
|
||||||
|
|
||||||
$: console.log("selectedRowIds", selectedRowIds);
|
$: console.log("selectedRowIds", selectedRowIds);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<DataTable radio bind:selectedRowIds {headers} {rows} />
|
<DataTable radio bind:selectedRowIds {headers} {rows} />
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
<script>
|
<script>
|
||||||
import { DataTable } from "carbon-components-svelte";
|
import { DataTable } from "carbon-components-svelte";
|
||||||
|
|
||||||
let selectedRowIds = [];
|
let selectedRowIds = [];
|
||||||
|
|
||||||
$: console.log("selectedRowIds", selectedRowIds);
|
$: console.log("selectedRowIds", selectedRowIds);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<DataTable
|
<DataTable
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
Button,
|
Button,
|
||||||
Modal,
|
Modal,
|
||||||
DatePicker,
|
DatePicker,
|
||||||
DatePickerInput,
|
DatePickerInput,
|
||||||
} from "carbon-components-svelte";
|
} from "carbon-components-svelte";
|
||||||
|
|
||||||
let open = false;
|
let open = false;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Button on:click={() => (open = true)}>Select date</Button>
|
<Button on:click={() => (open = true)}>Select date</Button>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script>
|
<script>
|
||||||
import { DatePicker, DatePickerInput } from "carbon-components-svelte";
|
import { DatePicker, DatePickerInput } from "carbon-components-svelte";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<DatePicker datePickerType="range" on:change>
|
<DatePicker datePickerType="range" on:change>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script>
|
<script>
|
||||||
import { DatePicker, DatePickerInput } from "carbon-components-svelte";
|
import { DatePicker, DatePickerInput } from "carbon-components-svelte";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<DatePicker datePickerType="single" on:change>
|
<DatePicker datePickerType="single" on:change>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script>
|
<script>
|
||||||
import { Dropdown } from "carbon-components-svelte";
|
import { Dropdown } from "carbon-components-svelte";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Dropdown
|
<Dropdown
|
||||||
|
|
|
@ -1,20 +1,20 @@
|
||||||
<script>
|
<script>
|
||||||
import { Dropdown } from "carbon-components-svelte";
|
import { Dropdown } from "carbon-components-svelte";
|
||||||
|
|
||||||
const items = [
|
const items = [
|
||||||
{ id: "0", text: "Slack" },
|
{ id: "0", text: "Slack" },
|
||||||
{ id: "1", text: "Email" },
|
{ id: "1", text: "Email" },
|
||||||
{ id: "2", text: "Fax" },
|
{ id: "2", text: "Fax" },
|
||||||
];
|
];
|
||||||
|
|
||||||
let dropdown1_selectedId = "0";
|
let dropdown1_selectedId = "0";
|
||||||
let dropdown2_selectedId = "1";
|
let dropdown2_selectedId = "1";
|
||||||
|
|
||||||
const formatSelected = (id) =>
|
const formatSelected = (id) =>
|
||||||
items.find((item) => item.id === id)?.text ?? "N/A";
|
items.find((item) => item.id === id)?.text ?? "N/A";
|
||||||
|
|
||||||
$: primary = formatSelected(dropdown1_selectedId);
|
$: primary = formatSelected(dropdown1_selectedId);
|
||||||
$: secondary = formatSelected(dropdown2_selectedId);
|
$: secondary = formatSelected(dropdown2_selectedId);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Dropdown
|
<Dropdown
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<script>
|
<script>
|
||||||
import { FileUploader, Button } from "carbon-components-svelte";
|
import { FileUploader, Button } from "carbon-components-svelte";
|
||||||
|
|
||||||
let fileUploader;
|
let fileUploader;
|
||||||
let files = [];
|
let files = [];
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<FileUploader
|
<FileUploader
|
||||||
|
|
|
@ -1,14 +1,10 @@
|
||||||
<script>
|
<script>
|
||||||
import {
|
import { FluidForm, TextInput, PasswordInput } from "carbon-components-svelte";
|
||||||
FluidForm,
|
|
||||||
TextInput,
|
|
||||||
PasswordInput,
|
|
||||||
} from "carbon-components-svelte";
|
|
||||||
|
|
||||||
let password = "";
|
let password = "";
|
||||||
let invalid = false;
|
let invalid = false;
|
||||||
|
|
||||||
$: invalid = !/^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)[a-zA-Z\d]{6,}$/.test(password);
|
$: invalid = !/^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)[a-zA-Z\d]{6,}$/.test(password);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<FluidForm>
|
<FluidForm>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script>
|
<script>
|
||||||
import { Grid, Row, Column } from "carbon-components-svelte";
|
import { Grid, Row, Column } from "carbon-components-svelte";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Grid>
|
<Grid>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script>
|
<script>
|
||||||
import { Grid, Row, Column } from "carbon-components-svelte";
|
import { Grid, Row, Column } from "carbon-components-svelte";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Grid condensed>
|
<Grid condensed>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script>
|
<script>
|
||||||
import { Grid, Row, Column } from "carbon-components-svelte";
|
import { Grid, Row, Column } from "carbon-components-svelte";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Grid fullWidth>
|
<Grid fullWidth>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script>
|
<script>
|
||||||
import { Grid, Row, Column } from "carbon-components-svelte";
|
import { Grid, Row, Column } from "carbon-components-svelte";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Grid>
|
<Grid>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script>
|
<script>
|
||||||
import { Grid, Row, Column } from "carbon-components-svelte";
|
import { Grid, Row, Column } from "carbon-components-svelte";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Grid narrow>
|
<Grid narrow>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script>
|
<script>
|
||||||
import { Grid, Row, Column } from "carbon-components-svelte";
|
import { Grid, Row, Column } from "carbon-components-svelte";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Grid>
|
<Grid>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script>
|
<script>
|
||||||
import { Grid, Row, Column } from "carbon-components-svelte";
|
import { Grid, Row, Column } from "carbon-components-svelte";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div>Adding padding to Grid applies it to columns in all rows:</div>
|
<div>Adding padding to Grid applies it to columns in all rows:</div>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script>
|
<script>
|
||||||
import { Grid, Row, Column } from "carbon-components-svelte";
|
import { Grid, Row, Column } from "carbon-components-svelte";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Grid>
|
<Grid>
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
<script>
|
<script>
|
||||||
import { ImageLoader, Button } from "carbon-components-svelte";
|
import { ImageLoader, Button } from "carbon-components-svelte";
|
||||||
|
|
||||||
const images = [
|
const images = [
|
||||||
"https://upload.wikimedia.org/wikipedia/commons/1/1b/Svelte_Logo.svg",
|
"https://upload.wikimedia.org/wikipedia/commons/1/1b/Svelte_Logo.svg",
|
||||||
"https://upload.wikimedia.org/wikipedia/commons/b/b9/Carbon-design-system-logo.png",
|
"https://upload.wikimedia.org/wikipedia/commons/b/b9/Carbon-design-system-logo.png",
|
||||||
];
|
];
|
||||||
|
|
||||||
let index = 0;
|
let index = 0;
|
||||||
|
|
||||||
$: src = images[index];
|
$: src = images[index];
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
|
|
|
@ -1,12 +1,11 @@
|
||||||
<script>
|
<script>
|
||||||
import { ImageLoader, Button } from "carbon-components-svelte";
|
import { ImageLoader, Button } from "carbon-components-svelte";
|
||||||
|
|
||||||
const src =
|
const src = "https://upload.wikimedia.org/wikipedia/commons/5/51/IBM_logo.svg";
|
||||||
"https://upload.wikimedia.org/wikipedia/commons/5/51/IBM_logo.svg";
|
const srcError = src + "1";
|
||||||
const srcError = src + "1";
|
|
||||||
|
|
||||||
let imageLoader;
|
let imageLoader;
|
||||||
let error;
|
let error;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
|
|
|
@ -1,23 +1,23 @@
|
||||||
<script>
|
<script>
|
||||||
import { Button, ButtonSet, InlineLoading } from "carbon-components-svelte";
|
import { Button, ButtonSet, InlineLoading } from "carbon-components-svelte";
|
||||||
import { onDestroy } from "svelte";
|
import { onDestroy } from "svelte";
|
||||||
|
|
||||||
const descriptionMap = {
|
const descriptionMap = {
|
||||||
active: "Submitting...",
|
active: "Submitting...",
|
||||||
finished: "Success",
|
finished: "Success",
|
||||||
inactive: "Cancelling...",
|
inactive: "Cancelling...",
|
||||||
};
|
};
|
||||||
|
|
||||||
const stateMap = {
|
const stateMap = {
|
||||||
active: "finished",
|
active: "finished",
|
||||||
inactive: "dormant",
|
inactive: "dormant",
|
||||||
finished: "dormant",
|
finished: "dormant",
|
||||||
};
|
};
|
||||||
|
|
||||||
let timeout = undefined;
|
let timeout = undefined;
|
||||||
let state = "dormant"; // "dormant" | "active" | "finished" | "inactive"
|
let state = "dormant"; // "dormant" | "active" | "finished" | "inactive"
|
||||||
|
|
||||||
function reset(incomingState) {
|
function reset(incomingState) {
|
||||||
if (typeof timeout === "number") {
|
if (typeof timeout === "number") {
|
||||||
clearTimeout(timeout);
|
clearTimeout(timeout);
|
||||||
}
|
}
|
||||||
|
@ -27,11 +27,11 @@
|
||||||
state = incomingState;
|
state = incomingState;
|
||||||
}, 2000);
|
}, 2000);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
onDestroy(reset);
|
onDestroy(reset);
|
||||||
|
|
||||||
$: reset(stateMap[state]);
|
$: reset(stateMap[state]);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<ButtonSet>
|
<ButtonSet>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script>
|
<script>
|
||||||
import { Loading } from "carbon-components-svelte";
|
import { Loading } from "carbon-components-svelte";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Loading />
|
<Loading />
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
<script>
|
<script>
|
||||||
import { LocalStorage, Toggle } from "carbon-components-svelte";
|
import { LocalStorage, Toggle } from "carbon-components-svelte";
|
||||||
|
|
||||||
let toggled = false;
|
let toggled = false;
|
||||||
let events = [];
|
let events = [];
|
||||||
|
|
||||||
$: document.documentElement.setAttribute("theme", toggled ? "g100" : "white");
|
$: document.documentElement.setAttribute("theme", toggled ? "g100" : "white");
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<LocalStorage
|
<LocalStorage
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
<script>
|
<script>
|
||||||
import { LocalStorage, Toggle, Button } from "carbon-components-svelte";
|
import { LocalStorage, Toggle, Button } from "carbon-components-svelte";
|
||||||
|
|
||||||
let storage;
|
let storage;
|
||||||
let toggled = false;
|
let toggled = false;
|
||||||
|
|
||||||
$: document.documentElement.setAttribute("theme", toggled ? "g100" : "white");
|
$: document.documentElement.setAttribute("theme", toggled ? "g100" : "white");
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<LocalStorage bind:this={storage} bind:value={toggled} />
|
<LocalStorage bind:this={storage} bind:value={toggled} />
|
||||||
|
|
|
@ -1,15 +1,15 @@
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
Button,
|
Button,
|
||||||
ComposedModal,
|
ComposedModal,
|
||||||
ModalHeader,
|
ModalHeader,
|
||||||
ModalBody,
|
ModalBody,
|
||||||
ModalFooter,
|
ModalFooter,
|
||||||
Checkbox,
|
Checkbox,
|
||||||
} from "carbon-components-svelte";
|
} from "carbon-components-svelte";
|
||||||
|
|
||||||
let open = true;
|
let open = true;
|
||||||
let checked = false;
|
let checked = false;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Button on:click={() => (open = true)}>Review changes</Button>
|
<Button on:click={() => (open = true)}>Review changes</Button>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<script>
|
<script>
|
||||||
import { Button, Modal } from "carbon-components-svelte";
|
import { Button, Modal } from "carbon-components-svelte";
|
||||||
|
|
||||||
let open = false;
|
let open = false;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Button on:click={() => (open = true)}>Create database</Button>
|
<Button on:click={() => (open = true)}>Create database</Button>
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
ComposedModal,
|
ComposedModal,
|
||||||
ModalHeader,
|
ModalHeader,
|
||||||
ModalBody,
|
ModalBody,
|
||||||
ModalFooter,
|
ModalFooter,
|
||||||
Checkbox,
|
Checkbox,
|
||||||
} from "carbon-components-svelte";
|
} from "carbon-components-svelte";
|
||||||
|
|
||||||
let checked = false;
|
let checked = false;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<ComposedModal open>
|
<ComposedModal open>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<script>
|
<script>
|
||||||
import { Button, Modal } from "carbon-components-svelte";
|
import { Button, Modal } from "carbon-components-svelte";
|
||||||
|
|
||||||
let open = false;
|
let open = false;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Button kind="danger" on:click={() => (open = true)}>Delete all</Button>
|
<Button kind="danger" on:click={() => (open = true)}>Delete all</Button>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<script>
|
<script>
|
||||||
import { Button, Modal } from "carbon-components-svelte";
|
import { Button, Modal } from "carbon-components-svelte";
|
||||||
|
|
||||||
let open = false;
|
let open = false;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Button on:click={() => (open = true)}>Create database</Button>
|
<Button on:click={() => (open = true)}>Create database</Button>
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<script>
|
<script>
|
||||||
import { Button, Modal } from "carbon-components-svelte";
|
import { Button, Modal } from "carbon-components-svelte";
|
||||||
import Send from "carbon-icons-svelte/lib/Send.svelte";
|
import Send from "carbon-icons-svelte/lib/Send.svelte";
|
||||||
|
|
||||||
let open = false;
|
let open = false;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Button on:click={() => (open = true)}>Create database</Button>
|
<Button on:click={() => (open = true)}>Create database</Button>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<script>
|
<script>
|
||||||
import { Button, Modal, TextInput } from "carbon-components-svelte";
|
import { Button, Modal, TextInput } from "carbon-components-svelte";
|
||||||
|
|
||||||
let open = false;
|
let open = false;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Button on:click={() => (open = true)}>Create database</Button>
|
<Button on:click={() => (open = true)}>Create database</Button>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<script>
|
<script>
|
||||||
import { Button, Modal } from "carbon-components-svelte";
|
import { Button, Modal } from "carbon-components-svelte";
|
||||||
|
|
||||||
let open = false;
|
let open = false;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Button on:click={() => (open = true)}>Create database</Button>
|
<Button on:click={() => (open = true)}>Create database</Button>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<script>
|
<script>
|
||||||
import { Button, Modal } from "carbon-components-svelte";
|
import { Button, Modal } from "carbon-components-svelte";
|
||||||
|
|
||||||
let open = false;
|
let open = false;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Button on:click={() => (open = true)}>Create database</Button>
|
<Button on:click={() => (open = true)}>Create database</Button>
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<script>
|
<script>
|
||||||
import { Button, Modal } from "carbon-components-svelte";
|
import { Button, Modal } from "carbon-components-svelte";
|
||||||
|
|
||||||
let openCreate = false;
|
let openCreate = false;
|
||||||
let openDelete = false;
|
let openDelete = false;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Button on:click={() => (openCreate = true)}>Create database</Button>
|
<Button on:click={() => (openCreate = true)}>Create database</Button>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<script>
|
<script>
|
||||||
import { Button, Modal } from "carbon-components-svelte";
|
import { Button, Modal } from "carbon-components-svelte";
|
||||||
|
|
||||||
let open = false;
|
let open = false;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Button on:click={() => (open = true)}>Create database</Button>
|
<Button on:click={() => (open = true)}>Create database</Button>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<script>
|
<script>
|
||||||
import { Button, Modal } from "carbon-components-svelte";
|
import { Button, Modal } from "carbon-components-svelte";
|
||||||
|
|
||||||
let open = false;
|
let open = false;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Button on:click={() => (open = true)}>Create database</Button>
|
<Button on:click={() => (open = true)}>Create database</Button>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<script>
|
<script>
|
||||||
import { Button, Modal } from "carbon-components-svelte";
|
import { Button, Modal } from "carbon-components-svelte";
|
||||||
|
|
||||||
let open = false;
|
let open = false;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Button on:click={() => (open = true)}>Create database</Button>
|
<Button on:click={() => (open = true)}>Create database</Button>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<script>
|
<script>
|
||||||
import { Button, Modal } from "carbon-components-svelte";
|
import { Button, Modal } from "carbon-components-svelte";
|
||||||
|
|
||||||
let open = false;
|
let open = false;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Button kind="tertiary" on:click={() => (open = true)}>Learn more</Button>
|
<Button kind="tertiary" on:click={() => (open = true)}>Learn more</Button>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script>
|
<script>
|
||||||
import { MultiSelect } from "carbon-components-svelte";
|
import { MultiSelect } from "carbon-components-svelte";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<MultiSelect
|
<MultiSelect
|
||||||
|
|
|
@ -1,22 +1,22 @@
|
||||||
<script>
|
<script>
|
||||||
import { MultiSelect } from "carbon-components-svelte";
|
import { MultiSelect } from "carbon-components-svelte";
|
||||||
|
|
||||||
const items = [
|
const items = [
|
||||||
{ id: "0", text: "Slack" },
|
{ id: "0", text: "Slack" },
|
||||||
{ id: "1", text: "Email" },
|
{ id: "1", text: "Email" },
|
||||||
{ id: "2", text: "Fax" },
|
{ id: "2", text: "Fax" },
|
||||||
];
|
];
|
||||||
|
|
||||||
let multiselect1_selectedIds = ["0"];
|
let multiselect1_selectedIds = ["0"];
|
||||||
let multiselect2_selectedIds = ["1", "2"];
|
let multiselect2_selectedIds = ["1", "2"];
|
||||||
|
|
||||||
const formatSelected = (i) =>
|
const formatSelected = (i) =>
|
||||||
i.length === 0
|
i.length === 0
|
||||||
? "N/A"
|
? "N/A"
|
||||||
: i.map((id) => items.find((item) => item.id === id).text).join(", ");
|
: i.map((id) => items.find((item) => item.id === id).text).join(", ");
|
||||||
|
|
||||||
$: primary = formatSelected(multiselect1_selectedIds);
|
$: primary = formatSelected(multiselect1_selectedIds);
|
||||||
$: secondary = formatSelected(multiselect2_selectedIds);
|
$: secondary = formatSelected(multiselect2_selectedIds);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<MultiSelect
|
<MultiSelect
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<script>
|
<script>
|
||||||
import { NumberInput, Button } from "carbon-components-svelte";
|
import { NumberInput, Button } from "carbon-components-svelte";
|
||||||
|
|
||||||
let value = null;
|
let value = null;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<NumberInput allowEmpty bind:value />
|
<NumberInput allowEmpty bind:value />
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<script>
|
<script>
|
||||||
import { PaginationNav, Button } from "carbon-components-svelte";
|
import { PaginationNav, Button } from "carbon-components-svelte";
|
||||||
|
|
||||||
let page = 2;
|
let page = 2;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<PaginationNav bind:page />
|
<PaginationNav bind:page />
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<script>
|
<script>
|
||||||
import { Popover, Button } from "carbon-components-svelte";
|
import { Popover, Button } from "carbon-components-svelte";
|
||||||
|
|
||||||
let open = true;
|
let open = true;
|
||||||
let ref = null;
|
let ref = null;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div bind:this={ref} style:position="relative">
|
<div bind:this={ref} style:position="relative">
|
||||||
|
|
|
@ -1,16 +1,16 @@
|
||||||
<script>
|
<script>
|
||||||
import { ProgressBar, ButtonSet, Button } from "carbon-components-svelte";
|
import { ProgressBar, ButtonSet, Button } from "carbon-components-svelte";
|
||||||
|
|
||||||
let max = 328;
|
let max = 328;
|
||||||
let value = 0;
|
let value = 0;
|
||||||
let status = "active";
|
let status = "active";
|
||||||
|
|
||||||
$: helperText =
|
$: helperText =
|
||||||
value > 0 ? value.toFixed(0) + "MB of " + max + "MB" : "Press start";
|
value > 0 ? value.toFixed(0) + "MB of " + max + "MB" : "Press start";
|
||||||
$: if (value === max) {
|
$: if (value === max) {
|
||||||
helperText = "Done";
|
helperText = "Done";
|
||||||
status = "finished";
|
status = "finished";
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<ProgressBar labelText="Upload status" {value} {max} {helperText} {status} />
|
<ProgressBar labelText="Upload status" {value} {max} {helperText} {status} />
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
ProgressIndicator,
|
ProgressIndicator,
|
||||||
ProgressStep,
|
ProgressStep,
|
||||||
Button,
|
Button,
|
||||||
} from "carbon-components-svelte";
|
} from "carbon-components-svelte";
|
||||||
|
|
||||||
let currentIndex = 1;
|
let currentIndex = 1;
|
||||||
let thirdStepCurrent = false;
|
let thirdStepCurrent = false;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<ProgressIndicator bind:currentIndex>
|
<ProgressIndicator bind:currentIndex>
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
Button,
|
Button,
|
||||||
RadioButtonGroup,
|
RadioButtonGroup,
|
||||||
RadioButton,
|
RadioButton,
|
||||||
} from "carbon-components-svelte";
|
} from "carbon-components-svelte";
|
||||||
|
|
||||||
const plans = ["Free (1 GB)", "Standard (10 GB)", "Pro (128 GB)"];
|
const plans = ["Free (1 GB)", "Standard (10 GB)", "Pro (128 GB)"];
|
||||||
|
|
||||||
let plan = plans[1];
|
let plan = plans[1];
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<RadioButtonGroup
|
<RadioButtonGroup
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
<script>
|
<script>
|
||||||
import { TileGroup, RadioTile, Button } from "carbon-components-svelte";
|
import { TileGroup, RadioTile, Button } from "carbon-components-svelte";
|
||||||
|
|
||||||
const values = ["Lite plan", "Standard plan", "Plus plan"];
|
const values = ["Lite plan", "Standard plan", "Plus plan"];
|
||||||
|
|
||||||
let selected = values[1];
|
let selected = values[1];
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<TileGroup legend="Service pricing tiers" name="plan" bind:selected>
|
<TileGroup legend="Service pricing tiers" name="plan" bind:selected>
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
<script>
|
<script>
|
||||||
import { TileGroup, RadioTile } from "carbon-components-svelte";
|
import { TileGroup, RadioTile } from "carbon-components-svelte";
|
||||||
|
|
||||||
const values = ["Lite plan", "Standard plan", "Plus plan"];
|
const values = ["Lite plan", "Standard plan", "Plus plan"];
|
||||||
|
|
||||||
let selected = values[1];
|
let selected = values[1];
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<TileGroup
|
<TileGroup
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<script>
|
<script>
|
||||||
import { RecursiveList } from "carbon-components-svelte";
|
import { RecursiveList } from "carbon-components-svelte";
|
||||||
|
|
||||||
const nodes = [
|
const nodes = [
|
||||||
{
|
{
|
||||||
text: "Item 1",
|
text: "Item 1",
|
||||||
nodes: [
|
nodes: [
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
{
|
{
|
||||||
text: "Item 3",
|
text: "Item 3",
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<RecursiveList {nodes} />
|
<RecursiveList {nodes} />
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<script>
|
<script>
|
||||||
import { RecursiveList, toHierarchy } from "carbon-components-svelte";
|
import { RecursiveList, toHierarchy } from "carbon-components-svelte";
|
||||||
|
|
||||||
const nodesFlat = [
|
const nodesFlat = [
|
||||||
{ id: 1, text: "Item 1" },
|
{ id: 1, text: "Item 1" },
|
||||||
{ id: 2, text: "Item 1a", pid: 1 },
|
{ id: 2, text: "Item 1a", pid: 1 },
|
||||||
{ id: 3, html: "<h5>HTML content</h5>", pid: 2 },
|
{ id: 3, html: "<h5>HTML content</h5>", pid: 2 },
|
||||||
|
@ -14,7 +14,7 @@
|
||||||
pid: 4,
|
pid: 4,
|
||||||
},
|
},
|
||||||
{ id: 7, text: "Item 3" },
|
{ id: 7, text: "Item 3" },
|
||||||
];
|
];
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<RecursiveList nodes={toHierarchy(nodesFlat, (node) => node.pid)} />
|
<RecursiveList nodes={toHierarchy(nodesFlat, (node) => node.pid)} />
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<script>
|
<script>
|
||||||
import { RecursiveList } from "carbon-components-svelte";
|
import { RecursiveList } from "carbon-components-svelte";
|
||||||
|
|
||||||
const nodes = [
|
const nodes = [
|
||||||
{
|
{
|
||||||
text: "Item 1",
|
text: "Item 1",
|
||||||
nodes: [
|
nodes: [
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
{
|
{
|
||||||
text: "Item 3",
|
text: "Item 3",
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<RecursiveList type="ordered" {nodes} />
|
<RecursiveList type="ordered" {nodes} />
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<script>
|
<script>
|
||||||
import { RecursiveList } from "carbon-components-svelte";
|
import { RecursiveList } from "carbon-components-svelte";
|
||||||
|
|
||||||
const nodes = [
|
const nodes = [
|
||||||
{
|
{
|
||||||
text: "Item 1",
|
text: "Item 1",
|
||||||
nodes: [
|
nodes: [
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
{
|
{
|
||||||
text: "Item 3",
|
text: "Item 3",
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<RecursiveList type="ordered-native" {nodes} />
|
<RecursiveList type="ordered-native" {nodes} />
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<script>
|
<script>
|
||||||
import { Search } from "carbon-components-svelte";
|
import { Search } from "carbon-components-svelte";
|
||||||
|
|
||||||
let expanded = false;
|
let expanded = false;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Search expandable bind:expanded on:expand on:collapse />
|
<Search expandable bind:expanded on:expand on:collapse />
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue