carbon-design-system / carbon-platform

The "next" version of the Carbon Design System website, as a platform.
https://next.carbondesignsystem.com
Apache License 2.0
21 stars 5 forks source link

Come up with solution for what to use to replace component demos #763

Closed alisonjoseph closed 2 years ago

alisonjoseph commented 2 years ago

Collaborate with system squad and determine solution to replace component demos on the site.

Should we use Storybook embeds? Something else?

Do we need:

Acceptance criteria:

mattrosno commented 2 years ago

Hey team! Please add your planning poker estimate with ZenHub @alisonjoseph @francinelucca @jdharvey-ibm

mattrosno commented 2 years ago

Notes from today:

Outstanding questions:

  1. Would we have to support Storybook embed height configuration to hardcode heights? Or would we be able to dynamically set iframe heights (example)? Would there be any cross-origin blockers in doing so?
  2. How would we handle versioning if we rely on Storybook embeds for documentation live demos? Even if we host versioned Storybook sites (which is no small ask), Carbon website versioning will be more robust. For example, let's say you're viewing an older version of a component docs like v0.55.1 Area component. For every embed, in our wrapper, do we need to call out that the embed is demonstrating the latest version of the component? (Storybook embed URLs aren't versioned v0.55.1 like Carbon platform.)
  3. How long will it take for Storybook embeds to render? Will it be noticeably bad? Acceptably bad? Non-issue?
  4. Does this mean we'd need a story for every non-image example shown in website? Because Storybook doesn't expose subcomponent controls, we can't put a component in any state through URL alone. We'd need a bespoke story in Storybook for each unique demo shown in website. Is that a bad thing? Could we have a convention in Storybook that stories in a "Demos" directory per component exist for website documentation?
  5. What sanitization would be needed so Storybook embeds aren't misused?
  6. If we wanted to demo specific code versions, are there other good options like CodeSandbox or StackBlitz that act as instant, just-in-time, dev environments?
alisonjoseph commented 2 years ago

@mattrosno

  1. Would we have to support Storybook embed height configuration to hardcode heights? Or would we be able to dynamically set iframe heights (example)? Would there be any cross-origin blockers in doing so?

Need to test this, ideally we could dynamically set height.

  1. How would we handle versioning if we rely on Storybook embeds for documentation live demos? Even if we host versioned Storybook sites (which is no small ask), Carbon website versioning will be more robust. For example, let's say you're viewing an older version of a component docs like v0.55.1 Area component. For every embed, in our wrapper, do we need to call out that the embed is demonstrating the latest version of the component? (Storybook embed URLs aren't versioned v0.55.1 like Carbon platform.)

Could we have an asterisk when viewing older versions with a note that the demo is the latest version? I think its unrealistic for storybook to have all the versions published.

  1. How long will it take for Storybook embeds to render? Will it be noticeably bad? Acceptably bad? Non-issue

There is a slight delay, I put together a quick demo updating storybook url parameters

https://user-images.githubusercontent.com/2753488/173480154-033a30bb-f10f-41f9-8c68-aa5b947fa0eb.mov

  1. Does this mean we'd need a story for every non-image example shown in website? Because Storybook doesn't expose subcomponent controls, we can't put a component in any state through URL alone. We'd need a bespoke story in Storybook for each unique demo shown in website. Is that a bad thing? Could we have a convention in Storybook that stories in a "Demos" directory per component exist for website documentation?

Yes, we'd need a story for an demo we want to show, but I think thats ok. We have flexibility here on what makes the most sense to demo per component.

  1. What sanitization would be needed so Storybook embeds aren't misused? 🤔

  2. If we wanted to demo specific code versions, are there other good options like CodeSandbox or StackBlitz that act as instant, just-in-time, dev environments?

StackBlitz seems to be a no-go, and codesandbox is slow, but doable.

Screen Shot 2022-06-13 at 9 31 19 PM

tay1orjones commented 2 years ago

@alisonjoseph Since we know the predefined parameters available via the dropdowns, could we preload or prefetch them to eliminate the delay?

In theory we could dynamically add link tags to the page with something like

<link rel="preload" href="https://storybookurl.com/iframe.html&parameter=something" as="document">
alisonjoseph commented 2 years ago

@tay1orjones just tried that and I still see a white flash as the iframe src updates, however if I drop 4 iframes on the page it works seamlessly. Will need to test this with more than 4 variations, wondering if it might make the initial page load too slow?

https://user-images.githubusercontent.com/2753488/173594373-c03b5c09-e76f-4424-9450-8ec4d19c4825.mov

alisonjoseph commented 2 years ago

yea thats slow

https://user-images.githubusercontent.com/2753488/173603514-47046960-ed42-4104-b031-2ebdbc68ced9.mov

alisonjoseph commented 2 years ago

@mattrosno brought up an interesting question in slack.

how are you getting the variants? hardcoded for now or are you reading storybook source to get those (so that second dropdown is populated with what you see in storybook side nav)?

Would there be a way to dynamically pull what we want to show in the demo dropdowns from storybook, vs. the user having to define that I assume in the schema?

alisonjoseph commented 2 years ago
stories.json metadata file for Carbon React ``` { "v": 3, "stories": { "getting-started-welcome--welcome": { "id": "getting-started-welcome--welcome", "title": " Getting Started/ Welcome", "name": "Welcome", "importPath": "./.storybook/Welcome/Welcome.stories.js", "kind": " Getting Started/ Welcome", "story": "Welcome", "parameters": { "__id": "getting-started-welcome--welcome", "docsOnly": false, "fileName": "./.storybook/Welcome/Welcome.stories.js" } }, "components-accordion--accordion-story": { "id": "components-accordion--accordion-story", "title": "Components/Accordion", "name": "Accordion", "importPath": "./src/components/Accordion/Accordion.stories.js", "kind": "Components/Accordion", "story": "Accordion", "parameters": { "__id": "components-accordion--accordion-story", "docsOnly": false, "fileName": "./src/components/Accordion/Accordion.stories.js" } }, "components-accordion--skeleton": { "id": "components-accordion--skeleton", "title": "Components/Accordion", "name": "Skeleton", "importPath": "./src/components/Accordion/Accordion.stories.js", "kind": "Components/Accordion", "story": "Skeleton", "parameters": { "__id": "components-accordion--skeleton", "docsOnly": false, "fileName": "./src/components/Accordion/Accordion.stories.js" } }, "components-accordion--playground": { "id": "components-accordion--playground", "title": "Components/Accordion", "name": "Playground", "importPath": "./src/components/Accordion/Accordion.stories.js", "kind": "Components/Accordion", "story": "Playground", "parameters": { "__id": "components-accordion--playground", "docsOnly": false, "fileName": "./src/components/Accordion/Accordion.stories.js" } }, "components-breadcrumb--breadcrumb-story": { "id": "components-breadcrumb--breadcrumb-story", "title": "Components/Breadcrumb", "name": "Breadcrumb", "importPath": "./src/components/Breadcrumb/Breadcrumb-story.js", "kind": "Components/Breadcrumb", "story": "Breadcrumb", "parameters": { "__id": "components-breadcrumb--breadcrumb-story", "docsOnly": false, "fileName": "./src/components/Breadcrumb/Breadcrumb-story.js" } }, "components-breadcrumb--breadcrumb-with-overflow-menu": { "id": "components-breadcrumb--breadcrumb-with-overflow-menu", "title": "Components/Breadcrumb", "name": "Breadcrumb With Overflow Menu", "importPath": "./src/components/Breadcrumb/Breadcrumb-story.js", "kind": "Components/Breadcrumb", "story": "Breadcrumb With Overflow Menu", "parameters": { "__id": "components-breadcrumb--breadcrumb-with-overflow-menu", "docsOnly": false, "fileName": "./src/components/Breadcrumb/Breadcrumb-story.js" } }, "components-breadcrumb--skeleton": { "id": "components-breadcrumb--skeleton", "title": "Components/Breadcrumb", "name": "Skeleton", "importPath": "./src/components/Breadcrumb/Breadcrumb-story.js", "kind": "Components/Breadcrumb", "story": "Skeleton", "parameters": { "__id": "components-breadcrumb--skeleton", "docsOnly": false, "fileName": "./src/components/Breadcrumb/Breadcrumb-story.js" } }, "components-breadcrumb--playground": { "id": "components-breadcrumb--playground", "title": "Components/Breadcrumb", "name": "Playground", "importPath": "./src/components/Breadcrumb/Breadcrumb-story.js", "kind": "Components/Breadcrumb", "story": "Playground", "parameters": { "__id": "components-breadcrumb--playground", "docsOnly": false, "fileName": "./src/components/Breadcrumb/Breadcrumb-story.js" } }, "components-button--default": { "id": "components-button--default", "title": "Components/Button", "name": "Default", "importPath": "./src/components/Button/Button.stories.js", "kind": "Components/Button", "story": "Default", "parameters": { "__id": "components-button--default", "docsOnly": false, "fileName": "./src/components/Button/Button.stories.js" } }, "components-button--secondary": { "id": "components-button--secondary", "title": "Components/Button", "name": "Secondary", "importPath": "./src/components/Button/Button.stories.js", "kind": "Components/Button", "story": "Secondary", "parameters": { "__id": "components-button--secondary", "docsOnly": false, "fileName": "./src/components/Button/Button.stories.js" } }, "components-button--tertiary": { "id": "components-button--tertiary", "title": "Components/Button", "name": "Tertiary", "importPath": "./src/components/Button/Button.stories.js", "kind": "Components/Button", "story": "Tertiary", "parameters": { "__id": "components-button--tertiary", "docsOnly": false, "fileName": "./src/components/Button/Button.stories.js" } }, "components-button--danger": { "id": "components-button--danger", "title": "Components/Button", "name": "Danger", "importPath": "./src/components/Button/Button.stories.js", "kind": "Components/Button", "story": "Danger", "parameters": { "__id": "components-button--danger", "docsOnly": false, "fileName": "./src/components/Button/Button.stories.js" } }, "components-button--ghost": { "id": "components-button--ghost", "title": "Components/Button", "name": "Ghost", "importPath": "./src/components/Button/Button.stories.js", "kind": "Components/Button", "story": "Ghost", "parameters": { "__id": "components-button--ghost", "docsOnly": false, "fileName": "./src/components/Button/Button.stories.js" } }, "components-button--icon-button": { "id": "components-button--icon-button", "title": "Components/Button", "name": "Icon Button", "importPath": "./src/components/Button/Button.stories.js", "kind": "Components/Button", "story": "Icon Button", "parameters": { "__id": "components-button--icon-button", "docsOnly": false, "fileName": "./src/components/Button/Button.stories.js" } }, "components-button--set-of-buttons": { "id": "components-button--set-of-buttons", "title": "Components/Button", "name": "Set Of Buttons", "importPath": "./src/components/Button/Button.stories.js", "kind": "Components/Button", "story": "Set Of Buttons", "parameters": { "__id": "components-button--set-of-buttons", "docsOnly": false, "fileName": "./src/components/Button/Button.stories.js" } }, "components-button--skeleton": { "id": "components-button--skeleton", "title": "Components/Button", "name": "Skeleton", "importPath": "./src/components/Button/Button.stories.js", "kind": "Components/Button", "story": "Skeleton", "parameters": { "__id": "components-button--skeleton", "docsOnly": false, "fileName": "./src/components/Button/Button.stories.js" } }, "components-checkbox--checkbox-story": { "id": "components-checkbox--checkbox-story", "title": "Components/Checkbox", "name": "Checkbox", "importPath": "./src/components/Checkbox/Checkbox.stories.js", "kind": "Components/Checkbox", "story": "Checkbox", "parameters": { "__id": "components-checkbox--checkbox-story", "docsOnly": false, "fileName": "./src/components/Checkbox/Checkbox.stories.js" } }, "components-checkbox--skeleton": { "id": "components-checkbox--skeleton", "title": "Components/Checkbox", "name": "Skeleton", "importPath": "./src/components/Checkbox/Checkbox.stories.js", "kind": "Components/Checkbox", "story": "Skeleton", "parameters": { "__id": "components-checkbox--skeleton", "docsOnly": false, "fileName": "./src/components/Checkbox/Checkbox.stories.js" } }, "components-classprefix--default": { "id": "components-classprefix--default", "title": "Components/ClassPrefix", "name": "Default", "importPath": "./src/components/ClassPrefix/ClassPrefix.stories.js", "kind": "Components/ClassPrefix", "story": "Default", "parameters": { "__id": "components-classprefix--default", "docsOnly": false, "fileName": "./src/components/ClassPrefix/ClassPrefix.stories.js" } }, "experimental-unstable-menu-contextmenu--context-menu": { "id": "experimental-unstable-menu-contextmenu--context-menu", "title": "Experimental/unstable_Menu/ContextMenu", "name": "ContextMenu", "importPath": "./src/components/ContextMenu/ContextMenu-story.js", "kind": "Experimental/unstable_Menu/ContextMenu", "story": "ContextMenu", "parameters": { "__id": "experimental-unstable-menu-contextmenu--context-menu", "docsOnly": false, "fileName": "./src/components/ContextMenu/ContextMenu-story.js" } }, "experimental-unstable-menu-contextmenu--multiple-groups": { "id": "experimental-unstable-menu-contextmenu--multiple-groups", "title": "Experimental/unstable_Menu/ContextMenu", "name": "MultipleGroups", "importPath": "./src/components/ContextMenu/ContextMenu-story.js", "kind": "Experimental/unstable_Menu/ContextMenu", "story": "MultipleGroups", "parameters": { "__id": "experimental-unstable-menu-contextmenu--multiple-groups", "docsOnly": false, "fileName": "./src/components/ContextMenu/ContextMenu-story.js" } }, "components-copybutton--default": { "id": "components-copybutton--default", "title": "Components/CopyButton", "name": "Default", "importPath": "./src/components/CopyButton/CopyButton-story.js", "kind": "Components/CopyButton", "story": "Default", "parameters": { "__id": "components-copybutton--default", "docsOnly": false, "fileName": "./src/components/CopyButton/CopyButton-story.js" } }, "components-copybutton--playground": { "id": "components-copybutton--playground", "title": "Components/CopyButton", "name": "Playground", "importPath": "./src/components/CopyButton/CopyButton-story.js", "kind": "Components/CopyButton", "story": "Playground", "parameters": { "__id": "components-copybutton--playground", "docsOnly": false, "fileName": "./src/components/CopyButton/CopyButton-story.js" } }, "components-datepicker--simple": { "id": "components-datepicker--simple", "title": "Components/DatePicker", "name": "Simple", "importPath": "./src/components/DatePicker/DatePicker.stories.js", "kind": "Components/DatePicker", "story": "Simple", "parameters": { "__id": "components-datepicker--simple", "docsOnly": false, "fileName": "./src/components/DatePicker/DatePicker.stories.js" } }, "components-datepicker--single-with-calendar": { "id": "components-datepicker--single-with-calendar", "title": "Components/DatePicker", "name": "Single With Calendar", "importPath": "./src/components/DatePicker/DatePicker.stories.js", "kind": "Components/DatePicker", "story": "Single With Calendar", "parameters": { "__id": "components-datepicker--single-with-calendar", "docsOnly": false, "fileName": "./src/components/DatePicker/DatePicker.stories.js" } }, "components-datepicker--range-with-calendar": { "id": "components-datepicker--range-with-calendar", "title": "Components/DatePicker", "name": "Range With Calendar", "importPath": "./src/components/DatePicker/DatePicker.stories.js", "kind": "Components/DatePicker", "story": "Range With Calendar", "parameters": { "__id": "components-datepicker--range-with-calendar", "docsOnly": false, "fileName": "./src/components/DatePicker/DatePicker.stories.js" } }, "components-datepicker--simple-with-layer": { "id": "components-datepicker--simple-with-layer", "title": "Components/DatePicker", "name": "Simple With Layer", "importPath": "./src/components/DatePicker/DatePicker.stories.js", "kind": "Components/DatePicker", "story": "Simple With Layer", "parameters": { "__id": "components-datepicker--simple-with-layer", "docsOnly": false, "fileName": "./src/components/DatePicker/DatePicker.stories.js" } }, "components-datepicker--single-with-calendar-with-layer": { "id": "components-datepicker--single-with-calendar-with-layer", "title": "Components/DatePicker", "name": "Single With Calendar With Layer", "importPath": "./src/components/DatePicker/DatePicker.stories.js", "kind": "Components/DatePicker", "story": "Single With Calendar With Layer", "parameters": { "__id": "components-datepicker--single-with-calendar-with-layer", "docsOnly": false, "fileName": "./src/components/DatePicker/DatePicker.stories.js" } }, "components-datepicker--range-with-calendar-with-layer": { "id": "components-datepicker--range-with-calendar-with-layer", "title": "Components/DatePicker", "name": "Range With Calendar With Layer", "importPath": "./src/components/DatePicker/DatePicker.stories.js", "kind": "Components/DatePicker", "story": "Range With Calendar With Layer", "parameters": { "__id": "components-datepicker--range-with-calendar-with-layer", "docsOnly": false, "fileName": "./src/components/DatePicker/DatePicker.stories.js" } }, "components-datepicker--date-picker-playground": { "id": "components-datepicker--date-picker-playground", "title": "Components/DatePicker", "name": "Date Picker Playground", "importPath": "./src/components/DatePicker/DatePicker.stories.js", "kind": "Components/DatePicker", "story": "Date Picker Playground", "parameters": { "__id": "components-datepicker--date-picker-playground", "docsOnly": false, "fileName": "./src/components/DatePicker/DatePicker.stories.js" } }, "components-datepicker--skeleton": { "id": "components-datepicker--skeleton", "title": "Components/DatePicker", "name": "Skeleton", "importPath": "./src/components/DatePicker/DatePicker.stories.js", "kind": "Components/DatePicker", "story": "Skeleton", "parameters": { "__id": "components-datepicker--skeleton", "docsOnly": false, "fileName": "./src/components/DatePicker/DatePicker.stories.js" } }, "components-errorboundary--default": { "id": "components-errorboundary--default", "title": "Components/ErrorBoundary", "name": "default", "importPath": "./src/components/ErrorBoundary/ErrorBoundary-story.js", "kind": "Components/ErrorBoundary", "story": "default", "parameters": { "__id": "components-errorboundary--default", "docsOnly": false, "fileName": "./src/components/ErrorBoundary/ErrorBoundary-story.js" } }, "components-errorboundary--with-custom-context": { "id": "components-errorboundary--with-custom-context", "title": "Components/ErrorBoundary", "name": "with custom context", "importPath": "./src/components/ErrorBoundary/ErrorBoundary-story.js", "kind": "Components/ErrorBoundary", "story": "with custom context", "parameters": { "__id": "components-errorboundary--with-custom-context", "docsOnly": false, "fileName": "./src/components/ErrorBoundary/ErrorBoundary-story.js" } }, "experimental-fluidform--default": { "id": "experimental-fluidform--default", "title": "Experimental/FluidForm", "name": "Default", "importPath": "./src/components/FluidForm/FluidForm-story.js", "kind": "Experimental/FluidForm", "story": "Default", "parameters": { "__id": "experimental-fluidform--default", "docsOnly": false, "fileName": "./src/components/FluidForm/FluidForm-story.js" } }, "components-formlabel--default": { "id": "components-formlabel--default", "title": "Components/FormLabel", "name": "Default", "importPath": "./src/components/FormLabel/FormLabel-story.js", "kind": "Components/FormLabel", "story": "Default", "parameters": { "__id": "components-formlabel--default", "docsOnly": false, "fileName": "./src/components/FormLabel/FormLabel-story.js" } }, "components-formlabel--with-tooltip": { "id": "components-formlabel--with-tooltip", "title": "Components/FormLabel", "name": "With Tooltip", "importPath": "./src/components/FormLabel/FormLabel-story.js", "kind": "Components/FormLabel", "story": "With Tooltip", "parameters": { "__id": "components-formlabel--with-tooltip", "docsOnly": false, "fileName": "./src/components/FormLabel/FormLabel-story.js" } }, "experimental-unstable-heading--heading-story": { "id": "experimental-unstable-heading--heading-story", "title": "Experimental/unstable_Heading", "name": "Heading", "importPath": "./src/components/Heading/Heading-story.js", "kind": "Experimental/unstable_Heading", "story": "Heading", "parameters": { "__id": "experimental-unstable-heading--heading-story", "docsOnly": false, "fileName": "./src/components/Heading/Heading-story.js" } }, "components-iconbutton--playground": { "id": "components-iconbutton--playground", "title": "Components/IconButton", "name": "Playground", "importPath": "./src/components/IconButton/IconButton.stories.js", "kind": "Components/IconButton", "story": "Playground", "parameters": { "__id": "components-iconbutton--playground", "docsOnly": false, "fileName": "./src/components/IconButton/IconButton.stories.js" } }, "elements-icons--default": { "id": "elements-icons--default", "title": "Elements/Icons", "name": "Default", "importPath": "./src/components/Icons/Icons.stories.js", "kind": "Elements/Icons", "story": "Default", "parameters": { "__id": "elements-icons--default", "docsOnly": false, "fileName": "./src/components/Icons/Icons.stories.js" } }, "components-link--default": { "id": "components-link--default", "title": "Components/Link", "name": "Default", "importPath": "./src/components/Link/Link-story.js", "kind": "Components/Link", "story": "Default", "parameters": { "__id": "components-link--default", "docsOnly": false, "fileName": "./src/components/Link/Link-story.js" } }, "components-link--paired-with-icon": { "id": "components-link--paired-with-icon", "title": "Components/Link", "name": "Paired With Icon", "importPath": "./src/components/Link/Link-story.js", "kind": "Components/Link", "story": "Paired With Icon", "parameters": { "__id": "components-link--paired-with-icon", "docsOnly": false, "fileName": "./src/components/Link/Link-story.js" } }, "components-link--playground": { "id": "components-link--playground", "title": "Components/Link", "name": "Playground", "importPath": "./src/components/Link/Link-story.js", "kind": "Components/Link", "story": "Playground", "parameters": { "__id": "components-link--playground", "docsOnly": false, "fileName": "./src/components/Link/Link-story.js" } }, "components-loading--default": { "id": "components-loading--default", "title": "Components/Loading", "name": "Default", "importPath": "./src/components/Loading/Loading-story.js", "kind": "Components/Loading", "story": "Default", "parameters": { "__id": "components-loading--default", "docsOnly": false, "fileName": "./src/components/Loading/Loading-story.js" } }, "components-orderedlist--default": { "id": "components-orderedlist--default", "title": "Components/OrderedList", "name": "native styles", "importPath": "./src/components/OrderedList/OrderedList-story.js", "kind": "Components/OrderedList", "story": "native styles", "parameters": { "__id": "components-orderedlist--default", "docsOnly": false, "fileName": "./src/components/OrderedList/OrderedList-story.js" } }, "components-orderedlist--nested": { "id": "components-orderedlist--nested", "title": "Components/OrderedList", "name": "nested", "importPath": "./src/components/OrderedList/OrderedList-story.js", "kind": "Components/OrderedList", "story": "nested", "parameters": { "__id": "components-orderedlist--nested", "docsOnly": false, "fileName": "./src/components/OrderedList/OrderedList-story.js" } }, "components-orderedlist--native-list-styles": { "id": "components-orderedlist--native-list-styles", "title": "Components/OrderedList", "name": "Native List Styles", "importPath": "./src/components/OrderedList/OrderedList-story.js", "kind": "Components/OrderedList", "story": "Native List Styles", "parameters": { "__id": "components-orderedlist--native-list-styles", "docsOnly": false, "fileName": "./src/components/OrderedList/OrderedList-story.js" } }, "elements-ibm-plex--ibm-plex-mono": { "id": "elements-ibm-plex--ibm-plex-mono", "title": "Elements/IBM Plex", "name": "IBM Plex Mono", "importPath": "./src/components/Plex/Plex.stories.js", "kind": "Elements/IBM Plex", "story": "IBM Plex Mono", "parameters": { "__id": "elements-ibm-plex--ibm-plex-mono", "docsOnly": false, "fileName": "./src/components/Plex/Plex.stories.js" } }, "elements-ibm-plex--ibm-plex-sans-arabic": { "id": "elements-ibm-plex--ibm-plex-sans-arabic", "title": "Elements/IBM Plex", "name": "IBM Plex Sans Arabic", "importPath": "./src/components/Plex/Plex.stories.js", "kind": "Elements/IBM Plex", "story": "IBM Plex Sans Arabic", "parameters": { "__id": "elements-ibm-plex--ibm-plex-sans-arabic", "docsOnly": false, "fileName": "./src/components/Plex/Plex.stories.js" } }, "elements-ibm-plex--ibm-plex-sans-devanagari": { "id": "elements-ibm-plex--ibm-plex-sans-devanagari", "title": "Elements/IBM Plex", "name": "IBM Plex Sans Devanagari", "importPath": "./src/components/Plex/Plex.stories.js", "kind": "Elements/IBM Plex", "story": "IBM Plex Sans Devanagari", "parameters": { "__id": "elements-ibm-plex--ibm-plex-sans-devanagari", "docsOnly": false, "fileName": "./src/components/Plex/Plex.stories.js" } }, "elements-ibm-plex--ibm-plex-sans-hebrew": { "id": "elements-ibm-plex--ibm-plex-sans-hebrew", "title": "Elements/IBM Plex", "name": "IBM Plex Sans Hebrew", "importPath": "./src/components/Plex/Plex.stories.js", "kind": "Elements/IBM Plex", "story": "IBM Plex Sans Hebrew", "parameters": { "__id": "elements-ibm-plex--ibm-plex-sans-hebrew", "docsOnly": false, "fileName": "./src/components/Plex/Plex.stories.js" } }, "elements-ibm-plex--ibm-plex-sans-thai-looped": { "id": "elements-ibm-plex--ibm-plex-sans-thai-looped", "title": "Elements/IBM Plex", "name": "IBM Plex Sans Thai Looped", "importPath": "./src/components/Plex/Plex.stories.js", "kind": "Elements/IBM Plex", "story": "IBM Plex Sans Thai Looped", "parameters": { "__id": "elements-ibm-plex--ibm-plex-sans-thai-looped", "docsOnly": false, "fileName": "./src/components/Plex/Plex.stories.js" } }, "elements-ibm-plex--ibm-plex-sans-thai": { "id": "elements-ibm-plex--ibm-plex-sans-thai", "title": "Elements/IBM Plex", "name": "IBM Plex Sans Thai", "importPath": "./src/components/Plex/Plex.stories.js", "kind": "Elements/IBM Plex", "story": "IBM Plex Sans Thai", "parameters": { "__id": "elements-ibm-plex--ibm-plex-sans-thai", "docsOnly": false, "fileName": "./src/components/Plex/Plex.stories.js" } }, "elements-ibm-plex--ibm-plex-sans": { "id": "elements-ibm-plex--ibm-plex-sans", "title": "Elements/IBM Plex", "name": "IBM Plex Sans", "importPath": "./src/components/Plex/Plex.stories.js", "kind": "Elements/IBM Plex", "story": "IBM Plex Sans", "parameters": { "__id": "elements-ibm-plex--ibm-plex-sans", "docsOnly": false, "fileName": "./src/components/Plex/Plex.stories.js" } }, "elements-ibm-plex--ibm-plex-serif": { "id": "elements-ibm-plex--ibm-plex-serif", "title": "Elements/IBM Plex", "name": "IBM Plex Serif", "importPath": "./src/components/Plex/Plex.stories.js", "kind": "Elements/IBM Plex", "story": "IBM Plex Serif", "parameters": { "__id": "elements-ibm-plex--ibm-plex-serif", "docsOnly": false, "fileName": "./src/components/Plex/Plex.stories.js" } }, "components-select--default": { "id": "components-select--default", "title": "Components/Select", "name": "Default", "importPath": "./src/components/Select/Select.stories.js", "kind": "Components/Select", "story": "Default", "parameters": { "__id": "components-select--default", "docsOnly": false, "fileName": "./src/components/Select/Select.stories.js" } }, "components-select--inline": { "id": "components-select--inline", "title": "Components/Select", "name": "Inline", "importPath": "./src/components/Select/Select.stories.js", "kind": "Components/Select", "story": "Inline", "parameters": { "__id": "components-select--inline", "docsOnly": false, "fileName": "./src/components/Select/Select.stories.js" } }, "components-select--skeleton": { "id": "components-select--skeleton", "title": "Components/Select", "name": "Skeleton", "importPath": "./src/components/Select/Select.stories.js", "kind": "Components/Select", "story": "Skeleton", "parameters": { "__id": "components-select--skeleton", "docsOnly": false, "fileName": "./src/components/Select/Select.stories.js" } }, "components-select--with-layer": { "id": "components-select--with-layer", "title": "Components/Select", "name": "With Layer", "importPath": "./src/components/Select/Select.stories.js", "kind": "Components/Select", "story": "With Layer", "parameters": { "__id": "components-select--with-layer", "docsOnly": false, "fileName": "./src/components/Select/Select.stories.js" } }, "components-skeleton-skeletonicon--default": { "id": "components-skeleton-skeletonicon--default", "title": "Components/Skeleton/SkeletonIcon", "name": "Default", "importPath": "./src/components/SkeletonIcon/SkeletonIcon-story.js", "kind": "Components/Skeleton/SkeletonIcon", "story": "Default", "parameters": { "__id": "components-skeleton-skeletonicon--default", "docsOnly": false, "fileName": "./src/components/SkeletonIcon/SkeletonIcon-story.js" } }, "components-skeleton-skeletonplaceholder--default": { "id": "components-skeleton-skeletonplaceholder--default", "title": "Components/Skeleton/SkeletonPlaceholder", "name": "Default", "importPath": "./src/components/SkeletonPlaceholder/SkeletonPlaceholder-story.js", "kind": "Components/Skeleton/SkeletonPlaceholder", "story": "Default", "parameters": { "__id": "components-skeleton-skeletonplaceholder--default", "docsOnly": false, "fileName": "./src/components/SkeletonPlaceholder/SkeletonPlaceholder-story.js" } }, "components-skeleton-skeletontext--default": { "id": "components-skeleton-skeletontext--default", "title": "Components/Skeleton/SkeletonText", "name": "Default", "importPath": "./src/components/SkeletonText/SkeletonText-story.js", "kind": "Components/Skeleton/SkeletonText", "story": "Default", "parameters": { "__id": "components-skeleton-skeletontext--default", "docsOnly": false, "fileName": "./src/components/SkeletonText/SkeletonText-story.js" } }, "components-tag--default": { "id": "components-tag--default", "title": "Components/Tag", "name": "Default", "importPath": "./src/components/Tag/Tag.stories.js", "kind": "Components/Tag", "story": "Default", "parameters": { "__id": "components-tag--default", "docsOnly": false, "fileName": "./src/components/Tag/Tag.stories.js" } }, "experimental-unstable-text--default": { "id": "experimental-unstable-text--default", "title": "Experimental/unstable_Text", "name": "Default", "importPath": "./src/components/Text/Text-story.js", "kind": "Experimental/unstable_Text", "story": "Default", "parameters": { "__id": "experimental-unstable-text--default", "docsOnly": false, "fileName": "./src/components/Text/Text-story.js" } }, "experimental-unstable-text--layout-and-text": { "id": "experimental-unstable-text--layout-and-text", "title": "Experimental/unstable_Text", "name": "Layout And Text", "importPath": "./src/components/Text/Text-story.js", "kind": "Experimental/unstable_Text", "story": "Layout And Text", "parameters": { "__id": "experimental-unstable-text--layout-and-text", "docsOnly": false, "fileName": "./src/components/Text/Text-story.js" } }, "experimental-unstable-text--set-text-direction": { "id": "experimental-unstable-text--set-text-direction", "title": "Experimental/unstable_Text", "name": "Set Text Direction", "importPath": "./src/components/Text/Text-story.js", "kind": "Experimental/unstable_Text", "story": "Set Text Direction", "parameters": { "__id": "experimental-unstable-text--set-text-direction", "docsOnly": false, "fileName": "./src/components/Text/Text-story.js" } }, "experimental-unstable-text--usage-examples": { "id": "experimental-unstable-text--usage-examples", "title": "Experimental/unstable_Text", "name": "Usage Examples", "importPath": "./src/components/Text/Text-story.js", "kind": "Experimental/unstable_Text", "story": "Usage Examples", "parameters": { "__id": "experimental-unstable-text--usage-examples", "docsOnly": false, "fileName": "./src/components/Text/Text-story.js" } }, "components-toggletip--default": { "id": "components-toggletip--default", "title": "Components/Toggletip", "name": "Default", "importPath": "./src/components/Toggletip/Toggletip.stories.js", "kind": "Components/Toggletip", "story": "Default", "parameters": { "__id": "components-toggletip--default", "docsOnly": false, "fileName": "./src/components/Toggletip/Toggletip.stories.js" } }, "components-toggletip--playground": { "id": "components-toggletip--playground", "title": "Components/Toggletip", "name": "Playground", "importPath": "./src/components/Toggletip/Toggletip.stories.js", "kind": "Components/Toggletip", "story": "Playground", "parameters": { "__id": "components-toggletip--playground", "docsOnly": false, "fileName": "./src/components/Toggletip/Toggletip.stories.js" } }, "components-ui-shell--header-base": { "id": "components-ui-shell--header-base", "title": "Components/UI Shell", "name": "Header Base", "importPath": "./src/components/UIShell/UIShell.stories.js", "kind": "Components/UI Shell", "story": "Header Base", "parameters": { "__id": "components-ui-shell--header-base", "docsOnly": false, "fileName": "./src/components/UIShell/UIShell.stories.js" } }, "components-ui-shell--header-base-w-navigation": { "id": "components-ui-shell--header-base-w-navigation", "title": "Components/UI Shell", "name": "Header Base w/ Navigation", "importPath": "./src/components/UIShell/UIShell.stories.js", "kind": "Components/UI Shell", "story": "Header Base w/ Navigation", "parameters": { "__id": "components-ui-shell--header-base-w-navigation", "docsOnly": false, "fileName": "./src/components/UIShell/UIShell.stories.js" } }, "components-ui-shell--header-base-w-actions": { "id": "components-ui-shell--header-base-w-actions", "title": "Components/UI Shell", "name": "Header Base w/ Actions", "importPath": "./src/components/UIShell/UIShell.stories.js", "kind": "Components/UI Shell", "story": "Header Base w/ Actions", "parameters": { "__id": "components-ui-shell--header-base-w-actions", "docsOnly": false, "fileName": "./src/components/UIShell/UIShell.stories.js" } }, "components-ui-shell--header-base-w-skip-to-content": { "id": "components-ui-shell--header-base-w-skip-to-content", "title": "Components/UI Shell", "name": "Header Base w/ SkipToContent", "importPath": "./src/components/UIShell/UIShell.stories.js", "kind": "Components/UI Shell", "story": "Header Base w/ SkipToContent", "parameters": { "__id": "components-ui-shell--header-base-w-skip-to-content", "docsOnly": false, "fileName": "./src/components/UIShell/UIShell.stories.js" } }, "components-ui-shell--header-base-w-navigation-and-actions": { "id": "components-ui-shell--header-base-w-navigation-and-actions", "title": "Components/UI Shell", "name": "Header Base w/ Navigation and Actions", "importPath": "./src/components/UIShell/UIShell.stories.js", "kind": "Components/UI Shell", "story": "Header Base w/ Navigation and Actions", "parameters": { "__id": "components-ui-shell--header-base-w-navigation-and-actions", "docsOnly": false, "fileName": "./src/components/UIShell/UIShell.stories.js" } }, "components-ui-shell--header-base-w-navigation-actions-and-side-nav": { "id": "components-ui-shell--header-base-w-navigation-actions-and-side-nav", "title": "Components/UI Shell", "name": "Header Base w/ Navigation, Actions and SideNav", "importPath": "./src/components/UIShell/UIShell.stories.js", "kind": "Components/UI Shell", "story": "Header Base w/ Navigation, Actions and SideNav", "parameters": { "__id": "components-ui-shell--header-base-w-navigation-actions-and-side-nav", "docsOnly": false, "fileName": "./src/components/UIShell/UIShell.stories.js" } }, "components-ui-shell--header-base-w-side-nav": { "id": "components-ui-shell--header-base-w-side-nav", "title": "Components/UI Shell", "name": "Header Base w/ SideNav", "importPath": "./src/components/UIShell/UIShell.stories.js", "kind": "Components/UI Shell", "story": "Header Base w/ SideNav", "parameters": { "__id": "components-ui-shell--header-base-w-side-nav", "docsOnly": false, "fileName": "./src/components/UIShell/UIShell.stories.js" } }, "components-ui-shell--header-base-w-actions-and-right-panel": { "id": "components-ui-shell--header-base-w-actions-and-right-panel", "title": "Components/UI Shell", "name": "Header Base w/ Actions and Right Panel", "importPath": "./src/components/UIShell/UIShell.stories.js", "kind": "Components/UI Shell", "story": "Header Base w/ Actions and Right Panel", "parameters": { "__id": "components-ui-shell--header-base-w-actions-and-right-panel", "docsOnly": false, "fileName": "./src/components/UIShell/UIShell.stories.js" } }, "components-ui-shell--header-base-w-actions-and-switcher": { "id": "components-ui-shell--header-base-w-actions-and-switcher", "title": "Components/UI Shell", "name": "Header Base w/ Actions and Switcher", "importPath": "./src/components/UIShell/UIShell.stories.js", "kind": "Components/UI Shell", "story": "Header Base w/ Actions and Switcher", "parameters": { "__id": "components-ui-shell--header-base-w-actions-and-switcher", "docsOnly": false, "fileName": "./src/components/UIShell/UIShell.stories.js" } }, "components-ui-shell--fixed-side-nav": { "id": "components-ui-shell--fixed-side-nav", "title": "Components/UI Shell", "name": "Fixed SideNav", "importPath": "./src/components/UIShell/UIShell.stories.js", "kind": "Components/UI Shell", "story": "Fixed SideNav", "parameters": { "__id": "components-ui-shell--fixed-side-nav", "docsOnly": false, "fileName": "./src/components/UIShell/UIShell.stories.js" } }, "components-ui-shell--fixed-side-nav-w-icons": { "id": "components-ui-shell--fixed-side-nav-w-icons", "title": "Components/UI Shell", "name": "Fixed SideNav w/ Icons", "importPath": "./src/components/UIShell/UIShell.stories.js", "kind": "Components/UI Shell", "story": "Fixed SideNav w/ Icons", "parameters": { "__id": "components-ui-shell--fixed-side-nav-w-icons", "docsOnly": false, "fileName": "./src/components/UIShell/UIShell.stories.js" } }, "components-ui-shell--fixed-side-nav-w-divider": { "id": "components-ui-shell--fixed-side-nav-w-divider", "title": "Components/UI Shell", "name": "Fixed SideNav w/ Divider", "importPath": "./src/components/UIShell/UIShell.stories.js", "kind": "Components/UI Shell", "story": "Fixed SideNav w/ Divider", "parameters": { "__id": "components-ui-shell--fixed-side-nav-w-divider", "docsOnly": false, "fileName": "./src/components/UIShell/UIShell.stories.js" } }, "components-ui-shell--side-nav-rail": { "id": "components-ui-shell--side-nav-rail", "title": "Components/UI Shell", "name": "SideNav Rail", "importPath": "./src/components/UIShell/UIShell.stories.js", "kind": "Components/UI Shell", "story": "SideNav Rail", "parameters": { "__id": "components-ui-shell--side-nav-rail", "docsOnly": false, "fileName": "./src/components/UIShell/UIShell.stories.js" } }, "components-ui-shell--side-nav-rail-w-header": { "id": "components-ui-shell--side-nav-rail-w-header", "title": "Components/UI Shell", "name": "SideNav Rail w/Header", "importPath": "./src/components/UIShell/UIShell.stories.js", "kind": "Components/UI Shell", "story": "SideNav Rail w/Header", "parameters": { "__id": "components-ui-shell--side-nav-rail-w-header", "docsOnly": false, "fileName": "./src/components/UIShell/UIShell.stories.js" } }, "components-ui-shell--side-nav-w-large-side-nav-items": { "id": "components-ui-shell--side-nav-w-large-side-nav-items", "title": "Components/UI Shell", "name": "SideNav w/ large side nav items", "importPath": "./src/components/UIShell/UIShell.stories.js", "kind": "Components/UI Shell", "story": "SideNav w/ large side nav items", "parameters": { "__id": "components-ui-shell--side-nav-w-large-side-nav-items", "docsOnly": false, "fileName": "./src/components/UIShell/UIShell.stories.js" } }, "components-unorderedlist--default": { "id": "components-unorderedlist--default", "title": "Components/UnorderedList", "name": "default", "importPath": "./src/components/UnorderedList/UnorderedList-story.js", "kind": "Components/UnorderedList", "story": "default", "parameters": { "__id": "components-unorderedlist--default", "docsOnly": false, "fileName": "./src/components/UnorderedList/UnorderedList-story.js" } }, "components-unorderedlist--nested": { "id": "components-unorderedlist--nested", "title": "Components/UnorderedList", "name": "nested", "importPath": "./src/components/UnorderedList/UnorderedList-story.js", "kind": "Components/UnorderedList", "story": "nested", "parameters": { "__id": "components-unorderedlist--nested", "docsOnly": false, "fileName": "./src/components/UnorderedList/UnorderedList-story.js" } }, "components-aspectratio--aspect-ratio-story": { "id": "components-aspectratio--aspect-ratio-story", "title": "Components/AspectRatio", "name": "AspectRatio", "importPath": "./src/components/AspectRatio/next/AspectRatio.stories.js", "kind": "Components/AspectRatio", "story": "AspectRatio", "parameters": { "__id": "components-aspectratio--aspect-ratio-story", "docsOnly": false, "fileName": "./src/components/AspectRatio/next/AspectRatio.stories.js" } }, "components-aspectratio--playground": { "id": "components-aspectratio--playground", "title": "Components/AspectRatio", "name": "Playground", "importPath": "./src/components/AspectRatio/next/AspectRatio.stories.js", "kind": "Components/AspectRatio", "story": "Playground", "parameters": { "__id": "components-aspectratio--playground", "docsOnly": false, "fileName": "./src/components/AspectRatio/next/AspectRatio.stories.js" } }, "components-codesnippet--inline": { "id": "components-codesnippet--inline", "title": "Components/CodeSnippet", "name": "Inline", "importPath": "./src/components/CodeSnippet/next/CodeSnippet.stories.js", "kind": "Components/CodeSnippet", "story": "Inline", "parameters": { "__id": "components-codesnippet--inline", "docsOnly": false, "fileName": "./src/components/CodeSnippet/next/CodeSnippet.stories.js" } }, "components-codesnippet--multiline": { "id": "components-codesnippet--multiline", "title": "Components/CodeSnippet", "name": "Multiline", "importPath": "./src/components/CodeSnippet/next/CodeSnippet.stories.js", "kind": "Components/CodeSnippet", "story": "Multiline", "parameters": { "__id": "components-codesnippet--multiline", "docsOnly": false, "fileName": "./src/components/CodeSnippet/next/CodeSnippet.stories.js" } }, "components-codesnippet--singleline": { "id": "components-codesnippet--singleline", "title": "Components/CodeSnippet", "name": "Singleline", "importPath": "./src/components/CodeSnippet/next/CodeSnippet.stories.js", "kind": "Components/CodeSnippet", "story": "Singleline", "parameters": { "__id": "components-codesnippet--singleline", "docsOnly": false, "fileName": "./src/components/CodeSnippet/next/CodeSnippet.stories.js" } }, "components-codesnippet--inline-with-layer": { "id": "components-codesnippet--inline-with-layer", "title": "Components/CodeSnippet", "name": "Inline With Layer", "importPath": "./src/components/CodeSnippet/next/CodeSnippet.stories.js", "kind": "Components/CodeSnippet", "story": "Inline With Layer", "parameters": { "__id": "components-codesnippet--inline-with-layer", "docsOnly": false, "fileName": "./src/components/CodeSnippet/next/CodeSnippet.stories.js" } }, "components-codesnippet--multiline-with-layer": { "id": "components-codesnippet--multiline-with-layer", "title": "Components/CodeSnippet", "name": "Multiline With Layer", "importPath": "./src/components/CodeSnippet/next/CodeSnippet.stories.js", "kind": "Components/CodeSnippet", "story": "Multiline With Layer", "parameters": { "__id": "components-codesnippet--multiline-with-layer", "docsOnly": false, "fileName": "./src/components/CodeSnippet/next/CodeSnippet.stories.js" } }, "components-codesnippet--singleline-with-layer": { "id": "components-codesnippet--singleline-with-layer", "title": "Components/CodeSnippet", "name": "Singleline With Layer", "importPath": "./src/components/CodeSnippet/next/CodeSnippet.stories.js", "kind": "Components/CodeSnippet", "story": "Singleline With Layer", "parameters": { "__id": "components-codesnippet--singleline-with-layer", "docsOnly": false, "fileName": "./src/components/CodeSnippet/next/CodeSnippet.stories.js" } }, "components-codesnippet--skeleton": { "id": "components-codesnippet--skeleton", "title": "Components/CodeSnippet", "name": "Skeleton", "importPath": "./src/components/CodeSnippet/next/CodeSnippet.stories.js", "kind": "Components/CodeSnippet", "story": "Skeleton", "parameters": { "__id": "components-codesnippet--skeleton", "docsOnly": false, "fileName": "./src/components/CodeSnippet/next/CodeSnippet.stories.js" } }, "components-combobox--combobox": { "id": "components-combobox--combobox", "title": "Components/ComboBox", "name": "Combobox", "importPath": "./src/components/ComboBox/next/ComboBox.stories.js", "kind": "Components/ComboBox", "story": "Combobox", "parameters": { "__id": "components-combobox--combobox", "docsOnly": false, "fileName": "./src/components/ComboBox/next/ComboBox.stories.js" } }, "components-combobox--with-layer": { "id": "components-combobox--with-layer", "title": "Components/ComboBox", "name": "With Layer", "importPath": "./src/components/ComboBox/next/ComboBox.stories.js", "kind": "Components/ComboBox", "story": "With Layer", "parameters": { "__id": "components-combobox--with-layer", "docsOnly": false, "fileName": "./src/components/ComboBox/next/ComboBox.stories.js" } }, "components-composedmodal--playground": { "id": "components-composedmodal--playground", "title": "Components/ComposedModal", "name": "Playground", "importPath": "./src/components/ComposedModal/next/ComposedModal.stories.js", "kind": "Components/ComposedModal", "story": "Playground", "parameters": { "__id": "components-composedmodal--playground", "docsOnly": false, "fileName": "./src/components/ComposedModal/next/ComposedModal.stories.js" } }, "components-composedmodal--default": { "id": "components-composedmodal--default", "title": "Components/ComposedModal", "name": "Default", "importPath": "./src/components/ComposedModal/next/ComposedModal.stories.js", "kind": "Components/ComposedModal", "story": "Default", "parameters": { "__id": "components-composedmodal--default", "docsOnly": false, "fileName": "./src/components/ComposedModal/next/ComposedModal.stories.js" } }, "components-composedmodal--passive-modal": { "id": "components-composedmodal--passive-modal", "title": "Components/ComposedModal", "name": "Passive Modal", "importPath": "./src/components/ComposedModal/next/ComposedModal.stories.js", "kind": "Components/ComposedModal", "story": "Passive Modal", "parameters": { "__id": "components-composedmodal--passive-modal", "docsOnly": false, "fileName": "./src/components/ComposedModal/next/ComposedModal.stories.js" } }, "components-composedmodal--with-state-manager": { "id": "components-composedmodal--with-state-manager", "title": "Components/ComposedModal", "name": "With State Manager", "importPath": "./src/components/ComposedModal/next/ComposedModal.stories.js", "kind": "Components/ComposedModal", "story": "With State Manager", "parameters": { "__id": "components-composedmodal--with-state-manager", "docsOnly": false, "fileName": "./src/components/ComposedModal/next/ComposedModal.stories.js" } }, "components-contentswitcher--default": { "id": "components-contentswitcher--default", "title": "Components/ContentSwitcher", "name": "Default", "importPath": "./src/components/ContentSwitcher/next/ContentSwitcher.stories.js", "kind": "Components/ContentSwitcher", "story": "Default", "parameters": { "__id": "components-contentswitcher--default", "docsOnly": false, "fileName": "./src/components/ContentSwitcher/next/ContentSwitcher.stories.js" } }, "components-contentswitcher--with-layer": { "id": "components-contentswitcher--with-layer", "title": "Components/ContentSwitcher", "name": "With Layer", "importPath": "./src/components/ContentSwitcher/next/ContentSwitcher.stories.js", "kind": "Components/ContentSwitcher", "story": "With Layer", "parameters": { "__id": "components-contentswitcher--with-layer", "docsOnly": false, "fileName": "./src/components/ContentSwitcher/next/ContentSwitcher.stories.js" } }, "components-datatable-basic--default": { "id": "components-datatable-basic--default", "title": "Components/DataTable/Basic", "name": "Default", "importPath": "./src/components/DataTable/next/DataTable-basic.stories.js", "kind": "Components/DataTable/Basic", "story": "Default", "parameters": { "__id": "components-datatable-basic--default", "docsOnly": false, "fileName": "./src/components/DataTable/next/DataTable-basic.stories.js" } }, "components-datatable-batch-actions--default": { "id": "components-datatable-batch-actions--default", "title": "Components/DataTable/Batch Actions", "name": "Default", "importPath": "./src/components/DataTable/next/DataTable-batch-actions.stories.js", "kind": "Components/DataTable/Batch Actions", "story": "Default", "parameters": { "__id": "components-datatable-batch-actions--default", "docsOnly": false, "fileName": "./src/components/DataTable/next/DataTable-batch-actions.stories.js" } }, "components-datatable-filtering--usage": { "id": "components-datatable-filtering--usage", "title": "Components/DataTable/Filtering", "name": "Usage", "importPath": "./src/components/DataTable/next/DataTable-filtering.stories.js", "kind": "Components/DataTable/Filtering", "story": "Usage", "parameters": { "__id": "components-datatable-filtering--usage", "docsOnly": false, "fileName": "./src/components/DataTable/next/DataTable-filtering.stories.js" } }, "components-datatable-selection--usage": { "id": "components-datatable-selection--usage", "title": "Components/DataTable/Selection", "name": "Usage", "importPath": "./src/components/DataTable/next/DataTable-selection.stories.js", "kind": "Components/DataTable/Selection", "story": "Usage", "parameters": { "__id": "components-datatable-selection--usage", "docsOnly": false, "fileName": "./src/components/DataTable/next/DataTable-selection.stories.js" } }, "components-datatable-selection--with-radio-selection": { "id": "components-datatable-selection--with-radio-selection", "title": "Components/DataTable/Selection", "name": "With Radio Selection", "importPath": "./src/components/DataTable/next/DataTable-selection.stories.js", "kind": "Components/DataTable/Selection", "story": "With Radio Selection", "parameters": { "__id": "components-datatable-selection--with-radio-selection", "docsOnly": false, "fileName": "./src/components/DataTable/next/DataTable-selection.stories.js" } }, "components-datatable-selection--with-selection-and-sorting": { "id": "components-datatable-selection--with-selection-and-sorting", "title": "Components/DataTable/Selection", "name": "With Selection And Sorting", "importPath": "./src/components/DataTable/next/DataTable-selection.stories.js", "kind": "Components/DataTable/Selection", "story": "With Selection And Sorting", "parameters": { "__id": "components-datatable-selection--with-selection-and-sorting", "docsOnly": false, "fileName": "./src/components/DataTable/next/DataTable-selection.stories.js" } }, "components-datatable-sorting--usage": { "id": "components-datatable-sorting--usage", "title": "Components/DataTable/Sorting", "name": "Usage", "importPath": "./src/components/DataTable/next/DataTable-sorting.stories.js", "kind": "Components/DataTable/Sorting", "story": "Usage", "parameters": { "__id": "components-datatable-sorting--usage", "docsOnly": false, "fileName": "./src/components/DataTable/next/DataTable-sorting.stories.js" } }, "components-datatable-toolbar--default-toolbar": { "id": "components-datatable-toolbar--default-toolbar", "title": "Components/DataTable/Toolbar", "name": "Default Toolbar", "importPath": "./src/components/DataTable/next/DataTable-toolbar.stories.js", "kind": "Components/DataTable/Toolbar", "story": "Default Toolbar", "parameters": { "__id": "components-datatable-toolbar--default-toolbar", "docsOnly": false, "fileName": "./src/components/DataTable/next/DataTable-toolbar.stories.js" } }, "components-datatable-toolbar--persistent-toolbar": { "id": "components-datatable-toolbar--persistent-toolbar", "title": "Components/DataTable/Toolbar", "name": "Persistent Toolbar", "importPath": "./src/components/DataTable/next/DataTable-toolbar.stories.js", "kind": "Components/DataTable/Toolbar", "story": "Persistent Toolbar", "parameters": { "__id": "components-datatable-toolbar--persistent-toolbar", "docsOnly": false, "fileName": "./src/components/DataTable/next/DataTable-toolbar.stories.js" } }, "components-datatable-toolbar--small-persistent-toolbar": { "id": "components-datatable-toolbar--small-persistent-toolbar", "title": "Components/DataTable/Toolbar", "name": "Small Persistent Toolbar", "importPath": "./src/components/DataTable/next/DataTable-toolbar.stories.js", "kind": "Components/DataTable/Toolbar", "story": "Small Persistent Toolbar", "parameters": { "__id": "components-datatable-toolbar--small-persistent-toolbar", "docsOnly": false, "fileName": "./src/components/DataTable/next/DataTable-toolbar.stories.js" } }, "components-datatable-toolbar--with-overflow-menu": { "id": "components-datatable-toolbar--with-overflow-menu", "title": "Components/DataTable/Toolbar", "name": "With Overflow Menu", "importPath": "./src/components/DataTable/next/DataTable-toolbar.stories.js", "kind": "Components/DataTable/Toolbar", "story": "With Overflow Menu", "parameters": { "__id": "components-datatable-toolbar--with-overflow-menu", "docsOnly": false, "fileName": "./src/components/DataTable/next/DataTable-toolbar.stories.js" } }, "components-datatable--skeleton": { "id": "components-datatable--skeleton", "title": "Components/DataTable", "name": "Skeleton", "importPath": "./src/components/DataTableSkeleton/next/DataTableSkeleton.stories.js", "kind": "Components/DataTable", "story": "Skeleton", "parameters": { "__id": "components-datatable--skeleton", "docsOnly": false, "fileName": "./src/components/DataTableSkeleton/next/DataTableSkeleton.stories.js" } }, "components-dropdown--default": { "id": "components-dropdown--default", "title": "Components/Dropdown", "name": "Default", "importPath": "./src/components/Dropdown/next/Dropdown.stories.js", "kind": "Components/Dropdown", "story": "Default", "parameters": { "__id": "components-dropdown--default", "docsOnly": false, "fileName": "./src/components/Dropdown/next/Dropdown.stories.js" } }, "components-dropdown--inline": { "id": "components-dropdown--inline", "title": "Components/Dropdown", "name": "Inline", "importPath": "./src/components/Dropdown/next/Dropdown.stories.js", "kind": "Components/Dropdown", "story": "Inline", "parameters": { "__id": "components-dropdown--inline", "docsOnly": false, "fileName": "./src/components/Dropdown/next/Dropdown.stories.js" } }, "components-dropdown--with-layer": { "id": "components-dropdown--with-layer", "title": "Components/Dropdown", "name": "With Layer", "importPath": "./src/components/Dropdown/next/Dropdown.stories.js", "kind": "Components/Dropdown", "story": "With Layer", "parameters": { "__id": "components-dropdown--with-layer", "docsOnly": false, "fileName": "./src/components/Dropdown/next/Dropdown.stories.js" } }, "components-dropdown--inline-with-layer": { "id": "components-dropdown--inline-with-layer", "title": "Components/Dropdown", "name": "Inline With Layer", "importPath": "./src/components/Dropdown/next/Dropdown.stories.js", "kind": "Components/Dropdown", "story": "Inline With Layer", "parameters": { "__id": "components-dropdown--inline-with-layer", "docsOnly": false, "fileName": "./src/components/Dropdown/next/Dropdown.stories.js" } }, "components-dropdown--skeleton": { "id": "components-dropdown--skeleton", "title": "Components/Dropdown", "name": "Skeleton", "importPath": "./src/components/Dropdown/next/Dropdown.stories.js", "kind": "Components/Dropdown", "story": "Skeleton", "parameters": { "__id": "components-dropdown--skeleton", "docsOnly": false, "fileName": "./src/components/Dropdown/next/Dropdown.stories.js" } }, "components-fileuploader--file-uploader": { "id": "components-fileuploader--file-uploader", "title": "Components/FileUploader", "name": "File Uploader", "importPath": "./src/components/FileUploader/next/FileUploader.stories.js", "kind": "Components/FileUploader", "story": "File Uploader", "parameters": { "__id": "components-fileuploader--file-uploader", "docsOnly": false, "fileName": "./src/components/FileUploader/next/FileUploader.stories.js" } }, "components-fileuploader--file-uploader-item": { "id": "components-fileuploader--file-uploader-item", "title": "Components/FileUploader", "name": "File Uploader Item", "importPath": "./src/components/FileUploader/next/FileUploader.stories.js", "kind": "Components/FileUploader", "story": "File Uploader Item", "parameters": { "__id": "components-fileuploader--file-uploader-item", "docsOnly": false, "fileName": "./src/components/FileUploader/next/FileUploader.stories.js" } }, "components-fileuploader--file-uploader-drop-container": { "id": "components-fileuploader--file-uploader-drop-container", "title": "Components/FileUploader", "name": "File Uploader Drop Container", "importPath": "./src/components/FileUploader/next/FileUploader.stories.js", "kind": "Components/FileUploader", "story": "File Uploader Drop Container", "parameters": { "__id": "components-fileuploader--file-uploader-drop-container", "docsOnly": false, "fileName": "./src/components/FileUploader/next/FileUploader.stories.js" } }, "components-fileuploader--drag-and-drop-upload-container-example-application": { "id": "components-fileuploader--drag-and-drop-upload-container-example-application", "title": "Components/FileUploader", "name": "Drag And Drop Upload Container Example Application", "importPath": "./src/components/FileUploader/next/FileUploader.stories.js", "kind": "Components/FileUploader", "story": "Drag And Drop Upload Container Example Application", "parameters": { "__id": "components-fileuploader--drag-and-drop-upload-container-example-application", "docsOnly": false, "fileName": "./src/components/FileUploader/next/FileUploader.stories.js" } }, "components-fileuploader--skeleton": { "id": "components-fileuploader--skeleton", "title": "Components/FileUploader", "name": "Skeleton", "importPath": "./src/components/FileUploader/next/FileUploader.stories.js", "kind": "Components/FileUploader", "story": "Skeleton", "parameters": { "__id": "components-fileuploader--skeleton", "docsOnly": false, "fileName": "./src/components/FileUploader/next/FileUploader.stories.js" } }, "components-form--default": { "id": "components-form--default", "title": "Components/Form", "name": "Default", "importPath": "./src/components/Form/next/Form.stories.js", "kind": "Components/Form", "story": "Default", "parameters": { "__id": "components-form--default", "docsOnly": false, "fileName": "./src/components/Form/next/Form.stories.js" } }, "components-formgroup--default": { "id": "components-formgroup--default", "title": "Components/FormGroup", "name": "Default", "importPath": "./src/components/FormGroup/next/FormGroup.stories.js", "kind": "Components/FormGroup", "story": "Default", "parameters": { "__id": "components-formgroup--default", "docsOnly": false, "fileName": "./src/components/FormGroup/next/FormGroup.stories.js" } }, "components-flexgrid--auto-columns": { "id": "components-flexgrid--auto-columns", "title": "Components/FlexGrid", "name": "Auto Columns", "importPath": "./src/components/Grid/next/FlexGrid.stories.js", "kind": "Components/FlexGrid", "story": "Auto Columns", "parameters": { "__id": "components-flexgrid--auto-columns", "docsOnly": false, "fileName": "./src/components/Grid/next/FlexGrid.stories.js" } }, "components-flexgrid--responsive-grid": { "id": "components-flexgrid--responsive-grid", "title": "Components/FlexGrid", "name": "Responsive Grid", "importPath": "./src/components/Grid/next/FlexGrid.stories.js", "kind": "Components/FlexGrid", "story": "Responsive Grid", "parameters": { "__id": "components-flexgrid--responsive-grid", "docsOnly": false, "fileName": "./src/components/Grid/next/FlexGrid.stories.js" } }, "components-flexgrid--offset": { "id": "components-flexgrid--offset", "title": "Components/FlexGrid", "name": "Offset", "importPath": "./src/components/Grid/next/FlexGrid.stories.js", "kind": "Components/FlexGrid", "story": "Offset", "parameters": { "__id": "components-flexgrid--offset", "docsOnly": false, "fileName": "./src/components/Grid/next/FlexGrid.stories.js" } }, "components-flexgrid--condensed": { "id": "components-flexgrid--condensed", "title": "Components/FlexGrid", "name": "Condensed", "importPath": "./src/components/Grid/next/FlexGrid.stories.js", "kind": "Components/FlexGrid", "story": "Condensed", "parameters": { "__id": "components-flexgrid--condensed", "docsOnly": false, "fileName": "./src/components/Grid/next/FlexGrid.stories.js" } }, "components-flexgrid--condensed-columns": { "id": "components-flexgrid--condensed-columns", "title": "Components/FlexGrid", "name": "Condensed Columns", "importPath": "./src/components/Grid/next/FlexGrid.stories.js", "kind": "Components/FlexGrid", "story": "Condensed Columns", "parameters": { "__id": "components-flexgrid--condensed-columns", "docsOnly": false, "fileName": "./src/components/Grid/next/FlexGrid.stories.js" } }, "components-flexgrid--narrow": { "id": "components-flexgrid--narrow", "title": "Components/FlexGrid", "name": "Narrow", "importPath": "./src/components/Grid/next/FlexGrid.stories.js", "kind": "Components/FlexGrid", "story": "Narrow", "parameters": { "__id": "components-flexgrid--narrow", "docsOnly": false, "fileName": "./src/components/Grid/next/FlexGrid.stories.js" } }, "components-flexgrid--narrow-columns": { "id": "components-flexgrid--narrow-columns", "title": "Components/FlexGrid", "name": "Narrow Columns", "importPath": "./src/components/Grid/next/FlexGrid.stories.js", "kind": "Components/FlexGrid", "story": "Narrow Columns", "parameters": { "__id": "components-flexgrid--narrow-columns", "docsOnly": false, "fileName": "./src/components/Grid/next/FlexGrid.stories.js" } }, "components-flexgrid--full-width": { "id": "components-flexgrid--full-width", "title": "Components/FlexGrid", "name": "Full Width", "importPath": "./src/components/Grid/next/FlexGrid.stories.js", "kind": "Components/FlexGrid", "story": "Full Width", "parameters": { "__id": "components-flexgrid--full-width", "docsOnly": false, "fileName": "./src/components/Grid/next/FlexGrid.stories.js" } }, "components-flexgrid--mixed-grid-modes": { "id": "components-flexgrid--mixed-grid-modes", "title": "Components/FlexGrid", "name": "Mixed Grid Modes", "importPath": "./src/components/Grid/next/FlexGrid.stories.js", "kind": "Components/FlexGrid", "story": "Mixed Grid Modes", "parameters": { "__id": "components-flexgrid--mixed-grid-modes", "docsOnly": false, "fileName": "./src/components/Grid/next/FlexGrid.stories.js" } }, "elements-grid--default": { "id": "elements-grid--default", "title": "Elements/Grid", "name": "Default", "importPath": "./src/components/Grid/next/Grid.stories.js", "kind": "Elements/Grid", "story": "Default", "parameters": { "__id": "elements-grid--default", "docsOnly": false, "fileName": "./src/components/Grid/next/Grid.stories.js" } }, "elements-grid--narrow": { "id": "elements-grid--narrow", "title": "Elements/Grid", "name": "Narrow", "importPath": "./src/components/Grid/next/Grid.stories.js", "kind": "Elements/Grid", "story": "Narrow", "parameters": { "__id": "elements-grid--narrow", "docsOnly": false, "fileName": "./src/components/Grid/next/Grid.stories.js" } }, "elements-grid--condensed": { "id": "elements-grid--condensed", "title": "Elements/Grid", "name": "Condensed", "importPath": "./src/components/Grid/next/Grid.stories.js", "kind": "Elements/Grid", "story": "Condensed", "parameters": { "__id": "elements-grid--condensed", "docsOnly": false, "fileName": "./src/components/Grid/next/Grid.stories.js" } }, "elements-grid--full-width": { "id": "elements-grid--full-width", "title": "Elements/Grid", "name": "Full Width", "importPath": "./src/components/Grid/next/Grid.stories.js", "kind": "Elements/Grid", "story": "Full Width", "parameters": { "__id": "elements-grid--full-width", "docsOnly": false, "fileName": "./src/components/Grid/next/Grid.stories.js" } }, "elements-grid--responsive": { "id": "elements-grid--responsive", "title": "Elements/Grid", "name": "Responsive", "importPath": "./src/components/Grid/next/Grid.stories.js", "kind": "Elements/Grid", "story": "Responsive", "parameters": { "__id": "elements-grid--responsive", "docsOnly": false, "fileName": "./src/components/Grid/next/Grid.stories.js" } }, "elements-grid--subgrid": { "id": "elements-grid--subgrid", "title": "Elements/Grid", "name": "Subgrid", "importPath": "./src/components/Grid/next/Grid.stories.js", "kind": "Elements/Grid", "story": "Subgrid", "parameters": { "__id": "elements-grid--subgrid", "docsOnly": false, "fileName": "./src/components/Grid/next/Grid.stories.js" } }, "elements-grid--mixed-grid-modes": { "id": "elements-grid--mixed-grid-modes", "title": "Elements/Grid", "name": "Mixed Grid Modes", "importPath": "./src/components/Grid/next/Grid.stories.js", "kind": "Elements/Grid", "story": "Mixed Grid Modes", "parameters": { "__id": "elements-grid--mixed-grid-modes", "docsOnly": false, "fileName": "./src/components/Grid/next/Grid.stories.js" } }, "elements-grid--grid-start-end": { "id": "elements-grid--grid-start-end", "title": "Elements/Grid", "name": "Grid Start End", "importPath": "./src/components/Grid/next/Grid.stories.js", "kind": "Elements/Grid", "story": "Grid Start End", "parameters": { "__id": "elements-grid--grid-start-end", "docsOnly": false, "fileName": "./src/components/Grid/next/Grid.stories.js" } }, "elements-grid--offset": { "id": "elements-grid--offset", "title": "Elements/Grid", "name": "Offset", "importPath": "./src/components/Grid/next/Grid.stories.js", "kind": "Elements/Grid", "story": "Offset", "parameters": { "__id": "elements-grid--offset", "docsOnly": false, "fileName": "./src/components/Grid/next/Grid.stories.js" } }, "components-inlineloading--inline-loading": { "id": "components-inlineloading--inline-loading", "title": "Components/InlineLoading", "name": "Inline Loading", "importPath": "./src/components/InlineLoading/next/InlineLoading.stories.js", "kind": "Components/InlineLoading", "story": "Inline Loading", "parameters": { "__id": "components-inlineloading--inline-loading", "docsOnly": false, "fileName": "./src/components/InlineLoading/next/InlineLoading.stories.js" } }, "components-inlineloading--ux-example": { "id": "components-inlineloading--ux-example", "title": "Components/InlineLoading", "name": "Ux Example", "importPath": "./src/components/InlineLoading/next/InlineLoading.stories.js", "kind": "Components/InlineLoading", "story": "Ux Example", "parameters": { "__id": "components-inlineloading--ux-example", "docsOnly": false, "fileName": "./src/components/InlineLoading/next/InlineLoading.stories.js" } }, "components-layer--default": { "id": "components-layer--default", "title": "Components/Layer", "name": "Default", "importPath": "./src/components/Layer/next/Layer.stories.js", "kind": "Components/Layer", "story": "Default", "parameters": { "__id": "components-layer--default", "docsOnly": false, "fileName": "./src/components/Layer/next/Layer.stories.js" } }, "components-layer--custom-level": { "id": "components-layer--custom-level", "title": "Components/Layer", "name": "Custom Level", "importPath": "./src/components/Layer/next/Layer.stories.js", "kind": "Components/Layer", "story": "Custom Level", "parameters": { "__id": "components-layer--custom-level", "docsOnly": false, "fileName": "./src/components/Layer/next/Layer.stories.js" } }, "components-layer--playground": { "id": "components-layer--playground", "title": "Components/Layer", "name": "Playground", "importPath": "./src/components/Layer/next/Layer.stories.js", "kind": "Components/Layer", "story": "Playground", "parameters": { "__id": "components-layer--playground", "docsOnly": false, "fileName": "./src/components/Layer/next/Layer.stories.js" } }, "components-modal--default": { "id": "components-modal--default", "title": "Components/Modal", "name": "Default", "importPath": "./src/components/Modal/next/Modal.stories.js", "kind": "Components/Modal", "story": "Default", "parameters": { "__id": "components-modal--default", "docsOnly": false, "fileName": "./src/components/Modal/next/Modal.stories.js" } }, "components-modal--playground": { "id": "components-modal--playground", "title": "Components/Modal", "name": "Playground", "importPath": "./src/components/Modal/next/Modal.stories.js", "kind": "Components/Modal", "story": "Playground", "parameters": { "__id": "components-modal--playground", "docsOnly": false, "fileName": "./src/components/Modal/next/Modal.stories.js" } }, "components-modal--with-state-manager": { "id": "components-modal--with-state-manager", "title": "Components/Modal", "name": "With State Manager", "importPath": "./src/components/Modal/next/Modal.stories.js", "kind": "Components/Modal", "story": "With State Manager", "parameters": { "__id": "components-modal--with-state-manager", "docsOnly": false, "fileName": "./src/components/Modal/next/Modal.stories.js" } }, "components-modal--passive-modal": { "id": "components-modal--passive-modal", "title": "Components/Modal", "name": "Passive Modal", "importPath": "./src/components/Modal/next/Modal.stories.js", "kind": "Components/Modal", "story": "Passive Modal", "parameters": { "__id": "components-modal--passive-modal", "docsOnly": false, "fileName": "./src/components/Modal/next/Modal.stories.js" } }, "components-multiselect--default": { "id": "components-multiselect--default", "title": "Components/MultiSelect", "name": "Default", "importPath": "./src/components/MultiSelect/next/MultiSelect.stories.js", "kind": "Components/MultiSelect", "story": "Default", "parameters": { "__id": "components-multiselect--default", "docsOnly": false, "fileName": "./src/components/MultiSelect/next/MultiSelect.stories.js" } }, "components-multiselect--with-initial-selected-items": { "id": "components-multiselect--with-initial-selected-items", "title": "Components/MultiSelect", "name": "With Initial Selected Items", "importPath": "./src/components/MultiSelect/next/MultiSelect.stories.js", "kind": "Components/MultiSelect", "story": "With Initial Selected Items", "parameters": { "__id": "components-multiselect--with-initial-selected-items", "docsOnly": false, "fileName": "./src/components/MultiSelect/next/MultiSelect.stories.js" } }, "components-multiselect--filterable": { "id": "components-multiselect--filterable", "title": "Components/MultiSelect", "name": "Filterable", "importPath": "./src/components/MultiSelect/next/MultiSelect.stories.js", "kind": "Components/MultiSelect", "story": "Filterable", "parameters": { "__id": "components-multiselect--filterable", "docsOnly": false, "fileName": "./src/components/MultiSelect/next/MultiSelect.stories.js" } }, "components-multiselect--with-layer": { "id": "components-multiselect--with-layer", "title": "Components/MultiSelect", "name": "With Layer", "importPath": "./src/components/MultiSelect/next/MultiSelect.stories.js", "kind": "Components/MultiSelect", "story": "With Layer", "parameters": { "__id": "components-multiselect--with-layer", "docsOnly": false, "fileName": "./src/components/MultiSelect/next/MultiSelect.stories.js" } }, "components-multiselect--filterable-with-layer": { "id": "components-multiselect--filterable-with-layer", "title": "Components/MultiSelect", "name": "Filterable With Layer", "importPath": "./src/components/MultiSelect/next/MultiSelect.stories.js", "kind": "Components/MultiSelect", "story": "Filterable With Layer", "parameters": { "__id": "components-multiselect--filterable-with-layer", "docsOnly": false, "fileName": "./src/components/MultiSelect/next/MultiSelect.stories.js" } }, "components-notifications--toast": { "id": "components-notifications--toast", "title": "Components/Notifications", "name": "Toast", "importPath": "./src/components/Notification/next/Notification.stories.js", "kind": "Components/Notifications", "story": "Toast", "parameters": { "__id": "components-notifications--toast", "docsOnly": false, "fileName": "./src/components/Notification/next/Notification.stories.js" } }, "components-notifications--inline": { "id": "components-notifications--inline", "title": "Components/Notifications", "name": "Inline", "importPath": "./src/components/Notification/next/Notification.stories.js", "kind": "Components/Notifications", "story": "Inline", "parameters": { "__id": "components-notifications--inline", "docsOnly": false, "fileName": "./src/components/Notification/next/Notification.stories.js" } }, "components-notifications--actionable": { "id": "components-notifications--actionable", "title": "Components/Notifications", "name": "Actionable", "importPath": "./src/components/Notification/next/Notification.stories.js", "kind": "Components/Notifications", "story": "Actionable", "parameters": { "__id": "components-notifications--actionable", "docsOnly": false, "fileName": "./src/components/Notification/next/Notification.stories.js" } }, "components-numberinput--default": { "id": "components-numberinput--default", "title": "Components/NumberInput", "name": "Default", "importPath": "./src/components/NumberInput/next/NumberInput.stories.js", "kind": "Components/NumberInput", "story": "Default", "parameters": { "__id": "components-numberinput--default", "docsOnly": false, "fileName": "./src/components/NumberInput/next/NumberInput.stories.js" } }, "components-numberinput--playground": { "id": "components-numberinput--playground", "title": "Components/NumberInput", "name": "Playground", "importPath": "./src/components/NumberInput/next/NumberInput.stories.js", "kind": "Components/NumberInput", "story": "Playground", "parameters": { "__id": "components-numberinput--playground", "docsOnly": false, "fileName": "./src/components/NumberInput/next/NumberInput.stories.js" } }, "components-numberinput--skeleton": { "id": "components-numberinput--skeleton", "title": "Components/NumberInput", "name": "Skeleton", "importPath": "./src/components/NumberInput/next/NumberInput.stories.js", "kind": "Components/NumberInput", "story": "Skeleton", "parameters": { "__id": "components-numberinput--skeleton", "docsOnly": false, "fileName": "./src/components/NumberInput/next/NumberInput.stories.js" } }, "components-overflowmenu--default": { "id": "components-overflowmenu--default", "title": "Components/OverflowMenu", "name": "Default", "importPath": "./src/components/OverflowMenu/next/OverflowMenu.stories.js", "kind": "Components/OverflowMenu", "story": "Default", "parameters": { "__id": "components-overflowmenu--default", "docsOnly": false, "fileName": "./src/components/OverflowMenu/next/OverflowMenu.stories.js" } }, "components-overflowmenu--render-custom-icon": { "id": "components-overflowmenu--render-custom-icon", "title": "Components/OverflowMenu", "name": "Render Custom Icon", "importPath": "./src/components/OverflowMenu/next/OverflowMenu.stories.js", "kind": "Components/OverflowMenu", "story": "Render Custom Icon", "parameters": { "__id": "components-overflowmenu--render-custom-icon", "docsOnly": false, "fileName": "./src/components/OverflowMenu/next/OverflowMenu.stories.js" } }, "experimental-unstable-menu-overflowmenuv2--overflow-menu-v-2": { "id": "experimental-unstable-menu-overflowmenuv2--overflow-menu-v-2", "title": "Experimental/unstable_Menu/OverflowMenuV2", "name": "Overflow Menu V 2", "importPath": "./src/components/OverflowMenuV2/next/OverflowMenuv2.stories.js", "kind": "Experimental/unstable_Menu/OverflowMenuV2", "story": "Overflow Menu V 2", "parameters": { "__id": "experimental-unstable-menu-overflowmenuv2--overflow-menu-v-2", "docsOnly": false, "fileName": "./src/components/OverflowMenuV2/next/OverflowMenuv2.stories.js" } }, "experimental-unstable-menu-overflowmenuv2--custom-icon": { "id": "experimental-unstable-menu-overflowmenuv2--custom-icon", "title": "Experimental/unstable_Menu/OverflowMenuV2", "name": "Custom Icon", "importPath": "./src/components/OverflowMenuV2/next/OverflowMenuv2.stories.js", "kind": "Experimental/unstable_Menu/OverflowMenuV2", "story": "Custom Icon", "parameters": { "__id": "experimental-unstable-menu-overflowmenuv2--custom-icon", "docsOnly": false, "fileName": "./src/components/OverflowMenuV2/next/OverflowMenuv2.stories.js" } }, "experimental-unstable-menu-overflowmenuv2--nested": { "id": "experimental-unstable-menu-overflowmenuv2--nested", "title": "Experimental/unstable_Menu/OverflowMenuV2", "name": "Nested", "importPath": "./src/components/OverflowMenuV2/next/OverflowMenuv2.stories.js", "kind": "Experimental/unstable_Menu/OverflowMenuV2", "story": "Nested", "parameters": { "__id": "experimental-unstable-menu-overflowmenuv2--nested", "docsOnly": false, "fileName": "./src/components/OverflowMenuV2/next/OverflowMenuv2.stories.js" } }, "experimental-unstable-pagination--with-a-page-selector": { "id": "experimental-unstable-pagination--with-a-page-selector", "title": "Experimental/unstable_Pagination", "name": "with a page selector", "importPath": "./src/components/Pagination/experimental/Pagination-story.js", "kind": "Experimental/unstable_Pagination", "story": "with a page selector", "parameters": { "__id": "experimental-unstable-pagination--with-a-page-selector", "docsOnly": false, "fileName": "./src/components/Pagination/experimental/Pagination-story.js" } }, "experimental-unstable-pagination--with-no-sizer-child-input-or-child-selector": { "id": "experimental-unstable-pagination--with-no-sizer-child-input-or-child-selector", "title": "Experimental/unstable_Pagination", "name": "with no sizer, child input, or child selector", "importPath": "./src/components/Pagination/experimental/Pagination-story.js", "kind": "Experimental/unstable_Pagination", "story": "with no sizer, child input, or child selector", "parameters": { "__id": "experimental-unstable-pagination--with-no-sizer-child-input-or-child-selector", "docsOnly": false, "fileName": "./src/components/Pagination/experimental/Pagination-story.js" } }, "components-pagination--pagination": { "id": "components-pagination--pagination", "title": "Components/Pagination", "name": "Pagination", "importPath": "./src/components/Pagination/next/Pagination.stories.js", "kind": "Components/Pagination", "story": "Pagination", "parameters": { "__id": "components-pagination--pagination", "docsOnly": false, "fileName": "./src/components/Pagination/next/Pagination.stories.js" } }, "components-pagination--multiple-pagination-components": { "id": "components-pagination--multiple-pagination-components", "title": "Components/Pagination", "name": "Multiple Pagination components", "importPath": "./src/components/Pagination/next/Pagination.stories.js", "kind": "Components/Pagination", "story": "Multiple Pagination components", "parameters": { "__id": "components-pagination--multiple-pagination-components", "docsOnly": false, "fileName": "./src/components/Pagination/next/Pagination.stories.js" } }, "components-pagination--pagination-with-custom-page-sizes-label": { "id": "components-pagination--pagination-with-custom-page-sizes-label", "title": "Components/Pagination", "name": "Pagination with custom page sizes label", "importPath": "./src/components/Pagination/next/Pagination.stories.js", "kind": "Components/Pagination", "story": "Pagination with custom page sizes label", "parameters": { "__id": "components-pagination--pagination-with-custom-page-sizes-label", "docsOnly": false, "fileName": "./src/components/Pagination/next/Pagination.stories.js" } }, "components-paginationnav--pagination-nav": { "id": "components-paginationnav--pagination-nav", "title": "Components/PaginationNav", "name": "Pagination Nav", "importPath": "./src/components/PaginationNav/next/PaginationNav.stories.js", "kind": "Components/PaginationNav", "story": "Pagination Nav", "parameters": { "__id": "components-paginationnav--pagination-nav", "docsOnly": false, "fileName": "./src/components/PaginationNav/next/PaginationNav.stories.js" } }, "components-popover--playground": { "id": "components-popover--playground", "title": "Components/Popover", "name": "Playground", "importPath": "./src/components/Popover/next/Popover.stories.js", "kind": "Components/Popover", "story": "Playground", "parameters": { "__id": "components-popover--playground", "docsOnly": false, "fileName": "./src/components/Popover/next/Popover.stories.js" } }, "components-progressbar--progress-bar": { "id": "components-progressbar--progress-bar", "title": "Components/ProgressBar", "name": "Progress Bar", "importPath": "./src/components/ProgressBar/next/ProgressBar.stories.js", "kind": "Components/ProgressBar", "story": "Progress Bar", "parameters": { "__id": "components-progressbar--progress-bar", "docsOnly": false, "fileName": "./src/components/ProgressBar/next/ProgressBar.stories.js" } }, "components-progressbar--playground": { "id": "components-progressbar--playground", "title": "Components/ProgressBar", "name": "Playground", "importPath": "./src/components/ProgressBar/next/ProgressBar.stories.js", "kind": "Components/ProgressBar", "story": "Playground", "parameters": { "__id": "components-progressbar--playground", "docsOnly": false, "fileName": "./src/components/ProgressBar/next/ProgressBar.stories.js" } }, "components-progressbar--indeterminate": { "id": "components-progressbar--indeterminate", "title": "Components/ProgressBar", "name": "Indeterminate", "importPath": "./src/components/ProgressBar/next/ProgressBar.stories.js", "kind": "Components/ProgressBar", "story": "Indeterminate", "parameters": { "__id": "components-progressbar--indeterminate", "docsOnly": false, "fileName": "./src/components/ProgressBar/next/ProgressBar.stories.js" } }, "components-progressbar--example": { "id": "components-progressbar--example", "title": "Components/ProgressBar", "name": "Example", "importPath": "./src/components/ProgressBar/next/ProgressBar.stories.js", "kind": "Components/ProgressBar", "story": "Example", "parameters": { "__id": "components-progressbar--example", "docsOnly": false, "fileName": "./src/components/ProgressBar/next/ProgressBar.stories.js" } }, "components-progressindicator--default": { "id": "components-progressindicator--default", "title": "Components/ProgressIndicator", "name": "Default", "importPath": "./src/components/ProgressIndicator/next/ProgressIndicator.stories.js", "kind": "Components/ProgressIndicator", "story": "Default", "parameters": { "__id": "components-progressindicator--default", "docsOnly": false, "fileName": "./src/components/ProgressIndicator/next/ProgressIndicator.stories.js" } }, "components-progressindicator--interactive": { "id": "components-progressindicator--interactive", "title": "Components/ProgressIndicator", "name": "Interactive", "importPath": "./src/components/ProgressIndicator/next/ProgressIndicator.stories.js", "kind": "Components/ProgressIndicator", "story": "Interactive", "parameters": { "__id": "components-progressindicator--interactive", "docsOnly": false, "fileName": "./src/components/ProgressIndicator/next/ProgressIndicator.stories.js" } }, "components-progressindicator--skeleton": { "id": "components-progressindicator--skeleton", "title": "Components/ProgressIndicator", "name": "Skeleton", "importPath": "./src/components/ProgressIndicator/next/ProgressIndicator.stories.js", "kind": "Components/ProgressIndicator", "story": "Skeleton", "parameters": { "__id": "components-progressindicator--skeleton", "docsOnly": false, "fileName": "./src/components/ProgressIndicator/next/ProgressIndicator.stories.js" } }, "components-radiobutton--default": { "id": "components-radiobutton--default", "title": "Components/RadioButton", "name": "Default", "importPath": "./src/components/RadioButton/next/RadioButton.stories.js", "kind": "Components/RadioButton", "story": "Default", "parameters": { "__id": "components-radiobutton--default", "docsOnly": false, "fileName": "./src/components/RadioButton/next/RadioButton.stories.js" } }, "components-search--default": { "id": "components-search--default", "title": "Components/Search", "name": "Default", "importPath": "./src/components/Search/next/Search.stories.js", "kind": "Components/Search", "story": "Default", "parameters": { "__id": "components-search--default", "docsOnly": false, "fileName": "./src/components/Search/next/Search.stories.js" } }, "components-search--disabled": { "id": "components-search--disabled", "title": "Components/Search", "name": "Disabled", "importPath": "./src/components/Search/next/Search.stories.js", "kind": "Components/Search", "story": "Disabled", "parameters": { "__id": "components-search--disabled", "docsOnly": false, "fileName": "./src/components/Search/next/Search.stories.js" } }, "components-search--expandable": { "id": "components-search--expandable", "title": "Components/Search", "name": "Expandable", "importPath": "./src/components/Search/next/Search.stories.js", "kind": "Components/Search", "story": "Expandable", "parameters": { "__id": "components-search--expandable", "docsOnly": false, "fileName": "./src/components/Search/next/Search.stories.js" } }, "components-search--with-layer": { "id": "components-search--with-layer", "title": "Components/Search", "name": "With Layer", "importPath": "./src/components/Search/next/Search.stories.js", "kind": "Components/Search", "story": "With Layer", "parameters": { "__id": "components-search--with-layer", "docsOnly": false, "fileName": "./src/components/Search/next/Search.stories.js" } }, "components-search--expandable-with-layer": { "id": "components-search--expandable-with-layer", "title": "Components/Search", "name": "Expandable With Layer", "importPath": "./src/components/Search/next/Search.stories.js", "kind": "Components/Search", "story": "Expandable With Layer", "parameters": { "__id": "components-search--expandable-with-layer", "docsOnly": false, "fileName": "./src/components/Search/next/Search.stories.js" } }, "components-skeleton--skeleton-placeholder": { "id": "components-skeleton--skeleton-placeholder", "title": "Components/Skeleton", "name": "Skeleton Placeholder", "importPath": "./src/components/Skeleton/next/Skeleton.stories.js", "kind": "Components/Skeleton", "story": "Skeleton Placeholder", "parameters": { "__id": "components-skeleton--skeleton-placeholder", "docsOnly": false, "fileName": "./src/components/Skeleton/next/Skeleton.stories.js" } }, "components-skeleton--skeleton-text": { "id": "components-skeleton--skeleton-text", "title": "Components/Skeleton", "name": "Skeleton Text", "importPath": "./src/components/Skeleton/next/Skeleton.stories.js", "kind": "Components/Skeleton", "story": "Skeleton Text", "parameters": { "__id": "components-skeleton--skeleton-text", "docsOnly": false, "fileName": "./src/components/Skeleton/next/Skeleton.stories.js" } }, "components-slider--default": { "id": "components-slider--default", "title": "Components/Slider", "name": "Default", "importPath": "./src/components/Slider/next/Slider.stories.js", "kind": "Components/Slider", "story": "Default", "parameters": { "__id": "components-slider--default", "docsOnly": false, "fileName": "./src/components/Slider/next/Slider.stories.js" } }, "components-slider--controlled-slider": { "id": "components-slider--controlled-slider", "title": "Components/Slider", "name": "Controlled Slider", "importPath": "./src/components/Slider/next/Slider.stories.js", "kind": "Components/Slider", "story": "Controlled Slider", "parameters": { "__id": "components-slider--controlled-slider", "docsOnly": false, "fileName": "./src/components/Slider/next/Slider.stories.js" } }, "components-slider--with-layer": { "id": "components-slider--with-layer", "title": "Components/Slider", "name": "With Layer", "importPath": "./src/components/Slider/next/Slider.stories.js", "kind": "Components/Slider", "story": "With Layer", "parameters": { "__id": "components-slider--with-layer", "docsOnly": false, "fileName": "./src/components/Slider/next/Slider.stories.js" } }, "components-slider--controlled-slider-with-layer": { "id": "components-slider--controlled-slider-with-layer", "title": "Components/Slider", "name": "Controlled Slider With Layer", "importPath": "./src/components/Slider/next/Slider.stories.js", "kind": "Components/Slider", "story": "Controlled Slider With Layer", "parameters": { "__id": "components-slider--controlled-slider-with-layer", "docsOnly": false, "fileName": "./src/components/Slider/next/Slider.stories.js" } }, "components-slider--skeleton": { "id": "components-slider--skeleton", "title": "Components/Slider", "name": "Skeleton", "importPath": "./src/components/Slider/next/Slider.stories.js", "kind": "Components/Slider", "story": "Skeleton", "parameters": { "__id": "components-slider--skeleton", "docsOnly": false, "fileName": "./src/components/Slider/next/Slider.stories.js" } }, "layout-stack--default": { "id": "layout-stack--default", "title": "Layout/Stack", "name": "Default", "importPath": "./src/components/Stack/next/Stack.stories.js", "kind": "Layout/Stack", "story": "Default", "parameters": { "__id": "layout-stack--default", "docsOnly": false, "fileName": "./src/components/Stack/next/Stack.stories.js" } }, "layout-stack--horizontal": { "id": "layout-stack--horizontal", "title": "Layout/Stack", "name": "Horizontal", "importPath": "./src/components/Stack/next/Stack.stories.js", "kind": "Layout/Stack", "story": "Horizontal", "parameters": { "__id": "layout-stack--horizontal", "docsOnly": false, "fileName": "./src/components/Stack/next/Stack.stories.js" } }, "layout-stack--playground": { "id": "layout-stack--playground", "title": "Layout/Stack", "name": "Playground", "importPath": "./src/components/Stack/next/Stack.stories.js", "kind": "Layout/Stack", "story": "Playground", "parameters": { "__id": "layout-stack--playground", "docsOnly": false, "fileName": "./src/components/Stack/next/Stack.stories.js" } }, "components-structuredlist--simple": { "id": "components-structuredlist--simple", "title": "Components/StructuredList", "name": "Simple", "importPath": "./src/components/StructuredList/next/StructuredList.stories.js", "kind": "Components/StructuredList", "story": "Simple", "parameters": { "__id": "components-structuredlist--simple", "docsOnly": false, "fileName": "./src/components/StructuredList/next/StructuredList.stories.js" } }, "components-structuredlist--playground": { "id": "components-structuredlist--playground", "title": "Components/StructuredList", "name": "Playground", "importPath": "./src/components/StructuredList/next/StructuredList.stories.js", "kind": "Components/StructuredList", "story": "Playground", "parameters": { "__id": "components-structuredlist--playground", "docsOnly": false, "fileName": "./src/components/StructuredList/next/StructuredList.stories.js" } }, "components-structuredlist--selection": { "id": "components-structuredlist--selection", "title": "Components/StructuredList", "name": "Selection", "importPath": "./src/components/StructuredList/next/StructuredList.stories.js", "kind": "Components/StructuredList", "story": "Selection", "parameters": { "__id": "components-structuredlist--selection", "docsOnly": false, "fileName": "./src/components/StructuredList/next/StructuredList.stories.js" } }, "components-structuredlist--skeleton": { "id": "components-structuredlist--skeleton", "title": "Components/StructuredList", "name": "Skeleton", "importPath": "./src/components/StructuredList/next/StructuredList.stories.js", "kind": "Components/StructuredList", "story": "Skeleton", "parameters": { "__id": "components-structuredlist--skeleton", "docsOnly": false, "fileName": "./src/components/StructuredList/next/StructuredList.stories.js" } }, "components-tabs--line": { "id": "components-tabs--line", "title": "Components/Tabs", "name": "Line", "importPath": "./src/components/Tabs/next/Tabs.stories.js", "kind": "Components/Tabs", "story": "Line", "parameters": { "__id": "components-tabs--line", "docsOnly": false, "fileName": "./src/components/Tabs/next/Tabs.stories.js" } }, "components-tabs--manual": { "id": "components-tabs--manual", "title": "Components/Tabs", "name": "Manual", "importPath": "./src/components/Tabs/next/Tabs.stories.js", "kind": "Components/Tabs", "story": "Manual", "parameters": { "__id": "components-tabs--manual", "docsOnly": false, "fileName": "./src/components/Tabs/next/Tabs.stories.js" } }, "components-tabs--icon-20-only": { "id": "components-tabs--icon-20-only", "title": "Components/Tabs", "name": "Icon 20 Only", "importPath": "./src/components/Tabs/next/Tabs.stories.js", "kind": "Components/Tabs", "story": "Icon 20 Only", "parameters": { "__id": "components-tabs--icon-20-only", "docsOnly": false, "fileName": "./src/components/Tabs/next/Tabs.stories.js" } }, "components-tabs--icon-only": { "id": "components-tabs--icon-only", "title": "Components/Tabs", "name": "Icon Only", "importPath": "./src/components/Tabs/next/Tabs.stories.js", "kind": "Components/Tabs", "story": "Icon Only", "parameters": { "__id": "components-tabs--icon-only", "docsOnly": false, "fileName": "./src/components/Tabs/next/Tabs.stories.js" } }, "components-tabs--contained": { "id": "components-tabs--contained", "title": "Components/Tabs", "name": "Contained", "importPath": "./src/components/Tabs/next/Tabs.stories.js", "kind": "Components/Tabs", "story": "Contained", "parameters": { "__id": "components-tabs--contained", "docsOnly": false, "fileName": "./src/components/Tabs/next/Tabs.stories.js" } }, "components-tabs--skeleton": { "id": "components-tabs--skeleton", "title": "Components/Tabs", "name": "Skeleton", "importPath": "./src/components/Tabs/next/Tabs.stories.js", "kind": "Components/Tabs", "story": "Skeleton", "parameters": { "__id": "components-tabs--skeleton", "docsOnly": false, "fileName": "./src/components/Tabs/next/Tabs.stories.js" } }, "components-textarea--default": { "id": "components-textarea--default", "title": "Components/TextArea", "name": "Default", "importPath": "./src/components/TextArea/next/TextArea.stories.js", "kind": "Components/TextArea", "story": "Default", "parameters": { "__id": "components-textarea--default", "docsOnly": false, "fileName": "./src/components/TextArea/next/TextArea.stories.js" } }, "components-textarea--with-layer": { "id": "components-textarea--with-layer", "title": "Components/TextArea", "name": "With Layer", "importPath": "./src/components/TextArea/next/TextArea.stories.js", "kind": "Components/TextArea", "story": "With Layer", "parameters": { "__id": "components-textarea--with-layer", "docsOnly": false, "fileName": "./src/components/TextArea/next/TextArea.stories.js" } }, "components-textarea--skeleton": { "id": "components-textarea--skeleton", "title": "Components/TextArea", "name": "Skeleton", "importPath": "./src/components/TextArea/next/TextArea.stories.js", "kind": "Components/TextArea", "story": "Skeleton", "parameters": { "__id": "components-textarea--skeleton", "docsOnly": false, "fileName": "./src/components/TextArea/next/TextArea.stories.js" } }, "components-textinput--default": { "id": "components-textinput--default", "title": "Components/TextInput", "name": "Default", "importPath": "./src/components/TextInput/next/TextInput.stories.js", "kind": "Components/TextInput", "story": "Default", "parameters": { "__id": "components-textinput--default", "docsOnly": false, "fileName": "./src/components/TextInput/next/TextInput.stories.js" } }, "components-textinput--fluid": { "id": "components-textinput--fluid", "title": "Components/TextInput", "name": "Fluid", "importPath": "./src/components/TextInput/next/TextInput.stories.js", "kind": "Components/TextInput", "story": "Fluid", "parameters": { "__id": "components-textinput--fluid", "docsOnly": false, "fileName": "./src/components/TextInput/next/TextInput.stories.js" } }, "components-textinput--toggle-password-visibility": { "id": "components-textinput--toggle-password-visibility", "title": "Components/TextInput", "name": "Toggle Password Visibility", "importPath": "./src/components/TextInput/next/TextInput.stories.js", "kind": "Components/TextInput", "story": "Toggle Password Visibility", "parameters": { "__id": "components-textinput--toggle-password-visibility", "docsOnly": false, "fileName": "./src/components/TextInput/next/TextInput.stories.js" } }, "components-textinput--read-only": { "id": "components-textinput--read-only", "title": "Components/TextInput", "name": "Read Only", "importPath": "./src/components/TextInput/next/TextInput.stories.js", "kind": "Components/TextInput", "story": "Read Only", "parameters": { "__id": "components-textinput--read-only", "docsOnly": false, "fileName": "./src/components/TextInput/next/TextInput.stories.js" } }, "components-textinput--with-layer": { "id": "components-textinput--with-layer", "title": "Components/TextInput", "name": "With Layer", "importPath": "./src/components/TextInput/next/TextInput.stories.js", "kind": "Components/TextInput", "story": "With Layer", "parameters": { "__id": "components-textinput--with-layer", "docsOnly": false, "fileName": "./src/components/TextInput/next/TextInput.stories.js" } }, "components-textinput--skeleton": { "id": "components-textinput--skeleton", "title": "Components/TextInput", "name": "Skeleton", "importPath": "./src/components/TextInput/next/TextInput.stories.js", "kind": "Components/TextInput", "story": "Skeleton", "parameters": { "__id": "components-textinput--skeleton", "docsOnly": false, "fileName": "./src/components/TextInput/next/TextInput.stories.js" } }, "components-theme--default": { "id": "components-theme--default", "title": "Components/Theme", "name": "Default", "importPath": "./src/components/Theme/next/Theme.stories.js", "kind": "Components/Theme", "story": "Default", "parameters": { "__id": "components-theme--default", "docsOnly": false, "fileName": "./src/components/Theme/next/Theme.stories.js" } }, "components-theme--use-theme": { "id": "components-theme--use-theme", "title": "Components/Theme", "name": "useTheme", "importPath": "./src/components/Theme/next/Theme.stories.js", "kind": "Components/Theme", "story": "useTheme", "parameters": { "__id": "components-theme--use-theme", "docsOnly": false, "fileName": "./src/components/Theme/next/Theme.stories.js" } }, "components-theme--with-layer": { "id": "components-theme--with-layer", "title": "Components/Theme", "name": "With Layer", "importPath": "./src/components/Theme/next/Theme.stories.js", "kind": "Components/Theme", "story": "With Layer", "parameters": { "__id": "components-theme--with-layer", "docsOnly": false, "fileName": "./src/components/Theme/next/Theme.stories.js" } }, "components-theme--playground": { "id": "components-theme--playground", "title": "Components/Theme", "name": "Playground", "importPath": "./src/components/Theme/next/Theme.stories.js", "kind": "Components/Theme", "story": "Playground", "parameters": { "__id": "components-theme--playground", "docsOnly": false, "fileName": "./src/components/Theme/next/Theme.stories.js" } }, "components-tile--default": { "id": "components-tile--default", "title": "Components/Tile", "name": "Default", "importPath": "./src/components/Tile/next/Tile.stories.js", "kind": "Components/Tile", "story": "Default", "parameters": { "__id": "components-tile--default", "docsOnly": false, "fileName": "./src/components/Tile/next/Tile.stories.js" } }, "components-tile--default-with-layer": { "id": "components-tile--default-with-layer", "title": "Components/Tile", "name": "Default With Layer", "importPath": "./src/components/Tile/next/Tile.stories.js", "kind": "Components/Tile", "story": "Default With Layer", "parameters": { "__id": "components-tile--default-with-layer", "docsOnly": false, "fileName": "./src/components/Tile/next/Tile.stories.js" } }, "components-tile--clickable": { "id": "components-tile--clickable", "title": "Components/Tile", "name": "Clickable", "importPath": "./src/components/Tile/next/Tile.stories.js", "kind": "Components/Tile", "story": "Clickable", "parameters": { "__id": "components-tile--clickable", "docsOnly": false, "fileName": "./src/components/Tile/next/Tile.stories.js" } }, "components-tile--clickable-with-layer": { "id": "components-tile--clickable-with-layer", "title": "Components/Tile", "name": "Clickable With Layer", "importPath": "./src/components/Tile/next/Tile.stories.js", "kind": "Components/Tile", "story": "Clickable With Layer", "parameters": { "__id": "components-tile--clickable-with-layer", "docsOnly": false, "fileName": "./src/components/Tile/next/Tile.stories.js" } }, "components-tile--selectable": { "id": "components-tile--selectable", "title": "Components/Tile", "name": "Selectable", "importPath": "./src/components/Tile/next/Tile.stories.js", "kind": "Components/Tile", "story": "Selectable", "parameters": { "__id": "components-tile--selectable", "docsOnly": false, "fileName": "./src/components/Tile/next/Tile.stories.js" } }, "components-tile--multi-select": { "id": "components-tile--multi-select", "title": "Components/Tile", "name": "Multi Select", "importPath": "./src/components/Tile/next/Tile.stories.js", "kind": "Components/Tile", "story": "Multi Select", "parameters": { "__id": "components-tile--multi-select", "docsOnly": false, "fileName": "./src/components/Tile/next/Tile.stories.js" } }, "components-tile--radio": { "id": "components-tile--radio", "title": "Components/Tile", "name": "Radio", "importPath": "./src/components/Tile/next/Tile.stories.js", "kind": "Components/Tile", "story": "Radio", "parameters": { "__id": "components-tile--radio", "docsOnly": false, "fileName": "./src/components/Tile/next/Tile.stories.js" } }, "components-tile--radio-with-layer": { "id": "components-tile--radio-with-layer", "title": "Components/Tile", "name": "Radio With Layer", "importPath": "./src/components/Tile/next/Tile.stories.js", "kind": "Components/Tile", "story": "Radio With Layer", "parameters": { "__id": "components-tile--radio-with-layer", "docsOnly": false, "fileName": "./src/components/Tile/next/Tile.stories.js" } }, "components-tile--expandable": { "id": "components-tile--expandable", "title": "Components/Tile", "name": "Expandable", "importPath": "./src/components/Tile/next/Tile.stories.js", "kind": "Components/Tile", "story": "Expandable", "parameters": { "__id": "components-tile--expandable", "docsOnly": false, "fileName": "./src/components/Tile/next/Tile.stories.js" } }, "components-tile--expandable-with-interactive": { "id": "components-tile--expandable-with-interactive", "title": "Components/Tile", "name": "Expandable With Interactive", "importPath": "./src/components/Tile/next/Tile.stories.js", "kind": "Components/Tile", "story": "Expandable With Interactive", "parameters": { "__id": "components-tile--expandable-with-interactive", "docsOnly": false, "fileName": "./src/components/Tile/next/Tile.stories.js" } }, "components-tile--expandable-with-layer": { "id": "components-tile--expandable-with-layer", "title": "Components/Tile", "name": "Expandable With Layer", "importPath": "./src/components/Tile/next/Tile.stories.js", "kind": "Components/Tile", "story": "Expandable With Layer", "parameters": { "__id": "components-tile--expandable-with-layer", "docsOnly": false, "fileName": "./src/components/Tile/next/Tile.stories.js" } }, "components-timepicker--default": { "id": "components-timepicker--default", "title": "Components/TimePicker", "name": "Default", "importPath": "./src/components/TimePicker/next/TimePicker.stories.js", "kind": "Components/TimePicker", "story": "Default", "parameters": { "__id": "components-timepicker--default", "docsOnly": false, "fileName": "./src/components/TimePicker/next/TimePicker.stories.js" } }, "components-timepicker--with-layer": { "id": "components-timepicker--with-layer", "title": "Components/TimePicker", "name": "With Layer", "importPath": "./src/components/TimePicker/next/TimePicker.stories.js", "kind": "Components/TimePicker", "story": "With Layer", "parameters": { "__id": "components-timepicker--with-layer", "docsOnly": false, "fileName": "./src/components/TimePicker/next/TimePicker.stories.js" } }, "components-toggle--default": { "id": "components-toggle--default", "title": "Components/Toggle", "name": "Default", "importPath": "./src/components/Toggle/next/Toggle.stories.js", "kind": "Components/Toggle", "story": "Default", "parameters": { "__id": "components-toggle--default", "docsOnly": false, "fileName": "./src/components/Toggle/next/Toggle.stories.js" } }, "components-toggle--small-toggle": { "id": "components-toggle--small-toggle", "title": "Components/Toggle", "name": "Small Toggle", "importPath": "./src/components/Toggle/next/Toggle.stories.js", "kind": "Components/Toggle", "story": "Small Toggle", "parameters": { "__id": "components-toggle--small-toggle", "docsOnly": false, "fileName": "./src/components/Toggle/next/Toggle.stories.js" } }, "components-definitiontooltip--default": { "id": "components-definitiontooltip--default", "title": "Components/DefinitionTooltip", "name": "Default", "importPath": "./src/components/Tooltip/next/DefinitionTooltip.stories.js", "kind": "Components/DefinitionTooltip", "story": "Default", "parameters": { "__id": "components-definitiontooltip--default", "docsOnly": false, "fileName": "./src/components/Tooltip/next/DefinitionTooltip.stories.js" } }, "components-definitiontooltip--playground": { "id": "components-definitiontooltip--playground", "title": "Components/DefinitionTooltip", "name": "Playground", "importPath": "./src/components/Tooltip/next/DefinitionTooltip.stories.js", "kind": "Components/DefinitionTooltip", "story": "Playground", "parameters": { "__id": "components-definitiontooltip--playground", "docsOnly": false, "fileName": "./src/components/Tooltip/next/DefinitionTooltip.stories.js" } }, "components-tooltip--default": { "id": "components-tooltip--default", "title": "Components/Tooltip", "name": "Default", "importPath": "./src/components/Tooltip/next/Tooltip.stories.js", "kind": "Components/Tooltip", "story": "Default", "parameters": { "__id": "components-tooltip--default", "docsOnly": false, "fileName": "./src/components/Tooltip/next/Tooltip.stories.js" } }, "components-tooltip--alignment": { "id": "components-tooltip--alignment", "title": "Components/Tooltip", "name": "Alignment", "importPath": "./src/components/Tooltip/next/Tooltip.stories.js", "kind": "Components/Tooltip", "story": "Alignment", "parameters": { "__id": "components-tooltip--alignment", "docsOnly": false, "fileName": "./src/components/Tooltip/next/Tooltip.stories.js" } }, "components-tooltip--duration": { "id": "components-tooltip--duration", "title": "Components/Tooltip", "name": "Duration", "importPath": "./src/components/Tooltip/next/Tooltip.stories.js", "kind": "Components/Tooltip", "story": "Duration", "parameters": { "__id": "components-tooltip--duration", "docsOnly": false, "fileName": "./src/components/Tooltip/next/Tooltip.stories.js" } }, "components-tooltip--playground": { "id": "components-tooltip--playground", "title": "Components/Tooltip", "name": "Playground", "importPath": "./src/components/Tooltip/next/Tooltip.stories.js", "kind": "Components/Tooltip", "story": "Playground", "parameters": { "__id": "components-tooltip--playground", "docsOnly": false, "fileName": "./src/components/Tooltip/next/Tooltip.stories.js" } }, "experimental-unstable-treeview--default": { "id": "experimental-unstable-treeview--default", "title": "Experimental/unstable_TreeView", "name": "default", "importPath": "./src/components/TreeView/next/Treeview.stories.js", "kind": "Experimental/unstable_TreeView", "story": "default", "parameters": { "__id": "experimental-unstable-treeview--default", "docsOnly": false, "fileName": "./src/components/TreeView/next/Treeview.stories.js" } }, "experimental-unstable-treeview--with-icons": { "id": "experimental-unstable-treeview--with-icons", "title": "Experimental/unstable_TreeView", "name": "with icons", "importPath": "./src/components/TreeView/next/Treeview.stories.js", "kind": "Experimental/unstable_TreeView", "story": "with icons", "parameters": { "__id": "experimental-unstable-treeview--with-icons", "docsOnly": false, "fileName": "./src/components/TreeView/next/Treeview.stories.js" } }, "experimental-unstable-treeview--with-controlled-expansion": { "id": "experimental-unstable-treeview--with-controlled-expansion", "title": "Experimental/unstable_TreeView", "name": "With Controlled Expansion", "importPath": "./src/components/TreeView/next/Treeview.stories.js", "kind": "Experimental/unstable_TreeView", "story": "With Controlled Expansion", "parameters": { "__id": "experimental-unstable-treeview--with-controlled-expansion", "docsOnly": false, "fileName": "./src/components/TreeView/next/Treeview.stories.js" } }, "components-datatable-dynamic--example": { "id": "components-datatable-dynamic--example", "title": "Components/DataTable/Dynamic", "name": "Example", "importPath": "./src/components/DataTable/next/dynamic-content/DataTable-dynamic-content.stories.js", "kind": "Components/DataTable/Dynamic", "story": "Example", "parameters": { "__id": "components-datatable-dynamic--example", "docsOnly": false, "fileName": "./src/components/DataTable/next/dynamic-content/DataTable-dynamic-content.stories.js" } }, "components-datatable-expansion--usage": { "id": "components-datatable-expansion--usage", "title": "Components/DataTable/Expansion", "name": "Usage", "importPath": "./src/components/DataTable/next/expansion/DataTable-expansion.stories.js", "kind": "Components/DataTable/Expansion", "story": "Usage", "parameters": { "__id": "components-datatable-expansion--usage", "docsOnly": false, "fileName": "./src/components/DataTable/next/expansion/DataTable-expansion.stories.js" } }, "components-datatable-expansion--batch-expansion": { "id": "components-datatable-expansion--batch-expansion", "title": "Components/DataTable/Expansion", "name": "Batch Expansion", "importPath": "./src/components/DataTable/next/expansion/DataTable-expansion.stories.js", "kind": "Components/DataTable/Expansion", "story": "Batch Expansion", "parameters": { "__id": "components-datatable-expansion--batch-expansion", "docsOnly": false, "fileName": "./src/components/DataTable/next/expansion/DataTable-expansion.stories.js" } } } } ```
mattrosno commented 2 years ago

Loading options - let's say we do a fade loading animation where the iframe is opacity 0 and there's an opacity transition and when the iframe is loaded, we set opacity 100. (@carbon-design-system/carbon-platform-designers will probably have something better... but any loading animation could help so loading is smoother...)

Option 1 - onload

We could listen for iframe onload() event. That's easiest, but that might be longer than what we want. Worth trying.

Option 2 - postMessage()

https://developer.mozilla.org/en-US/docs/Web/API/Window/postMessage

We listen for messages posted from the child iframes and then the parent acts accordingly. Some quick tests:

Our React Storybook isn't posting messages.

image

But the Angular Storybook is.

image

(I had to install a browser extension to print posted messages to console.)

If we wanted to go down this route, Storybook has an official package that we could use for each story to post a message (to the parent iframe) when the story has rendered. We could potentially also use this for the story to post messages on its required window height, etc.

https://www.npmjs.com/package/@storybook/channel-postmessage

If we go down this route, then every Storybook would need to emit messages according to our spec, so our demo iframes could listen for those posted messages, so it seems like if we want a loading animation, let's try option 1 first with the iframe onload() event.

mattrosno commented 2 years ago

Embed heights - for simplicity, it seems like we'd want to support a small, medium, and large embed heights and be comfortable knowing that embed scrollbars will happen on occasion. Then, later on we attempt to optimize with that postMessage() idea above if we want.

If we're supporting various embed sizes:

alisonjoseph commented 2 years ago

@mattrosno I think I'm going to need a demo to visualize what you mean for loading, the way you're describing it there would still be flash when you switched iframes before it faded in? or would we fade out then in? Would that be any better?

mattrosno commented 2 years ago

@alisonjoseph on iframe loading - I recommend quickly trying the frame onload() event and if that fires well after the iframe's component visibly renders... then it's not a dependable way for us to hide/show any sort of loading animation, and if that's the case I recommend no loading and we look into postMessage() optimizations later.

mattrosno commented 2 years ago

Version disclaimer - the only thing that platform will know is embed URL. Example:

https://react.carbondesignsystem.com/iframe.html?id=components-button--default&globals=theme:g10

That embed URL doesn't encode a version anywhere.

It would be nice for there to be a version disclaimer that we show in the footer of all embed frames that says something to the extent of:

View full demo for additional information such as its version, controls, and API documentation.

That "View full demo" would link you to this:

https://react.carbondesignsystem.com/?path=/story/components-button--default&globals=theme:g10&viewMode=story

It's important to let our users know that the demo might not exactly match the version of the documentation that they are viewing. It's also nice to link out to the full canvas so they can play with the controls, view the API docs, etc.

mattrosno commented 2 years ago

Schema considerations - how will we get this on the asset overview page?

Option 1 - Add to schema

We could add an asset key to the schema like storybookEmbedUrl. But it'd actually be more complicated than that, because we'd need to specify options like embed height, embed width (number of columns), etc. It also brings up questions:

I believe there's a better option...

Option 2 - StorybookEmbed MDX component

We'll likely want to make a custom MDX component for Storybook embeds so we can embed demos throughout pages. The MDX component would have props to set the embed URL and its dimensions.

That means we'd add an overviewPath to the asset docs key so there's an MDX file that would fill a slot in the overview pages. That slot would go between the dashboard and the structured data at the bottom of the page for schema-driven content (related assets, etc.)

By doing this, an asset could just put a static image in there if needed when there isn't a Storybook embed (e.g. patterns) so the asset overview pages still show the asset (even if it's not "live").

This also sets us up to support other demos in the future if we want MDX components for CodeSandboxEmbed, etc. embeds.

Having an MDX "slot" in the middle of the overview page opens it up for asset maintainers to put other content in there, but especially during this first release, we can actively monitor that to ensure the markdown portion of the asset overview page just gets used as intended (live demos.)

alisonjoseph commented 2 years ago

Agreed that option 2 feels like a better choice, the amount of configuration options we would need to add the demo to the schema doesn't seem scalable.

kingtraceyj commented 2 years ago

I agree that MDX feels like the way to go.

alisonjoseph commented 2 years ago

Closing this as done ✅

Will open a new issue to build this component when design spec https://github.com/carbon-design-system/carbon-platform/issues/882 is done.