This is page 117 of 181. Use http://codebase.md/xmlui-org/xmlui/mockApiDef.js?lines=true&page={x} to view the full context. # Directory Structure ``` ├── .changeset │ ├── config.json │ └── cool-queens-look.md ├── .eslintrc.cjs ├── .github │ ├── build-checklist.png │ ├── ISSUE_TEMPLATE │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows │ ├── deploy-blog.yml │ ├── deploy-docs-optimized.yml │ ├── deploy-docs.yml │ ├── prepare-versions.yml │ ├── release-packages.yml │ ├── run-all-tests.yml │ └── run-smoke-tests.yml ├── .gitignore ├── .prettierrc.js ├── .vscode │ ├── launch.json │ └── settings.json ├── blog │ ├── .gitignore │ ├── .gitkeep │ ├── CHANGELOG.md │ ├── extensions.ts │ ├── index.html │ ├── index.ts │ ├── package.json │ ├── public │ │ ├── blog │ │ │ ├── images │ │ │ │ ├── blog-page-component.png │ │ │ │ ├── blog-scrabble.png │ │ │ │ ├── integrated-blog-search.png │ │ │ │ └── lorem-ipsum.png │ │ │ ├── lorem-ipsum.md │ │ │ ├── newest-post.md │ │ │ ├── older-post.md │ │ │ └── welcome-to-the-xmlui-blog.md │ │ ├── mockServiceWorker.js │ │ ├── netlify.toml │ │ ├── resources │ │ │ ├── favicon.ico │ │ │ ├── files │ │ │ │ └── for-download │ │ │ │ └── xmlui │ │ │ │ └── xmlui-standalone.umd.js │ │ │ ├── github.svg │ │ │ ├── llms.txt │ │ │ ├── logo-dark.svg │ │ │ ├── logo.svg │ │ │ ├── pg-popout.svg │ │ │ └── xmlui-logo.svg │ │ ├── serve.json │ │ └── web.config │ ├── scripts │ │ ├── download-latest-xmlui.js │ │ ├── generate-rss.js │ │ ├── get-releases.js │ │ └── utils.js │ ├── src │ │ ├── components │ │ │ ├── BlogOverview.xmlui │ │ │ ├── BlogPage.xmlui │ │ │ ├── Debug.xmlui │ │ │ └── PageNotFound.xmlui │ │ ├── config.ts │ │ ├── Main.xmlui │ │ ├── Main.xmlui.xs │ │ └── themes │ │ ├── docs-theme.ts │ │ ├── earthtone.ts │ │ ├── xmlui-gray-on-default.ts │ │ ├── xmlui-green-on-default.ts │ │ └── xmlui-orange-on-default.ts │ └── tsconfig.json ├── CONTRIBUTING.md ├── docs │ ├── .gitignore │ ├── CHANGELOG.md │ ├── ComponentRefLinks.txt │ ├── content │ │ ├── _meta.json │ │ ├── components │ │ │ ├── _meta.json │ │ │ ├── _overview.md │ │ │ ├── APICall.md │ │ │ ├── App.md │ │ │ ├── AppHeader.md │ │ │ ├── AppState.md │ │ │ ├── AutoComplete.md │ │ │ ├── Avatar.md │ │ │ ├── Backdrop.md │ │ │ ├── Badge.md │ │ │ ├── BarChart.md │ │ │ ├── Bookmark.md │ │ │ ├── Breakout.md │ │ │ ├── Button.md │ │ │ ├── Card.md │ │ │ ├── Carousel.md │ │ │ ├── ChangeListener.md │ │ │ ├── Checkbox.md │ │ │ ├── CHStack.md │ │ │ ├── ColorPicker.md │ │ │ ├── Column.md │ │ │ ├── ContentSeparator.md │ │ │ ├── CVStack.md │ │ │ ├── DataSource.md │ │ │ ├── DateInput.md │ │ │ ├── DatePicker.md │ │ │ ├── DonutChart.md │ │ │ ├── DropdownMenu.md │ │ │ ├── EmojiSelector.md │ │ │ ├── ExpandableItem.md │ │ │ ├── FileInput.md │ │ │ ├── FileUploadDropZone.md │ │ │ ├── FlowLayout.md │ │ │ ├── Footer.md │ │ │ ├── Form.md │ │ │ ├── FormItem.md │ │ │ ├── FormSection.md │ │ │ ├── Fragment.md │ │ │ ├── H1.md │ │ │ ├── H2.md │ │ │ ├── H3.md │ │ │ ├── H4.md │ │ │ ├── H5.md │ │ │ ├── H6.md │ │ │ ├── Heading.md │ │ │ ├── HSplitter.md │ │ │ ├── HStack.md │ │ │ ├── Icon.md │ │ │ ├── IFrame.md │ │ │ ├── Image.md │ │ │ ├── Items.md │ │ │ ├── LabelList.md │ │ │ ├── Legend.md │ │ │ ├── LineChart.md │ │ │ ├── Link.md │ │ │ ├── List.md │ │ │ ├── Logo.md │ │ │ ├── Markdown.md │ │ │ ├── MenuItem.md │ │ │ ├── MenuSeparator.md │ │ │ ├── ModalDialog.md │ │ │ ├── NavGroup.md │ │ │ ├── NavLink.md │ │ │ ├── NavPanel.md │ │ │ ├── NoResult.md │ │ │ ├── NumberBox.md │ │ │ ├── Option.md │ │ │ ├── Page.md │ │ │ ├── PageMetaTitle.md │ │ │ ├── Pages.md │ │ │ ├── Pagination.md │ │ │ ├── PasswordInput.md │ │ │ ├── PieChart.md │ │ │ ├── ProgressBar.md │ │ │ ├── Queue.md │ │ │ ├── RadioGroup.md │ │ │ ├── RealTimeAdapter.md │ │ │ ├── Redirect.md │ │ │ ├── Select.md │ │ │ ├── Slider.md │ │ │ ├── Slot.md │ │ │ ├── SpaceFiller.md │ │ │ ├── Spinner.md │ │ │ ├── Splitter.md │ │ │ ├── Stack.md │ │ │ ├── StickyBox.md │ │ │ ├── SubMenuItem.md │ │ │ ├── Switch.md │ │ │ ├── TabItem.md │ │ │ ├── Table.md │ │ │ ├── TableOfContents.md │ │ │ ├── Tabs.md │ │ │ ├── Text.md │ │ │ ├── TextArea.md │ │ │ ├── TextBox.md │ │ │ ├── Theme.md │ │ │ ├── TimeInput.md │ │ │ ├── Timer.md │ │ │ ├── ToneChangerButton.md │ │ │ ├── ToneSwitch.md │ │ │ ├── Tooltip.md │ │ │ ├── Tree.md │ │ │ ├── VSplitter.md │ │ │ ├── VStack.md │ │ │ ├── xmlui-animations │ │ │ │ ├── _meta.json │ │ │ │ ├── _overview.md │ │ │ │ ├── Animation.md │ │ │ │ ├── FadeAnimation.md │ │ │ │ ├── FadeInAnimation.md │ │ │ │ ├── FadeOutAnimation.md │ │ │ │ ├── ScaleAnimation.md │ │ │ │ └── SlideInAnimation.md │ │ │ ├── xmlui-pdf │ │ │ │ ├── _meta.json │ │ │ │ ├── _overview.md │ │ │ │ └── Pdf.md │ │ │ ├── xmlui-spreadsheet │ │ │ │ ├── _meta.json │ │ │ │ ├── _overview.md │ │ │ │ └── Spreadsheet.md │ │ │ └── xmlui-website-blocks │ │ │ ├── _meta.json │ │ │ ├── _overview.md │ │ │ ├── Carousel.md │ │ │ ├── HelloMd.md │ │ │ ├── HeroSection.md │ │ │ └── ScrollToTop.md │ │ └── extensions │ │ ├── _meta.json │ │ ├── xmlui-animations │ │ │ ├── _meta.json │ │ │ ├── _overview.md │ │ │ ├── Animation.md │ │ │ ├── FadeAnimation.md │ │ │ ├── FadeInAnimation.md │ │ │ ├── FadeOutAnimation.md │ │ │ ├── ScaleAnimation.md │ │ │ └── SlideInAnimation.md │ │ └── xmlui-website-blocks │ │ ├── _meta.json │ │ ├── _overview.md │ │ ├── Carousel.md │ │ ├── HelloMd.md │ │ ├── HeroSection.md │ │ └── ScrollToTop.md │ ├── extensions.ts │ ├── index.html │ ├── index.ts │ ├── package.json │ ├── public │ │ ├── feed.rss │ │ ├── mockServiceWorker.js │ │ ├── pages │ │ │ ├── _meta.json │ │ │ ├── app-structure.md │ │ │ ├── build-editor-component.md │ │ │ ├── build-hello-world-component.md │ │ │ ├── components-intro.md │ │ │ ├── context-variables.md │ │ │ ├── forms.md │ │ │ ├── globals.md │ │ │ ├── glossary.md │ │ │ ├── helper-tags.md │ │ │ ├── hosted-deployment.md │ │ │ ├── howto │ │ │ │ ├── assign-a-complex-json-literal-to-a-component-variable.md │ │ │ │ ├── chain-a-refetch.md │ │ │ │ ├── debug-a-component.md │ │ │ │ ├── delay-a-datasource-until-another-datasource-is-ready.md │ │ │ │ ├── delegate-a-method.md │ │ │ │ ├── do-custom-form-validation.md │ │ │ │ ├── expose-a-method-from-a-component.md │ │ │ │ ├── filter-and-transform-data-from-an-api.md │ │ │ │ ├── group-items-in-list-by-a-property.md │ │ │ │ ├── handle-background-operations.md │ │ │ │ ├── hide-an-element-until-its-datasource-is-ready.md │ │ │ │ ├── make-a-set-of-equal-width-cards.md │ │ │ │ ├── make-a-table-responsive.md │ │ │ │ ├── make-navpanel-width-responsive.md │ │ │ │ ├── modify-a-value-reported-in-a-column.md │ │ │ │ ├── paginate-a-list.md │ │ │ │ ├── pass-data-to-a-modal-dialog.md │ │ │ │ ├── react-to-button-click-not-keystrokes.md │ │ │ │ ├── set-the-initial-value-of-a-select-from-fetched-data.md │ │ │ │ ├── share-a-modaldialog-across-components.md │ │ │ │ ├── sync-selections-between-table-and-list-views.md │ │ │ │ ├── update-ui-optimistically.md │ │ │ │ ├── use-built-in-form-validation.md │ │ │ │ └── use-the-same-modaldialog-to-add-or-edit.md │ │ │ ├── howto.md │ │ │ ├── intro.md │ │ │ ├── layout.md │ │ │ ├── markup.md │ │ │ ├── mcp.md │ │ │ ├── modal-dialogs.md │ │ │ ├── news-and-reviews.md │ │ │ ├── reactive-intro.md │ │ │ ├── refactoring.md │ │ │ ├── routing-and-links.md │ │ │ ├── samples │ │ │ │ ├── color-palette.xmlui │ │ │ │ ├── color-values.xmlui │ │ │ │ ├── shadow-sizes.xmlui │ │ │ │ ├── spacing-sizes.xmlui │ │ │ │ ├── swatch.xmlui │ │ │ │ ├── theme-gallery-brief.xmlui │ │ │ │ └── theme-gallery.xmlui │ │ │ ├── scoping.md │ │ │ ├── scripting.md │ │ │ ├── styles-and-themes │ │ │ │ ├── common-units.md │ │ │ │ ├── layout-props.md │ │ │ │ ├── theme-variable-defaults.md │ │ │ │ ├── theme-variables.md │ │ │ │ └── themes.md │ │ │ ├── template-properties.md │ │ │ ├── test.md │ │ │ ├── tutorial-01.md │ │ │ ├── tutorial-02.md │ │ │ ├── tutorial-03.md │ │ │ ├── tutorial-04.md │ │ │ ├── tutorial-05.md │ │ │ ├── tutorial-06.md │ │ │ ├── tutorial-07.md │ │ │ ├── tutorial-08.md │ │ │ ├── tutorial-09.md │ │ │ ├── tutorial-10.md │ │ │ ├── tutorial-11.md │ │ │ ├── tutorial-12.md │ │ │ ├── universal-properties.md │ │ │ ├── user-defined-components.md │ │ │ ├── vscode.md │ │ │ ├── working-with-markdown.md │ │ │ ├── working-with-text.md │ │ │ ├── xmlui-animations │ │ │ │ ├── _meta.json │ │ │ │ ├── _overview.md │ │ │ │ ├── Animation.md │ │ │ │ ├── FadeAnimation.md │ │ │ │ ├── FadeInAnimation.md │ │ │ │ ├── FadeOutAnimation.md │ │ │ │ ├── ScaleAnimation.md │ │ │ │ └── SlideInAnimation.md │ │ │ ├── xmlui-charts │ │ │ │ ├── _meta.json │ │ │ │ ├── _overview.md │ │ │ │ ├── BarChart.md │ │ │ │ ├── DonutChart.md │ │ │ │ ├── LabelList.md │ │ │ │ ├── Legend.md │ │ │ │ ├── LineChart.md │ │ │ │ └── PieChart.md │ │ │ ├── xmlui-pdf │ │ │ │ ├── _meta.json │ │ │ │ ├── _overview.md │ │ │ │ └── Pdf.md │ │ │ └── xmlui-spreadsheet │ │ │ ├── _meta.json │ │ │ ├── _overview.md │ │ │ └── Spreadsheet.md │ │ ├── resources │ │ │ ├── devdocs │ │ │ │ ├── debug-proxy-object-2.png │ │ │ │ ├── debug-proxy-object.png │ │ │ │ ├── table_editor_01.png │ │ │ │ ├── table_editor_02.png │ │ │ │ ├── table_editor_03.png │ │ │ │ ├── table_editor_04.png │ │ │ │ ├── table_editor_05.png │ │ │ │ ├── table_editor_06.png │ │ │ │ ├── table_editor_07.png │ │ │ │ ├── table_editor_08.png │ │ │ │ ├── table_editor_09.png │ │ │ │ ├── table_editor_10.png │ │ │ │ ├── table_editor_11.png │ │ │ │ ├── table-editor-01.png │ │ │ │ ├── table-editor-02.png │ │ │ │ ├── table-editor-03.png │ │ │ │ ├── table-editor-04.png │ │ │ │ ├── table-editor-06.png │ │ │ │ ├── table-editor-07.png │ │ │ │ ├── table-editor-08.png │ │ │ │ ├── table-editor-09.png │ │ │ │ └── xmlui-rendering-of-tiptap-markdown.png │ │ │ ├── favicon.ico │ │ │ ├── files │ │ │ │ ├── clients.json │ │ │ │ ├── daily-revenue.json │ │ │ │ ├── dashboard-stats.json │ │ │ │ ├── demo.xmlui │ │ │ │ ├── demo.xmlui.xs │ │ │ │ ├── downloads │ │ │ │ │ └── downloads.json │ │ │ │ ├── for-download │ │ │ │ │ ├── index-with-api.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mockApi.js │ │ │ │ │ ├── start-darwin.sh │ │ │ │ │ ├── start-linux.sh │ │ │ │ │ ├── start.bat │ │ │ │ │ └── xmlui │ │ │ │ │ └── xmlui-standalone.umd.js │ │ │ │ ├── getting-started │ │ │ │ │ ├── cl-tutorial-final.zip │ │ │ │ │ ├── cl-tutorial.zip │ │ │ │ │ ├── cl-tutorial2.zip │ │ │ │ │ ├── cl-tutorial3.zip │ │ │ │ │ ├── cl-tutorial4.zip │ │ │ │ │ ├── cl-tutorial5.zip │ │ │ │ │ ├── cl-tutorial6.zip │ │ │ │ │ ├── getting-started.zip │ │ │ │ │ ├── hello-xmlui.zip │ │ │ │ │ ├── xmlui-empty.zip │ │ │ │ │ └── xmlui-starter.zip │ │ │ │ ├── howto │ │ │ │ │ └── component-icons │ │ │ │ │ └── up-arrow.svg │ │ │ │ ├── invoices.json │ │ │ │ ├── monthly-status.json │ │ │ │ ├── news-and-reviews.json │ │ │ │ ├── products.json │ │ │ │ ├── releases.json │ │ │ │ ├── tutorials │ │ │ │ │ ├── datasource │ │ │ │ │ │ └── api.ts │ │ │ │ │ └── p2do │ │ │ │ │ ├── api.ts │ │ │ │ │ └── todo-logo.svg │ │ │ │ └── xmlui.json │ │ │ ├── github.svg │ │ │ ├── images │ │ │ │ ├── apiaction-tutorial │ │ │ │ │ ├── add-success.png │ │ │ │ │ ├── apiaction-param.png │ │ │ │ │ ├── change-completed.png │ │ │ │ │ ├── change-in-progress.png │ │ │ │ │ ├── confirm-delete.png │ │ │ │ │ ├── data-error.png │ │ │ │ │ ├── data-progress.png │ │ │ │ │ ├── data-success.png │ │ │ │ │ ├── display-1.png │ │ │ │ │ ├── item-deleted.png │ │ │ │ │ ├── item-updated.png │ │ │ │ │ ├── missing-api-key.png │ │ │ │ │ ├── new-item-added.png │ │ │ │ │ └── test-message.png │ │ │ │ ├── chat-api │ │ │ │ │ └── domain-model.svg │ │ │ │ ├── components │ │ │ │ │ ├── image │ │ │ │ │ │ └── breakfast.jpg │ │ │ │ │ ├── markdown │ │ │ │ │ │ └── colors.png │ │ │ │ │ └── modal │ │ │ │ │ ├── deep_link_dialog_1.jpg │ │ │ │ │ └── deep_link_dialog_2.jpg │ │ │ │ ├── create-apps │ │ │ │ │ ├── collapsed-vertical.png │ │ │ │ │ ├── using-forms-warning-dialog.png │ │ │ │ │ └── using-forms.png │ │ │ │ ├── datasource-tutorial │ │ │ │ │ ├── data-with-header.png │ │ │ │ │ ├── filtered-data.png │ │ │ │ │ ├── filtered-items.png │ │ │ │ │ ├── initial-page-items.png │ │ │ │ │ ├── list-items.png │ │ │ │ │ ├── next-page-items.png │ │ │ │ │ ├── no-data.png │ │ │ │ │ ├── pagination-1.jpg │ │ │ │ │ ├── pagination-1.png │ │ │ │ │ ├── polling-1.png │ │ │ │ │ ├── refetch-data.png │ │ │ │ │ ├── slow-loading.png │ │ │ │ │ ├── test-message.png │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ ├── unconventional-data.png │ │ │ │ │ └── unfiltered-items.png │ │ │ │ ├── flower.jpg │ │ │ │ ├── get-started │ │ │ │ │ ├── add-new-contact.png │ │ │ │ │ ├── app-modified.png │ │ │ │ │ ├── app-start.png │ │ │ │ │ ├── app-with-boxes.png │ │ │ │ │ ├── app-with-toast.png │ │ │ │ │ ├── boilerplate-structure.png │ │ │ │ │ ├── cl-initial.png │ │ │ │ │ ├── cl-start.png │ │ │ │ │ ├── contact-counts.png │ │ │ │ │ ├── contact-dialog-title.png │ │ │ │ │ ├── contact-dialog.png │ │ │ │ │ ├── contact-menus.png │ │ │ │ │ ├── contact-predicates.png │ │ │ │ │ ├── context-menu.png │ │ │ │ │ ├── dashboard-numbers.png │ │ │ │ │ ├── default-contact-list.png │ │ │ │ │ ├── delete-contact.png │ │ │ │ │ ├── delete-task.png │ │ │ │ │ ├── detailed-template.png │ │ │ │ │ ├── edit-contact-details.png │ │ │ │ │ ├── edited-contact-saved.png │ │ │ │ │ ├── empty-sections.png │ │ │ │ │ ├── filter-completed.png │ │ │ │ │ ├── fullwidth-desktop.png │ │ │ │ │ ├── fullwidth-mobile.png │ │ │ │ │ ├── initial-table.png │ │ │ │ │ ├── items-and-badges.png │ │ │ │ │ ├── loading-message.png │ │ │ │ │ ├── new-contact-button.png │ │ │ │ │ ├── new-contact-saved.png │ │ │ │ │ ├── no-empty-sections.png │ │ │ │ │ ├── personal-todo-initial.png │ │ │ │ │ ├── piechart.png │ │ │ │ │ ├── review-today.png │ │ │ │ │ ├── rudimentary-dashboard.png │ │ │ │ │ ├── section-collapsed.png │ │ │ │ │ ├── sectioned-items.png │ │ │ │ │ ├── sections-ordered.png │ │ │ │ │ ├── spacex-list-with-links.png │ │ │ │ │ ├── spacex-list.png │ │ │ │ │ ├── start-personal-todo-1.png │ │ │ │ │ ├── submit-new-contact.png │ │ │ │ │ ├── submit-new-task.png │ │ │ │ │ ├── syntax-highlighting.png │ │ │ │ │ ├── table-with-badge.png │ │ │ │ │ ├── template-with-card.png │ │ │ │ │ ├── test-emulated-api.png │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ ├── todo-logo.png │ │ │ │ │ └── xmlui-tools.png │ │ │ │ ├── HelloApp.png │ │ │ │ ├── HelloApp2.png │ │ │ │ ├── logos │ │ │ │ │ ├── xmlui1.svg │ │ │ │ │ ├── xmlui2.svg │ │ │ │ │ ├── xmlui3.svg │ │ │ │ │ ├── xmlui4.svg │ │ │ │ │ ├── xmlui5.svg │ │ │ │ │ ├── xmlui6.svg │ │ │ │ │ └── xmlui7.svg │ │ │ │ ├── pdf │ │ │ │ │ └── dummy-pdf.jpg │ │ │ │ ├── rendering-engine │ │ │ │ │ ├── AppEngine-flow.svg │ │ │ │ │ ├── Component.svg │ │ │ │ │ ├── CompoundComponent.svg │ │ │ │ │ ├── RootComponent.svg │ │ │ │ │ └── tree-with-containers.svg │ │ │ │ ├── reviewers-guide │ │ │ │ │ ├── AppEngine-flow.svg │ │ │ │ │ └── incbutton-in-action.png │ │ │ │ ├── tools │ │ │ │ │ └── boilerplate-structure.png │ │ │ │ ├── try.svg │ │ │ │ ├── tutorial │ │ │ │ │ ├── app-chat-history.png │ │ │ │ │ ├── app-content-placeholder.png │ │ │ │ │ ├── app-header-and-content.png │ │ │ │ │ ├── app-links-channel-selected.png │ │ │ │ │ ├── app-links-click.png │ │ │ │ │ ├── app-navigation.png │ │ │ │ │ ├── finished-ex01.png │ │ │ │ │ ├── finished-ex02.png │ │ │ │ │ ├── hello.png │ │ │ │ │ ├── splash-screen-advanced.png │ │ │ │ │ ├── splash-screen-after-click.png │ │ │ │ │ ├── splash-screen-centered.png │ │ │ │ │ ├── splash-screen-events.png │ │ │ │ │ ├── splash-screen-expression.png │ │ │ │ │ ├── splash-screen-reuse-after.png │ │ │ │ │ ├── splash-screen-reuse-before.png │ │ │ │ │ └── splash-screen.png │ │ │ │ └── tutorial-01.png │ │ │ ├── llms.txt │ │ │ ├── logo-dark.svg │ │ │ ├── logo.svg │ │ │ ├── pg-popout.svg │ │ │ └── xmlui-logo.svg │ │ ├── serve.json │ │ └── web.config │ ├── scripts │ │ ├── download-latest-xmlui.js │ │ ├── generate-rss.js │ │ ├── get-releases.js │ │ └── utils.js │ ├── src │ │ ├── components │ │ │ ├── BlogOverview.xmlui │ │ │ ├── BlogPage.xmlui │ │ │ ├── Boxes.xmlui │ │ │ ├── Breadcrumb.xmlui │ │ │ ├── ChangeLog.xmlui │ │ │ ├── ColorPalette.xmlui │ │ │ ├── DocumentLinks.xmlui │ │ │ ├── DocumentPage.xmlui │ │ │ ├── DocumentPageNoTOC.xmlui │ │ │ ├── Icons.xmlui │ │ │ ├── IncButton.xmlui │ │ │ ├── IncButton2.xmlui │ │ │ ├── NameValue.xmlui │ │ │ ├── PageNotFound.xmlui │ │ │ ├── PaletteItem.xmlui │ │ │ ├── Palettes.xmlui │ │ │ ├── SectionHeader.xmlui │ │ │ ├── TBD.xmlui │ │ │ ├── Test.xmlui │ │ │ ├── ThemesIntro.xmlui │ │ │ ├── ThousandThemes.xmlui │ │ │ ├── TubeStops.xmlui │ │ │ ├── TubeStops.xmlui.xs │ │ │ └── TwoColumnCode.xmlui │ │ ├── config.ts │ │ ├── Main.xmlui │ │ └── themes │ │ ├── docs-theme.ts │ │ ├── earthtone.ts │ │ ├── xmlui-gray-on-default.ts │ │ ├── xmlui-green-on-default.ts │ │ └── xmlui-orange-on-default.ts │ └── tsconfig.json ├── LICENSE ├── package-lock.json ├── package.json ├── packages │ ├── xmlui-animations │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── demo │ │ │ └── Main.xmlui │ │ ├── index.html │ │ ├── index.ts │ │ ├── meta │ │ │ └── componentsMetadata.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── Animation.tsx │ │ │ ├── AnimationNative.tsx │ │ │ ├── FadeAnimation.tsx │ │ │ ├── FadeInAnimation.tsx │ │ │ ├── FadeOutAnimation.tsx │ │ │ ├── index.tsx │ │ │ ├── ScaleAnimation.tsx │ │ │ └── SlideInAnimation.tsx │ │ └── tsconfig.json │ ├── xmlui-devtools │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── demo │ │ │ └── Main.xmlui │ │ ├── index.html │ │ ├── index.ts │ │ ├── meta │ │ │ └── componentsMetadata.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── devtools │ │ │ │ ├── DevTools.tsx │ │ │ │ ├── DevToolsNative.module.scss │ │ │ │ ├── DevToolsNative.tsx │ │ │ │ ├── ModalDialog.module.scss │ │ │ │ ├── ModalDialog.tsx │ │ │ │ ├── ModalVisibilityContext.tsx │ │ │ │ ├── Tooltip.module.scss │ │ │ │ ├── Tooltip.tsx │ │ │ │ └── utils.ts │ │ │ ├── editor │ │ │ │ └── Editor.tsx │ │ │ └── index.tsx │ │ ├── tsconfig.json │ │ └── vite.config-overrides.ts │ ├── xmlui-hello-world │ │ ├── .gitignore │ │ ├── index.ts │ │ ├── meta │ │ │ └── componentsMetadata.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── HelloWorld.module.scss │ │ │ ├── HelloWorld.tsx │ │ │ ├── HelloWorldNative.tsx │ │ │ └── index.tsx │ │ └── tsconfig.json │ ├── xmlui-os-frames │ │ ├── .gitignore │ │ ├── demo │ │ │ └── Main.xmlui │ │ ├── index.html │ │ ├── index.ts │ │ ├── meta │ │ │ └── componentsMetadata.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── index.tsx │ │ │ ├── IPhoneFrame.module.scss │ │ │ ├── IPhoneFrame.tsx │ │ │ ├── MacOSAppFrame.module.scss │ │ │ ├── MacOSAppFrame.tsx │ │ │ ├── WindowsAppFrame.module.scss │ │ │ └── WindowsAppFrame.tsx │ │ └── tsconfig.json │ ├── xmlui-pdf │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── demo │ │ │ ├── components │ │ │ │ └── Pdf.xmlui │ │ │ └── Main.xmlui │ │ ├── index.html │ │ ├── index.ts │ │ ├── meta │ │ │ └── componentsMetadata.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── index.tsx │ │ │ ├── LazyPdfNative.tsx │ │ │ ├── Pdf.module.scss │ │ │ └── Pdf.tsx │ │ └── tsconfig.json │ ├── xmlui-playground │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── demo │ │ │ └── Main.xmlui │ │ ├── index.html │ │ ├── index.ts │ │ ├── meta │ │ │ └── componentsMetadata.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── hooks │ │ │ │ ├── usePlayground.ts │ │ │ │ └── useToast.ts │ │ │ ├── index.tsx │ │ │ ├── playground │ │ │ │ ├── Box.module.scss │ │ │ │ ├── Box.tsx │ │ │ │ ├── CodeSelector.tsx │ │ │ │ ├── ConfirmationDialog.module.scss │ │ │ │ ├── ConfirmationDialog.tsx │ │ │ │ ├── Editor.tsx │ │ │ │ ├── Header.module.scss │ │ │ │ ├── Header.tsx │ │ │ │ ├── Playground.tsx │ │ │ │ ├── PlaygroundContent.module.scss │ │ │ │ ├── PlaygroundContent.tsx │ │ │ │ ├── PlaygroundNative.module.scss │ │ │ │ ├── PlaygroundNative.tsx │ │ │ │ ├── Preview.module.scss │ │ │ │ ├── Preview.tsx │ │ │ │ ├── Select.module.scss │ │ │ │ ├── StandalonePlayground.tsx │ │ │ │ ├── StandalonePlaygroundNative.module.scss │ │ │ │ ├── StandalonePlaygroundNative.tsx │ │ │ │ ├── ThemeSwitcher.module.scss │ │ │ │ ├── ThemeSwitcher.tsx │ │ │ │ ├── ToneSwitcher.tsx │ │ │ │ ├── Tooltip.module.scss │ │ │ │ ├── Tooltip.tsx │ │ │ │ └── utils.ts │ │ │ ├── providers │ │ │ │ ├── Toast.module.scss │ │ │ │ └── ToastProvider.tsx │ │ │ ├── state │ │ │ │ └── store.ts │ │ │ ├── themes │ │ │ │ └── theme.ts │ │ │ └── utils │ │ │ └── helpers.ts │ │ └── tsconfig.json │ ├── xmlui-search │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── demo │ │ │ └── Main.xmlui │ │ ├── index.html │ │ ├── index.ts │ │ ├── meta │ │ │ └── componentsMetadata.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── index.tsx │ │ │ ├── Search.module.scss │ │ │ └── Search.tsx │ │ └── tsconfig.json │ ├── xmlui-spreadsheet │ │ ├── .gitignore │ │ ├── demo │ │ │ └── Main.xmlui │ │ ├── index.html │ │ ├── index.ts │ │ ├── meta │ │ │ └── componentsMetadata.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── index.tsx │ │ │ ├── Spreadsheet.tsx │ │ │ └── SpreadsheetNative.tsx │ │ └── tsconfig.json │ └── xmlui-website-blocks │ ├── .gitignore │ ├── CHANGELOG.md │ ├── demo │ │ ├── components │ │ │ ├── HeroBackgroundBreakoutPage.xmlui │ │ │ ├── HeroBackgroundsPage.xmlui │ │ │ ├── HeroContentsPage.xmlui │ │ │ ├── HeroTextAlignPage.xmlui │ │ │ ├── HeroTextPage.xmlui │ │ │ └── HeroTonesPage.xmlui │ │ ├── Main.xmlui │ │ └── themes │ │ └── default.ts │ ├── index.html │ ├── index.ts │ ├── meta │ │ └── componentsMetadata.ts │ ├── package.json │ ├── public │ │ └── resources │ │ ├── building.jpg │ │ └── xmlui-logo.svg │ ├── src │ │ ├── Carousel │ │ │ ├── Carousel.module.scss │ │ │ ├── Carousel.tsx │ │ │ ├── CarouselContext.tsx │ │ │ └── CarouselNative.tsx │ │ ├── FancyButton │ │ │ ├── FancyButton.module.scss │ │ │ ├── FancyButton.tsx │ │ │ └── FancyButton.xmlui │ │ ├── Hello │ │ │ ├── Hello.tsx │ │ │ ├── Hello.xmlui │ │ │ └── Hello.xmlui.xs │ │ ├── HeroSection │ │ │ ├── HeroSection.module.scss │ │ │ ├── HeroSection.tsx │ │ │ └── HeroSectionNative.tsx │ │ ├── index.tsx │ │ ├── ScrollToTop │ │ │ ├── ScrollToTop.module.scss │ │ │ ├── ScrollToTop.tsx │ │ │ └── ScrollToTopNative.tsx │ │ └── vite-env.d.ts │ └── tsconfig.json ├── README.md ├── tools │ ├── codefence │ │ └── xmlui-code-fence-docs.md │ ├── create-app │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── create-app.ts │ │ ├── helpers │ │ │ ├── copy.ts │ │ │ ├── get-pkg-manager.ts │ │ │ ├── git.ts │ │ │ ├── install.ts │ │ │ ├── is-folder-empty.ts │ │ │ ├── is-writeable.ts │ │ │ ├── make-dir.ts │ │ │ └── validate-pkg.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── templates │ │ │ ├── default │ │ │ │ └── ts │ │ │ │ ├── gitignore │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ ├── public │ │ │ │ │ ├── mockServiceWorker.js │ │ │ │ │ ├── resources │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ └── xmlui-logo.svg │ │ │ │ │ └── serve.json │ │ │ │ └── src │ │ │ │ ├── components │ │ │ │ │ ├── ApiAware.xmlui │ │ │ │ │ ├── Home.xmlui │ │ │ │ │ ├── IncButton.xmlui │ │ │ │ │ └── PagePanel.xmlui │ │ │ │ ├── config.ts │ │ │ │ └── Main.xmlui │ │ │ ├── index.ts │ │ │ └── types.ts │ │ └── tsconfig.json │ ├── create-xmlui-hello-world │ │ ├── index.js │ │ └── package.json │ └── vscode │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── .vscodeignore │ ├── build.sh │ ├── CHANGELOG.md │ ├── esbuild.js │ ├── eslint.config.mjs │ ├── formatter-docs.md │ ├── generate-test-sample.sh │ ├── LICENSE.md │ ├── package-lock.json │ ├── package.json │ ├── README.md │ ├── resources │ │ ├── xmlui-logo.png │ │ └── xmlui-markup-syntax-highlighting.png │ ├── src │ │ ├── extension.ts │ │ └── server.ts │ ├── syntaxes │ │ └── xmlui.tmLanguage.json │ ├── test-samples │ │ └── sample.xmlui │ ├── tsconfig.json │ └── tsconfig.tsbuildinfo ├── turbo.json └── xmlui ├── .gitignore ├── bin │ ├── bootstrap.js │ ├── build-lib.ts │ ├── build.ts │ ├── index.ts │ ├── preview.ts │ ├── start.ts │ ├── vite-xmlui-plugin.ts │ └── viteConfig.ts ├── CHANGELOG.md ├── conventions │ ├── component-qa-checklist.md │ ├── copilot-conventions.md │ ├── create-xmlui-components.md │ ├── mermaid.md │ ├── testing-conventions.md │ └── xmlui-in-a-nutshell.md ├── dev-docs │ ├── accessibility.md │ ├── build-system.md │ ├── build-xmlui.md │ ├── component-behaviors.md │ ├── containers.md │ ├── glossary.md │ ├── index.md │ ├── next │ │ ├── component-dev-guide.md │ │ ├── configuration-management-enhancement-summary.md │ │ ├── documentation-scripts-refactoring-complete-summary.md │ │ ├── documentation-scripts-refactoring-plan.md │ │ ├── duplicate-pattern-extraction-summary.md │ │ ├── error-handling-standardization-summary.md │ │ ├── generating-component-reference.md │ │ ├── index.md │ │ ├── logging-consistency-implementation-summary.md │ │ ├── project-build.md │ │ ├── project-structure.md │ │ ├── theme-context.md │ │ ├── tiptap-design-considerations.md │ │ ├── working-with-code.md │ │ ├── xmlui-runtime-architecture │ │ └── xmlui-wcag-accessibility-report.md │ ├── react-fundamentals.md │ ├── release-method.md │ ├── standalone-app.md │ ├── state-management.md │ └── xmlui-repo.md ├── package.json ├── playwright.config.ts ├── scripts │ ├── coverage-only.js │ ├── e2e-test-summary.js │ ├── generate-docs │ │ ├── build-downloads-map.mjs │ │ ├── build-pages-map.mjs │ │ ├── components-config.json │ │ ├── configuration-management.mjs │ │ ├── constants.mjs │ │ ├── create-theme-files.mjs │ │ ├── DocsGenerator.mjs │ │ ├── error-handling.mjs │ │ ├── extensions-config.json │ │ ├── folders.mjs │ │ ├── generate-summary-files.mjs │ │ ├── get-docs.mjs │ │ ├── input-handler.mjs │ │ ├── logger.mjs │ │ ├── logging-standards.mjs │ │ ├── MetadataProcessor.mjs │ │ ├── pattern-utilities.mjs │ │ └── utils.mjs │ ├── get-langserver-metadata.mjs │ ├── inline-links.mjs │ └── README-e2e-summary.md ├── src │ ├── abstractions │ │ ├── _conventions.md │ │ ├── ActionDefs.ts │ │ ├── AppContextDefs.ts │ │ ├── ComponentDefs.ts │ │ ├── ContainerDefs.ts │ │ ├── ExtensionDefs.ts │ │ ├── FunctionDefs.ts │ │ ├── RendererDefs.ts │ │ ├── scripting │ │ │ ├── BlockScope.ts │ │ │ ├── Compilation.ts │ │ │ ├── LogicalThread.ts │ │ │ ├── LoopScope.ts │ │ │ ├── modules.ts │ │ │ ├── ScriptParserError.ts │ │ │ ├── Token.ts │ │ │ ├── TryScope.ts │ │ │ └── TryScopeExp.ts │ │ └── ThemingDefs.ts │ ├── components │ │ ├── _conventions.md │ │ ├── abstractions.ts │ │ ├── Accordion │ │ │ ├── Accordion.md │ │ │ ├── Accordion.module.scss │ │ │ ├── Accordion.spec.ts │ │ │ ├── Accordion.tsx │ │ │ ├── AccordionContext.tsx │ │ │ ├── AccordionItem.tsx │ │ │ ├── AccordionItemNative.tsx │ │ │ └── AccordionNative.tsx │ │ ├── Animation │ │ │ └── AnimationNative.tsx │ │ ├── APICall │ │ │ ├── APICall.md │ │ │ ├── APICall.spec.ts │ │ │ ├── APICall.tsx │ │ │ └── APICallNative.tsx │ │ ├── App │ │ │ ├── App.md │ │ │ ├── App.module.scss │ │ │ ├── App.spec.ts │ │ │ ├── App.tsx │ │ │ ├── AppLayoutContext.ts │ │ │ ├── AppNative.tsx │ │ │ ├── AppStateContext.ts │ │ │ ├── doc-resources │ │ │ │ ├── condensed-sticky.xmlui │ │ │ │ ├── condensed.xmlui │ │ │ │ ├── horizontal-sticky.xmlui │ │ │ │ ├── horizontal.xmlui │ │ │ │ ├── vertical-full-header.xmlui │ │ │ │ ├── vertical-sticky.xmlui │ │ │ │ └── vertical.xmlui │ │ │ ├── IndexerContext.ts │ │ │ ├── LinkInfoContext.ts │ │ │ ├── SearchContext.tsx │ │ │ ├── Sheet.module.scss │ │ │ └── Sheet.tsx │ │ ├── AppHeader │ │ │ ├── AppHeader.md │ │ │ ├── AppHeader.module.scss │ │ │ ├── AppHeader.spec.ts │ │ │ ├── AppHeader.tsx │ │ │ └── AppHeaderNative.tsx │ │ ├── AppState │ │ │ ├── AppState.md │ │ │ ├── AppState.spec.ts │ │ │ ├── AppState.tsx │ │ │ └── AppStateNative.tsx │ │ ├── AutoComplete │ │ │ ├── AutoComplete.md │ │ │ ├── AutoComplete.module.scss │ │ │ ├── AutoComplete.spec.ts │ │ │ ├── AutoComplete.tsx │ │ │ ├── AutoCompleteContext.tsx │ │ │ └── AutoCompleteNative.tsx │ │ ├── Avatar │ │ │ ├── Avatar.md │ │ │ ├── Avatar.module.scss │ │ │ ├── Avatar.spec.ts │ │ │ ├── Avatar.tsx │ │ │ └── AvatarNative.tsx │ │ ├── Backdrop │ │ │ ├── Backdrop.md │ │ │ ├── Backdrop.module.scss │ │ │ ├── Backdrop.spec.ts │ │ │ ├── Backdrop.tsx │ │ │ └── BackdropNative.tsx │ │ ├── Badge │ │ │ ├── Badge.md │ │ │ ├── Badge.module.scss │ │ │ ├── Badge.spec.ts │ │ │ ├── Badge.tsx │ │ │ └── BadgeNative.tsx │ │ ├── Bookmark │ │ │ ├── Bookmark.md │ │ │ ├── Bookmark.module.scss │ │ │ ├── Bookmark.spec.ts │ │ │ ├── Bookmark.tsx │ │ │ └── BookmarkNative.tsx │ │ ├── Breakout │ │ │ ├── Breakout.module.scss │ │ │ ├── Breakout.spec.ts │ │ │ ├── Breakout.tsx │ │ │ └── BreakoutNative.tsx │ │ ├── Button │ │ │ ├── Button-style.spec.ts │ │ │ ├── Button.md │ │ │ ├── Button.module.scss │ │ │ ├── Button.spec.ts │ │ │ ├── Button.tsx │ │ │ └── ButtonNative.tsx │ │ ├── Card │ │ │ ├── Card.md │ │ │ ├── Card.module.scss │ │ │ ├── Card.spec.ts │ │ │ ├── Card.tsx │ │ │ └── CardNative.tsx │ │ ├── Carousel │ │ │ ├── Carousel.md │ │ │ ├── Carousel.module.scss │ │ │ ├── Carousel.spec.ts │ │ │ ├── Carousel.tsx │ │ │ ├── CarouselContext.tsx │ │ │ ├── CarouselItem.tsx │ │ │ ├── CarouselItemNative.tsx │ │ │ └── CarouselNative.tsx │ │ ├── ChangeListener │ │ │ ├── ChangeListener.md │ │ │ ├── ChangeListener.spec.ts │ │ │ ├── ChangeListener.tsx │ │ │ └── ChangeListenerNative.tsx │ │ ├── chart-color-schemes.ts │ │ ├── Charts │ │ │ ├── AreaChart │ │ │ │ ├── AreaChart.md │ │ │ │ ├── AreaChart.spec.ts │ │ │ │ ├── AreaChart.tsx │ │ │ │ └── AreaChartNative.tsx │ │ │ ├── BarChart │ │ │ │ ├── BarChart.md │ │ │ │ ├── BarChart.module.scss │ │ │ │ ├── BarChart.spec.ts │ │ │ │ ├── BarChart.tsx │ │ │ │ └── BarChartNative.tsx │ │ │ ├── DonutChart │ │ │ │ ├── DonutChart.spec.ts │ │ │ │ └── DonutChart.tsx │ │ │ ├── LabelList │ │ │ │ ├── LabelList.spec.ts │ │ │ │ ├── LabelList.tsx │ │ │ │ ├── LabelListNative.module.scss │ │ │ │ └── LabelListNative.tsx │ │ │ ├── Legend │ │ │ │ ├── Legend.spec.ts │ │ │ │ ├── Legend.tsx │ │ │ │ └── LegendNative.tsx │ │ │ ├── LineChart │ │ │ │ ├── LineChart.md │ │ │ │ ├── LineChart.module.scss │ │ │ │ ├── LineChart.spec.ts │ │ │ │ ├── LineChart.tsx │ │ │ │ └── LineChartNative.tsx │ │ │ ├── PieChart │ │ │ │ ├── PieChart.md │ │ │ │ ├── PieChart.spec.ts │ │ │ │ ├── PieChart.tsx │ │ │ │ ├── PieChartNative.module.scss │ │ │ │ └── PieChartNative.tsx │ │ │ ├── RadarChart │ │ │ │ ├── RadarChart.md │ │ │ │ ├── RadarChart.spec.ts │ │ │ │ ├── RadarChart.tsx │ │ │ │ └── RadarChartNative.tsx │ │ │ ├── Tooltip │ │ │ │ ├── TooltipContent.module.scss │ │ │ │ ├── TooltipContent.spec.ts │ │ │ │ └── TooltipContent.tsx │ │ │ └── utils │ │ │ ├── abstractions.ts │ │ │ └── ChartProvider.tsx │ │ ├── Checkbox │ │ │ ├── Checkbox.md │ │ │ ├── Checkbox.spec.ts │ │ │ └── Checkbox.tsx │ │ ├── CodeBlock │ │ │ ├── CodeBlock.module.scss │ │ │ ├── CodeBlock.spec.ts │ │ │ ├── CodeBlock.tsx │ │ │ ├── CodeBlockNative.tsx │ │ │ └── highlight-code.ts │ │ ├── collectedComponentMetadata.ts │ │ ├── ColorPicker │ │ │ ├── ColorPicker.md │ │ │ ├── ColorPicker.module.scss │ │ │ ├── ColorPicker.spec.ts │ │ │ ├── ColorPicker.tsx │ │ │ └── ColorPickerNative.tsx │ │ ├── Column │ │ │ ├── Column.md │ │ │ ├── Column.tsx │ │ │ ├── ColumnNative.tsx │ │ │ ├── doc-resources │ │ │ │ └── list-component-data.js │ │ │ └── TableContext.tsx │ │ ├── component-utils.ts │ │ ├── ComponentProvider.tsx │ │ ├── ComponentRegistryContext.tsx │ │ ├── container-helpers.tsx │ │ ├── ContentSeparator │ │ │ ├── ContentSeparator.md │ │ │ ├── ContentSeparator.module.scss │ │ │ ├── ContentSeparator.spec.ts │ │ │ ├── ContentSeparator.tsx │ │ │ └── ContentSeparatorNative.tsx │ │ ├── DataSource │ │ │ ├── DataSource.md │ │ │ └── DataSource.tsx │ │ ├── DateInput │ │ │ ├── DateInput.md │ │ │ ├── DateInput.module.scss │ │ │ ├── DateInput.spec.ts │ │ │ ├── DateInput.tsx │ │ │ └── DateInputNative.tsx │ │ ├── DatePicker │ │ │ ├── DatePicker.md │ │ │ ├── DatePicker.module.scss │ │ │ ├── DatePicker.spec.ts │ │ │ ├── DatePicker.tsx │ │ │ └── DatePickerNative.tsx │ │ ├── DropdownMenu │ │ │ ├── DropdownMenu.md │ │ │ ├── DropdownMenu.module.scss │ │ │ ├── DropdownMenu.spec.ts │ │ │ ├── DropdownMenu.tsx │ │ │ ├── DropdownMenuNative.tsx │ │ │ ├── MenuItem.md │ │ │ └── SubMenuItem.md │ │ ├── EmojiSelector │ │ │ ├── EmojiSelector.md │ │ │ ├── EmojiSelector.spec.ts │ │ │ ├── EmojiSelector.tsx │ │ │ └── EmojiSelectorNative.tsx │ │ ├── ExpandableItem │ │ │ ├── ExpandableItem.module.scss │ │ │ ├── ExpandableItem.spec.ts │ │ │ ├── ExpandableItem.tsx │ │ │ └── ExpandableItemNative.tsx │ │ ├── FileInput │ │ │ ├── FileInput.md │ │ │ ├── FileInput.module.scss │ │ │ ├── FileInput.spec.ts │ │ │ ├── FileInput.tsx │ │ │ └── FileInputNative.tsx │ │ ├── FileUploadDropZone │ │ │ ├── FileUploadDropZone.md │ │ │ ├── FileUploadDropZone.module.scss │ │ │ ├── FileUploadDropZone.spec.ts │ │ │ ├── FileUploadDropZone.tsx │ │ │ └── FileUploadDropZoneNative.tsx │ │ ├── FlowLayout │ │ │ ├── FlowLayout.md │ │ │ ├── FlowLayout.module.scss │ │ │ ├── FlowLayout.spec.ts │ │ │ ├── FlowLayout.spec.ts-snapshots │ │ │ │ └── Edge-cases-boxShadow-is-not-clipped-1-non-smoke-darwin.png │ │ │ ├── FlowLayout.tsx │ │ │ └── FlowLayoutNative.tsx │ │ ├── Footer │ │ │ ├── Footer.md │ │ │ ├── Footer.module.scss │ │ │ ├── Footer.spec.ts │ │ │ ├── Footer.tsx │ │ │ └── FooterNative.tsx │ │ ├── Form │ │ │ ├── Form.md │ │ │ ├── Form.module.scss │ │ │ ├── Form.spec.ts │ │ │ ├── Form.tsx │ │ │ ├── formActions.ts │ │ │ ├── FormContext.ts │ │ │ └── FormNative.tsx │ │ ├── FormItem │ │ │ ├── FormItem.md │ │ │ ├── FormItem.module.scss │ │ │ ├── FormItem.spec.ts │ │ │ ├── FormItem.tsx │ │ │ ├── FormItemNative.tsx │ │ │ ├── HelperText.module.scss │ │ │ ├── HelperText.tsx │ │ │ ├── ItemWithLabel.tsx │ │ │ └── Validations.ts │ │ ├── FormSection │ │ │ ├── FormSection.md │ │ │ ├── FormSection.ts │ │ │ └── FormSection.xmlui │ │ ├── Fragment │ │ │ ├── Fragment.spec.ts │ │ │ └── Fragment.tsx │ │ ├── Heading │ │ │ ├── abstractions.ts │ │ │ ├── H1.md │ │ │ ├── H1.spec.ts │ │ │ ├── H2.md │ │ │ ├── H2.spec.ts │ │ │ ├── H3.md │ │ │ ├── H3.spec.ts │ │ │ ├── H4.md │ │ │ ├── H4.spec.ts │ │ │ ├── H5.md │ │ │ ├── H5.spec.ts │ │ │ ├── H6.md │ │ │ ├── H6.spec.ts │ │ │ ├── Heading.md │ │ │ ├── Heading.module.scss │ │ │ ├── Heading.spec.ts │ │ │ ├── Heading.tsx │ │ │ └── HeadingNative.tsx │ │ ├── HoverCard │ │ │ ├── HoverCard.tsx │ │ │ └── HovercardNative.tsx │ │ ├── HtmlTags │ │ │ ├── HtmlTags.module.scss │ │ │ ├── HtmlTags.spec.ts │ │ │ └── HtmlTags.tsx │ │ ├── Icon │ │ │ ├── AdmonitionDanger.tsx │ │ │ ├── AdmonitionInfo.tsx │ │ │ ├── AdmonitionNote.tsx │ │ │ ├── AdmonitionTip.tsx │ │ │ ├── AdmonitionWarning.tsx │ │ │ ├── ApiIcon.tsx │ │ │ ├── ArrowDropDown.module.scss │ │ │ ├── ArrowDropDown.tsx │ │ │ ├── ArrowDropUp.module.scss │ │ │ ├── ArrowDropUp.tsx │ │ │ ├── ArrowLeft.module.scss │ │ │ ├── ArrowLeft.tsx │ │ │ ├── ArrowRight.module.scss │ │ │ ├── ArrowRight.tsx │ │ │ ├── Attach.tsx │ │ │ ├── Binding.module.scss │ │ │ ├── Binding.tsx │ │ │ ├── BoardIcon.tsx │ │ │ ├── BoxIcon.tsx │ │ │ ├── CheckIcon.tsx │ │ │ ├── ChevronDownIcon.tsx │ │ │ ├── ChevronLeft.tsx │ │ │ ├── ChevronRight.tsx │ │ │ ├── ChevronUpIcon.tsx │ │ │ ├── CodeFileIcon.tsx │ │ │ ├── CodeSandbox.tsx │ │ │ ├── CompactListIcon.tsx │ │ │ ├── ContentCopyIcon.tsx │ │ │ ├── DarkToLightIcon.tsx │ │ │ ├── DatabaseIcon.module.scss │ │ │ ├── DatabaseIcon.tsx │ │ │ ├── DocFileIcon.tsx │ │ │ ├── DocIcon.tsx │ │ │ ├── DotMenuHorizontalIcon.tsx │ │ │ ├── DotMenuIcon.tsx │ │ │ ├── EmailIcon.tsx │ │ │ ├── EmptyFolderIcon.tsx │ │ │ ├── ErrorIcon.tsx │ │ │ ├── ExpressionIcon.tsx │ │ │ ├── FillPlusCricleIcon.tsx │ │ │ ├── FilterIcon.tsx │ │ │ ├── FolderIcon.tsx │ │ │ ├── GlobeIcon.tsx │ │ │ ├── HomeIcon.tsx │ │ │ ├── HyperLinkIcon.tsx │ │ │ ├── Icon.md │ │ │ ├── Icon.module.scss │ │ │ ├── Icon.spec.ts │ │ │ ├── Icon.tsx │ │ │ ├── IconNative.tsx │ │ │ ├── ImageFileIcon.tsx │ │ │ ├── Inspect.tsx │ │ │ ├── LightToDark.tsx │ │ │ ├── LinkIcon.tsx │ │ │ ├── ListIcon.tsx │ │ │ ├── LooseListIcon.tsx │ │ │ ├── MoonIcon.tsx │ │ │ ├── MoreOptionsIcon.tsx │ │ │ ├── NoSortIcon.tsx │ │ │ ├── PDFIcon.tsx │ │ │ ├── PenIcon.tsx │ │ │ ├── PhoneIcon.tsx │ │ │ ├── PhotoIcon.tsx │ │ │ ├── PlusIcon.tsx │ │ │ ├── SearchIcon.tsx │ │ │ ├── ShareIcon.tsx │ │ │ ├── SortAscendingIcon.tsx │ │ │ ├── SortDescendingIcon.tsx │ │ │ ├── StarsIcon.tsx │ │ │ ├── SunIcon.tsx │ │ │ ├── svg │ │ │ │ ├── admonition_danger.svg │ │ │ │ ├── admonition_info.svg │ │ │ │ ├── admonition_note.svg │ │ │ │ ├── admonition_tip.svg │ │ │ │ ├── admonition_warning.svg │ │ │ │ ├── api.svg │ │ │ │ ├── arrow-dropdown.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── attach.svg │ │ │ │ ├── binding.svg │ │ │ │ ├── box.svg │ │ │ │ ├── bulb.svg │ │ │ │ ├── code-file.svg │ │ │ │ ├── code-sandbox.svg │ │ │ │ ├── dark_to_light.svg │ │ │ │ ├── database.svg │ │ │ │ ├── doc.svg │ │ │ │ ├── empty-folder.svg │ │ │ │ ├── expression.svg │ │ │ │ ├── eye-closed.svg │ │ │ │ ├── eye-dark.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── file-text.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── img.svg │ │ │ │ ├── inspect.svg │ │ │ │ ├── light_to_dark.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── photo.svg │ │ │ │ ├── share.svg │ │ │ │ ├── stars.svg │ │ │ │ ├── sun.svg │ │ │ │ ├── trending-down.svg │ │ │ │ ├── trending-level.svg │ │ │ │ ├── trending-up.svg │ │ │ │ ├── txt.svg │ │ │ │ ├── unknown-file.svg │ │ │ │ ├── unlink.svg │ │ │ │ └── xls.svg │ │ │ ├── TableDeleteColumnIcon.tsx │ │ │ ├── TableDeleteRowIcon.tsx │ │ │ ├── TableInsertColumnIcon.tsx │ │ │ ├── TableInsertRowIcon.tsx │ │ │ ├── TrashIcon.tsx │ │ │ ├── TrendingDownIcon.tsx │ │ │ ├── TrendingLevelIcon.tsx │ │ │ ├── TrendingUpIcon.tsx │ │ │ ├── TxtIcon.tsx │ │ │ ├── UnknownFileIcon.tsx │ │ │ ├── UnlinkIcon.tsx │ │ │ ├── UserIcon.tsx │ │ │ ├── WarningIcon.tsx │ │ │ └── XlsIcon.tsx │ │ ├── IconProvider.tsx │ │ ├── IconRegistryContext.tsx │ │ ├── IFrame │ │ │ ├── IFrame.md │ │ │ ├── IFrame.module.scss │ │ │ ├── IFrame.spec.ts │ │ │ ├── IFrame.tsx │ │ │ └── IFrameNative.tsx │ │ ├── Image │ │ │ ├── Image.md │ │ │ ├── Image.module.scss │ │ │ ├── Image.spec.ts │ │ │ ├── Image.tsx │ │ │ └── ImageNative.tsx │ │ ├── Input │ │ │ ├── index.ts │ │ │ ├── InputAdornment.module.scss │ │ │ ├── InputAdornment.tsx │ │ │ ├── InputDivider.module.scss │ │ │ ├── InputDivider.tsx │ │ │ ├── InputLabel.module.scss │ │ │ ├── InputLabel.tsx │ │ │ ├── PartialInput.module.scss │ │ │ └── PartialInput.tsx │ │ ├── InspectButton │ │ │ ├── InspectButton.module.scss │ │ │ └── InspectButton.tsx │ │ ├── Items │ │ │ ├── Items.md │ │ │ ├── Items.spec.ts │ │ │ ├── Items.tsx │ │ │ └── ItemsNative.tsx │ │ ├── Link │ │ │ ├── Link.md │ │ │ ├── Link.module.scss │ │ │ ├── Link.spec.ts │ │ │ ├── Link.tsx │ │ │ └── LinkNative.tsx │ │ ├── List │ │ │ ├── doc-resources │ │ │ │ └── list-component-data.js │ │ │ ├── List.md │ │ │ ├── List.module.scss │ │ │ ├── List.spec.ts │ │ │ ├── List.tsx │ │ │ └── ListNative.tsx │ │ ├── Logo │ │ │ ├── doc-resources │ │ │ │ └── xmlui-logo.svg │ │ │ ├── Logo.md │ │ │ ├── Logo.tsx │ │ │ └── LogoNative.tsx │ │ ├── Markdown │ │ │ ├── CodeText.module.scss │ │ │ ├── CodeText.tsx │ │ │ ├── Markdown.md │ │ │ ├── Markdown.module.scss │ │ │ ├── Markdown.spec.ts │ │ │ ├── Markdown.tsx │ │ │ ├── MarkdownNative.tsx │ │ │ ├── parse-binding-expr.ts │ │ │ └── utils.ts │ │ ├── metadata-helpers.ts │ │ ├── ModalDialog │ │ │ ├── ConfirmationModalContextProvider.tsx │ │ │ ├── Dialog.module.scss │ │ │ ├── Dialog.tsx │ │ │ ├── ModalDialog.md │ │ │ ├── ModalDialog.module.scss │ │ │ ├── ModalDialog.spec.ts │ │ │ ├── ModalDialog.tsx │ │ │ ├── ModalDialogNative.tsx │ │ │ └── ModalVisibilityContext.tsx │ │ ├── NavGroup │ │ │ ├── NavGroup.md │ │ │ ├── NavGroup.module.scss │ │ │ ├── NavGroup.spec.ts │ │ │ ├── NavGroup.tsx │ │ │ ├── NavGroupContext.ts │ │ │ └── NavGroupNative.tsx │ │ ├── NavLink │ │ │ ├── NavLink.md │ │ │ ├── NavLink.module.scss │ │ │ ├── NavLink.spec.ts │ │ │ ├── NavLink.tsx │ │ │ └── NavLinkNative.tsx │ │ ├── NavPanel │ │ │ ├── NavPanel.md │ │ │ ├── NavPanel.module.scss │ │ │ ├── NavPanel.spec.ts │ │ │ ├── NavPanel.tsx │ │ │ └── NavPanelNative.tsx │ │ ├── NestedApp │ │ │ ├── AppWithCodeView.module.scss │ │ │ ├── AppWithCodeView.tsx │ │ │ ├── AppWithCodeViewNative.tsx │ │ │ ├── defaultProps.tsx │ │ │ ├── logo.svg │ │ │ ├── NestedApp.module.scss │ │ │ ├── NestedApp.tsx │ │ │ ├── NestedAppNative.tsx │ │ │ ├── Tooltip.module.scss │ │ │ ├── Tooltip.tsx │ │ │ └── utils.ts │ │ ├── NoResult │ │ │ ├── NoResult.md │ │ │ ├── NoResult.module.scss │ │ │ ├── NoResult.spec.ts │ │ │ ├── NoResult.tsx │ │ │ └── NoResultNative.tsx │ │ ├── NumberBox │ │ │ ├── numberbox-abstractions.ts │ │ │ ├── NumberBox.md │ │ │ ├── NumberBox.module.scss │ │ │ ├── NumberBox.spec.ts │ │ │ ├── NumberBox.tsx │ │ │ └── NumberBoxNative.tsx │ │ ├── Option │ │ │ ├── Option.md │ │ │ ├── Option.spec.ts │ │ │ ├── Option.tsx │ │ │ ├── OptionNative.tsx │ │ │ └── OptionTypeProvider.tsx │ │ ├── PageMetaTitle │ │ │ ├── PageMetaTilteNative.tsx │ │ │ ├── PageMetaTitle.md │ │ │ ├── PageMetaTitle.spec.ts │ │ │ └── PageMetaTitle.tsx │ │ ├── Pages │ │ │ ├── Page.md │ │ │ ├── Pages.md │ │ │ ├── Pages.module.scss │ │ │ ├── Pages.tsx │ │ │ └── PagesNative.tsx │ │ ├── Pagination │ │ │ ├── Pagination.md │ │ │ ├── Pagination.module.scss │ │ │ ├── Pagination.spec.ts │ │ │ ├── Pagination.tsx │ │ │ └── PaginationNative.tsx │ │ ├── PositionedContainer │ │ │ ├── PositionedContainer.module.scss │ │ │ ├── PositionedContainer.tsx │ │ │ └── PositionedContainerNative.tsx │ │ ├── ProfileMenu │ │ │ ├── ProfileMenu.module.scss │ │ │ └── ProfileMenu.tsx │ │ ├── ProgressBar │ │ │ ├── ProgressBar.md │ │ │ ├── ProgressBar.module.scss │ │ │ ├── ProgressBar.spec.ts │ │ │ ├── ProgressBar.tsx │ │ │ └── ProgressBarNative.tsx │ │ ├── Queue │ │ │ ├── Queue.md │ │ │ ├── Queue.spec.ts │ │ │ ├── Queue.tsx │ │ │ ├── queueActions.ts │ │ │ └── QueueNative.tsx │ │ ├── RadioGroup │ │ │ ├── RadioGroup.md │ │ │ ├── RadioGroup.module.scss │ │ │ ├── RadioGroup.spec.ts │ │ │ ├── RadioGroup.tsx │ │ │ ├── RadioGroupNative.tsx │ │ │ ├── RadioItem.tsx │ │ │ └── RadioItemNative.tsx │ │ ├── RealTimeAdapter │ │ │ ├── RealTimeAdapter.tsx │ │ │ └── RealTimeAdapterNative.tsx │ │ ├── Redirect │ │ │ ├── Redirect.md │ │ │ ├── Redirect.spec.ts │ │ │ └── Redirect.tsx │ │ ├── ResponsiveBar │ │ │ ├── README.md │ │ │ ├── ResponsiveBar.md │ │ │ ├── ResponsiveBar.module.scss │ │ │ ├── ResponsiveBar.spec.ts │ │ │ ├── ResponsiveBar.tsx │ │ │ └── ResponsiveBarNative.tsx │ │ ├── Select │ │ │ ├── HiddenOption.tsx │ │ │ ├── MultiSelectOption.tsx │ │ │ ├── OptionContext.ts │ │ │ ├── Select.md │ │ │ ├── Select.module.scss │ │ │ ├── Select.spec.ts │ │ │ ├── Select.tsx │ │ │ ├── SelectContext.tsx │ │ │ ├── SelectNative.tsx │ │ │ ├── SelectOption.tsx │ │ │ └── SimpleSelect.tsx │ │ ├── SelectionStore │ │ │ ├── SelectionStore.md │ │ │ ├── SelectionStore.tsx │ │ │ └── SelectionStoreNative.tsx │ │ ├── Slider │ │ │ ├── Slider.md │ │ │ ├── Slider.module.scss │ │ │ ├── Slider.spec.ts │ │ │ ├── Slider.tsx │ │ │ └── SliderNative.tsx │ │ ├── Slot │ │ │ ├── Slot.md │ │ │ ├── Slot.spec.ts │ │ │ └── Slot.ts │ │ ├── SlotItem.tsx │ │ ├── SpaceFiller │ │ │ ├── SpaceFiller.md │ │ │ ├── SpaceFiller.module.scss │ │ │ ├── SpaceFiller.spec.ts │ │ │ ├── SpaceFiller.tsx │ │ │ └── SpaceFillerNative.tsx │ │ ├── Spinner │ │ │ ├── Spinner.md │ │ │ ├── Spinner.module.scss │ │ │ ├── Spinner.spec.ts │ │ │ ├── Spinner.tsx │ │ │ └── SpinnerNative.tsx │ │ ├── Splitter │ │ │ ├── HSplitter.md │ │ │ ├── HSplitter.spec.ts │ │ │ ├── Splitter.md │ │ │ ├── Splitter.module.scss │ │ │ ├── Splitter.spec.ts │ │ │ ├── Splitter.tsx │ │ │ ├── SplitterNative.tsx │ │ │ ├── utils.ts │ │ │ ├── VSplitter.md │ │ │ └── VSplitter.spec.ts │ │ ├── Stack │ │ │ ├── CHStack.md │ │ │ ├── CHStack.spec.ts │ │ │ ├── CVStack.md │ │ │ ├── CVStack.spec.ts │ │ │ ├── HStack.md │ │ │ ├── HStack.spec.ts │ │ │ ├── Stack.md │ │ │ ├── Stack.module.scss │ │ │ ├── Stack.spec.ts │ │ │ ├── Stack.tsx │ │ │ ├── StackNative.tsx │ │ │ ├── VStack.md │ │ │ └── VStack.spec.ts │ │ ├── StickyBox │ │ │ ├── StickyBox.md │ │ │ ├── StickyBox.module.scss │ │ │ ├── StickyBox.tsx │ │ │ └── StickyBoxNative.tsx │ │ ├── Switch │ │ │ ├── Switch.md │ │ │ ├── Switch.spec.ts │ │ │ └── Switch.tsx │ │ ├── Table │ │ │ ├── doc-resources │ │ │ │ └── list-component-data.js │ │ │ ├── react-table-config.d.ts │ │ │ ├── Table.md │ │ │ ├── Table.module.scss │ │ │ ├── Table.spec.ts │ │ │ ├── Table.tsx │ │ │ ├── TableNative.tsx │ │ │ └── useRowSelection.tsx │ │ ├── TableOfContents │ │ │ ├── TableOfContents.module.scss │ │ │ ├── TableOfContents.spec.ts │ │ │ ├── TableOfContents.tsx │ │ │ └── TableOfContentsNative.tsx │ │ ├── Tabs │ │ │ ├── TabContext.tsx │ │ │ ├── TabItem.md │ │ │ ├── TabItem.tsx │ │ │ ├── TabItemNative.tsx │ │ │ ├── Tabs.md │ │ │ ├── Tabs.module.scss │ │ │ ├── Tabs.spec.ts │ │ │ ├── Tabs.tsx │ │ │ └── TabsNative.tsx │ │ ├── Text │ │ │ ├── Text.md │ │ │ ├── Text.module.scss │ │ │ ├── Text.spec.ts │ │ │ ├── Text.tsx │ │ │ └── TextNative.tsx │ │ ├── TextArea │ │ │ ├── TextArea.md │ │ │ ├── TextArea.module.scss │ │ │ ├── TextArea.spec.ts │ │ │ ├── TextArea.tsx │ │ │ ├── TextAreaNative.tsx │ │ │ ├── TextAreaResizable.tsx │ │ │ └── useComposedRef.ts │ │ ├── TextBox │ │ │ ├── TextBox.md │ │ │ ├── TextBox.module.scss │ │ │ ├── TextBox.spec.ts │ │ │ ├── TextBox.tsx │ │ │ └── TextBoxNative.tsx │ │ ├── Theme │ │ │ ├── NotificationToast.tsx │ │ │ ├── Theme.md │ │ │ ├── Theme.module.scss │ │ │ ├── Theme.spec.ts │ │ │ ├── Theme.tsx │ │ │ └── ThemeNative.tsx │ │ ├── TimeInput │ │ │ ├── TimeInput.md │ │ │ ├── TimeInput.module.scss │ │ │ ├── TimeInput.spec.ts │ │ │ ├── TimeInput.tsx │ │ │ ├── TimeInputNative.tsx │ │ │ └── utils.ts │ │ ├── Timer │ │ │ ├── Timer.md │ │ │ ├── Timer.spec.ts │ │ │ ├── Timer.tsx │ │ │ └── TimerNative.tsx │ │ ├── Toggle │ │ │ ├── Toggle.module.scss │ │ │ └── Toggle.tsx │ │ ├── ToneChangerButton │ │ │ ├── ToneChangerButton.md │ │ │ ├── ToneChangerButton.spec.ts │ │ │ └── ToneChangerButton.tsx │ │ ├── ToneSwitch │ │ │ ├── ToneSwitch.md │ │ │ ├── ToneSwitch.module.scss │ │ │ ├── ToneSwitch.spec.ts │ │ │ ├── ToneSwitch.tsx │ │ │ └── ToneSwitchNative.tsx │ │ ├── Tooltip │ │ │ ├── Tooltip.md │ │ │ ├── Tooltip.module.scss │ │ │ ├── Tooltip.spec.ts │ │ │ ├── Tooltip.tsx │ │ │ └── TooltipNative.tsx │ │ ├── Tree │ │ │ ├── testData.ts │ │ │ ├── Tree-dynamic.spec.ts │ │ │ ├── Tree-icons.spec.ts │ │ │ ├── Tree.md │ │ │ ├── Tree.spec.ts │ │ │ ├── TreeComponent.module.scss │ │ │ ├── TreeComponent.tsx │ │ │ └── TreeNative.tsx │ │ ├── TreeDisplay │ │ │ ├── TreeDisplay.md │ │ │ ├── TreeDisplay.module.scss │ │ │ ├── TreeDisplay.tsx │ │ │ └── TreeDisplayNative.tsx │ │ ├── ValidationSummary │ │ │ ├── ValidationSummary.module.scss │ │ │ └── ValidationSummary.tsx │ │ └── VisuallyHidden.tsx │ ├── components-core │ │ ├── abstractions │ │ │ ├── ComponentRenderer.ts │ │ │ ├── LoaderRenderer.ts │ │ │ ├── standalone.ts │ │ │ └── treeAbstractions.ts │ │ ├── action │ │ │ ├── actions.ts │ │ │ ├── APICall.tsx │ │ │ ├── FileDownloadAction.tsx │ │ │ ├── FileUploadAction.tsx │ │ │ ├── NavigateAction.tsx │ │ │ └── TimedAction.tsx │ │ ├── ApiBoundComponent.tsx │ │ ├── appContext │ │ │ ├── date-functions.ts │ │ │ ├── math-function.ts │ │ │ └── misc-utils.ts │ │ ├── AppContext.tsx │ │ ├── behaviors │ │ │ ├── Behavior.tsx │ │ │ └── CoreBehaviors.tsx │ │ ├── component-hooks.ts │ │ ├── ComponentDecorator.tsx │ │ ├── ComponentViewer.tsx │ │ ├── CompoundComponent.tsx │ │ ├── constants.ts │ │ ├── DebugViewProvider.tsx │ │ ├── descriptorHelper.ts │ │ ├── devtools │ │ │ ├── InspectorDialog.module.scss │ │ │ ├── InspectorDialog.tsx │ │ │ └── InspectorDialogVisibilityContext.tsx │ │ ├── EngineError.ts │ │ ├── event-handlers.ts │ │ ├── InspectorButton.module.scss │ │ ├── InspectorContext.tsx │ │ ├── interception │ │ │ ├── abstractions.ts │ │ │ ├── ApiInterceptor.ts │ │ │ ├── ApiInterceptorProvider.tsx │ │ │ ├── apiInterceptorWorker.ts │ │ │ ├── Backend.ts │ │ │ ├── Errors.ts │ │ │ ├── IndexedDb.ts │ │ │ ├── initMock.ts │ │ │ ├── InMemoryDb.ts │ │ │ ├── ReadonlyCollection.ts │ │ │ └── useApiInterceptorContext.tsx │ │ ├── loader │ │ │ ├── ApiLoader.tsx │ │ │ ├── DataLoader.tsx │ │ │ ├── ExternalDataLoader.tsx │ │ │ ├── Loader.tsx │ │ │ ├── MockLoaderRenderer.tsx │ │ │ └── PageableLoader.tsx │ │ ├── LoaderComponent.tsx │ │ ├── markup-check.ts │ │ ├── parts.ts │ │ ├── renderers.ts │ │ ├── rendering │ │ │ ├── AppContent.tsx │ │ │ ├── AppRoot.tsx │ │ │ ├── AppWrapper.tsx │ │ │ ├── buildProxy.ts │ │ │ ├── collectFnVarDeps.ts │ │ │ ├── ComponentAdapter.tsx │ │ │ ├── ComponentWrapper.tsx │ │ │ ├── Container.tsx │ │ │ ├── containers.ts │ │ │ ├── ContainerWrapper.tsx │ │ │ ├── ErrorBoundary.module.scss │ │ │ ├── ErrorBoundary.tsx │ │ │ ├── InvalidComponent.module.scss │ │ │ ├── InvalidComponent.tsx │ │ │ ├── nodeUtils.ts │ │ │ ├── reducer.ts │ │ │ ├── renderChild.tsx │ │ │ ├── StandaloneComponent.tsx │ │ │ ├── StateContainer.tsx │ │ │ ├── UnknownComponent.module.scss │ │ │ ├── UnknownComponent.tsx │ │ │ └── valueExtractor.ts │ │ ├── reportEngineError.ts │ │ ├── RestApiProxy.ts │ │ ├── script-runner │ │ │ ├── asyncProxy.ts │ │ │ ├── AttributeValueParser.ts │ │ │ ├── bannedFunctions.ts │ │ │ ├── BindingTreeEvaluationContext.ts │ │ │ ├── eval-tree-async.ts │ │ │ ├── eval-tree-common.ts │ │ │ ├── eval-tree-sync.ts │ │ │ ├── ParameterParser.ts │ │ │ ├── process-statement-async.ts │ │ │ ├── process-statement-common.ts │ │ │ ├── process-statement-sync.ts │ │ │ ├── ScriptingSourceTree.ts │ │ │ ├── simplify-expression.ts │ │ │ ├── statement-queue.ts │ │ │ └── visitors.ts │ │ ├── StandaloneApp.tsx │ │ ├── StandaloneExtensionManager.ts │ │ ├── TableOfContentsContext.tsx │ │ ├── theming │ │ │ ├── _themes.scss │ │ │ ├── component-layout-resolver.ts │ │ │ ├── extendThemeUtils.ts │ │ │ ├── hvar.ts │ │ │ ├── layout-resolver.ts │ │ │ ├── parse-layout-props.ts │ │ │ ├── StyleContext.tsx │ │ │ ├── StyleRegistry.ts │ │ │ ├── ThemeContext.tsx │ │ │ ├── ThemeProvider.tsx │ │ │ ├── themes │ │ │ │ ├── base-utils.ts │ │ │ │ ├── palette.ts │ │ │ │ ├── root.ts │ │ │ │ ├── solid.ts │ │ │ │ ├── theme-colors.ts │ │ │ │ └── xmlui.ts │ │ │ ├── themeVars.module.scss │ │ │ ├── themeVars.ts │ │ │ ├── transformThemeVars.ts │ │ │ └── utils.ts │ │ ├── utils │ │ │ ├── actionUtils.ts │ │ │ ├── audio-utils.ts │ │ │ ├── compound-utils.ts │ │ │ ├── css-utils.ts │ │ │ ├── DataLoaderQueryKeyGenerator.ts │ │ │ ├── date-utils.ts │ │ │ ├── extractParam.ts │ │ │ ├── hooks.tsx │ │ │ ├── LruCache.ts │ │ │ ├── mergeProps.ts │ │ │ ├── misc.ts │ │ │ ├── request-params.ts │ │ │ ├── statementUtils.ts │ │ │ └── treeUtils.ts │ │ └── xmlui-parser.ts │ ├── index-standalone.ts │ ├── index.scss │ ├── index.ts │ ├── language-server │ │ ├── server-common.ts │ │ ├── server-web-worker.ts │ │ ├── server.ts │ │ ├── services │ │ │ ├── common │ │ │ │ ├── docs-generation.ts │ │ │ │ ├── lsp-utils.ts │ │ │ │ ├── metadata-utils.ts │ │ │ │ └── syntax-node-utilities.ts │ │ │ ├── completion.ts │ │ │ ├── diagnostic.ts │ │ │ ├── format.ts │ │ │ └── hover.ts │ │ └── xmlui-metadata-generated.mjs │ ├── logging │ │ ├── LoggerContext.tsx │ │ ├── LoggerInitializer.tsx │ │ ├── LoggerService.ts │ │ └── xmlui.ts │ ├── logo.svg │ ├── parsers │ │ ├── common │ │ │ ├── GenericToken.ts │ │ │ ├── InputStream.ts │ │ │ └── utils.ts │ │ ├── scripting │ │ │ ├── code-behind-collect.ts │ │ │ ├── Lexer.ts │ │ │ ├── modules.ts │ │ │ ├── Parser.ts │ │ │ ├── ParserError.ts │ │ │ ├── ScriptingNodeTypes.ts │ │ │ ├── TokenTrait.ts │ │ │ ├── TokenType.ts │ │ │ └── tree-visitor.ts │ │ ├── style-parser │ │ │ ├── errors.ts │ │ │ ├── source-tree.ts │ │ │ ├── StyleInputStream.ts │ │ │ ├── StyleLexer.ts │ │ │ ├── StyleParser.ts │ │ │ └── tokens.ts │ │ └── xmlui-parser │ │ ├── CharacterCodes.ts │ │ ├── diagnostics.ts │ │ ├── fileExtensions.ts │ │ ├── index.ts │ │ ├── lint.ts │ │ ├── parser.ts │ │ ├── ParserError.ts │ │ ├── scanner.ts │ │ ├── syntax-kind.ts │ │ ├── syntax-node.ts │ │ ├── transform.ts │ │ ├── utils.ts │ │ ├── xmlui-serializer.ts │ │ └── xmlui-tree.ts │ ├── react-app-env.d.ts │ ├── syntax │ │ ├── monaco │ │ │ ├── grammar.monacoLanguage.ts │ │ │ ├── index.ts │ │ │ ├── xmlui-dark.ts │ │ │ ├── xmlui-light.ts │ │ │ └── xmluiscript.monacoLanguage.ts │ │ └── textMate │ │ ├── index.ts │ │ ├── xmlui-dark.json │ │ ├── xmlui-light.json │ │ ├── xmlui.json │ │ └── xmlui.tmLanguage.json │ ├── testing │ │ ├── assertions.ts │ │ ├── component-test-helpers.ts │ │ ├── ComponentDrivers.ts │ │ ├── drivers │ │ │ ├── DateInputDriver.ts │ │ │ ├── ModalDialogDriver.ts │ │ │ ├── NumberBoxDriver.ts │ │ │ ├── TextBoxDriver.ts │ │ │ ├── TimeInputDriver.ts │ │ │ ├── TimerDriver.ts │ │ │ └── TreeDriver.ts │ │ ├── fixtures.ts │ │ ├── infrastructure │ │ │ ├── index.html │ │ │ ├── main.tsx │ │ │ ├── public │ │ │ │ ├── mockServiceWorker.js │ │ │ │ ├── resources │ │ │ │ │ ├── bell.svg │ │ │ │ │ ├── box.svg │ │ │ │ │ ├── doc.svg │ │ │ │ │ ├── eye.svg │ │ │ │ │ ├── flower-640x480.jpg │ │ │ │ │ ├── sun.svg │ │ │ │ │ ├── test-image-100x100.jpg │ │ │ │ │ └── txt.svg │ │ │ │ └── serve.json │ │ │ └── TestBed.tsx │ │ └── themed-app-test-helpers.ts │ └── vite-env.d.ts ├── tests │ ├── components │ │ ├── CodeBlock │ │ │ └── hightlight-code.test.ts │ │ ├── playground-pattern.test.ts │ │ └── Tree │ │ └── Tree-states.test.ts │ ├── components-core │ │ ├── abstractions │ │ │ └── treeAbstractions.test.ts │ │ ├── container │ │ │ └── buildProxy.test.ts │ │ ├── interception │ │ │ ├── orderBy.test.ts │ │ │ ├── ReadOnlyCollection.test.ts │ │ │ └── request-param-converter.test.ts │ │ ├── scripts-runner │ │ │ ├── AttributeValueParser.test.ts │ │ │ ├── eval-tree-arrow-async.test.ts │ │ │ ├── eval-tree-arrow.test.ts │ │ │ ├── eval-tree-func-decl-async.test.ts │ │ │ ├── eval-tree-func-decl.test.ts │ │ │ ├── eval-tree-pre-post.test.ts │ │ │ ├── eval-tree-regression.test.ts │ │ │ ├── eval-tree.test.ts │ │ │ ├── function-proxy.test.ts │ │ │ ├── parser-regression.test.ts │ │ │ ├── process-event.test.ts │ │ │ ├── process-function.test.ts │ │ │ ├── process-implicit-context.test.ts │ │ │ ├── process-statement-asgn.test.ts │ │ │ ├── process-statement-destruct.test.ts │ │ │ ├── process-statement-regs.test.ts │ │ │ ├── process-statement-sync.test.ts │ │ │ ├── process-statement.test.ts │ │ │ ├── process-switch-sync.test.ts │ │ │ ├── process-switch.test.ts │ │ │ ├── process-try-sync.test.ts │ │ │ ├── process-try.test.ts │ │ │ └── test-helpers.ts │ │ ├── test-metadata-handler.ts │ │ ├── theming │ │ │ ├── border-segments.test.ts │ │ │ ├── component-layout.resolver.test.ts │ │ │ ├── layout-property-parser.test.ts │ │ │ ├── layout-resolver.test.ts │ │ │ ├── layout-resolver2.test.ts │ │ │ ├── layout-vp-override.test.ts │ │ │ └── padding-segments.test.ts │ │ └── utils │ │ ├── date-utils.test.ts │ │ ├── format-human-elapsed-time.test.ts │ │ └── LruCache.test.ts │ ├── language-server │ │ ├── completion.test.ts │ │ ├── format.test.ts │ │ ├── hover.test.ts │ │ └── mockData.ts │ └── parsers │ ├── common │ │ └── input-stream.test.ts │ ├── markdown │ │ └── parse-binding-expression.test.ts │ ├── parameter-parser.test.ts │ ├── paremeter-parser.test.ts │ ├── scripting │ │ ├── eval-tree-arrow.test.ts │ │ ├── eval-tree-pre-post.test.ts │ │ ├── eval-tree.test.ts │ │ ├── function-proxy.test.ts │ │ ├── lexer-literals.test.ts │ │ ├── lexer-misc.test.ts │ │ ├── module-parse.test.ts │ │ ├── parser-arrow.test.ts │ │ ├── parser-assignments.test.ts │ │ ├── parser-binary.test.ts │ │ ├── parser-destructuring.test.ts │ │ ├── parser-errors.test.ts │ │ ├── parser-expressions.test.ts │ │ ├── parser-function.test.ts │ │ ├── parser-literals.test.ts │ │ ├── parser-primary.test.ts │ │ ├── parser-regex.test.ts │ │ ├── parser-statements.test.ts │ │ ├── parser-unary.test.ts │ │ ├── process-event.test.ts │ │ ├── process-implicit-context.test.ts │ │ ├── process-statement-asgn.test.ts │ │ ├── process-statement-destruct.test.ts │ │ ├── process-statement-regs.test.ts │ │ ├── process-statement-sync.test.ts │ │ ├── process-statement.test.ts │ │ ├── process-switch-sync.test.ts │ │ ├── process-switch.test.ts │ │ ├── process-try-sync.test.ts │ │ ├── process-try.test.ts │ │ ├── simplify-expression.test.ts │ │ ├── statement-hooks.test.ts │ │ └── test-helpers.ts │ ├── style-parser │ │ ├── generateHvarChain.test.ts │ │ ├── parseHVar.test.ts │ │ ├── parser.test.ts │ │ └── tokens.test.ts │ └── xmlui │ ├── lint.test.ts │ ├── parser.test.ts │ ├── scanner.test.ts │ ├── transform.attr.test.ts │ ├── transform.circular.test.ts │ ├── transform.element.test.ts │ ├── transform.errors.test.ts │ ├── transform.escape.test.ts │ ├── transform.regression.test.ts │ ├── transform.script.test.ts │ ├── transform.test.ts │ └── xmlui.ts ├── tests-e2e │ ├── api-bound-component-regression.spec.ts │ ├── api-call-as-extracted-component.spec.ts │ ├── assign-to-object-or-array-regression.spec.ts │ ├── binding-regression.spec.ts │ ├── children-as-template-context-vars.spec.ts │ ├── compound-component.spec.ts │ ├── context-vars-regression.spec.ts │ ├── data-bindings.spec.ts │ ├── datasource-and-api-usage-in-var.spec.ts │ ├── datasource-direct-binding.spec.ts │ ├── datasource-onLoaded-regression.spec.ts │ ├── modify-array-item-regression.spec.ts │ ├── namespaces.spec.ts │ ├── push-to-array-regression.spec.ts │ ├── screen-breakpoints.spec.ts │ ├── scripting.spec.ts │ ├── state-scope-in-pages.spec.ts │ └── state-var-scopes.spec.ts ├── tsconfig.bin.json ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── vitest.config.ts ``` # Files -------------------------------------------------------------------------------- /xmlui/src/components/Charts/AreaChart/AreaChart.spec.ts: -------------------------------------------------------------------------------- ```typescript 1 | import { expect, test } from "../../../testing/fixtures"; 2 | 3 | // Test data helpers - using proper XMLUI data format 4 | const sampleData = `[ 5 | { name: 'Jan', value: 100, category: 400 }, 6 | { name: 'Feb', value: 150, category: 300 }, 7 | { name: 'Mar', value: 120, category: 500 }, 8 | { name: 'Apr', value: 180, category: 200 } 9 | ]`; 10 | 11 | const emptyData = `[]`; 12 | 13 | const singlePointData = `[ 14 | { name: 'Jan', value: 100, category: 400 } 15 | ]`; 16 | 17 | const multiSeriesData = `[ 18 | { month: 'Jan', sales: 1200, profit: 400, expenses: 800 }, 19 | { month: 'Feb', sales: 1900, profit: 600, expenses: 1300 }, 20 | { month: 'Mar', sales: 1500, profit: 500, expenses: 1000 }, 21 | { month: 'Apr', sales: 1800, profit: 700, expenses: 1100 } 22 | ]`; 23 | 24 | const largeDataset = `[ 25 | ${Array.from({ length: 20 }, (_, i) => 26 | `{ name: 'Point${i + 1}', value: ${Math.floor(Math.random() * 1000)}, secondary: ${Math.floor(Math.random() * 500)} }` 27 | ).join(', ')} 28 | ]`; 29 | 30 | // Chart selectors - update based on specific Recharts component 31 | const chartRoot = ".recharts-responsive-container"; 32 | const chartSvg = ".recharts-surface"; 33 | const chartElementsSelector = ".recharts-area"; // AreaChart specific 34 | const legendSelector = ".recharts-legend-wrapper"; 35 | const tooltipSelector = ".recharts-tooltip-wrapper"; 36 | const xAxisSelector = ".recharts-xAxis"; 37 | const yAxisSelector = ".recharts-yAxis"; 38 | const xTicksSelector = ".recharts-xAxis .recharts-cartesian-axis-tick-value"; 39 | const yTicksSelector = ".recharts-yAxis .recharts-cartesian-axis-tick-value"; 40 | 41 | // --- Smoke Tests 42 | 43 | test.describe("smoke tests", { tag: "@smoke" }, () => { 44 | test("component renders with basic props", async ({ initTestBed, page }) => { 45 | await initTestBed(` 46 | <AreaChart 47 | nameKey="name" 48 | data="{${sampleData}}" 49 | dataKeys="{['value']}" 50 | width="600px" 51 | height="400px" 52 | /> 53 | `); 54 | 55 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 56 | await expect(page.locator(chartRoot)).toBeVisible(); 57 | }); 58 | 59 | test("renders correct number of chart elements", async ({ initTestBed, page }) => { 60 | await initTestBed(` 61 | <AreaChart 62 | nameKey="name" 63 | data="{${sampleData}}" 64 | dataKeys="{['value', 'category']}" 65 | width="600px" 66 | height="400px" 67 | /> 68 | `); 69 | 70 | await page.waitForSelector(chartElementsSelector, { timeout: 10000 }); 71 | const elements = page.locator(chartElementsSelector); 72 | await expect(elements).toHaveCount(2); // Should match dataKeys length 73 | }); 74 | 75 | test("handles empty data gracefully", async ({ initTestBed, page }) => { 76 | await initTestBed(` 77 | <AreaChart 78 | nameKey="name" 79 | data="{${emptyData}}" 80 | dataKeys="{['value']}" 81 | width="600px" 82 | height="400px" 83 | /> 84 | `); 85 | 86 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 87 | await expect(page.locator(chartRoot)).toBeVisible(); 88 | }); 89 | 90 | test("handles single data point", async ({ initTestBed, page }) => { 91 | await initTestBed(` 92 | <AreaChart 93 | nameKey="name" 94 | data="{${singlePointData}}" 95 | dataKeys="{['value']}" 96 | width="600px" 97 | height="400px" 98 | /> 99 | `); 100 | 101 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 102 | await expect(page.locator(chartRoot)).toBeVisible(); 103 | }); 104 | }); 105 | 106 | // --- Axis Tests 107 | 108 | test.describe("x-axis", () => { 109 | test("x-axis is shown by default", async ({ initTestBed, page }) => { 110 | await initTestBed(` 111 | <AreaChart 112 | nameKey="name" 113 | data="{${sampleData}}" 114 | dataKeys="{['value']}" 115 | width="600px" 116 | height="400px" 117 | /> 118 | `); 119 | 120 | await page.waitForSelector(xAxisSelector, { timeout: 10000 }); 121 | await expect(page.locator(xAxisSelector)).toBeVisible(); 122 | }); 123 | 124 | test("x-axis can be hidden", async ({ initTestBed, page }) => { 125 | await initTestBed(` 126 | <AreaChart 127 | nameKey="name" 128 | data="{${sampleData}}" 129 | dataKeys="{['value']}" 130 | hideX="true" 131 | width="600px" 132 | height="400px" 133 | /> 134 | `); 135 | 136 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 137 | await expect(page.locator(xAxisSelector)).not.toBeVisible(); 138 | }); 139 | 140 | test("x-axis tick labels can be hidden", async ({ initTestBed, page }) => { 141 | await initTestBed(` 142 | <AreaChart 143 | nameKey="name" 144 | data="{${sampleData}}" 145 | dataKeys="{['value']}" 146 | hideTickX="true" 147 | width="600px" 148 | height="400px" 149 | /> 150 | `); 151 | 152 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 153 | await expect(page.locator(xTicksSelector)).not.toBeVisible(); 154 | }); 155 | }); 156 | 157 | test.describe("y-axis", () => { 158 | test("y-axis is shown by default", async ({ initTestBed, page }) => { 159 | await initTestBed(` 160 | <AreaChart 161 | nameKey="name" 162 | data="{${sampleData}}" 163 | dataKeys="{['value']}" 164 | width="600px" 165 | height="400px" 166 | /> 167 | `); 168 | 169 | await page.waitForSelector(yAxisSelector, { timeout: 10000 }); 170 | await expect(page.locator(yAxisSelector)).toBeVisible(); 171 | }); 172 | 173 | test("y-axis can be hidden", async ({ initTestBed, page }) => { 174 | await initTestBed(` 175 | <AreaChart 176 | nameKey="name" 177 | data="{${sampleData}}" 178 | dataKeys="{['value']}" 179 | hideY="true" 180 | width="600px" 181 | height="400px" 182 | /> 183 | `); 184 | 185 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 186 | await expect(page.locator(yAxisSelector)).not.toBeVisible(); 187 | }); 188 | 189 | test("y-axis tick labels can be hidden", async ({ initTestBed, page }) => { 190 | await initTestBed(` 191 | <AreaChart 192 | nameKey="name" 193 | data="{${sampleData}}" 194 | dataKeys="{['value']}" 195 | hideTickY="true" 196 | width="600px" 197 | height="400px" 198 | /> 199 | `); 200 | 201 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 202 | await expect(page.locator(yTicksSelector)).not.toBeVisible(); 203 | }); 204 | }); 205 | 206 | // --- Legend Tests 207 | 208 | test.describe("legend", () => { 209 | test("legend is hidden by default", async ({ initTestBed, page }) => { 210 | await initTestBed(` 211 | <AreaChart 212 | nameKey="name" 213 | data="{${sampleData}}" 214 | dataKeys="{['value', 'category']}" 215 | width="600px" 216 | height="400px" 217 | /> 218 | `); 219 | 220 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 221 | await expect(page.locator(legendSelector)).not.toBeVisible(); 222 | }); 223 | 224 | test("legend can be shown", async ({ initTestBed, page }) => { 225 | await initTestBed(` 226 | <AreaChart 227 | nameKey="name" 228 | data="{${sampleData}}" 229 | dataKeys="{['value', 'category']}" 230 | showLegend="true" 231 | width="600px" 232 | height="400px" 233 | /> 234 | `); 235 | 236 | await page.waitForSelector(legendSelector, { timeout: 10000 }); 237 | await expect(page.locator(legendSelector)).toBeVisible(); 238 | }); 239 | }); 240 | 241 | // --- Area Chart Specific Tests 242 | 243 | test.describe("stacked areas", () => { 244 | test("areas are not stacked by default", async ({ initTestBed, page }) => { 245 | await initTestBed(` 246 | <AreaChart 247 | nameKey="name" 248 | data="{${sampleData}}" 249 | dataKeys="{['value', 'category']}" 250 | width="600px" 251 | height="400px" 252 | /> 253 | `); 254 | 255 | await page.waitForSelector(chartElementsSelector, { timeout: 10000 }); 256 | const areas = page.locator(chartElementsSelector); 257 | await expect(areas).toHaveCount(2); 258 | }); 259 | 260 | test("areas can be stacked", async ({ initTestBed, page }) => { 261 | await initTestBed(` 262 | <AreaChart 263 | nameKey="name" 264 | data="{${sampleData}}" 265 | dataKeys="{['value', 'category']}" 266 | stacked="true" 267 | width="600px" 268 | height="400px" 269 | /> 270 | `); 271 | 272 | await page.waitForSelector(chartElementsSelector, { timeout: 10000 }); 273 | const areas = page.locator(chartElementsSelector); 274 | await expect(areas).toHaveCount(2); 275 | }); 276 | }); 277 | 278 | test.describe("curved areas", () => { 279 | test("areas are linear by default", async ({ initTestBed, page }) => { 280 | await initTestBed(` 281 | <AreaChart 282 | nameKey="name" 283 | data="{${sampleData}}" 284 | dataKeys="{['value']}" 285 | width="600px" 286 | height="400px" 287 | /> 288 | `); 289 | 290 | await page.waitForSelector(chartElementsSelector, { timeout: 10000 }); 291 | await expect(page.locator(chartElementsSelector)).toBeVisible(); 292 | }); 293 | 294 | test("areas can be curved", async ({ initTestBed, page }) => { 295 | await initTestBed(` 296 | <AreaChart 297 | nameKey="name" 298 | data="{${sampleData}}" 299 | dataKeys="{['value']}" 300 | curved="true" 301 | width="600px" 302 | height="400px" 303 | /> 304 | `); 305 | 306 | await page.waitForSelector(chartElementsSelector, { timeout: 10000 }); 307 | await expect(page.locator(chartElementsSelector)).toBeVisible(); 308 | }); 309 | }); 310 | 311 | // --- Responsive Behavior Tests 312 | 313 | test.describe("responsive behavior", () => { 314 | test("enters mini mode with very small container height", async ({ initTestBed, page }) => { 315 | await initTestBed(` 316 | <AreaChart 317 | nameKey="name" 318 | data="{${sampleData}}" 319 | dataKeys="{['value']}" 320 | showLegend="true" 321 | width="600px" 322 | height="100px" 323 | /> 324 | `); 325 | 326 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 327 | 328 | // In mini mode, legend and axes should be hidden 329 | await expect(page.locator(legendSelector)).not.toBeVisible(); 330 | await expect(page.locator(xAxisSelector)).not.toBeVisible(); 331 | await expect(page.locator(yAxisSelector)).not.toBeVisible(); 332 | }); 333 | 334 | test("normal mode with adequate height", async ({ initTestBed, page }) => { 335 | await initTestBed(` 336 | <AreaChart 337 | nameKey="name" 338 | data="{${sampleData}}" 339 | dataKeys="{['value']}" 340 | showLegend="true" 341 | width="600px" 342 | height="300px" 343 | /> 344 | `); 345 | 346 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 347 | 348 | // In normal mode, legend and axes should be visible 349 | await expect(page.locator(legendSelector)).toBeVisible(); 350 | await expect(page.locator(xAxisSelector)).toBeVisible(); 351 | await expect(page.locator(yAxisSelector)).toBeVisible(); 352 | }); 353 | }); 354 | 355 | // --- Tooltip Tests 356 | 357 | test.describe("tooltip", () => { 358 | test("tooltip is shown by default", async ({ initTestBed, page }) => { 359 | await initTestBed(` 360 | <AreaChart 361 | nameKey="name" 362 | data="{${sampleData}}" 363 | dataKeys="{['value']}" 364 | width="600px" 365 | height="400px" 366 | /> 367 | `); 368 | 369 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 370 | 371 | // Hover over chart area to trigger tooltip 372 | await page.locator(chartElementsSelector).first().hover(); 373 | await expect(page.locator(tooltipSelector)).toBeVisible(); 374 | }); 375 | 376 | test("tooltip can be hidden", async ({ initTestBed, page }) => { 377 | await initTestBed(` 378 | <AreaChart 379 | nameKey="name" 380 | data="{${sampleData}}" 381 | dataKeys="{['value']}" 382 | hideTooltip="true" 383 | width="600px" 384 | height="400px" 385 | /> 386 | `); 387 | 388 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 389 | 390 | // Hover over chart area - tooltip should not appear 391 | await page.locator(chartElementsSelector).first().hover(); 392 | await expect(page.locator(tooltipSelector)).not.toBeVisible(); 393 | }); 394 | }); 395 | 396 | // --- Comprehensive Prop Tests 397 | 398 | test.describe("data prop", () => { 399 | test("handles array data correctly", async ({ initTestBed, page }) => { 400 | await initTestBed(` 401 | <AreaChart 402 | nameKey="name" 403 | data="{${sampleData}}" 404 | dataKeys="{['value']}" 405 | width="600px" 406 | height="400px" 407 | /> 408 | `); 409 | 410 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 411 | await expect(page.locator(chartRoot)).toBeVisible(); 412 | await expect(page.locator(chartElementsSelector)).toHaveCount(1); 413 | }); 414 | 415 | test("handles empty array gracefully", async ({ initTestBed, page }) => { 416 | await initTestBed(` 417 | <AreaChart 418 | nameKey="name" 419 | data="{${emptyData}}" 420 | dataKeys="{['value']}" 421 | width="600px" 422 | height="400px" 423 | /> 424 | `); 425 | 426 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 427 | await expect(page.locator(chartRoot)).toBeVisible(); 428 | }); 429 | 430 | test("handles large datasets", async ({ initTestBed, page }) => { 431 | await initTestBed(` 432 | <AreaChart 433 | nameKey="name" 434 | data="{${largeDataset}}" 435 | dataKeys="{['value', 'secondary']}" 436 | width="600px" 437 | height="400px" 438 | /> 439 | `); 440 | 441 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 442 | await expect(page.locator(chartElementsSelector)).toHaveCount(2); 443 | }); 444 | 445 | test("handles missing data prop", async ({ initTestBed, page }) => { 446 | await initTestBed(` 447 | <AreaChart 448 | nameKey="name" 449 | dataKeys="{['value']}" 450 | width="600px" 451 | height="400px" 452 | /> 453 | `); 454 | 455 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 456 | await expect(page.locator(chartRoot)).toBeVisible(); 457 | }); 458 | }); 459 | 460 | test.describe("dataKeys prop", () => { 461 | test("renders single data series", async ({ initTestBed, page }) => { 462 | await initTestBed(` 463 | <AreaChart 464 | nameKey="name" 465 | data="{${sampleData}}" 466 | dataKeys="{['value']}" 467 | width="600px" 468 | height="400px" 469 | /> 470 | `); 471 | 472 | await page.waitForSelector(chartElementsSelector, { timeout: 10000 }); 473 | await expect(page.locator(chartElementsSelector)).toHaveCount(1); 474 | }); 475 | 476 | test("renders multiple data series", async ({ initTestBed, page }) => { 477 | await initTestBed(` 478 | <AreaChart 479 | nameKey="month" 480 | data="{${multiSeriesData}}" 481 | dataKeys="{['sales', 'profit', 'expenses']}" 482 | width="600px" 483 | height="400px" 484 | /> 485 | `); 486 | 487 | await page.waitForSelector(chartElementsSelector, { timeout: 10000 }); 488 | await expect(page.locator(chartElementsSelector)).toHaveCount(3); 489 | }); 490 | 491 | test("handles empty dataKeys array", async ({ initTestBed, page }) => { 492 | await initTestBed(` 493 | <AreaChart 494 | nameKey="name" 495 | data="{${sampleData}}" 496 | dataKeys="{[]}" 497 | width="600px" 498 | height="400px" 499 | /> 500 | `); 501 | 502 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 503 | await expect(page.locator(chartRoot)).toBeVisible(); 504 | await expect(page.locator(chartElementsSelector)).toHaveCount(0); 505 | }); 506 | 507 | test("handles non-existent dataKeys", async ({ initTestBed, page }) => { 508 | await initTestBed(` 509 | <AreaChart 510 | nameKey="name" 511 | data="{${sampleData}}" 512 | dataKeys="{['nonexistent', 'alsononexistent']}" 513 | width="600px" 514 | height="400px" 515 | /> 516 | `); 517 | 518 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 519 | await expect(page.locator(chartRoot)).toBeVisible(); 520 | }); 521 | }); 522 | 523 | test.describe("nameKey prop", () => { 524 | test("uses correct nameKey for x-axis labels", async ({ initTestBed, page }) => { 525 | await initTestBed(` 526 | <AreaChart 527 | nameKey="name" 528 | data="{${sampleData}}" 529 | dataKeys="{['value']}" 530 | width="600px" 531 | height="400px" 532 | /> 533 | `); 534 | 535 | await page.waitForSelector(xTicksSelector, { timeout: 10000 }); 536 | const firstTick = page.locator(xTicksSelector).first(); 537 | await expect(firstTick).toContainText("Jan"); 538 | }); 539 | 540 | test("handles different nameKey", async ({ initTestBed, page }) => { 541 | await initTestBed(` 542 | <AreaChart 543 | nameKey="month" 544 | data="{${multiSeriesData}}" 545 | dataKeys="{['sales']}" 546 | width="600px" 547 | height="400px" 548 | /> 549 | `); 550 | 551 | await page.waitForSelector(xTicksSelector, { timeout: 10000 }); 552 | const firstTick = page.locator(xTicksSelector).first(); 553 | await expect(firstTick).toContainText("Jan"); 554 | }); 555 | 556 | test("handles missing nameKey", async ({ initTestBed, page }) => { 557 | await initTestBed(` 558 | <AreaChart 559 | data="{${sampleData}}" 560 | dataKeys="{['value']}" 561 | width="600px" 562 | height="400px" 563 | /> 564 | `); 565 | 566 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 567 | await expect(page.locator(chartRoot)).toBeVisible(); 568 | }); 569 | 570 | test("handles non-existent nameKey", async ({ initTestBed, page }) => { 571 | await initTestBed(` 572 | <AreaChart 573 | nameKey="nonexistent" 574 | data="{${sampleData}}" 575 | dataKeys="{['value']}" 576 | width="600px" 577 | height="400px" 578 | /> 579 | `); 580 | 581 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 582 | await expect(page.locator(chartRoot)).toBeVisible(); 583 | }); 584 | }); 585 | 586 | test.describe("hideX prop", () => { 587 | test("shows X-axis by default", async ({ initTestBed, page }) => { 588 | await initTestBed(` 589 | <AreaChart 590 | nameKey="name" 591 | data="{${sampleData}}" 592 | dataKeys="{['value']}" 593 | width="600px" 594 | height="400px" 595 | /> 596 | `); 597 | 598 | await page.waitForSelector(xAxisSelector, { timeout: 10000 }); 599 | await expect(page.locator(xAxisSelector)).toBeVisible(); 600 | }); 601 | 602 | test("hides X-axis when hideX is true", async ({ initTestBed, page }) => { 603 | await initTestBed(` 604 | <AreaChart 605 | nameKey="name" 606 | data="{${sampleData}}" 607 | dataKeys="{['value']}" 608 | hideX="true" 609 | width="600px" 610 | height="400px" 611 | /> 612 | `); 613 | 614 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 615 | await expect(page.locator(xAxisSelector)).not.toBeVisible(); 616 | }); 617 | 618 | test("shows X-axis when hideX is false", async ({ initTestBed, page }) => { 619 | await initTestBed(` 620 | <AreaChart 621 | nameKey="name" 622 | data="{${sampleData}}" 623 | dataKeys="{['value']}" 624 | hideX="false" 625 | width="600px" 626 | height="400px" 627 | /> 628 | `); 629 | 630 | await page.waitForSelector(xAxisSelector, { timeout: 10000 }); 631 | await expect(page.locator(xAxisSelector)).toBeVisible(); 632 | }); 633 | }); 634 | 635 | test.describe("hideY prop", () => { 636 | test("shows Y-axis by default", async ({ initTestBed, page }) => { 637 | await initTestBed(` 638 | <AreaChart 639 | nameKey="name" 640 | data="{${sampleData}}" 641 | dataKeys="{['value']}" 642 | width="600px" 643 | height="400px" 644 | /> 645 | `); 646 | 647 | await page.waitForSelector(yAxisSelector, { timeout: 10000 }); 648 | await expect(page.locator(yAxisSelector)).toBeVisible(); 649 | }); 650 | 651 | test("hides Y-axis when hideY is true", async ({ initTestBed, page }) => { 652 | await initTestBed(` 653 | <AreaChart 654 | nameKey="name" 655 | data="{${sampleData}}" 656 | dataKeys="{['value']}" 657 | hideY="true" 658 | width="600px" 659 | height="400px" 660 | /> 661 | `); 662 | 663 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 664 | await expect(page.locator(yAxisSelector)).not.toBeVisible(); 665 | }); 666 | 667 | test("shows Y-axis when hideY is false", async ({ initTestBed, page }) => { 668 | await initTestBed(` 669 | <AreaChart 670 | nameKey="name" 671 | data="{${sampleData}}" 672 | dataKeys="{['value']}" 673 | hideY="false" 674 | width="600px" 675 | height="400px" 676 | /> 677 | `); 678 | 679 | await page.waitForSelector(yAxisSelector, { timeout: 10000 }); 680 | await expect(page.locator(yAxisSelector)).toBeVisible(); 681 | }); 682 | }); 683 | 684 | test.describe("hideTickX prop", () => { 685 | test("shows X-axis ticks by default", async ({ initTestBed, page }) => { 686 | await initTestBed(` 687 | <AreaChart 688 | nameKey="name" 689 | data="{${sampleData}}" 690 | dataKeys="{['value']}" 691 | width="600px" 692 | height="400px" 693 | /> 694 | `); 695 | 696 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 697 | await page.waitForSelector(xAxisSelector, { timeout: 5000 }); 698 | // Wait a bit more for ticks to render 699 | await page.waitForTimeout(1000); 700 | const ticks = page.locator(xTicksSelector); 701 | await expect(ticks.first()).toBeVisible(); 702 | }); 703 | 704 | test("hides X-axis ticks when hideTickX is true", async ({ initTestBed, page }) => { 705 | await initTestBed(` 706 | <AreaChart 707 | nameKey="name" 708 | data="{${sampleData}}" 709 | dataKeys="{['value']}" 710 | hideTickX="true" 711 | width="600px" 712 | height="400px" 713 | /> 714 | `); 715 | 716 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 717 | await expect(page.locator(xTicksSelector)).not.toBeVisible(); 718 | }); 719 | 720 | test("shows X-axis ticks when hideTickX is false", async ({ initTestBed, page }) => { 721 | await initTestBed(` 722 | <AreaChart 723 | nameKey="name" 724 | data="{${sampleData}}" 725 | dataKeys="{['value']}" 726 | hideTickX="false" 727 | width="600px" 728 | height="400px" 729 | /> 730 | `); 731 | 732 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 733 | await page.waitForSelector(xAxisSelector, { timeout: 5000 }); 734 | await page.waitForTimeout(1000); 735 | const ticks = page.locator(xTicksSelector); 736 | await expect(ticks.first()).toBeVisible(); 737 | }); 738 | }); 739 | 740 | test.describe("hideTickY prop", () => { 741 | test("shows Y-axis ticks by default", async ({ initTestBed, page }) => { 742 | await initTestBed(` 743 | <AreaChart 744 | nameKey="name" 745 | data="{${sampleData}}" 746 | dataKeys="{['value']}" 747 | width="600px" 748 | height="400px" 749 | /> 750 | `); 751 | 752 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 753 | await page.waitForSelector(yAxisSelector, { timeout: 5000 }); 754 | await page.waitForTimeout(1000); 755 | const ticks = page.locator(yTicksSelector); 756 | await expect(ticks.first()).toBeVisible(); 757 | }); 758 | 759 | test("hides Y-axis ticks when hideTickY is true", async ({ initTestBed, page }) => { 760 | await initTestBed(` 761 | <AreaChart 762 | nameKey="name" 763 | data="{${sampleData}}" 764 | dataKeys="{['value']}" 765 | hideTickY="true" 766 | width="600px" 767 | height="400px" 768 | /> 769 | `); 770 | 771 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 772 | await expect(page.locator(yTicksSelector)).not.toBeVisible(); 773 | }); 774 | 775 | test("shows Y-axis ticks when hideTickY is false", async ({ initTestBed, page }) => { 776 | await initTestBed(` 777 | <AreaChart 778 | nameKey="name" 779 | data="{${sampleData}}" 780 | dataKeys="{['value']}" 781 | hideTickY="false" 782 | width="600px" 783 | height="400px" 784 | /> 785 | `); 786 | 787 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 788 | await page.waitForSelector(yAxisSelector, { timeout: 5000 }); 789 | await page.waitForTimeout(1000); 790 | const ticks = page.locator(yTicksSelector); 791 | await expect(ticks.first()).toBeVisible(); 792 | }); 793 | }); 794 | 795 | test.describe("hideTooltip prop", () => { 796 | test("shows tooltip by default", async ({ initTestBed, page }) => { 797 | await initTestBed(` 798 | <AreaChart 799 | nameKey="name" 800 | data="{${sampleData}}" 801 | dataKeys="{['value']}" 802 | width="600px" 803 | height="400px" 804 | /> 805 | `); 806 | 807 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 808 | await page.locator(chartElementsSelector).first().hover(); 809 | await expect(page.locator(tooltipSelector)).toBeVisible(); 810 | }); 811 | 812 | test("hides tooltip when hideTooltip is true", async ({ initTestBed, page }) => { 813 | await initTestBed(` 814 | <AreaChart 815 | nameKey="name" 816 | data="{${sampleData}}" 817 | dataKeys="{['value']}" 818 | hideTooltip="true" 819 | width="600px" 820 | height="400px" 821 | /> 822 | `); 823 | 824 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 825 | await page.locator(chartElementsSelector).first().hover(); 826 | await expect(page.locator(tooltipSelector)).not.toBeVisible(); 827 | }); 828 | 829 | test("shows tooltip when hideTooltip is false", async ({ initTestBed, page }) => { 830 | await initTestBed(` 831 | <AreaChart 832 | nameKey="name" 833 | data="{${sampleData}}" 834 | dataKeys="{['value']}" 835 | hideTooltip="false" 836 | width="600px" 837 | height="400px" 838 | /> 839 | `); 840 | 841 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 842 | await page.locator(chartElementsSelector).first().hover(); 843 | await expect(page.locator(tooltipSelector)).toBeVisible(); 844 | }); 845 | }); 846 | 847 | test.describe("showLegend prop", () => { 848 | test("hides legend by default", async ({ initTestBed, page }) => { 849 | await initTestBed(` 850 | <AreaChart 851 | nameKey="name" 852 | data="{${sampleData}}" 853 | dataKeys="{['value', 'category']}" 854 | width="600px" 855 | height="400px" 856 | /> 857 | `); 858 | 859 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 860 | await expect(page.locator(legendSelector)).not.toBeVisible(); 861 | }); 862 | 863 | test("shows legend when showLegend is true", async ({ initTestBed, page }) => { 864 | await initTestBed(` 865 | <AreaChart 866 | nameKey="name" 867 | data="{${sampleData}}" 868 | dataKeys="{['value', 'category']}" 869 | showLegend="true" 870 | width="600px" 871 | height="400px" 872 | /> 873 | `); 874 | 875 | await page.waitForSelector(legendSelector, { timeout: 10000 }); 876 | await expect(page.locator(legendSelector)).toBeVisible(); 877 | }); 878 | 879 | test("hides legend when showLegend is false", async ({ initTestBed, page }) => { 880 | await initTestBed(` 881 | <AreaChart 882 | nameKey="name" 883 | data="{${sampleData}}" 884 | dataKeys="{['value', 'category']}" 885 | showLegend="false" 886 | width="600px" 887 | height="400px" 888 | /> 889 | `); 890 | 891 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 892 | await expect(page.locator(legendSelector)).not.toBeVisible(); 893 | }); 894 | }); 895 | 896 | test.describe("stacked prop", () => { 897 | test("areas are not stacked by default", async ({ initTestBed, page }) => { 898 | await initTestBed(` 899 | <AreaChart 900 | nameKey="name" 901 | data="{${sampleData}}" 902 | dataKeys="{['value', 'category']}" 903 | width="600px" 904 | height="400px" 905 | /> 906 | `); 907 | 908 | await page.waitForSelector(chartElementsSelector, { timeout: 10000 }); 909 | await expect(page.locator(chartElementsSelector)).toHaveCount(2); 910 | }); 911 | 912 | test("stacks areas when stacked is true", async ({ initTestBed, page }) => { 913 | await initTestBed(` 914 | <AreaChart 915 | nameKey="name" 916 | data="{${sampleData}}" 917 | dataKeys="{['value', 'category']}" 918 | stacked="true" 919 | width="600px" 920 | height="400px" 921 | /> 922 | `); 923 | 924 | await page.waitForSelector(chartElementsSelector, { timeout: 10000 }); 925 | await expect(page.locator(chartElementsSelector)).toHaveCount(2); 926 | }); 927 | 928 | test("does not stack when stacked is false", async ({ initTestBed, page }) => { 929 | await initTestBed(` 930 | <AreaChart 931 | nameKey="name" 932 | data="{${sampleData}}" 933 | dataKeys="{['value', 'category']}" 934 | stacked="false" 935 | width="600px" 936 | height="400px" 937 | /> 938 | `); 939 | 940 | await page.waitForSelector(chartElementsSelector, { timeout: 10000 }); 941 | await expect(page.locator(chartElementsSelector)).toHaveCount(2); 942 | }); 943 | }); 944 | 945 | test.describe("curved prop", () => { 946 | test("areas are linear by default", async ({ initTestBed, page }) => { 947 | await initTestBed(` 948 | <AreaChart 949 | nameKey="name" 950 | data="{${sampleData}}" 951 | dataKeys="{['value']}" 952 | width="600px" 953 | height="400px" 954 | /> 955 | `); 956 | 957 | await page.waitForSelector(chartElementsSelector, { timeout: 10000 }); 958 | await expect(page.locator(chartElementsSelector)).toBeVisible(); 959 | }); 960 | 961 | test("curves areas when curved is true", async ({ initTestBed, page }) => { 962 | await initTestBed(` 963 | <AreaChart 964 | nameKey="name" 965 | data="{${sampleData}}" 966 | dataKeys="{['value']}" 967 | curved="true" 968 | width="600px" 969 | height="400px" 970 | /> 971 | `); 972 | 973 | await page.waitForSelector(chartElementsSelector, { timeout: 10000 }); 974 | await expect(page.locator(chartElementsSelector)).toBeVisible(); 975 | }); 976 | 977 | test("keeps areas linear when curved is false", async ({ initTestBed, page }) => { 978 | await initTestBed(` 979 | <AreaChart 980 | nameKey="name" 981 | data="{${sampleData}}" 982 | dataKeys="{['value']}" 983 | curved="false" 984 | width="600px" 985 | height="400px" 986 | /> 987 | `); 988 | 989 | await page.waitForSelector(chartElementsSelector, { timeout: 10000 }); 990 | await expect(page.locator(chartElementsSelector)).toBeVisible(); 991 | }); 992 | }); 993 | 994 | test.describe("tickFormatter props", () => { 995 | test("applies custom X-axis tick formatter", async ({ initTestBed, page }) => { 996 | await initTestBed(` 997 | <AreaChart 998 | nameKey="name" 999 | data="{${sampleData}}" 1000 | dataKeys="{['value']}" 1001 | tickFormatterX="{(value) => 'X-' + value}" 1002 | width="600px" 1003 | height="400px" 1004 | /> 1005 | `); 1006 | 1007 | await page.waitForSelector(xTicksSelector, { timeout: 10000 }); 1008 | const firstTick = page.locator(xTicksSelector).first(); 1009 | await expect(firstTick).toContainText("X-"); 1010 | }); 1011 | 1012 | test("applies custom Y-axis tick formatter", async ({ initTestBed, page }) => { 1013 | await initTestBed(` 1014 | <AreaChart 1015 | nameKey="name" 1016 | data="{${sampleData}}" 1017 | dataKeys="{['value']}" 1018 | tickFormatterY="{(value) => value + '%'}" 1019 | width="600px" 1020 | height="400px" 1021 | /> 1022 | `); 1023 | 1024 | await page.waitForSelector(yTicksSelector, { timeout: 10000 }); 1025 | const firstTick = page.locator(yTicksSelector).first(); 1026 | await expect(firstTick).toContainText("%"); 1027 | }); 1028 | 1029 | test("works without tick formatters", async ({ initTestBed, page }) => { 1030 | await initTestBed(` 1031 | <AreaChart 1032 | nameKey="name" 1033 | data="{${sampleData}}" 1034 | dataKeys="{['value']}" 1035 | width="600px" 1036 | height="400px" 1037 | /> 1038 | `); 1039 | 1040 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 1041 | await page.waitForSelector(xAxisSelector, { timeout: 5000 }); 1042 | await page.waitForSelector(yAxisSelector, { timeout: 5000 }); 1043 | await page.waitForTimeout(1000); 1044 | const xTicks = page.locator(xTicksSelector); 1045 | const yTicks = page.locator(yTicksSelector); 1046 | await expect(xTicks.first()).toBeVisible(); 1047 | await expect(yTicks.first()).toBeVisible(); 1048 | }); 1049 | }); 1050 | 1051 | test.describe("combined props", () => { 1052 | test("all visual props combined", async ({ initTestBed, page }) => { 1053 | await initTestBed(` 1054 | <AreaChart 1055 | nameKey="month" 1056 | data="{${multiSeriesData}}" 1057 | dataKeys="{['sales', 'profit']}" 1058 | stacked="true" 1059 | curved="true" 1060 | showLegend="true" 1061 | hideTickX="true" 1062 | hideTickY="true" 1063 | width="600px" 1064 | height="400px" 1065 | /> 1066 | `); 1067 | 1068 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 1069 | await expect(page.locator(chartElementsSelector)).toHaveCount(2); 1070 | await expect(page.locator(legendSelector)).toBeVisible(); 1071 | await expect(page.locator(xTicksSelector)).not.toBeVisible(); 1072 | await expect(page.locator(yTicksSelector)).not.toBeVisible(); 1073 | }); 1074 | 1075 | test("minimal configuration", async ({ initTestBed, page }) => { 1076 | await initTestBed(` 1077 | <AreaChart 1078 | nameKey="name" 1079 | data="{${sampleData}}" 1080 | dataKeys="{['value']}" 1081 | hideX="true" 1082 | hideY="true" 1083 | hideTooltip="true" 1084 | width="600px" 1085 | height="400px" 1086 | /> 1087 | `); 1088 | 1089 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 1090 | await expect(page.locator(chartElementsSelector)).toHaveCount(1); 1091 | await expect(page.locator(xAxisSelector)).not.toBeVisible(); 1092 | await expect(page.locator(yAxisSelector)).not.toBeVisible(); 1093 | }); 1094 | 1095 | test("maximum configuration", async ({ initTestBed, page }) => { 1096 | await initTestBed(` 1097 | <AreaChart 1098 | nameKey="month" 1099 | data="{${multiSeriesData}}" 1100 | dataKeys="{['sales', 'profit', 'expenses']}" 1101 | stacked="true" 1102 | curved="true" 1103 | showLegend="true" 1104 | hideX="false" 1105 | hideY="false" 1106 | hideTickX="false" 1107 | hideTickY="false" 1108 | hideTooltip="false" 1109 | tickFormatterX="{(value) => 'Month: ' + value}" 1110 | tickFormatterY="{(value) => '$' + value}" 1111 | width="600px" 1112 | height="400px" 1113 | /> 1114 | `); 1115 | 1116 | await page.waitForSelector(chartRoot, { timeout: 10000 }); 1117 | await page.waitForSelector(chartElementsSelector, { timeout: 5000 }); 1118 | await expect(page.locator(chartElementsSelector)).toHaveCount(3); 1119 | 1120 | await page.waitForSelector(legendSelector, { timeout: 5000 }); 1121 | await expect(page.locator(legendSelector)).toBeVisible(); 1122 | 1123 | await page.waitForSelector(xAxisSelector, { timeout: 5000 }); 1124 | await page.waitForSelector(yAxisSelector, { timeout: 5000 }); 1125 | await expect(page.locator(xAxisSelector)).toBeVisible(); 1126 | await expect(page.locator(yAxisSelector)).toBeVisible(); 1127 | 1128 | await page.waitForTimeout(1000); 1129 | const xTicks = page.locator(xTicksSelector); 1130 | const yTicks = page.locator(yTicksSelector); 1131 | await expect(xTicks.first()).toBeVisible(); 1132 | await expect(yTicks.first()).toBeVisible(); 1133 | }); 1134 | }); 1135 | ``` -------------------------------------------------------------------------------- /docs/public/resources/images/rendering-engine/tree-with-containers.svg: -------------------------------------------------------------------------------- ``` 1 | <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="895px" height="701px" viewBox="-0.5 -0.5 895 701" content="<mxfile><diagram id="ah_b5SfwVnuGbuE4OW9x" name="Page-1">7VxZk6M2EP41riQvW4jbj3MmqcpVmYfsPmqMbFQrI4LlsZ1fHwmEOSRjD9jy1Jh5mEVNC1B/3epDvTNxHpbbnzOYxr/TCJGJbUXbifM4se1gGvDfgrArCN7ULwiLDEcFCVSEF/wfkkRLUtc4QqsGI6OUMJw2iTOaJGjGGjSYZXTTZJtT0nxrChdIIbzMIFGp/+CIxZIK/Gl14xeEF7F8dWjLBS9hySxXsophRDc1kvM0cR4ySllxtdw+ICJkV8qlmPd84O7+wzKUsFMmlDNWbFcuDkV8rXKY0IT/cx+zJeEjwC/RFrOvtetv/Nr64snRo0DYKge7cpCwbPe1PqjNEsNqWj6q5pXYAy6Y+xWDGasTIriKUVR+TBLdCWj5kKYoKSjPmBD5sGKdYnEHRVXKgq6zmeSypXbBbIEkl7OHias3okvEP5mzZIhAht+aT4dS0RZ7vgoLfiHh0EPjOJ3Q0IzFdEETSJ4qqg4p64vt1cACl4KqlH6E4ZImUQMAoIOvBe/ZAHJNAeSOAPUCyDMFUDgC1AugqSmApiNAvQACliGEXGtEqB9CwBBC8t1vkKzlQ+/SlOAZfwtN+I2/RSzZxjCj6yTKQycht02MGXpJYb6cDY/YmxjOufgeKKFZPtcBrxAgIas5TViNPs9/chln9Duq3bEs/+nueS/dN5QxtO2Wryo4OSGUCrlr6uemFob7khbXIvCSb5Ckz+RO+oXOlfZ/ayj/UVN4JXT23ZAhOBpDGOrt86l8MXBXY0gpTtiq9uS/BKFSE99v6onfSoOOsIPwCL/Vyc8vig+u9Gq/8tMco2LUD9zYIE5QNtCW+WNKhbVV255b0LGgattW/qOz7fvHoLhzBtt2r2jcrkbiy5SnvznsYtsbJvgziAe0ldQyKB/HGwOB4/ufp+5/vqE4wPFHgHoBFJgCKBgB6gVQaAggT3EBv8EdXYv9/+P7At+gL/BVXxljEnHSrwwtP4qI9kuVItrX3I3kCnansV+3rv6uuvllzDxQzXxwonAqNsEJ6ssZfMI/7P6VB9z+QlxtMNcacVPeKOlvMFuVRP7qPX2YAXyopFsxpdCgKYUnwPXHh9ttHKOVie6jopvfbaaa3cZUXD5V1bcZTBzeatBWFPIw0+06hMJIFAM+9b7TjnJckxlv2WxwGDnV6q4dBromw0C7+/zz5ncdULam1LcdU9mm293YMWabhyGyDUFUvlxf5W37hB9r3mBW24fYLkU/feI93zOZtrndadtoNTULaVmNqbYod2yL6guRqcao8uUnVNJUe7t24uaZzG3t7lOVMYTSHSibqgcDzSmsrs7ZI3tbr9Bnrxk5dtOufKMFke7DsNGuXI1dmer6A5qz9rEA+y5jCkwWQsoS1tj3dNieNMeWgyuMvRqfglZnkmN1dzIp/Mc6pcJO/uGdT2dqOL01ZRtaV+qlbGFbGY4oW5vfPdZm180/WNmAeuR/C312XsubGD3OA5rugRuQebtj1OhRhqYbY9xUW5uqriNhaKbZz4O3Nj3PPeLBW/z+MY+vtEaf2YOfqYbaS9lA7/rc1ZVtaPrVS9mm7Wr7EWVr8wf2mT2ypjnnBr2D0UMPoOmwuQWZt/dNkwUqoGsLuT2ZG61juGrd6S5n4Js8Q2IdGU356rCozVpzwt2CbUV0I/4XHaPiVyy4ZrJWNTuIF5cPa4LSFKosP9aRkSRI8CLhQ4LmeWVLfM0MkjtJXuIoyt2lTgeaWnIOsII2WCpWngYr5xxYqZnZiFUHVkE7pdM1Al0MLDWlG8HqAgs0wXJ03v5iYKkR1ghWB1hhOzTTuayLgaWGZn8mZHcILYJXDAlUsEBLc1j5w2qiOUApCSIkyCEtfb//75oWDM58HooooEbSnmQWj2g+tnkmI794NyqXTrm8E5UreL9y8WH1d6WK1Kz641zO0/8=</diagram></mxfile>"><defs/><g><path d="M 160 20 L 397.76 20" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" stroke-dasharray="3 3" pointer-events="stroke"/><path d="M 385.88 26.5 L 398.88 20 L 385.88 13.5" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 40 40 L 40 70 Q 40 80 50 80 L 66.29 80" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 79.29 80 L 72.79 86.5 L 66.29 80 L 72.79 73.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 40 40 L 40 130 Q 40 140 50 140 L 66.29 140" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 79.29 140 L 72.79 146.5 L 66.29 140 L 72.79 133.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 40 40 L 40 370 Q 40 380 50 380 L 66.29 380" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 79.29 380 L 72.79 386.5 L 66.29 380 L 72.79 373.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 40 40 L 40 430 Q 40 440 50 440 L 66.29 440" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 79.29 440 L 72.79 446.5 L 66.29 440 L 72.79 433.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 40 40 L 40 490 Q 40 500 50 500 L 66.29 500" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 79.29 500 L 72.79 506.5 L 66.29 500 L 72.79 493.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><rect x="0" y="0" width="160" height="40" fill="#1ba1e2" stroke="#006eaf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 20px; margin-left: 1px;"><div data-drawio-colors="color: #ffffff; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(255, 255, 255); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Application Root</div></div></div></foreignObject><text x="80" y="24" fill="#ffffff" font-family="Helvetica" font-size="12px" text-anchor="middle">Application Root</text></switch></g><path d="M 560 20 L 570 20 Q 580 20 580 30 L 580 130 Q 580 140 570 140 L 530 140 Q 520 140 520 150 L 520 225.88" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 520 238.88 L 513.5 225.88 L 526.5 225.88 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><rect x="400" y="0" width="160" height="40" fill="#f0a30a" stroke="#bd7000" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 20px; margin-left: 401px;"><div data-drawio-colors="color: #000000; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-style: italic; white-space: normal; overflow-wrap: normal;">Container</div></div></div></foreignObject><text x="480" y="24" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle" font-style="italic">Container</text></switch></g><rect x="80" y="60" width="160" height="40" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 80px; margin-left: 81px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Component #1</div></div></div></foreignObject><text x="160" y="84" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">Component #1</text></switch></g><path d="M 120 160 L 120 190 Q 120 200 130 200 L 146.29 200" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 159.29 200 L 152.79 206.5 L 146.29 200 L 152.79 193.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 120 160 L 120 250 Q 120 260 130 260 L 146.29 260" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 159.29 260 L 152.79 266.5 L 146.29 260 L 152.79 253.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 120 160 L 120 310 Q 120 320 130 320 L 146.29 320" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 159.29 320 L 152.79 326.5 L 146.29 320 L 152.79 313.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><rect x="80" y="120" width="160" height="40" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 140px; margin-left: 81px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Layout Component #1</div></div></div></foreignObject><text x="160" y="144" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">Layout Component #1</text></switch></g><rect x="160" y="180" width="160" height="40" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 200px; margin-left: 161px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Child Item #1</div></div></div></foreignObject><text x="240" y="204" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">Child Item #1</text></switch></g><path d="M 320 260 L 437.76 260" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" stroke-dasharray="3 3" pointer-events="stroke"/><path d="M 425.88 266.5 L 438.88 260 L 425.88 253.5" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><rect x="160" y="240" width="160" height="40" fill="#1ba1e2" stroke="#006eaf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 260px; margin-left: 161px;"><div data-drawio-colors="color: #ffffff; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(255, 255, 255); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Child Item #2<br />with <b>vars</b></div></div></div></foreignObject><text x="240" y="264" fill="#ffffff" font-family="Helvetica" font-size="12px" text-anchor="middle">Child Item #2...</text></switch></g><rect x="160" y="300" width="160" height="40" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 320px; margin-left: 161px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Child Item #N</div></div></div></foreignObject><text x="240" y="324" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">Child Item #N</text></switch></g><path d="M 240 380 L 517.76 380" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" stroke-dasharray="3 3" pointer-events="stroke"/><path d="M 505.88 386.5 L 518.88 380 L 505.88 373.5" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><rect x="80" y="360" width="160" height="40" fill="#1ba1e2" stroke="#006eaf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 380px; margin-left: 81px;"><div data-drawio-colors="color: #ffffff; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(255, 255, 255); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Component #2<br />with explicit <b>loader</b></div></div></div></foreignObject><text x="160" y="384" fill="#ffffff" font-family="Helvetica" font-size="12px" text-anchor="middle">Component #2...</text></switch></g><rect x="80" y="420" width="160" height="40" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 440px; margin-left: 81px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Component #3</div></div></div></foreignObject><text x="160" y="444" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">Component #3</text></switch></g><path d="M 240 500 L 517.76 500" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" stroke-dasharray="3 3" pointer-events="stroke"/><path d="M 505.88 506.5 L 518.88 500 L 505.88 493.5" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 120 520 L 120 550 Q 120 560 130 560 L 146.29 560" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 159.29 560 L 152.79 566.5 L 146.29 560 L 152.79 553.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><rect x="80" y="480" width="160" height="40" fill="#1ba1e2" stroke="#006eaf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 500px; margin-left: 81px;"><div data-drawio-colors="color: #ffffff; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(255, 255, 255); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Container<br />(explicit component type)</div></div></div></foreignObject><text x="160" y="504" fill="#ffffff" font-family="Helvetica" font-size="12px" text-anchor="middle">Container...</text></switch></g><path d="M 200 580 L 200 610 Q 200 620 210 620 L 226.29 620" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 239.29 620 L 232.79 626.5 L 226.29 620 L 232.79 613.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 200 580 L 200 670 Q 200 680 210 680 L 226.29 680" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 239.29 680 L 232.79 686.5 L 226.29 680 L 232.79 673.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><rect x="160" y="540" width="160" height="40" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 560px; margin-left: 161px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Layout Component #2</div></div></div></foreignObject><text x="240" y="564" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px" text-anchor="middle">Layout Component #2</text></switch></g><path d="M 400 620 L 597.76 620" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" stroke-dasharray="3 3" pointer-events="stroke"/><path d="M 585.88 626.5 L 598.88 620 L 585.88 613.5" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><rect x="240" y="600" width="160" height="40" fill="#1ba1e2" stroke="#006eaf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 620px; margin-left: 241px;"><div data-drawio-colors="color: #ffffff; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(255, 255, 255); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Child Item #1<br />with explicit <b>uses</b></div></div></div></foreignObject><text x="320" y="624" fill="#ffffff" font-family="Helvetica" font-size="12px" text-anchor="middle">Child Item #1...</text></switch></g><path d="M 400 680 L 597.76 680" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" stroke-dasharray="3 3" pointer-events="stroke"/><path d="M 585.88 686.5 L 598.88 680 L 585.88 673.5" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><rect x="240" y="660" width="160" height="40" fill="#1ba1e2" stroke="#006eaf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 680px; margin-left: 241px;"><div data-drawio-colors="color: #ffffff; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(255, 255, 255); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Child Item #2<br />with <b>vars</b></div></div></div></foreignObject><text x="320" y="684" fill="#ffffff" font-family="Helvetica" font-size="12px" text-anchor="middle">Child Item #2...</text></switch></g><path d="M 600 260 L 610 260 Q 620 260 620 270 L 620 310 Q 620 320 610 320 L 605 320 Q 600 320 600 330 L 600 345.88" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 600 358.88 L 593.5 345.88 L 606.5 345.88 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 600 260 L 790 260 Q 800 260 800 270 L 800 430 Q 800 440 790 440 L 610 440 Q 600 440 600 450 L 600 465.88" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 600 478.88 L 593.5 465.88 L 606.5 465.88 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><rect x="440" y="240" width="160" height="40" fill="#f0a30a" stroke="#bd7000" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 260px; margin-left: 441px;"><div data-drawio-colors="color: #000000; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-style: italic; white-space: normal; overflow-wrap: normal;">Container</div></div></div></foreignObject><text x="520" y="264" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle" font-style="italic">Container</text></switch></g><rect x="520" y="360" width="160" height="40" fill="#f0a30a" stroke="#bd7000" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 380px; margin-left: 521px;"><div data-drawio-colors="color: #000000; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-style: italic; white-space: normal; overflow-wrap: normal;">Container</div></div></div></foreignObject><text x="600" y="384" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle" font-style="italic">Container</text></switch></g><path d="M 680 500 L 690 500 Q 700 500 700 510 L 700 550 Q 700 560 690 560 L 685 560 Q 680 560 680 570 L 680 585.88" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 680 598.88 L 673.5 585.88 L 686.5 585.88 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 680 500 L 870 500 Q 880 500 880 510 L 880 670 Q 880 680 870 680 L 774.12 680" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 761.12 680 L 774.12 673.5 L 774.12 686.5 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><rect x="520" y="480" width="160" height="40" fill="#f0a30a" stroke="#bd7000" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 500px; margin-left: 521px;"><div data-drawio-colors="color: #000000; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-style: italic; white-space: normal; overflow-wrap: normal;">Container</div></div></div></foreignObject><text x="600" y="504" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle" font-style="italic">Container</text></switch></g><rect x="600" y="600" width="160" height="40" fill="#f0a30a" stroke="#bd7000" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 620px; margin-left: 601px;"><div data-drawio-colors="color: #000000; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-style: italic; white-space: normal; overflow-wrap: normal;">Container</div></div></div></foreignObject><text x="680" y="624" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle" font-style="italic">Container</text></switch></g><rect x="600" y="660" width="160" height="40" fill="#f0a30a" stroke="#bd7000" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 680px; margin-left: 601px;"><div data-drawio-colors="color: #000000; " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-style: italic; white-space: normal; overflow-wrap: normal;">Container</div></div></div></foreignObject><text x="680" y="684" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle" font-style="italic">Container</text></switch></g><rect x="590" y="30" width="150" height="30" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 148px; height: 1px; padding-top: 45px; margin-left: 592px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">All state properties flow down to the child container</div></div></div></foreignObject><text x="592" y="49" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px">All state properties flow...</text></switch></g><rect x="640" y="220" width="150" height="30" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 148px; height: 1px; padding-top: 235px; margin-left: 642px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">All state properties flow down to the child container</div></div></div></foreignObject><text x="642" y="239" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px">All state properties flow...</text></switch></g><rect x="630" y="280" width="150" height="30" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 148px; height: 1px; padding-top: 295px; margin-left: 632px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">All state properties flow down to the child container</div></div></div></foreignObject><text x="632" y="299" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px">All state properties flow...</text></switch></g><rect x="720" y="460" width="150" height="30" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 148px; height: 1px; padding-top: 475px; margin-left: 722px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">All state properties flow down to the child container</div></div></div></foreignObject><text x="722" y="479" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px">All state properties flow...</text></switch></g><rect x="720" y="510" width="150" height="70" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 148px; height: 1px; padding-top: 545px; margin-left: 722px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">Only state properties listed in Child Item #1's <b><font color="#ff8000">uses</font></b> propery flow down to the child container</div></div></div></foreignObject><text x="722" y="549" fill="rgb(0, 0, 0)" font-family="Helvetica" font-size="12px">Only state properties lis...</text></switch></g></g><switch><g requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"/><a transform="translate(0,-5)" xlink:href="https://www.diagrams.net/doc/faq/svg-export-text-problems" target="_blank"><text text-anchor="middle" font-size="10px" x="50%" y="100%">Text is not SVG - cannot display</text></a></switch></svg> ```