This is page 101 of 188. Use http://codebase.md/xmlui-org/xmlui/xmlui-latest.js?lines=true&page={x} to view the full context.
# Directory Structure
```
├── .changeset
│ ├── config.json
│ ├── cyan-tools-design.md
│ ├── every-moments-teach.md
│ ├── full-symbols-accept.md
│ └── tricky-zoos-crash.md
├── .eslintrc.cjs
├── .github
│ ├── build-checklist.png
│ ├── ISSUE_TEMPLATE
│ │ ├── bug_report.md
│ │ └── feature_request.md
│ └── workflows
│ ├── deploy-blog-optimized.yml
│ ├── deploy-blog-swa.yml
│ ├── deploy-blog.yml
│ ├── deploy-docs-optimized.yml
│ ├── deploy-docs-swa.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
│ │ │ │ ├── an-advanced-codefence.gif
│ │ │ │ ├── an-advanced-codefence.mp4
│ │ │ │ ├── blog-page-component.png
│ │ │ │ ├── blog-scrabble.png
│ │ │ │ ├── codefence-runner.png
│ │ │ │ ├── integrated-blog-search.png
│ │ │ │ ├── lorem-ipsum.png
│ │ │ │ ├── playground-checkbox-source.png
│ │ │ │ ├── playground.png
│ │ │ │ ├── use-xmlui-mcp-to-find-a-howto.png
│ │ │ │ └── xmlui-demo-gallery.png
│ │ │ ├── introducing-xmlui.md
│ │ │ ├── lorem-ipsum.md
│ │ │ ├── newest-post.md
│ │ │ ├── older-post.md
│ │ │ ├── xmlui-playground.md
│ │ │ └── xmlui-powered-blog.md
│ │ ├── mockServiceWorker.js
│ │ ├── resources
│ │ │ ├── favicon.ico
│ │ │ ├── files
│ │ │ │ └── for-download
│ │ │ │ └── xmlui
│ │ │ │ └── xmlui-standalone.umd.js
│ │ │ ├── github.svg
│ │ │ ├── llms.txt
│ │ │ ├── logo-dark.svg
│ │ │ ├── logo.svg
│ │ │ ├── pg-popout.svg
│ │ │ ├── rss.svg
│ │ │ └── xmlui-logo.svg
│ │ ├── serve.json
│ │ ├── staticwebapp.config.json
│ │ └── web.config
│ ├── scripts
│ │ ├── download-latest-xmlui.js
│ │ ├── generate-rss.js
│ │ ├── get-releases.js
│ │ └── utils.js
│ ├── src
│ │ ├── components
│ │ │ ├── BlogOverview.xmlui
│ │ │ ├── BlogPage.xmlui
│ │ │ └── PageNotFound.xmlui
│ │ ├── config.ts
│ │ ├── Main.xmlui
│ │ └── themes
│ │ └── blog-theme.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
│ │ │ │ ├── control-cache-invalidation.md
│ │ │ │ ├── debounce-user-input-for-api-calls.md
│ │ │ │ ├── debounce-with-changelistener.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
│ ├── tsconfig.json
│ ├── 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
│ ├── 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
│ │ └── 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
│ ├── 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
│ ├── 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
│ ├── 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.module.scss
│ │ │ ├── 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.tsx
│ │ │ ├── StandalonePlayground.tsx
│ │ │ ├── StandalonePlaygroundNative.module.scss
│ │ │ ├── StandalonePlaygroundNative.tsx
│ │ │ ├── ThemeSwitcher.module.scss
│ │ │ ├── ThemeSwitcher.tsx
│ │ │ └── utils.ts
│ │ ├── providers
│ │ │ ├── Toast.module.scss
│ │ │ └── ToastProvider.tsx
│ │ ├── state
│ │ │ └── store.ts
│ │ ├── themes
│ │ │ └── theme.ts
│ │ └── utils
│ │ └── helpers.ts
│ ├── 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
│ ├── xmlui-spreadsheet
│ │ ├── .gitignore
│ │ ├── demo
│ │ │ └── Main.xmlui
│ │ ├── index.html
│ │ ├── index.ts
│ │ ├── meta
│ │ │ └── componentsMetadata.ts
│ │ ├── package.json
│ │ └── src
│ │ ├── index.tsx
│ │ ├── Spreadsheet.tsx
│ │ └── SpreadsheetNative.tsx
│ └── 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.spec.ts
│ │ ├── HeroSection.tsx
│ │ └── HeroSectionNative.tsx
│ ├── index.tsx
│ ├── ScrollToTop
│ │ ├── ScrollToTop.module.scss
│ │ ├── ScrollToTop.tsx
│ │ └── ScrollToTopNative.tsx
│ └── vite-env.d.ts
├── playwright.config.ts
├── 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.cjs
│ ├── 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
│ ├── component-metadata.md
│ ├── components-with-options.md
│ ├── containers.md
│ ├── data-operations.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
│ ├── theme-variables-refactoring.md
│ ├── ud-components.md
│ └── xmlui-repo.md
├── package.json
├── scripts
│ ├── coverage-only.js
│ ├── e2e-test-summary.js
│ ├── extract-component-metadata.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
│ ├── generate-metadata-markdown.js
│ ├── get-langserver-metadata.js
│ ├── 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.module.scss
│ │ │ │ ├── LabelList.spec.ts
│ │ │ │ ├── LabelList.tsx
│ │ │ │ └── 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
│ │ │ └── test-padding.xmlui
│ │ ├── 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
│ │ │ ├── OptionContext.ts
│ │ │ ├── Select.md
│ │ │ ├── Select.module.scss
│ │ │ ├── Select.spec.ts
│ │ │ ├── Select.tsx
│ │ │ ├── SelectContext.tsx
│ │ │ └── SelectNative.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
│ │ │ ├── base64-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.js
│ ├── 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
│ │ │ ├── index.ts
│ │ │ ├── ModalDialogDriver.ts
│ │ │ ├── NumberBoxDriver.ts
│ │ │ ├── TextBoxDriver.ts
│ │ │ ├── TimeInputDriver.ts
│ │ │ ├── TimerDriver.ts
│ │ │ └── TreeDriver.ts
│ │ ├── fixtures.ts
│ │ ├── index.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.json
├── tsdown.config.ts
├── vite.config.ts
└── vitest.config.ts
```
# Files
--------------------------------------------------------------------------------
/xmlui/src/components/Logo/doc-resources/xmlui-logo.svg:
--------------------------------------------------------------------------------
```
1 | <?xml version="1.0" encoding="UTF-8"?>
2 | <!-- Generator: visioncortex VTracer 0.6.3 -->
3 | <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="1280" height="530">
4 | <path d="M0 0 C422.4 0 844.8 0 1280 0 C1280 174.9 1280 349.8 1280 530 C857.6 530 435.2 530 0 530 C0 355.1 0 180.2 0 0 Z " fill="#FBFCFE" transform="translate(0,0)"/>
5 | <path d="M0 0 C52.07 -0.05 104.14 -0.08 156.21 -0.1 C162.35 -0.1 168.49 -0.11 174.63 -0.11 C175.86 -0.11 177.08 -0.11 178.34 -0.11 C198.16 -0.12 217.98 -0.14 237.8 -0.15 C258.13 -0.17 278.45 -0.18 298.78 -0.19 C311.33 -0.19 323.88 -0.2 336.43 -0.22 C345.03 -0.23 353.62 -0.23 362.22 -0.23 C367.18 -0.23 372.15 -0.23 377.12 -0.24 C381.65 -0.25 386.19 -0.25 390.73 -0.24 C392.38 -0.24 394.03 -0.24 395.68 -0.25 C397.91 -0.26 400.14 -0.25 402.37 -0.25 C403.61 -0.25 404.85 -0.25 406.13 -0.25 C409 0 409 0 411 2 C411.25 4.7 411.25 4.7 411.25 8.22 C411.25 8.87 411.25 9.52 411.26 10.19 C411.26 12.38 411.26 14.58 411.25 16.77 C411.25 18.35 411.25 19.94 411.25 21.52 C411.26 25.88 411.25 30.24 411.25 34.6 C411.24 39.29 411.25 43.99 411.25 48.69 C411.25 57.89 411.25 67.1 411.24 76.3 C411.23 87.01 411.23 97.72 411.23 108.43 C411.23 127.53 411.22 146.63 411.21 165.73 C411.19 184.29 411.18 202.84 411.19 221.4 C411.19 222.54 411.19 223.69 411.19 224.86 C411.19 226 411.19 227.14 411.19 228.32 C411.19 249.41 411.18 270.51 411.17 291.6 C411.17 299.08 411.17 306.55 411.17 314.03 C411.17 323.13 411.16 332.23 411.15 341.33 C411.15 345.98 411.14 350.62 411.15 355.27 C411.15 359.52 411.14 363.77 411.14 368.02 C411.13 369.56 411.13 371.1 411.14 372.65 C411.14 374.73 411.13 376.82 411.13 378.9 C411.13 380.06 411.13 381.23 411.13 382.42 C411 385 411 385 410 386 C407.84 386.1 405.68 386.13 403.51 386.13 C402.48 386.13 402.48 386.13 401.43 386.13 C399.09 386.14 396.75 386.14 394.41 386.13 C392.73 386.14 391.05 386.14 389.37 386.14 C384.72 386.15 380.08 386.15 375.43 386.15 C370.43 386.15 365.44 386.15 360.44 386.16 C350.63 386.16 340.83 386.17 331.03 386.17 C323.06 386.17 315.1 386.17 307.13 386.17 C284.58 386.18 262.02 386.19 239.46 386.19 C238.24 386.19 237.03 386.19 235.77 386.19 C234.55 386.19 233.34 386.19 232.08 386.19 C212.32 386.18 192.56 386.19 172.8 386.21 C152.54 386.22 132.27 386.23 112.01 386.23 C100.62 386.23 89.23 386.23 77.85 386.24 C68.15 386.25 58.46 386.25 48.76 386.25 C43.81 386.24 38.86 386.24 33.91 386.25 C29.39 386.26 24.86 386.26 20.33 386.25 C18.69 386.25 17.05 386.25 15.41 386.26 C13.18 386.26 10.96 386.26 8.74 386.25 C7.5 386.25 6.26 386.25 4.99 386.25 C2 386 2 386 -1 384 C-1.37 381.3 -1.37 381.3 -1.37 377.79 C-1.38 377.15 -1.38 376.5 -1.38 375.83 C-1.39 373.65 -1.38 371.46 -1.37 369.27 C-1.37 367.69 -1.37 366.12 -1.38 364.54 C-1.39 360.2 -1.38 355.85 -1.36 351.5 C-1.35 346.82 -1.36 342.14 -1.36 337.46 C-1.37 328.28 -1.36 319.1 -1.34 309.92 C-1.32 299.24 -1.32 288.57 -1.32 277.89 C-1.32 258.84 -1.31 239.8 -1.28 220.75 C-1.26 202.25 -1.24 183.75 -1.24 165.25 C-1.24 164.11 -1.24 162.97 -1.24 161.8 C-1.24 159.5 -1.24 157.21 -1.24 154.91 C-1.24 153.78 -1.24 152.65 -1.24 151.48 C-1.24 150.35 -1.24 149.22 -1.24 148.06 C-1.23 130.46 -1.22 112.85 -1.21 95.25 C-1.2 88.86 -1.2 82.47 -1.2 76.08 C-1.19 65.94 -1.19 55.81 -1.17 45.67 C-1.17 41.04 -1.16 36.4 -1.16 31.77 C-1.16 27.53 -1.15 23.3 -1.14 19.06 C-1.14 17.52 -1.14 15.98 -1.14 14.45 C-1.14 12.37 -1.14 10.29 -1.13 8.21 C-1.13 7.05 -1.13 5.89 -1.13 4.7 C-1 2 -1 2 0 0 Z " fill="#FBFCFE" transform="translate(786,51)"/>
6 | <path d="M0 0 C52.07 -0.05 104.14 -0.08 156.21 -0.1 C162.35 -0.1 168.49 -0.11 174.63 -0.11 C175.86 -0.11 177.08 -0.11 178.34 -0.11 C198.16 -0.12 217.98 -0.14 237.8 -0.15 C258.13 -0.17 278.45 -0.18 298.78 -0.19 C311.33 -0.19 323.88 -0.2 336.43 -0.22 C345.03 -0.23 353.62 -0.23 362.22 -0.23 C367.18 -0.23 372.15 -0.23 377.12 -0.24 C381.65 -0.25 386.19 -0.25 390.73 -0.24 C392.38 -0.24 394.03 -0.24 395.68 -0.25 C397.91 -0.26 400.14 -0.25 402.37 -0.25 C403.61 -0.25 404.85 -0.25 406.13 -0.25 C409 0 409 0 411 2 C411.25 4.7 411.25 4.7 411.25 8.22 C411.25 8.87 411.25 9.52 411.26 10.19 C411.26 12.38 411.26 14.58 411.25 16.77 C411.25 18.35 411.25 19.94 411.25 21.52 C411.26 25.88 411.25 30.24 411.25 34.6 C411.24 39.29 411.25 43.99 411.25 48.69 C411.25 57.89 411.25 67.1 411.24 76.3 C411.23 87.01 411.23 97.72 411.23 108.43 C411.23 127.53 411.22 146.63 411.21 165.73 C411.19 184.29 411.18 202.84 411.19 221.4 C411.19 222.54 411.19 223.69 411.19 224.86 C411.19 226 411.19 227.14 411.19 228.32 C411.19 249.41 411.18 270.51 411.17 291.6 C411.17 299.08 411.17 306.55 411.17 314.03 C411.17 323.13 411.16 332.23 411.15 341.33 C411.15 345.98 411.14 350.62 411.15 355.27 C411.15 359.52 411.14 363.77 411.14 368.02 C411.13 369.56 411.13 371.1 411.14 372.65 C411.14 374.73 411.13 376.82 411.13 378.9 C411.13 380.06 411.13 381.23 411.13 382.42 C411 385 411 385 410 386 C407.84 386.1 405.68 386.13 403.51 386.13 C402.48 386.13 402.48 386.13 401.43 386.13 C399.09 386.14 396.75 386.14 394.41 386.13 C392.73 386.14 391.05 386.14 389.37 386.14 C384.72 386.15 380.08 386.15 375.43 386.15 C370.43 386.15 365.44 386.15 360.44 386.16 C350.63 386.16 340.83 386.17 331.03 386.17 C323.06 386.17 315.1 386.17 307.13 386.17 C284.58 386.18 262.02 386.19 239.46 386.19 C238.24 386.19 237.03 386.19 235.77 386.19 C234.55 386.19 233.34 386.19 232.08 386.19 C212.32 386.18 192.56 386.19 172.8 386.21 C152.54 386.22 132.27 386.23 112.01 386.23 C100.62 386.23 89.23 386.23 77.85 386.24 C68.15 386.25 58.46 386.25 48.76 386.25 C43.81 386.24 38.86 386.24 33.91 386.25 C29.39 386.26 24.86 386.26 20.33 386.25 C18.69 386.25 17.05 386.25 15.41 386.26 C13.18 386.26 10.96 386.26 8.74 386.25 C7.5 386.25 6.26 386.25 4.99 386.25 C2 386 2 386 -1 384 C-1.37 381.3 -1.37 381.3 -1.37 377.79 C-1.38 377.15 -1.38 376.5 -1.38 375.83 C-1.39 373.65 -1.38 371.46 -1.37 369.27 C-1.37 367.69 -1.37 366.12 -1.38 364.54 C-1.39 360.2 -1.38 355.85 -1.36 351.5 C-1.35 346.82 -1.36 342.14 -1.36 337.46 C-1.37 328.28 -1.36 319.1 -1.34 309.92 C-1.32 299.24 -1.32 288.57 -1.32 277.89 C-1.32 258.84 -1.31 239.8 -1.28 220.75 C-1.26 202.25 -1.24 183.75 -1.24 165.25 C-1.24 164.11 -1.24 162.97 -1.24 161.8 C-1.24 159.5 -1.24 157.21 -1.24 154.91 C-1.24 153.78 -1.24 152.65 -1.24 151.48 C-1.24 150.35 -1.24 149.22 -1.24 148.06 C-1.23 130.46 -1.22 112.85 -1.21 95.25 C-1.2 88.86 -1.2 82.47 -1.2 76.08 C-1.19 65.94 -1.19 55.81 -1.17 45.67 C-1.17 41.04 -1.16 36.4 -1.16 31.77 C-1.16 27.53 -1.15 23.3 -1.14 19.06 C-1.14 17.52 -1.14 15.98 -1.14 14.45 C-1.14 12.37 -1.14 10.29 -1.13 8.21 C-1.13 7.05 -1.13 5.89 -1.13 4.7 C-1 2 -1 2 0 0 Z M22 23 C21.95 66.03 21.92 109.05 21.9 152.08 C21.9 157.15 21.89 162.22 21.89 167.3 C21.89 168.31 21.89 169.32 21.89 170.36 C21.88 186.74 21.86 203.12 21.85 219.5 C21.83 236.29 21.82 253.08 21.81 269.88 C21.81 280.25 21.8 290.62 21.78 300.99 C21.77 308.09 21.77 315.2 21.77 322.3 C21.77 326.4 21.77 330.51 21.76 334.61 C21.75 338.36 21.75 342.11 21.76 345.86 C21.76 347.87 21.75 349.88 21.74 351.9 C21.75 353.08 21.75 354.26 21.75 355.48 C21.75 356.5 21.75 357.53 21.75 358.58 C21.76 361.18 21.76 361.18 24 363 C26.71 363.3 26.71 363.3 29.93 363.25 C31.2 363.25 32.47 363.25 33.79 363.26 C35.21 363.25 36.63 363.25 38.06 363.24 C39.56 363.24 41.07 363.24 42.57 363.25 C46.71 363.25 50.86 363.24 55.01 363.23 C59.47 363.22 63.94 363.23 68.4 363.23 C76.14 363.23 83.88 363.22 91.62 363.21 C102.81 363.2 114.01 363.19 125.2 363.19 C143.36 363.18 161.51 363.17 179.67 363.15 C197.31 363.13 214.95 363.12 232.59 363.11 C234.24 363.11 234.24 363.11 235.92 363.11 C244.5 363.1 253.09 363.1 261.68 363.1 C303.78 363.08 345.89 363.04 388 363 C388 251.13 388 139.26 388 24 C385.27 22.64 383.13 22.88 380.07 22.88 C378.8 22.87 377.53 22.87 376.21 22.87 C374.79 22.87 373.37 22.88 371.94 22.88 C370.44 22.88 368.93 22.88 367.43 22.88 C363.29 22.87 359.14 22.88 354.99 22.88 C350.53 22.89 346.06 22.89 341.6 22.89 C333.86 22.89 326.12 22.89 318.38 22.89 C307.19 22.9 295.99 22.91 284.8 22.91 C266.64 22.91 248.49 22.92 230.33 22.92 C212.69 22.93 195.05 22.94 177.41 22.95 C176.32 22.95 175.23 22.95 174.11 22.95 C168.66 22.95 163.21 22.95 157.76 22.95 C112.51 22.96 67.25 22.98 22 23 Z " fill="#024AD8" transform="translate(786,51)"/>
7 | <path d="M0 0 C6.82 5.45 13.74 13.69 14.89 22.54 C15.55 22.54 16.21 22.54 16.89 22.54 C18.51 24.04 18.51 24.04 19.89 25.54 C19.99 24.83 20.1 24.11 20.21 23.37 C22.9 12.18 32.38 4.54 41.73 -1.21 C58.01 -9.97 74.93 -11.74 92.75 -7.44 C106.15 -3.23 113.74 6.47 120.44 18.28 C127.31 32.32 129.05 47.68 129 63.11 C129 64.35 129 65.59 129 66.87 C129 70.24 129 73.62 128.99 77 C128.98 80.54 128.98 84.08 128.98 87.61 C128.98 94.3 128.97 100.99 128.96 107.68 C128.95 115.3 128.94 122.92 128.94 130.54 C128.93 146.21 128.91 161.88 128.89 177.54 C112.39 177.54 95.89 177.54 78.89 177.54 C77.7 175.17 77.76 173.72 77.75 171.07 C77.74 170.13 77.74 169.19 77.73 168.22 C77.73 167.18 77.73 166.14 77.73 165.07 C77.72 163.98 77.72 162.89 77.71 161.77 C77.7 159.4 77.69 157.02 77.69 154.65 C77.68 150.88 77.66 147.11 77.63 143.34 C77.57 132.63 77.52 121.91 77.49 111.2 C77.46 104.64 77.43 98.09 77.38 91.54 C77.37 89.05 77.36 86.56 77.36 84.07 C78.1 59.77 78.1 59.77 67.89 38.54 C62.21 33.13 56.95 33.19 49.34 33.26 C41.67 33.89 33.34 36.89 27.89 42.54 C24.08 48.27 22.78 53.95 22.73 60.78 C22.72 61.81 22.71 62.84 22.7 63.91 C22.69 65.03 22.69 66.15 22.68 67.31 C22.67 68.5 22.66 69.69 22.65 70.92 C22.63 74.17 22.6 77.43 22.58 80.69 C22.56 84.09 22.53 87.5 22.51 90.9 C22.46 97.35 22.41 103.79 22.37 110.24 C22.32 117.58 22.26 124.92 22.21 132.26 C22.1 147.35 21.99 162.45 21.89 177.54 C5.39 177.54 -11.11 177.54 -28.11 177.54 C-29.31 175.15 -29.24 173.66 -29.25 170.98 C-29.26 170.02 -29.26 169.06 -29.27 168.07 C-29.27 167.01 -29.27 165.95 -29.27 164.86 C-29.28 163.75 -29.28 162.63 -29.29 161.49 C-29.3 159.06 -29.31 156.64 -29.31 154.22 C-29.32 150.37 -29.34 146.53 -29.37 142.69 C-29.43 131.76 -29.48 120.83 -29.51 109.9 C-29.54 103.22 -29.57 96.54 -29.62 89.86 C-29.63 87.32 -29.64 84.77 -29.64 82.23 C-29.65 78.66 -29.67 75.09 -29.7 71.52 C-29.69 70.48 -29.69 69.45 -29.69 68.38 C-29.81 57.74 -31.81 47.32 -38.11 38.54 C-43.9 32.9 -49.64 33.19 -57.43 33.27 C-65.16 33.85 -72.02 36.47 -77.68 41.84 C-82.59 47.69 -84.22 54.21 -84.27 61.74 C-84.28 62.76 -84.29 63.79 -84.3 64.84 C-84.31 65.96 -84.31 67.07 -84.32 68.22 C-84.33 69.4 -84.34 70.58 -84.35 71.8 C-84.37 75.03 -84.4 78.25 -84.42 81.48 C-84.44 84.86 -84.47 88.24 -84.49 91.62 C-84.54 98.01 -84.59 104.4 -84.63 110.79 C-84.68 118.07 -84.74 125.35 -84.79 132.63 C-84.9 147.6 -85.01 162.57 -85.11 177.54 C-101.61 177.54 -118.11 177.54 -135.11 177.54 C-136.58 174.61 -136.25 171.65 -136.23 168.43 C-136.23 167.69 -136.24 166.95 -136.24 166.19 C-136.24 163.69 -136.23 161.2 -136.23 158.7 C-136.23 156.92 -136.23 155.13 -136.23 153.35 C-136.23 148.5 -136.22 143.64 -136.21 138.79 C-136.21 133.72 -136.21 128.66 -136.21 123.59 C-136.2 113.99 -136.2 104.39 -136.19 94.78 C-136.17 83.86 -136.17 72.93 -136.16 62 C-136.15 39.51 -136.14 17.03 -136.11 -5.46 C-129.01 -5.48 -121.91 -5.5 -114.81 -5.51 C-112.39 -5.52 -109.97 -5.52 -107.55 -5.53 C-104.08 -5.54 -100.62 -5.55 -97.15 -5.55 C-96.06 -5.56 -94.97 -5.57 -93.85 -5.57 C-92.35 -5.57 -92.35 -5.57 -90.82 -5.57 C-89.49 -5.57 -89.49 -5.57 -88.13 -5.58 C-86.11 -5.46 -86.11 -5.46 -85.11 -4.46 C-84.96 -2.46 -84.86 -0.46 -84.8 1.55 C-84.75 2.76 -84.71 3.98 -84.67 5.23 C-84.63 6.51 -84.59 7.79 -84.55 9.11 C-84.51 10.39 -84.46 11.67 -84.42 12.99 C-84.31 16.18 -84.21 19.36 -84.11 22.54 C-83.45 22.54 -82.79 22.54 -82.11 22.54 C-81.81 21.89 -81.5 21.23 -81.19 20.56 C-75.26 8.75 -66.44 -2.31 -53.62 -6.63 C-35.49 -12.01 -15.91 -10.97 0 0 Z " fill="#000002" transform="translate(507.11328125,175.45703125)"/>
8 | <path d="M0 0 C2.05 -0.37 2.05 -0.37 4.6 -0.37 C6.03 -0.38 6.03 -0.38 7.49 -0.39 C9.04 -0.38 9.04 -0.38 10.62 -0.36 C11.68 -0.36 12.74 -0.36 13.83 -0.36 C16.07 -0.36 18.31 -0.35 20.55 -0.34 C23.99 -0.31 27.42 -0.32 30.86 -0.32 C33.03 -0.32 35.2 -0.31 37.38 -0.3 C38.41 -0.3 39.44 -0.3 40.51 -0.3 C41.94 -0.29 41.94 -0.29 43.4 -0.27 C44.24 -0.27 45.08 -0.27 45.95 -0.26 C48 0 48 0 50 2 C50.26 4.02 50.26 4.02 50.27 6.56 C50.28 8.01 50.28 8.01 50.29 9.48 C50.29 11.07 50.29 11.07 50.29 12.69 C50.29 13.8 50.3 14.91 50.31 16.06 C50.32 18.48 50.33 20.9 50.34 23.33 C50.34 27.17 50.36 31.01 50.39 34.86 C50.44 43.03 50.47 51.2 50.5 59.38 C50.54 68.81 50.58 78.25 50.64 87.69 C50.66 91.46 50.66 95.23 50.67 99.01 C50.69 101.34 50.7 103.68 50.71 106.02 C50.71 107.58 50.71 107.58 50.71 109.17 C50.78 123.28 50.78 123.28 56 136 C63.54 142.92 70.42 144.42 80.53 144.25 C88.07 143.71 95.21 140.94 101 136 C104.66 131.28 107.12 127.06 107.14 121.07 C107.15 120.02 107.16 118.98 107.17 117.9 C107.17 116.76 107.17 115.61 107.17 114.42 C107.18 113.22 107.19 112.01 107.19 110.77 C107.21 108.14 107.22 105.51 107.23 102.89 C107.25 98.73 107.27 94.58 107.29 90.43 C107.37 78.63 107.43 66.82 107.48 55.02 C107.51 48.5 107.54 41.98 107.58 35.47 C107.61 31.34 107.63 27.21 107.64 23.08 C107.65 19.91 107.67 16.75 107.7 13.58 C107.7 12.43 107.7 11.28 107.7 10.1 C107.71 9.05 107.72 8.01 107.73 6.93 C107.73 6.02 107.74 5.11 107.74 4.18 C108 2 108 2 110 0 C112.1 -0.24 112.1 -0.24 114.73 -0.23 C115.71 -0.23 116.69 -0.23 117.7 -0.23 C118.76 -0.22 119.82 -0.21 120.91 -0.2 C122 -0.19 123.08 -0.19 124.2 -0.19 C127.68 -0.18 131.15 -0.15 134.62 -0.12 C136.98 -0.11 139.33 -0.11 141.68 -0.1 C147.45 -0.08 153.23 -0.04 159 0 C160.46 2.93 160.14 5.86 160.13 9.07 C160.13 9.8 160.13 10.54 160.13 11.3 C160.14 13.78 160.13 16.26 160.13 18.73 C160.13 20.51 160.13 22.28 160.13 24.05 C160.14 28.87 160.14 33.69 160.13 38.52 C160.13 43.55 160.13 48.59 160.14 53.63 C160.14 62.08 160.14 70.54 160.13 79 C160.12 88.79 160.13 98.59 160.13 108.38 C160.14 116.77 160.14 125.17 160.13 133.56 C160.13 138.58 160.13 143.6 160.14 148.62 C160.14 153.34 160.14 158.05 160.13 162.77 C160.13 164.51 160.13 166.24 160.13 167.98 C160.14 170.34 160.13 172.7 160.13 175.06 C160.13 175.76 160.13 176.45 160.13 177.17 C160.11 181.89 160.11 181.89 159 183 C157.48 183.1 155.95 183.14 154.42 183.15 C153.45 183.15 152.47 183.16 151.47 183.16 C149.88 183.17 149.88 183.17 148.25 183.17 C147.17 183.17 146.09 183.17 144.98 183.18 C142.68 183.18 140.39 183.19 138.1 183.19 C134.58 183.19 131.06 183.21 127.54 183.22 C125.32 183.23 123.1 183.23 120.88 183.23 C119.82 183.24 118.76 183.24 117.67 183.25 C116.69 183.25 115.72 183.25 114.71 183.24 C113.41 183.25 113.41 183.25 112.09 183.25 C110 183 110 183 108 181 C107.68 178.29 107.68 178.29 107.59 174.9 C107.55 173.69 107.51 172.48 107.47 171.23 C107.44 169.96 107.41 168.68 107.38 167.38 C107.34 166.1 107.3 164.82 107.26 163.5 C107.16 160.33 107.08 157.17 107 154 C106.54 154.89 106.08 155.79 105.6 156.71 C98.5 170.05 89.68 179.94 75.05 185.03 C59.3 189.32 42.03 188.18 27.38 181 C13.45 172.97 6.1 161.87 1.75 146.69 C-2.65 130.06 -2.3 113.24 -2.27 96.17 C-2.27 93.49 -2.27 90.8 -2.27 88.12 C-2.28 82.52 -2.27 76.93 -2.26 71.34 C-2.25 64.87 -2.25 58.41 -2.26 51.94 C-2.27 46.37 -2.27 40.8 -2.27 35.23 C-2.27 31.91 -2.27 28.59 -2.27 25.27 C-2.28 21.58 -2.27 17.9 -2.26 14.21 C-2.26 13.11 -2.27 12.02 -2.27 10.89 C-2.27 9.88 -2.26 8.88 -2.25 7.85 C-2.25 6.98 -2.25 6.11 -2.25 5.22 C-2 3 -2 3 0 0 Z " fill="#014AD8" transform="translate(859,170)"/>
9 | <path d="M0 0 C7.27 -0.35 14.55 -0.61 21.83 -0.78 C25.21 -0.86 28.59 -0.96 31.97 -1.13 C53.8 -2.16 53.8 -2.16 59.06 1.38 C62.24 4.83 63.91 8.76 65.37 13.18 C66.19 15.55 67.4 17.55 68.75 19.66 C69.5 20.94 70.25 22.22 71 23.5 C74.27 29.07 77.56 34.64 80.88 40.19 C81.23 40.79 81.59 41.39 81.96 42 C83.65 44.83 85.4 47.58 87.26 50.3 C89 53 89 53 89 55 C90.98 55.5 90.98 55.5 93 56 C93.66 54.85 93.66 54.85 94.33 53.68 C95.32 51.94 96.32 50.2 97.31 48.46 C99.52 44.59 101.73 40.72 103.92 36.85 C108.93 28.04 113.96 19.26 119.38 10.69 C121.08 7.96 121.08 7.96 122.53 4.78 C124 2 124 2 127 0 C129.24 -0.25 129.24 -0.25 131.88 -0.26 C133.37 -0.27 133.37 -0.27 134.89 -0.28 C136.49 -0.27 136.49 -0.27 138.12 -0.27 C139.22 -0.27 140.32 -0.27 141.45 -0.27 C143.78 -0.27 146.1 -0.27 148.42 -0.26 C151.99 -0.25 155.55 -0.26 159.11 -0.27 C161.36 -0.27 163.62 -0.27 165.88 -0.27 C166.94 -0.27 168.01 -0.27 169.11 -0.28 C170.1 -0.27 171.1 -0.27 172.12 -0.26 C172.99 -0.26 173.86 -0.26 174.76 -0.25 C177 0 177 0 180 2 C179.51 2.66 179.02 3.32 178.52 4 C173.58 10.71 168.94 17.56 164.44 24.56 C160.82 30.17 157.2 35.76 153.35 41.21 C150.4 45.39 147.66 49.64 145 54 C142.3 58.36 139.59 62.69 136.62 66.88 C135.42 68.58 134.21 70.29 133 72 C132.51 72.69 132.02 73.38 131.52 74.09 C129.83 76.49 128.16 78.9 126.5 81.31 C125.95 82.09 125.39 82.87 124.82 83.67 C124.06 84.79 124.06 84.79 123.28 85.93 C122.82 86.59 122.35 87.25 121.88 87.94 C120.71 90.69 121.13 92.18 122 95 C123.27 97.25 124.56 99.36 126 101.5 C126.4 102.11 126.8 102.71 127.21 103.34 C130.71 108.64 134.31 113.86 137.96 119.06 C140.01 122.02 142.01 125 144 128 C144.77 129.15 145.53 130.3 146.3 131.45 C152.37 140.55 158.44 149.66 164.51 158.76 C164.94 159.41 165.37 160.06 165.81 160.72 C166.68 162.02 167.55 163.32 168.41 164.62 C170.23 167.36 172.07 170.1 173.93 172.81 C174.47 173.6 175.01 174.38 175.56 175.19 C176.02 175.84 176.47 176.49 176.94 177.17 C178.06 179.11 178.5 180.83 179 183 C171.12 183.13 163.23 183.21 155.35 183.27 C152.67 183.3 149.98 183.33 147.3 183.38 C143.45 183.44 139.59 183.47 135.74 183.49 C133.94 183.53 133.94 183.53 132.1 183.57 C123.81 183.57 123.81 183.57 119.94 180.84 C117.96 177.94 116.03 175.07 114.26 172.03 C113.93 171.46 113.59 170.9 113.25 170.32 C112.2 168.53 111.16 166.73 110.12 164.94 C109.44 163.76 108.75 162.58 108.06 161.41 C106.7 159.08 105.34 156.75 103.98 154.42 C102.06 151.1 100.13 147.79 98.19 144.47 C95.6 140.04 93.03 135.6 90.46 131.16 C88.87 128.8 87.06 126.95 85 125 C83.77 127.15 82.54 129.29 81.31 131.44 C80.8 132.33 80.8 132.33 80.28 133.23 C78.38 136.56 76.5 139.9 74.64 143.25 C71.07 149.68 67.44 156.08 63.82 162.47 C63.27 163.44 62.72 164.41 62.16 165.41 C61.36 166.82 61.36 166.82 60.54 168.26 C59.54 170.04 58.56 171.82 57.59 173.62 C57.16 174.41 56.72 175.21 56.28 176.03 C55.91 176.73 55.54 177.42 55.16 178.14 C53.9 180.16 52.85 181.5 51 183 C48.7 183.36 48.7 183.36 45.98 183.34 C44.96 183.34 43.94 183.34 42.88 183.34 C41.78 183.32 40.68 183.31 39.55 183.29 C37.86 183.29 37.86 183.29 36.13 183.28 C32.53 183.26 28.92 183.23 25.31 183.19 C22.87 183.17 20.43 183.16 17.98 183.15 C11.99 183.11 5.99 183.06 0 183 C0 178.68 0.39 177.93 2.69 174.5 C3.32 173.54 3.95 172.58 4.61 171.59 C4.98 171.04 5.35 170.49 5.73 169.91 C7.77 166.84 9.78 163.74 11.79 160.64 C13.5 158 15.21 155.37 16.93 152.74 C19.2 149.24 21.46 145.72 23.69 142.19 C26.76 137.33 29.96 132.55 33.16 127.77 C36.46 122.84 39.68 117.86 42.88 112.86 C44.97 109.59 47.09 106.35 49.25 103.12 C49.94 102.09 49.94 102.09 50.64 101.03 C51.59 99.61 52.56 98.21 53.55 96.82 C54.03 96.11 54.51 95.41 55 94.69 C55.43 94.07 55.87 93.46 56.31 92.82 C57.23 91.02 57.23 91.02 56.32 89.32 C54.51 86.14 52.51 83.09 50.49 80.03 C50.05 79.36 49.6 78.68 49.15 77.98 C47.72 75.82 46.3 73.66 44.88 71.5 C43.94 70.08 43.01 68.66 42.07 67.23 C36.74 59.14 31.39 51.06 26 43 C25.1 41.66 24.21 40.31 23.31 38.97 C22.93 38.39 22.54 37.82 22.15 37.22 C11.75 21.63 11.75 21.63 9.82 18.73 C8.63 16.95 7.44 15.17 6.24 13.4 C5.71 12.61 5.17 11.82 4.62 11 C4.16 10.32 3.7 9.64 3.23 8.94 C1.23 5.78 0 3.79 0 0 Z " fill="#000002" transform="translate(169,170)"/>
10 | <path d="M0 0 C16.5 0 33 0 50 0 C51.91 4.77 52.28 8.11 52.25 13.08 C52.25 13.89 52.25 14.7 52.25 15.53 C52.26 18.24 52.25 20.95 52.24 23.66 C52.24 25.6 52.25 27.55 52.25 29.49 C52.25 34.77 52.25 40.05 52.24 45.33 C52.23 50.86 52.23 56.39 52.23 61.92 C52.23 71.21 52.22 80.5 52.21 89.79 C52.19 100.52 52.18 111.25 52.19 121.98 C52.19 133.41 52.18 144.84 52.17 156.28 C52.17 159.56 52.17 162.85 52.17 166.14 C52.17 171.32 52.16 176.49 52.15 181.67 C52.15 183.57 52.15 185.46 52.15 187.36 C52.15 196.62 52.14 205.79 51 215 C51.66 215 52.32 215 53 215 C53 215.66 53 216.32 53 217 C59.6 217 66.2 217 73 217 C74.57 220.15 74.28 223.54 74.39 227 C74.41 227.79 74.44 228.58 74.46 229.4 C74.52 231.07 74.57 232.75 74.61 234.42 C74.69 236.99 74.78 239.56 74.87 242.12 C74.92 243.75 74.97 245.37 75.01 247 C75.04 247.77 75.07 248.54 75.1 249.34 C75.14 251.22 75.08 253.11 75 255 C71.35 258.65 65.46 257.38 60.51 257.38 C59.45 257.38 59.45 257.38 58.38 257.38 C57.31 257.37 57.31 257.37 56.23 257.37 C38.66 257.3 22.62 255.02 9.56 241.94 C1.44 232.07 -0.16 219.29 -0.12 206.96 C-0.12 206.07 -0.12 205.18 -0.12 204.27 C-0.12 201.3 -0.12 198.34 -0.11 195.38 C-0.11 193.25 -0.11 191.12 -0.11 188.99 C-0.11 183.22 -0.11 177.45 -0.1 171.67 C-0.1 165.64 -0.09 159.6 -0.09 153.57 C-0.09 142.14 -0.08 130.72 -0.07 119.29 C-0.06 106.28 -0.06 93.28 -0.05 80.27 C-0.04 53.51 -0.02 26.76 0 0 Z " fill="#000002" transform="translate(672,96)"/>
11 | <path d="M0 0 C0.97 -0.01 1.95 -0.01 2.95 -0.02 C4.54 -0.02 4.54 -0.02 6.17 -0.02 C7.25 -0.03 8.33 -0.03 9.44 -0.03 C11.74 -0.04 14.03 -0.04 16.32 -0.04 C19.84 -0.04 23.36 -0.06 26.88 -0.08 C29.1 -0.08 31.32 -0.08 33.54 -0.09 C34.6 -0.09 35.66 -0.1 36.75 -0.11 C37.73 -0.1 38.7 -0.1 39.71 -0.1 C41.01 -0.1 41.01 -0.1 42.33 -0.1 C44.42 0.15 44.42 0.15 46.42 2.15 C46.62 4.54 46.69 6.82 46.67 9.21 C46.67 9.95 46.67 10.68 46.67 11.44 C46.68 13.92 46.67 16.4 46.66 18.88 C46.66 20.65 46.67 22.42 46.67 24.2 C46.67 29.02 46.67 33.84 46.66 38.66 C46.65 43.7 46.65 48.74 46.65 53.77 C46.65 62.23 46.64 70.69 46.63 79.15 C46.61 88.94 46.6 98.73 46.61 108.52 C46.61 117.93 46.6 127.33 46.59 136.74 C46.59 140.75 46.59 144.76 46.59 148.77 C46.59 153.48 46.58 158.2 46.57 162.92 C46.57 164.65 46.57 166.39 46.57 168.13 C46.57 170.49 46.56 172.85 46.55 175.2 C46.56 175.9 46.56 176.6 46.56 177.31 C46.53 182.03 46.53 182.03 45.42 183.15 C43.9 183.24 42.37 183.27 40.84 183.27 C39.38 183.28 39.38 183.28 37.89 183.28 C36.83 183.28 35.77 183.28 34.67 183.28 C33.05 183.28 33.05 183.28 31.4 183.28 C29.1 183.28 26.81 183.28 24.52 183.28 C21 183.27 17.48 183.28 13.97 183.28 C11.74 183.28 9.52 183.28 7.3 183.28 C5.71 183.28 5.71 183.28 4.09 183.28 C3.11 183.28 2.14 183.28 1.13 183.27 C-0.17 183.27 -0.17 183.27 -1.49 183.27 C-3.58 183.15 -3.58 183.15 -5.58 182.15 C-5.6 158.56 -5.62 134.98 -5.63 111.4 C-5.64 100.45 -5.64 89.5 -5.66 78.55 C-5.67 69.01 -5.67 59.47 -5.67 49.93 C-5.68 44.88 -5.68 39.83 -5.69 34.77 C-5.69 30.02 -5.69 25.27 -5.69 20.52 C-5.69 18.77 -5.7 17.02 -5.7 15.27 C-5.7 12.89 -5.7 10.51 -5.7 8.14 C-5.7 7.44 -5.71 6.73 -5.71 6.01 C-5.69 0.51 -5.45 0.02 0 0 Z " fill="#024AD8" transform="translate(1062.579833984375,169.854736328125)"/>
12 | <path d="M0 0 C5.92 5.38 10.65 13.52 11.09 21.61 C11.4 37.64 11.4 37.64 6.75 44.5 C6.03 45.59 5.31 46.69 4.56 47.81 C-3.05 55.08 -12.41 55.88 -22.48 55.71 C-31.43 55.2 -39.28 51.47 -45.62 45.12 C-50.79 36.77 -50.13 25.96 -49.25 16.5 C-48.42 13.03 -47.27 10.42 -45.25 7.5 C-44.53 6.41 -43.81 5.31 -43.06 4.19 C-32.29 -6.1 -12.95 -5.98 0 0 Z " fill="#0149D8" transform="translate(1102.25,95.5)"/>
13 | <path d="M0 0 C18.81 0 37.62 0 57 0 C57 0.66 57 1.32 57 2 C28.78 2.5 28.78 2.5 0 3 C0 2.01 0 1.02 0 0 Z " fill="#1D1D1F" transform="translate(169,170)"/>
14 | <path d="M0 0 C3.62 -0.09 7.25 -0.14 10.88 -0.19 C12.42 -0.23 12.42 -0.23 14 -0.26 C14.99 -0.27 15.98 -0.28 16.99 -0.29 C17.9 -0.31 18.81 -0.32 19.75 -0.34 C20.49 -0.23 21.24 -0.12 22 0 C24.59 3.88 24.25 7.11 24.2 11.61 C24.19 12.44 24.19 13.28 24.19 14.15 C24.18 16.83 24.15 19.51 24.12 22.19 C24.11 24 24.11 25.82 24.1 27.64 C24.08 32.09 24.04 36.55 24 41 C23.01 41 22.02 41 21 41 C21.66 39.68 22.32 38.36 23 37 C22.34 37 21.68 37 21 37 C20.67 25.12 20.34 13.24 20 1 C13.4 1 6.8 1 0 1 C0 0.67 0 0.34 0 0 Z " fill="#D7DCE4" transform="translate(725,312)"/>
15 | <path d="M0 0 C17.16 0 34.32 0 52 0 C52.5 1.98 52.5 1.98 53 4 C52.34 4 51.68 4 51 4 C50.5 3.01 50.5 3.01 50 2 C25.25 1.5 25.25 1.5 0 1 C0 0.67 0 0.34 0 0 Z " fill="#C8CED9" transform="translate(672,95)"/>
16 | <path d="M0 0 C2 2 2 2 2.2 4.38 C2.17 5.29 2.15 6.19 2.12 7.12 C2.11 8.04 2.09 8.95 2.07 9.88 C2.04 10.93 2.04 10.93 2 12 C1.01 12 0.02 12 -1 12 C-0.34 10.68 0.32 9.36 1 8 C0.34 8 -0.32 8 -1 8 C-1.04 5.67 -1.04 3.33 -1 1 C-0.67 0.67 -0.34 0.34 0 0 Z " fill="#C6CCD7" transform="translate(747,341)"/>
17 | </svg>
18 |
```
--------------------------------------------------------------------------------
/xmlui/src/components/FlowLayout/FlowLayout.spec.ts:
--------------------------------------------------------------------------------
```typescript
1 | import { getBounds, overflows, scaleByPercent } from "../../testing/component-test-helpers";
2 | import { test, expect } from "../../testing/fixtures";
3 |
4 | // =============================================================================
5 | // BASIC FUNCTIONALITY TESTS
6 | // =============================================================================
7 |
8 | test.describe("Basic functionality", () => {
9 | test("component renders with default props", async ({ page, initTestBed }) => {
10 | await initTestBed(`
11 | <FlowLayout>
12 | <Text testId="item1">Item 1</Text>
13 | <Text testId="item2">Item 2</Text>
14 | <Text testId="item3">Item 3</Text>
15 | </FlowLayout>
16 | `);
17 |
18 | // Check that the component is visible
19 | const item1 = page.getByTestId("item1");
20 | const rect1 = await item1.boundingBox();
21 | const item2 = page.getByTestId("item2");
22 | const rect2 = await item2.boundingBox();
23 | const item3 = page.getByTestId("item3");
24 | const rect3 = await item3.boundingBox();
25 |
26 | // Check that children are rendered
27 | expect(rect1.height).toBe(rect2.height);
28 | expect(rect2.height).toBe(rect3.height);
29 | expect(rect1.width).toBeGreaterThan(0);
30 | expect(rect2.width).toBeGreaterThan(0);
31 | expect(rect3.width).toBeGreaterThan(0);
32 | expect(rect1.x).toBe(rect2.x);
33 | expect(rect2.x).toBe(rect3.x);
34 | expect(rect1.y).toBeLessThan(rect2.y);
35 | expect(rect2.y).toBeLessThan(rect3.y);
36 | });
37 |
38 | test("component renders when widths specified", async ({ page, initTestBed }) => {
39 | await initTestBed(`
40 | <FlowLayout>
41 | <Text testId="item1" width="80px">Item 1</Text>
42 | <Text testId="item2" width="80px">Item 2</Text>
43 | <Text testId="item3" width="80px">Item 3</Text>
44 | </FlowLayout>
45 | `);
46 |
47 | const item1 = page.getByTestId("item1");
48 | const rect1 = await item1.boundingBox();
49 | const item2 = page.getByTestId("item2");
50 | const rect2 = await item2.boundingBox();
51 | const item3 = page.getByTestId("item3");
52 | const rect3 = await item3.boundingBox();
53 |
54 | // Check that children are rendered
55 | expect(rect1.height).toBe(rect2.height);
56 | expect(rect2.height).toBe(rect3.height);
57 | expect(rect1.width).toBeLessThanOrEqual(80);
58 | expect(rect2.width).toBeLessThanOrEqual(80);
59 | expect(rect3.width).toBeLessThanOrEqual(80);
60 | expect(rect1.y).toBe(rect2.y);
61 | expect(rect2.y).toBe(rect3.y);
62 | expect(rect1.x).toBeLessThan(rect2.x);
63 | expect(rect2.x).toBeLessThan(rect3.x);
64 | });
65 |
66 | test("component wraps items when they exceed container width", async ({ page, initTestBed }) => {
67 | await initTestBed(`
68 | <FlowLayout width="280px">
69 | <Text testId="item1" width="100px">Item 1</Text>
70 | <Text testId="item2" width="100px">Item 2</Text>
71 | <Text testId="item3" width="100px">Item 3</Text>
72 | </FlowLayout>
73 | `);
74 |
75 | const item1 = page.getByTestId("item1");
76 | const rect1 = await item1.boundingBox();
77 | const item2 = page.getByTestId("item2");
78 | const rect2 = await item2.boundingBox();
79 | const item3 = page.getByTestId("item3");
80 | const rect3 = await item3.boundingBox();
81 |
82 | // Check that children are rendered
83 | expect(rect1.height).toBe(rect2.height);
84 | expect(rect2.height).toBe(rect3.height);
85 | expect(rect1.y).toBe(rect2.y);
86 | expect(rect2.y).toBeLessThan(rect3.y);
87 | expect(rect1.x).toBeLessThan(rect2.x);
88 | expect(rect1.x).toBe(rect3.x);
89 | });
90 |
91 | test("component applies gap correctly (#1)", async ({ page, initTestBed }) => {
92 | await initTestBed(`
93 | <FlowLayout gap="13px">
94 | <Stack testId="item1" width="100px">Item 1</Stack>
95 | <Stack testId="item2" width="100px">Item 2</Stack>
96 | <Stack testId="item3" width="100px">Item 3</Stack>
97 | </FlowLayout>
98 | `);
99 |
100 | const item1 = page.getByTestId("item1");
101 | const rect1 = await item1.boundingBox();
102 | const item2 = page.getByTestId("item2");
103 | const rect2 = await item2.boundingBox();
104 | const item3 = page.getByTestId("item3");
105 | const rect3 = await item3.boundingBox();
106 |
107 | // Check that children are rendered
108 | expect(rect1.height).toBe(rect2.height);
109 | expect(rect2.height).toBe(rect3.height);
110 | expect(rect1.y).toBe(rect2.y);
111 | expect(rect2.y).toBe(rect3.y);
112 | expect(rect2.x - (rect1.x + rect1.width)).toBe(13);
113 | expect(rect3.x - (rect2.x + rect2.width)).toBe(13);
114 | });
115 |
116 | test("component applies gap correctly (#2)", async ({ page, initTestBed }) => {
117 | await initTestBed(`
118 | <FlowLayout gap="13px">
119 | <Stack testId="item1">Item 1</Stack>
120 | <Stack testId="item2">Item 2</Stack>
121 | <Stack testId="item3">Item 3</Stack>
122 | </FlowLayout>
123 | `);
124 |
125 | const item1 = page.getByTestId("item1");
126 | const rect1 = await item1.boundingBox();
127 | const item2 = page.getByTestId("item2");
128 | const rect2 = await item2.boundingBox();
129 | const item3 = page.getByTestId("item3");
130 | const rect3 = await item3.boundingBox();
131 |
132 | // Check that children are rendered
133 | expect(rect1.height).toBe(rect2.height);
134 | expect(rect2.height).toBe(rect3.height);
135 | expect(rect2.y - (rect1.y + rect1.height)).toBe(13);
136 | expect(rect3.y - (rect2.y + rect2.height)).toBe(13);
137 | });
138 |
139 | test("component applies columnGap correctly", async ({ page, initTestBed }) => {
140 | await initTestBed(`
141 | <FlowLayout columnGap="13px" gap="40px">
142 | <Stack testId="item1" width="100px">Item 1</Stack>
143 | <Stack testId="item2" width="100px">Item 2</Stack>
144 | <Stack testId="item3" width="100px">Item 3</Stack>
145 | </FlowLayout>
146 | `);
147 |
148 | const item1 = page.getByTestId("item1");
149 | const rect1 = await item1.boundingBox();
150 | const item2 = page.getByTestId("item2");
151 | const rect2 = await item2.boundingBox();
152 | const item3 = page.getByTestId("item3");
153 | const rect3 = await item3.boundingBox();
154 |
155 | // Check that children are rendered
156 | expect(rect1.height).toBe(rect2.height);
157 | expect(rect2.height).toBe(rect3.height);
158 | expect(rect1.y).toBe(rect2.y);
159 | expect(rect2.y).toBe(rect3.y);
160 | expect(rect2.x - (rect1.x + rect1.width)).toBe(13);
161 | expect(rect3.x - (rect2.x + rect2.width)).toBe(13);
162 | });
163 |
164 | test("component applies rowGap correctly", async ({ page, initTestBed }) => {
165 | await initTestBed(`
166 | <FlowLayout rowGap="13px" gap="40px">
167 | <Stack testId="item1">Item 1</Stack>
168 | <Stack testId="item2">Item 2</Stack>
169 | <Stack testId="item3">Item 3</Stack>
170 | </FlowLayout>
171 | `);
172 |
173 | const item1 = page.getByTestId("item1");
174 | const rect1 = await item1.boundingBox();
175 | const item2 = page.getByTestId("item2");
176 | const rect2 = await item2.boundingBox();
177 | const item3 = page.getByTestId("item3");
178 | const rect3 = await item3.boundingBox();
179 |
180 | // Check that children are rendered
181 | expect(rect1.height).toBe(rect2.height);
182 | expect(rect2.height).toBe(rect3.height);
183 | expect(rect2.y - (rect1.y + rect1.height)).toBe(13);
184 | expect(rect3.y - (rect2.y + rect2.height)).toBe(13);
185 | });
186 |
187 | test("component applies rowGap and columnGap correctly", async ({ page, initTestBed }) => {
188 | await initTestBed(`
189 | <FlowLayout width="280px" columnGap="13px" rowGap="19px" gap="40px">
190 | <Stack testId="item1" width="100px">Item 1</Stack>
191 | <Stack testId="item2" width="100px">Item 2</Stack>
192 | <Stack testId="item3" width="100px">Item 3</Stack>
193 | </FlowLayout>
194 | `);
195 |
196 | const item1 = page.getByTestId("item1");
197 | const rect1 = await item1.boundingBox();
198 | const item2 = page.getByTestId("item2");
199 | const rect2 = await item2.boundingBox();
200 | const item3 = page.getByTestId("item3");
201 | const rect3 = await item3.boundingBox();
202 |
203 | // Check that children are rendered
204 | expect(rect1.height).toBe(rect2.height);
205 | expect(rect2.height).toBe(rect3.height);
206 | expect(rect1.y).toBe(rect2.y);
207 | expect(rect2.y).toBeLessThan(rect3.y);
208 | expect(rect1.x).toBeLessThan(rect2.x);
209 | expect(rect2.x - (rect1.x + rect1.width)).toBe(13);
210 | expect(rect3.x).toBe(rect1.x);
211 | expect(rect3.y - (rect2.y + rect2.height)).toBe(19);
212 | });
213 | });
214 |
215 | // =============================================================================
216 | // EDGE CASE TESTS
217 | // =============================================================================
218 |
219 | test.describe("Edge cases", () => {
220 | test("component handles empty content gracefully", async ({ page, initTestBed }) => {
221 | await initTestBed(`<FlowLayout testId="flowLayout"></FlowLayout>`);
222 |
223 | const layout = page.getByTestId("flowLayout");
224 | await expect(layout).toBeAttached();
225 | await expect(layout).toBeEmpty();
226 | });
227 |
228 | test("component handles very long items correctly (#1)", async ({ page, initTestBed }) => {
229 | await initTestBed(`
230 | <FlowLayout width="200px">
231 | <Text testId="item1">This is a very long item that should wrap to the next line because it's too long</Text>
232 | <Text testId="item2">Short item</Text>
233 | </FlowLayout>
234 | `);
235 |
236 | const item1 = page.getByTestId("item1");
237 | const rect1 = await item1.boundingBox();
238 | const item2 = page.getByTestId("item2");
239 | const rect2 = await item2.boundingBox();
240 |
241 | expect(rect2.y).toBeGreaterThan(rect1.y + rect1.height);
242 | });
243 |
244 | test("component handles very long items correctly (#2)", async ({ page, initTestBed }) => {
245 | await initTestBed(`
246 | <FlowLayout width="200px">
247 | <Text testId="item1">Short item</Text>
248 | <Text testId="item2">This is a very long item that should wrap to the next line because it's too long</Text>
249 | </FlowLayout>
250 | `);
251 |
252 | const item1 = page.getByTestId("item1");
253 | const rect1 = await item1.boundingBox();
254 | const item2 = page.getByTestId("item2");
255 | const rect2 = await item2.boundingBox();
256 |
257 | expect(rect2.y).toBeGreaterThan(rect1.y + rect1.height);
258 | });
259 |
260 | const PAGE_WIDTH = 1280;
261 |
262 | test("1 item 25% width", async ({ page, initTestBed }) => {
263 | const itemHeight = "64px";
264 | const itemWidthPercent = "25%";
265 | await initTestBed(`
266 | <FlowLayout width="${PAGE_WIDTH}">
267 | <Stack testId="item" backgroundColor="red" height="${itemHeight}" width="${itemWidthPercent}"/>
268 | </FlowLayout>
269 | `);
270 | const expectedWidth = scaleByPercent(PAGE_WIDTH, itemWidthPercent);
271 | const { width: itemWidth } = await getBounds(page.getByTestId("item"));
272 | expect(itemWidth).toEqual(expectedWidth);
273 | });
274 |
275 | // gap should be ignored because of 1 item
276 | test("1 item 25% width + gap", async ({ page, initTestBed }) => {
277 | const itemHeight = "64px";
278 | const itemWidthPercent = "25%";
279 | const gap = "26px";
280 | await initTestBed(`
281 | <FlowLayout gap="${gap}" width="${PAGE_WIDTH}">
282 | <Stack testId="item" backgroundColor="red" height="${itemHeight}" width="${itemWidthPercent}"/>
283 | </FlowLayout>
284 | `);
285 |
286 | const { right } = await getBounds(page.getByTestId("item"));
287 | const expectedWidth = scaleByPercent(PAGE_WIDTH, itemWidthPercent);
288 | expect(right).toEqual(expectedWidth);
289 | });
290 |
291 | // gap should be ignored because of 1 item
292 | test("1 item 100% width + gap", async ({ page, initTestBed }) => {
293 | const itemHeight = "64px";
294 | const itemWidthPercent = "100%";
295 | const gap = "26px";
296 |
297 | await initTestBed(`
298 | <FlowLayout gap="${gap}" width="${PAGE_WIDTH}">
299 | <Stack testId="item" backgroundColor="red" height="${itemHeight}" width="${itemWidthPercent}"/>
300 | </FlowLayout>
301 | `);
302 | const { width } = await getBounds(page.getByTestId("item"));
303 | const expectedWidth = PAGE_WIDTH;
304 | expect(width).toEqual(expectedWidth);
305 | });
306 |
307 | test("4 item 25% width", async ({ page, initTestBed }) => {
308 | const layoutWidth = "400px";
309 | const itemWidthPercent = "25%";
310 | const itemHeight = 64;
311 |
312 | await initTestBed(`
313 | <FlowLayout testId="layout" width="${layoutWidth}" backgroundColor="cyan">
314 | <Stack backgroundColor="red" height="${itemHeight}px" width="${itemWidthPercent}"/>
315 | <Stack backgroundColor="green" height="${itemHeight}px" width="${itemWidthPercent}"/>
316 | <Stack backgroundColor="blue" height="${itemHeight}px" width="${itemWidthPercent}"/>
317 | <Stack backgroundColor="yellow" height="${itemHeight}px" width="${itemWidthPercent}"/>
318 | </FlowLayout>
319 | `);
320 | const { height: layoutHeight } = await getBounds(page.getByTestId("layout"));
321 |
322 | expect(layoutHeight).toEqual(itemHeight);
323 | });
324 |
325 | test("3 item 25% width, 1 item 25.1% wraps", async ({ page, initTestBed }) => {
326 | const itemHeight = 64;
327 | const itemWidthPercent = "25%";
328 | const itemWidthPercentBigger = "25.1%";
329 | await initTestBed(`
330 | <FlowLayout testId="layout" width="${PAGE_WIDTH}" gap="0">
331 | <Stack backgroundColor="red" height="${itemHeight}px" width="${itemWidthPercent}"/>
332 | <Stack backgroundColor="green" height="${itemHeight}px" width="${itemWidthPercent}"/>
333 | <Stack backgroundColor="blue" height="${itemHeight}px" width="${itemWidthPercent}"/>
334 | <Stack backgroundColor="yellow" height="${itemHeight}px" width="${itemWidthPercentBigger}"/>
335 | </FlowLayout>
336 | `);
337 |
338 | const { height: layoutHeight } = await getBounds(page.getByTestId("layout"));
339 | const expectedHeight = itemHeight * 2;
340 |
341 | expect(layoutHeight).toEqual(expectedHeight);
342 | });
343 |
344 | // When gap is specified and wrapping, a horizontal gap is applied
345 | test("wrap with gaps", async ({ page, initTestBed }) => {
346 | const layoutWidth = 400;
347 | const itemWidthPercent = "25%";
348 | const itemWidthPercentBigger = "25.1%";
349 | const itemHeight = 64;
350 | const gap = 20;
351 | await initTestBed(`
352 | <FlowLayout testId="layout" width="${layoutWidth}px" backgroundColor="cyan" gap="${gap}px">
353 | <Stack backgroundColor="red" height="${itemHeight}px" width="${itemWidthPercentBigger}"/>
354 | <Stack backgroundColor="green" height="${itemHeight}px" width="${itemWidthPercent}"/>
355 | <Stack backgroundColor="blue" height="${itemHeight}px" width="${itemWidthPercent}"/>
356 | <Stack backgroundColor="yellow" height="${itemHeight}px" width="${itemWidthPercent}"/>
357 | </FlowLayout>
358 | `);
359 |
360 | const { height: layoutHeight } = await getBounds(page.getByTestId("layout"));
361 | const expectedHeight = gap + itemHeight * 2;
362 |
363 | expect(layoutHeight).toEqual(expectedHeight);
364 | });
365 |
366 | test("item with * width fills row", async ({ page, initTestBed }) => {
367 | const itemHeight = 64;
368 | const itemWidth = "*";
369 | await initTestBed(`
370 | <FlowLayout testId="layout">
371 | <Stack backgroundColor="red" height="${itemHeight}px" width="50"/>
372 | <Stack backgroundColor="green" height="${itemHeight}px" width="50"/>
373 | <Stack testId="item2" backgroundColor="blue" height="${itemHeight}px" width="${itemWidth}"/>
374 | </FlowLayout>
375 | `);
376 |
377 | const { height: layoutHeight, right: layoutRight } = await getBounds(
378 | page.getByTestId("layout"),
379 | );
380 | const { right: starItemRight } = await getBounds(page.getByTestId("item2"));
381 |
382 | expect(layoutHeight).toEqual(itemHeight);
383 | expect(layoutRight).toEqual(starItemRight);
384 | });
385 |
386 | // rowGap applies when wrapping
387 | test("wrap with rowGap", async ({ page, initTestBed }) => {
388 | const itemHeight = 64;
389 | const itemWidthPercent = "50%";
390 | const rowGap = 24;
391 | await initTestBed(`
392 | <FlowLayout testId="layout" rowGap="${rowGap}px">
393 | <Stack backgroundColor="red" height="${itemHeight}px" width="${itemWidthPercent}"/>
394 | <Stack backgroundColor="green" height="${itemHeight}px" width="${itemWidthPercent}"/>
395 | <Stack backgroundColor="blue" height="${itemHeight}px" width="${itemWidthPercent}"/>
396 | <Stack backgroundColor="yellow" height="${itemHeight}px" width="${itemWidthPercent}"/>
397 | </FlowLayout>
398 | `);
399 |
400 | const { height: layoutHeight } = await getBounds(page.getByTestId("layout"));
401 | const expectedHeight = itemHeight * 2 + rowGap;
402 |
403 | expect(layoutHeight).toEqual(expectedHeight);
404 | });
405 |
406 | test("wrap with columnGap", async ({ page, initTestBed }) => {
407 | const itemWidth = 200;
408 | const columnGap = 24;
409 | const layoutWidth = itemWidth + columnGap + itemWidth;
410 | const itemHeight = 64;
411 | await initTestBed(`
412 | <FlowLayout testId="layout" width="${layoutWidth}px" columnGap="${columnGap}px">
413 | <Stack backgroundColor="red" height="${itemHeight}px" width="${itemWidth}px"/>
414 | <Stack backgroundColor="green" height="${itemHeight}px" width="${itemWidth}px"/>
415 | <Stack backgroundColor="blue" height="${itemHeight}px" width="${itemWidth}px"/>
416 | <Stack backgroundColor="yellow" testId="item3" height="${itemHeight}px" width="${itemWidth}px"/>
417 | </FlowLayout>
418 | `);
419 |
420 | const { left: item3Left } = await getBounds(page.getByTestId("item3"));
421 | const expectedItem3Left = itemWidth + columnGap;
422 |
423 | expect(item3Left).toEqual(expectedItem3Left);
424 | });
425 |
426 | // wrapping: columnGap & rowGap overrules gap prop
427 | test("columnGap & rowGap overrules gap", async ({ page, initTestBed }) => {
428 | const itemWidth = 200;
429 | const columnGap = 24;
430 | const layoutWidth = itemWidth + columnGap + itemWidth;
431 | const itemHeight = 64;
432 | const rowGap = 24;
433 | const gap = 5;
434 | await initTestBed(`
435 | <FlowLayout testId="layout" width="${layoutWidth}px" gap="${gap}px" columnGap="${columnGap}px" rowGap="${rowGap}px">
436 | <Stack testId="item0" backgroundColor="red" height="${itemHeight}px" width="${itemWidth}px"/>
437 | <Stack testId="item1" backgroundColor="green" height="${itemHeight}px" width="${itemWidth}px"/>
438 | <Stack testId="item2" backgroundColor="blue" height="${itemHeight}px" width="${itemWidth}px"/>
439 | <Stack testId="item3" backgroundColor="yellow" height="${itemHeight}px" width="${itemWidth}px"/>
440 | </FlowLayout>
441 | `);
442 |
443 | const { left: item3Left } = await getBounds(page.getByTestId("item3"));
444 | const expectedItem3Left = itemWidth + columnGap;
445 |
446 | const { height: layoutHeight } = await getBounds(page.getByTestId("layout"));
447 | const expectedLayoutHeight = itemHeight + rowGap + itemHeight;
448 |
449 | expect(item3Left).toEqual(expectedItem3Left);
450 | expect(layoutHeight).toEqual(expectedLayoutHeight);
451 | });
452 |
453 | // 4 items with 25% each perfectly fit in one row
454 | // gaps, borders, margins don't count when breaking into new lines
455 | test("no wrap from gap, border, margin", async ({ page, initTestBed }) => {
456 | const itemHeight = 64;
457 | const width = "25%";
458 | const marginInline = 100;
459 | await initTestBed(`
460 | <FlowLayout testId="layout" gap="26px" >
461 | <Stack testId="item0" border="solid 6px black" marginRight="${marginInline}px" marginLeft="${marginInline}px" backgroundColor="red" height="${itemHeight}px" width="${width}px"/>
462 | <Stack testId="item1" border="solid 6px black" marginRight="${marginInline}px" marginLeft="${marginInline}px" backgroundColor="green" height="${itemHeight}px" width="${width}px"/>
463 | <Stack testId="item2" border="solid 6px black" marginRight="${marginInline}px" marginLeft="${marginInline}px" backgroundColor="blue" height="${itemHeight}px" width="${width}px"/>
464 | <Stack testId="item3" border="solid 6px black" marginRight="${marginInline}px" marginLeft="${marginInline}px" backgroundColor="yellow" height="${itemHeight}px" width="${width}px"/>
465 | </FlowLayout>
466 | `);
467 | const { height: layoutHeight } = await getBounds(page.getByTestId("layout"));
468 | expect(layoutHeight).toEqual(itemHeight);
469 | });
470 |
471 | // Elements will cap at 100% width
472 | test("no horizontal overflow", async ({ page, initTestBed }) => {
473 | const itemHeight = 64;
474 | const bigWidths = { percent: "120%", px: "1000000000px", em: "1000000000em" };
475 | await initTestBed(`
476 | <FlowLayout testId="layout" gap="0">
477 | <Stack testId="item0" height="${itemHeight}px" width="${bigWidths.percent}"/>
478 | <Stack testId="item1" height="${itemHeight}px" width="${bigWidths.px}"/>
479 | <Stack testId="item2" height="${itemHeight}px" width="${bigWidths.em}"/>
480 | </FlowLayout>
481 | `);
482 |
483 | const isOverflownItem0 = await overflows(page.getByTestId("item0"), "x");
484 | const isOverflownItem1 = await overflows(page.getByTestId("item1"), "x");
485 | const isOverflownItem2 = await overflows(page.getByTestId("item2"), "x");
486 | const { height: layoutHeight } = await getBounds(page.getByTestId("layout"));
487 | const expectedLayoutHeight = itemHeight * 3;
488 |
489 | expect(isOverflownItem0).toStrictEqual(false);
490 | expect(isOverflownItem1).toStrictEqual(false);
491 | expect(isOverflownItem2).toStrictEqual(false);
492 | expect(layoutHeight).toEqual(expectedLayoutHeight);
493 | });
494 |
495 | // SpaceFillers can be used to break into new lines
496 | test("SpaceFiller adds line break", async ({ page, initTestBed }) => {
497 | const itemHeight = 64;
498 | const itemWidth = "20%";
499 | await initTestBed(`
500 | <FlowLayout testId="layout" gap="0">
501 | <Stack backgroundColor="red" height="${itemHeight}px" width="${itemWidth}"/>
502 | <Stack backgroundColor="blue" height="${itemHeight}px" width="${itemWidth}"/>
503 | <SpaceFiller/>
504 | <Stack backgroundColor="green" height="${itemHeight}px" width="${itemWidth}"/>
505 | </FlowLayout>
506 | `);
507 |
508 | const expectedHeight = 2 * itemHeight;
509 | const { height: layoutHeight } = await getBounds(page.getByTestId("layout"));
510 |
511 | expect(layoutHeight).toEqual(expectedHeight);
512 | });
513 |
514 | // The layout properly handles overflow on the Y axis
515 | // The scrollbar must not overlap the rightmost element
516 | test("scrollbar on overflow Y", async ({ page, initTestBed }) => {
517 | const itemHeight = 128;
518 | await initTestBed(`
519 | <FlowLayout testId="layout" height="100px" columnGap="10px" overflowY="auto">
520 | <Stack backgroundColor="red" height="${itemHeight}px" border="solid 8px black"/>
521 | <Stack backgroundColor="blue" height="${itemHeight}px"/>
522 | <Stack backgroundColor="green" height="${itemHeight}px"/>
523 | </FlowLayout>
524 | `);
525 |
526 | const result = await overflows(page.getByTestId("layout"), "y");
527 | expect(result).toEqual(true);
528 | });
529 |
530 | // The layout properly handles overflow on the Y axis
531 | // The scrollbar must not overlap the rightmost element
532 | test("scrollbar on overflow Y multi items", async ({ page, initTestBed }) => {
533 | const itemHeight = 128;
534 | await initTestBed(`
535 | <FlowLayout testId="layout" height="100px" overflowY="auto">
536 | <Stack backgroundColor="red" height="${itemHeight}px" border="solid 8px black" width="50%"/>
537 | <Stack backgroundColor="blue" height="${itemHeight}px" border="solid 8px black" width="50%"/>
538 | <Stack backgroundColor="green" height="${itemHeight}px"/>
539 | </FlowLayout>
540 | `);
541 |
542 | const result = await overflows(page.getByTestId("layout"), "y");
543 |
544 | expect(result).toEqual(true);
545 | });
546 |
547 | test("multiple star sized next to each other doesn't break", async ({
548 | page,
549 | initTestBed,
550 | }) => {
551 | await initTestBed(`
552 | <FlowLayout testId="layout" width="100px" columnGap="10px">
553 | <Stack testId="red" backgroundColor="red" height="10px" width="20px"/>
554 | <Stack testId="green" backgroundColor="green" height="10px" width="*"/>
555 | <Stack testId="blue" backgroundColor="blue" height="10px" width="2*"/>
556 | </FlowLayout>`);
557 |
558 | const { height: layoutHeight } = await getBounds(page.getByTestId("layout"));
559 | const { width: redWidth } = await getBounds(page.getByTestId("red"));
560 | const { width: greenWidth } = await getBounds(page.getByTestId("green"));
561 | const { width: blueWidth } = await getBounds(page.getByTestId("blue"));
562 |
563 | // red: 20px | 10px gap | green: 20px | 10px gap | blue: 40px
564 | expect(layoutHeight).toEqual(10);
565 | expect(redWidth).toEqual(20);
566 | expect(greenWidth).toEqual(20);
567 | expect(blueWidth).toEqual(40);
568 | });
569 |
570 | test("SpaceFiller breaks star sized items", async ({ page, initTestBed }) => {
571 | await initTestBed(`
572 | <FlowLayout testId="layout" width="100px" gap="10px">
573 | <Stack testId="red" backgroundColor="red" height="10px" width="20px"/>
574 | <Stack testId="green" backgroundColor="green" height="10px" width="*"/>
575 | <SpaceFiller/>
576 | <Stack testId="blue" backgroundColor="blue" height="10px" width="2*"/>
577 | </FlowLayout>`);
578 |
579 | const { height: layoutHeight } = await getBounds(page.getByTestId("layout"));
580 | const { width: redWidth } = await getBounds(page.getByTestId("red"));
581 | const { width: greenWidth } = await getBounds(page.getByTestId("green"));
582 | const { width: blueWidth } = await getBounds(page.getByTestId("blue"));
583 |
584 | // red: 20px | 10px gap | green: 70px
585 | // gap 10px
586 | // blue: 100px
587 | expect(layoutHeight).toEqual(30);
588 | expect(redWidth).toEqual(20);
589 | expect(greenWidth).toEqual(70);
590 | expect(blueWidth).toEqual(100);
591 | });
592 | });
593 |
```