#
tokens: 47988/50000 2/1628 files (page 99/183)
lines: on (toggle) GitHub
raw markdown copy reset
This is page 99 of 183. Use http://codebase.md/xmlui-org/xmlui/tools/vscode/resources/assets/img/bg-iphone-14-pro.jpg?lines=true&page={x} to view the full context.

# Directory Structure

```
├── .changeset
│   └── config.json
├── .eslintrc.cjs
├── .github
│   ├── build-checklist.png
│   ├── ISSUE_TEMPLATE
│   │   ├── bug_report.md
│   │   └── feature_request.md
│   └── workflows
│       ├── deploy-blog-optimized.yml
│       ├── deploy-blog-spa.yml
│       ├── deploy-blog.yml
│       ├── deploy-docs-optimized.yml
│       ├── deploy-docs.yml
│       ├── prepare-versions.yml
│       ├── release-packages.yml
│       ├── run-all-tests.yml
│       └── run-smoke-tests.yml
├── .gitignore
├── .prettierrc.js
├── .vscode
│   ├── launch.json
│   └── settings.json
├── blog
│   ├── .gitignore
│   ├── .gitkeep
│   ├── CHANGELOG.md
│   ├── extensions.ts
│   ├── index.html
│   ├── index.ts
│   ├── package.json
│   ├── public
│   │   ├── blog
│   │   │   ├── images
│   │   │   │   ├── 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
│   │   └── 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
│   │           ├── FancyButton.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.tsx
│   │       │   ├── ConfirmationDialog.module.scss
│   │       │   ├── ConfirmationDialog.tsx
│   │       │   ├── Editor.tsx
│   │       │   ├── Header.module.scss
│   │       │   ├── Header.tsx
│   │       │   ├── Playground.tsx
│   │       │   ├── PlaygroundContent.module.scss
│   │       │   ├── PlaygroundContent.tsx
│   │       │   ├── PlaygroundNative.module.scss
│   │       │   ├── PlaygroundNative.tsx
│   │       │   ├── Preview.module.scss
│   │       │   ├── Preview.tsx
│   │       │   ├── Select.module.scss
│   │       │   ├── StandalonePlayground.tsx
│   │       │   ├── StandalonePlaygroundNative.module.scss
│   │       │   ├── StandalonePlaygroundNative.tsx
│   │       │   ├── ThemeSwitcher.module.scss
│   │       │   ├── ThemeSwitcher.tsx
│   │       │   ├── ToneSwitcher.tsx
│   │       │   ├── Tooltip.module.scss
│   │       │   ├── Tooltip.tsx
│   │       │   └── utils.ts
│   │       ├── providers
│   │       │   ├── Toast.module.scss
│   │       │   └── ToastProvider.tsx
│   │       ├── state
│   │       │   └── store.ts
│   │       ├── themes
│   │       │   └── theme.ts
│   │       └── utils
│   │           └── helpers.ts
│   ├── 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
    │   ├── 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
    │   ├── ud-components.md
    │   └── xmlui-repo.md
    ├── package.json
    ├── scripts
    │   ├── coverage-only.js
    │   ├── e2e-test-summary.js
    │   ├── generate-docs
    │   │   ├── build-downloads-map.mjs
    │   │   ├── build-pages-map.mjs
    │   │   ├── components-config.json
    │   │   ├── configuration-management.mjs
    │   │   ├── constants.mjs
    │   │   ├── create-theme-files.mjs
    │   │   ├── DocsGenerator.mjs
    │   │   ├── error-handling.mjs
    │   │   ├── extensions-config.json
    │   │   ├── folders.mjs
    │   │   ├── generate-summary-files.mjs
    │   │   ├── get-docs.mjs
    │   │   ├── input-handler.mjs
    │   │   ├── logger.mjs
    │   │   ├── logging-standards.mjs
    │   │   ├── MetadataProcessor.mjs
    │   │   ├── pattern-utilities.mjs
    │   │   └── utils.mjs
    │   ├── get-langserver-metadata.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.spec.ts
    │   │   │   │   ├── LabelList.tsx
    │   │   │   │   ├── LabelListNative.module.scss
    │   │   │   │   └── LabelListNative.tsx
    │   │   │   ├── Legend
    │   │   │   │   ├── Legend.spec.ts
    │   │   │   │   ├── Legend.tsx
    │   │   │   │   └── LegendNative.tsx
    │   │   │   ├── LineChart
    │   │   │   │   ├── LineChart.md
    │   │   │   │   ├── LineChart.module.scss
    │   │   │   │   ├── LineChart.spec.ts
    │   │   │   │   ├── LineChart.tsx
    │   │   │   │   └── LineChartNative.tsx
    │   │   │   ├── PieChart
    │   │   │   │   ├── PieChart.md
    │   │   │   │   ├── PieChart.spec.ts
    │   │   │   │   ├── PieChart.tsx
    │   │   │   │   ├── PieChartNative.module.scss
    │   │   │   │   └── PieChartNative.tsx
    │   │   │   ├── RadarChart
    │   │   │   │   ├── RadarChart.md
    │   │   │   │   ├── RadarChart.spec.ts
    │   │   │   │   ├── RadarChart.tsx
    │   │   │   │   └── RadarChartNative.tsx
    │   │   │   ├── Tooltip
    │   │   │   │   ├── TooltipContent.module.scss
    │   │   │   │   ├── TooltipContent.spec.ts
    │   │   │   │   └── TooltipContent.tsx
    │   │   │   └── utils
    │   │   │       ├── abstractions.ts
    │   │   │       └── ChartProvider.tsx
    │   │   ├── Checkbox
    │   │   │   ├── Checkbox.md
    │   │   │   ├── Checkbox.spec.ts
    │   │   │   └── Checkbox.tsx
    │   │   ├── CodeBlock
    │   │   │   ├── CodeBlock.module.scss
    │   │   │   ├── CodeBlock.spec.ts
    │   │   │   ├── CodeBlock.tsx
    │   │   │   ├── CodeBlockNative.tsx
    │   │   │   └── highlight-code.ts
    │   │   ├── collectedComponentMetadata.ts
    │   │   ├── ColorPicker
    │   │   │   ├── ColorPicker.md
    │   │   │   ├── ColorPicker.module.scss
    │   │   │   ├── ColorPicker.spec.ts
    │   │   │   ├── ColorPicker.tsx
    │   │   │   └── ColorPickerNative.tsx
    │   │   ├── Column
    │   │   │   ├── Column.md
    │   │   │   ├── Column.tsx
    │   │   │   ├── ColumnNative.tsx
    │   │   │   ├── doc-resources
    │   │   │   │   └── list-component-data.js
    │   │   │   └── TableContext.tsx
    │   │   ├── component-utils.ts
    │   │   ├── ComponentProvider.tsx
    │   │   ├── ComponentRegistryContext.tsx
    │   │   ├── container-helpers.tsx
    │   │   ├── ContentSeparator
    │   │   │   ├── ContentSeparator.md
    │   │   │   ├── ContentSeparator.module.scss
    │   │   │   ├── ContentSeparator.spec.ts
    │   │   │   ├── ContentSeparator.tsx
    │   │   │   └── ContentSeparatorNative.tsx
    │   │   ├── DataSource
    │   │   │   ├── DataSource.md
    │   │   │   └── DataSource.tsx
    │   │   ├── DateInput
    │   │   │   ├── DateInput.md
    │   │   │   ├── DateInput.module.scss
    │   │   │   ├── DateInput.spec.ts
    │   │   │   ├── DateInput.tsx
    │   │   │   └── DateInputNative.tsx
    │   │   ├── DatePicker
    │   │   │   ├── DatePicker.md
    │   │   │   ├── DatePicker.module.scss
    │   │   │   ├── DatePicker.spec.ts
    │   │   │   ├── DatePicker.tsx
    │   │   │   └── DatePickerNative.tsx
    │   │   ├── DropdownMenu
    │   │   │   ├── DropdownMenu.md
    │   │   │   ├── DropdownMenu.module.scss
    │   │   │   ├── DropdownMenu.spec.ts
    │   │   │   ├── DropdownMenu.tsx
    │   │   │   ├── DropdownMenuNative.tsx
    │   │   │   ├── MenuItem.md
    │   │   │   └── SubMenuItem.md
    │   │   ├── EmojiSelector
    │   │   │   ├── EmojiSelector.md
    │   │   │   ├── EmojiSelector.spec.ts
    │   │   │   ├── EmojiSelector.tsx
    │   │   │   └── EmojiSelectorNative.tsx
    │   │   ├── ExpandableItem
    │   │   │   ├── ExpandableItem.module.scss
    │   │   │   ├── ExpandableItem.spec.ts
    │   │   │   ├── ExpandableItem.tsx
    │   │   │   └── ExpandableItemNative.tsx
    │   │   ├── FileInput
    │   │   │   ├── FileInput.md
    │   │   │   ├── FileInput.module.scss
    │   │   │   ├── FileInput.spec.ts
    │   │   │   ├── FileInput.tsx
    │   │   │   └── FileInputNative.tsx
    │   │   ├── FileUploadDropZone
    │   │   │   ├── FileUploadDropZone.md
    │   │   │   ├── FileUploadDropZone.module.scss
    │   │   │   ├── FileUploadDropZone.spec.ts
    │   │   │   ├── FileUploadDropZone.tsx
    │   │   │   └── FileUploadDropZoneNative.tsx
    │   │   ├── FlowLayout
    │   │   │   ├── FlowLayout.md
    │   │   │   ├── FlowLayout.module.scss
    │   │   │   ├── FlowLayout.spec.ts
    │   │   │   ├── FlowLayout.spec.ts-snapshots
    │   │   │   │   └── Edge-cases-boxShadow-is-not-clipped-1-non-smoke-darwin.png
    │   │   │   ├── FlowLayout.tsx
    │   │   │   └── FlowLayoutNative.tsx
    │   │   ├── Footer
    │   │   │   ├── Footer.md
    │   │   │   ├── Footer.module.scss
    │   │   │   ├── Footer.spec.ts
    │   │   │   ├── Footer.tsx
    │   │   │   └── FooterNative.tsx
    │   │   ├── Form
    │   │   │   ├── Form.md
    │   │   │   ├── Form.module.scss
    │   │   │   ├── Form.spec.ts
    │   │   │   ├── Form.tsx
    │   │   │   ├── formActions.ts
    │   │   │   ├── FormContext.ts
    │   │   │   └── FormNative.tsx
    │   │   ├── FormItem
    │   │   │   ├── FormItem.md
    │   │   │   ├── FormItem.module.scss
    │   │   │   ├── FormItem.spec.ts
    │   │   │   ├── FormItem.tsx
    │   │   │   ├── FormItemNative.tsx
    │   │   │   ├── HelperText.module.scss
    │   │   │   ├── HelperText.tsx
    │   │   │   ├── ItemWithLabel.tsx
    │   │   │   └── Validations.ts
    │   │   ├── FormSection
    │   │   │   ├── FormSection.md
    │   │   │   ├── FormSection.ts
    │   │   │   └── FormSection.xmlui
    │   │   ├── Fragment
    │   │   │   ├── Fragment.spec.ts
    │   │   │   └── Fragment.tsx
    │   │   ├── Heading
    │   │   │   ├── abstractions.ts
    │   │   │   ├── H1.md
    │   │   │   ├── H1.spec.ts
    │   │   │   ├── H2.md
    │   │   │   ├── H2.spec.ts
    │   │   │   ├── H3.md
    │   │   │   ├── H3.spec.ts
    │   │   │   ├── H4.md
    │   │   │   ├── H4.spec.ts
    │   │   │   ├── H5.md
    │   │   │   ├── H5.spec.ts
    │   │   │   ├── H6.md
    │   │   │   ├── H6.spec.ts
    │   │   │   ├── Heading.md
    │   │   │   ├── Heading.module.scss
    │   │   │   ├── Heading.spec.ts
    │   │   │   ├── Heading.tsx
    │   │   │   └── HeadingNative.tsx
    │   │   ├── HoverCard
    │   │   │   ├── HoverCard.tsx
    │   │   │   └── HovercardNative.tsx
    │   │   ├── HtmlTags
    │   │   │   ├── HtmlTags.module.scss
    │   │   │   ├── HtmlTags.spec.ts
    │   │   │   └── HtmlTags.tsx
    │   │   ├── Icon
    │   │   │   ├── AdmonitionDanger.tsx
    │   │   │   ├── AdmonitionInfo.tsx
    │   │   │   ├── AdmonitionNote.tsx
    │   │   │   ├── AdmonitionTip.tsx
    │   │   │   ├── AdmonitionWarning.tsx
    │   │   │   ├── ApiIcon.tsx
    │   │   │   ├── ArrowDropDown.module.scss
    │   │   │   ├── ArrowDropDown.tsx
    │   │   │   ├── ArrowDropUp.module.scss
    │   │   │   ├── ArrowDropUp.tsx
    │   │   │   ├── ArrowLeft.module.scss
    │   │   │   ├── ArrowLeft.tsx
    │   │   │   ├── ArrowRight.module.scss
    │   │   │   ├── ArrowRight.tsx
    │   │   │   ├── Attach.tsx
    │   │   │   ├── Binding.module.scss
    │   │   │   ├── Binding.tsx
    │   │   │   ├── BoardIcon.tsx
    │   │   │   ├── BoxIcon.tsx
    │   │   │   ├── CheckIcon.tsx
    │   │   │   ├── ChevronDownIcon.tsx
    │   │   │   ├── ChevronLeft.tsx
    │   │   │   ├── ChevronRight.tsx
    │   │   │   ├── ChevronUpIcon.tsx
    │   │   │   ├── CodeFileIcon.tsx
    │   │   │   ├── CodeSandbox.tsx
    │   │   │   ├── CompactListIcon.tsx
    │   │   │   ├── ContentCopyIcon.tsx
    │   │   │   ├── DarkToLightIcon.tsx
    │   │   │   ├── DatabaseIcon.module.scss
    │   │   │   ├── DatabaseIcon.tsx
    │   │   │   ├── DocFileIcon.tsx
    │   │   │   ├── DocIcon.tsx
    │   │   │   ├── DotMenuHorizontalIcon.tsx
    │   │   │   ├── DotMenuIcon.tsx
    │   │   │   ├── EmailIcon.tsx
    │   │   │   ├── EmptyFolderIcon.tsx
    │   │   │   ├── ErrorIcon.tsx
    │   │   │   ├── ExpressionIcon.tsx
    │   │   │   ├── FillPlusCricleIcon.tsx
    │   │   │   ├── FilterIcon.tsx
    │   │   │   ├── FolderIcon.tsx
    │   │   │   ├── GlobeIcon.tsx
    │   │   │   ├── HomeIcon.tsx
    │   │   │   ├── HyperLinkIcon.tsx
    │   │   │   ├── Icon.md
    │   │   │   ├── Icon.module.scss
    │   │   │   ├── Icon.spec.ts
    │   │   │   ├── Icon.tsx
    │   │   │   ├── IconNative.tsx
    │   │   │   ├── ImageFileIcon.tsx
    │   │   │   ├── Inspect.tsx
    │   │   │   ├── LightToDark.tsx
    │   │   │   ├── LinkIcon.tsx
    │   │   │   ├── ListIcon.tsx
    │   │   │   ├── LooseListIcon.tsx
    │   │   │   ├── MoonIcon.tsx
    │   │   │   ├── MoreOptionsIcon.tsx
    │   │   │   ├── NoSortIcon.tsx
    │   │   │   ├── PDFIcon.tsx
    │   │   │   ├── PenIcon.tsx
    │   │   │   ├── PhoneIcon.tsx
    │   │   │   ├── PhotoIcon.tsx
    │   │   │   ├── PlusIcon.tsx
    │   │   │   ├── SearchIcon.tsx
    │   │   │   ├── ShareIcon.tsx
    │   │   │   ├── SortAscendingIcon.tsx
    │   │   │   ├── SortDescendingIcon.tsx
    │   │   │   ├── StarsIcon.tsx
    │   │   │   ├── SunIcon.tsx
    │   │   │   ├── svg
    │   │   │   │   ├── admonition_danger.svg
    │   │   │   │   ├── admonition_info.svg
    │   │   │   │   ├── admonition_note.svg
    │   │   │   │   ├── admonition_tip.svg
    │   │   │   │   ├── admonition_warning.svg
    │   │   │   │   ├── api.svg
    │   │   │   │   ├── arrow-dropdown.svg
    │   │   │   │   ├── arrow-left.svg
    │   │   │   │   ├── arrow-right.svg
    │   │   │   │   ├── arrow-up.svg
    │   │   │   │   ├── attach.svg
    │   │   │   │   ├── binding.svg
    │   │   │   │   ├── box.svg
    │   │   │   │   ├── bulb.svg
    │   │   │   │   ├── code-file.svg
    │   │   │   │   ├── code-sandbox.svg
    │   │   │   │   ├── dark_to_light.svg
    │   │   │   │   ├── database.svg
    │   │   │   │   ├── doc.svg
    │   │   │   │   ├── empty-folder.svg
    │   │   │   │   ├── expression.svg
    │   │   │   │   ├── eye-closed.svg
    │   │   │   │   ├── eye-dark.svg
    │   │   │   │   ├── eye.svg
    │   │   │   │   ├── file-text.svg
    │   │   │   │   ├── filter.svg
    │   │   │   │   ├── folder.svg
    │   │   │   │   ├── img.svg
    │   │   │   │   ├── inspect.svg
    │   │   │   │   ├── light_to_dark.svg
    │   │   │   │   ├── moon.svg
    │   │   │   │   ├── pdf.svg
    │   │   │   │   ├── photo.svg
    │   │   │   │   ├── share.svg
    │   │   │   │   ├── stars.svg
    │   │   │   │   ├── sun.svg
    │   │   │   │   ├── trending-down.svg
    │   │   │   │   ├── trending-level.svg
    │   │   │   │   ├── trending-up.svg
    │   │   │   │   ├── txt.svg
    │   │   │   │   ├── unknown-file.svg
    │   │   │   │   ├── unlink.svg
    │   │   │   │   └── xls.svg
    │   │   │   ├── TableDeleteColumnIcon.tsx
    │   │   │   ├── TableDeleteRowIcon.tsx
    │   │   │   ├── TableInsertColumnIcon.tsx
    │   │   │   ├── TableInsertRowIcon.tsx
    │   │   │   ├── TrashIcon.tsx
    │   │   │   ├── TrendingDownIcon.tsx
    │   │   │   ├── TrendingLevelIcon.tsx
    │   │   │   ├── TrendingUpIcon.tsx
    │   │   │   ├── TxtIcon.tsx
    │   │   │   ├── UnknownFileIcon.tsx
    │   │   │   ├── UnlinkIcon.tsx
    │   │   │   ├── UserIcon.tsx
    │   │   │   ├── WarningIcon.tsx
    │   │   │   └── XlsIcon.tsx
    │   │   ├── IconProvider.tsx
    │   │   ├── IconRegistryContext.tsx
    │   │   ├── IFrame
    │   │   │   ├── IFrame.md
    │   │   │   ├── IFrame.module.scss
    │   │   │   ├── IFrame.spec.ts
    │   │   │   ├── IFrame.tsx
    │   │   │   └── IFrameNative.tsx
    │   │   ├── Image
    │   │   │   ├── Image.md
    │   │   │   ├── Image.module.scss
    │   │   │   ├── Image.spec.ts
    │   │   │   ├── Image.tsx
    │   │   │   └── ImageNative.tsx
    │   │   ├── Input
    │   │   │   ├── index.ts
    │   │   │   ├── InputAdornment.module.scss
    │   │   │   ├── InputAdornment.tsx
    │   │   │   ├── InputDivider.module.scss
    │   │   │   ├── InputDivider.tsx
    │   │   │   ├── InputLabel.module.scss
    │   │   │   ├── InputLabel.tsx
    │   │   │   ├── PartialInput.module.scss
    │   │   │   └── PartialInput.tsx
    │   │   ├── InspectButton
    │   │   │   ├── InspectButton.module.scss
    │   │   │   └── InspectButton.tsx
    │   │   ├── Items
    │   │   │   ├── Items.md
    │   │   │   ├── Items.spec.ts
    │   │   │   ├── Items.tsx
    │   │   │   └── ItemsNative.tsx
    │   │   ├── Link
    │   │   │   ├── Link.md
    │   │   │   ├── Link.module.scss
    │   │   │   ├── Link.spec.ts
    │   │   │   ├── Link.tsx
    │   │   │   └── LinkNative.tsx
    │   │   ├── List
    │   │   │   ├── doc-resources
    │   │   │   │   └── list-component-data.js
    │   │   │   ├── List.md
    │   │   │   ├── List.module.scss
    │   │   │   ├── List.spec.ts
    │   │   │   ├── List.tsx
    │   │   │   └── ListNative.tsx
    │   │   ├── Logo
    │   │   │   ├── doc-resources
    │   │   │   │   └── xmlui-logo.svg
    │   │   │   ├── Logo.md
    │   │   │   ├── Logo.tsx
    │   │   │   └── LogoNative.tsx
    │   │   ├── Markdown
    │   │   │   ├── CodeText.module.scss
    │   │   │   ├── CodeText.tsx
    │   │   │   ├── Markdown.md
    │   │   │   ├── Markdown.module.scss
    │   │   │   ├── Markdown.spec.ts
    │   │   │   ├── Markdown.tsx
    │   │   │   ├── MarkdownNative.tsx
    │   │   │   ├── parse-binding-expr.ts
    │   │   │   └── utils.ts
    │   │   ├── metadata-helpers.ts
    │   │   ├── ModalDialog
    │   │   │   ├── ConfirmationModalContextProvider.tsx
    │   │   │   ├── Dialog.module.scss
    │   │   │   ├── Dialog.tsx
    │   │   │   ├── ModalDialog.md
    │   │   │   ├── ModalDialog.module.scss
    │   │   │   ├── ModalDialog.spec.ts
    │   │   │   ├── ModalDialog.tsx
    │   │   │   ├── ModalDialogNative.tsx
    │   │   │   └── ModalVisibilityContext.tsx
    │   │   ├── NavGroup
    │   │   │   ├── NavGroup.md
    │   │   │   ├── NavGroup.module.scss
    │   │   │   ├── NavGroup.spec.ts
    │   │   │   ├── NavGroup.tsx
    │   │   │   ├── NavGroupContext.ts
    │   │   │   └── NavGroupNative.tsx
    │   │   ├── NavLink
    │   │   │   ├── NavLink.md
    │   │   │   ├── NavLink.module.scss
    │   │   │   ├── NavLink.spec.ts
    │   │   │   ├── NavLink.tsx
    │   │   │   └── NavLinkNative.tsx
    │   │   ├── NavPanel
    │   │   │   ├── NavPanel.md
    │   │   │   ├── NavPanel.module.scss
    │   │   │   ├── NavPanel.spec.ts
    │   │   │   ├── NavPanel.tsx
    │   │   │   └── NavPanelNative.tsx
    │   │   ├── NestedApp
    │   │   │   ├── AppWithCodeView.module.scss
    │   │   │   ├── AppWithCodeView.tsx
    │   │   │   ├── AppWithCodeViewNative.tsx
    │   │   │   ├── defaultProps.tsx
    │   │   │   ├── logo.svg
    │   │   │   ├── NestedApp.module.scss
    │   │   │   ├── NestedApp.tsx
    │   │   │   ├── NestedAppNative.tsx
    │   │   │   ├── Tooltip.module.scss
    │   │   │   ├── Tooltip.tsx
    │   │   │   └── utils.ts
    │   │   ├── NoResult
    │   │   │   ├── NoResult.md
    │   │   │   ├── NoResult.module.scss
    │   │   │   ├── NoResult.spec.ts
    │   │   │   ├── NoResult.tsx
    │   │   │   └── NoResultNative.tsx
    │   │   ├── NumberBox
    │   │   │   ├── numberbox-abstractions.ts
    │   │   │   ├── NumberBox.md
    │   │   │   ├── NumberBox.module.scss
    │   │   │   ├── NumberBox.spec.ts
    │   │   │   ├── NumberBox.tsx
    │   │   │   └── NumberBoxNative.tsx
    │   │   ├── Option
    │   │   │   ├── Option.md
    │   │   │   ├── Option.spec.ts
    │   │   │   ├── Option.tsx
    │   │   │   ├── OptionNative.tsx
    │   │   │   └── OptionTypeProvider.tsx
    │   │   ├── PageMetaTitle
    │   │   │   ├── PageMetaTilteNative.tsx
    │   │   │   ├── PageMetaTitle.md
    │   │   │   ├── PageMetaTitle.spec.ts
    │   │   │   └── PageMetaTitle.tsx
    │   │   ├── Pages
    │   │   │   ├── Page.md
    │   │   │   ├── Pages.md
    │   │   │   ├── Pages.module.scss
    │   │   │   ├── Pages.tsx
    │   │   │   └── PagesNative.tsx
    │   │   ├── Pagination
    │   │   │   ├── Pagination.md
    │   │   │   ├── Pagination.module.scss
    │   │   │   ├── Pagination.spec.ts
    │   │   │   ├── Pagination.tsx
    │   │   │   └── PaginationNative.tsx
    │   │   ├── PositionedContainer
    │   │   │   ├── PositionedContainer.module.scss
    │   │   │   ├── PositionedContainer.tsx
    │   │   │   └── PositionedContainerNative.tsx
    │   │   ├── ProfileMenu
    │   │   │   ├── ProfileMenu.module.scss
    │   │   │   └── ProfileMenu.tsx
    │   │   ├── ProgressBar
    │   │   │   ├── ProgressBar.md
    │   │   │   ├── ProgressBar.module.scss
    │   │   │   ├── ProgressBar.spec.ts
    │   │   │   ├── ProgressBar.tsx
    │   │   │   └── ProgressBarNative.tsx
    │   │   ├── Queue
    │   │   │   ├── Queue.md
    │   │   │   ├── Queue.spec.ts
    │   │   │   ├── Queue.tsx
    │   │   │   ├── queueActions.ts
    │   │   │   └── QueueNative.tsx
    │   │   ├── RadioGroup
    │   │   │   ├── RadioGroup.md
    │   │   │   ├── RadioGroup.module.scss
    │   │   │   ├── RadioGroup.spec.ts
    │   │   │   ├── RadioGroup.tsx
    │   │   │   ├── RadioGroupNative.tsx
    │   │   │   ├── RadioItem.tsx
    │   │   │   └── RadioItemNative.tsx
    │   │   ├── RealTimeAdapter
    │   │   │   ├── RealTimeAdapter.tsx
    │   │   │   └── RealTimeAdapterNative.tsx
    │   │   ├── Redirect
    │   │   │   ├── Redirect.md
    │   │   │   ├── Redirect.spec.ts
    │   │   │   └── Redirect.tsx
    │   │   ├── ResponsiveBar
    │   │   │   ├── README.md
    │   │   │   ├── ResponsiveBar.md
    │   │   │   ├── ResponsiveBar.module.scss
    │   │   │   ├── ResponsiveBar.spec.ts
    │   │   │   ├── ResponsiveBar.tsx
    │   │   │   └── ResponsiveBarNative.tsx
    │   │   ├── Select
    │   │   │   ├── HiddenOption.tsx
    │   │   │   ├── 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.bin.json
    ├── tsconfig.json
    ├── tsconfig.node.json
    ├── 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/Select/SelectNative.tsx:
--------------------------------------------------------------------------------

```typescript
  1 | import {
  2 |   forwardRef,
  3 |   useCallback,
  4 |   useEffect,
  5 |   useMemo,
  6 |   useRef,
  7 |   useState,
  8 |   type CSSProperties,
  9 |   type ReactNode,
 10 | } from "react";
 11 | import { Popover, PopoverContent, PopoverTrigger, Portal } from "@radix-ui/react-popover";
 12 | import classnames from "classnames";
 13 | import styles from "./Select.module.scss";
 14 | import { composeRefs } from "@radix-ui/react-compose-refs";
 15 | 
 16 | import type { RegisterComponentApiFn, UpdateStateFn } from "../../abstractions/RendererDefs";
 17 | import { noop } from "../../components-core/constants";
 18 | import { useTheme } from "../../components-core/theming/ThemeContext";
 19 | import { useEvent } from "../../components-core/utils/misc";
 20 | import type { Option, ValidationStatus } from "../abstractions";
 21 | import Icon from "../Icon/IconNative";
 22 | import { SelectContext, useSelect } from "./SelectContext";
 23 | import OptionTypeProvider from "../Option/OptionTypeProvider";
 24 | import { OptionContext, useOption } from "./OptionContext";
 25 | import { HiddenOption } from "./HiddenOption";
 26 | 
 27 | const PART_LIST_WRAPPER = "listWrapper";
 28 | 
 29 | export const defaultProps = {
 30 |   enabled: true,
 31 |   placeholder: "",
 32 |   autoFocus: false,
 33 |   searchable: false,
 34 |   multiSelect: false,
 35 |   required: false,
 36 |   inProgress: false,
 37 |   inProgressNotificationMessage: "",
 38 |   readOnly: false,
 39 |   validationStatus: "none" as ValidationStatus,
 40 |   labelBreak: false,
 41 | };
 42 | 
 43 | export type SingleValueType = string | number;
 44 | export type ValueType = SingleValueType | SingleValueType[];
 45 | 
 46 | // Core Select component props
 47 | interface SelectProps {
 48 |   // Basic props
 49 |   id?: string;
 50 |   initialValue?: ValueType;
 51 |   value?: ValueType;
 52 |   enabled?: boolean;
 53 |   placeholder?: string;
 54 |   autoFocus?: boolean;
 55 |   readOnly?: boolean;
 56 |   required?: boolean;
 57 | 
 58 |   // Styling
 59 |   style?: CSSProperties;
 60 |   className?: string;
 61 |   dropdownHeight?: CSSProperties["height"];
 62 | 
 63 |   // Validation
 64 |   validationStatus?: ValidationStatus;
 65 | 
 66 |   // Event handlers
 67 |   onDidChange?: (newValue: ValueType) => void;
 68 |   onFocus?: () => void;
 69 |   onBlur?: () => void;
 70 | 
 71 |   // Multi-select and search
 72 |   searchable?: boolean;
 73 |   multiSelect?: boolean;
 74 | 
 75 |   // Templates and renderers (legacy - kept for compatibility)
 76 |   valueRenderer?: (item: Option, removeItem: () => void) => ReactNode;
 77 |   emptyListTemplate?: ReactNode;
 78 |   optionRenderer?: (item: Option, value: any, inTrigger: boolean) => ReactNode;
 79 | 
 80 |   // Progress state
 81 |   inProgress?: boolean;
 82 |   inProgressNotificationMessage?: string;
 83 | 
 84 |   // Internal
 85 |   updateState?: UpdateStateFn;
 86 |   registerComponentApi?: RegisterComponentApiFn;
 87 |   children?: ReactNode;
 88 | }
 89 | 
 90 | // Common trigger value display props
 91 | interface SelectTriggerValueProps {
 92 |   value: ValueType;
 93 |   placeholder: string;
 94 |   readOnly: boolean;
 95 |   multiSelect: boolean;
 96 |   options: Set<Option>;
 97 |   valueRenderer?: (item: Option, removeItem: () => void) => ReactNode;
 98 |   toggleOption: (value: SingleValueType) => void;
 99 | }
100 | 
101 | // Common trigger value display component
102 | const SelectTriggerValue = ({
103 |   value,
104 |   placeholder,
105 |   readOnly,
106 |   multiSelect,
107 |   options,
108 |   valueRenderer,
109 |   toggleOption,
110 | }: SelectTriggerValueProps) => {
111 |   if (multiSelect) {
112 |     if (Array.isArray(value) && value.length > 0) {
113 |       return (
114 |         <div className={styles.badgeListContainer}>
115 |           <div className={styles.badgeList}>
116 |             {value.map((v) =>
117 |               valueRenderer ? (
118 |                 valueRenderer(
119 |                   Array.from(options).find((o) => o.value === `${v}`),
120 |                   () => {
121 |                     toggleOption(v);
122 |                   },
123 |                 )
124 |               ) : (
125 |                 <span key={v} className={styles.badge}>
126 |                   {Array.from(options).find((o) => o.value === `${v}`)?.label}
127 |                   <Icon
128 |                     name="close"
129 |                     size="sm"
130 |                     onClick={(event) => {
131 |                       event.stopPropagation();
132 |                       toggleOption(v);
133 |                     }}
134 |                   />
135 |                 </span>
136 |               ),
137 |             )}
138 |           </div>
139 |         </div>
140 |       );
141 |     }
142 |     return (
143 |       <span placeholder={placeholder} className={styles.placeholder}>
144 |         {placeholder}
145 |       </span>
146 |     );
147 |   }
148 | 
149 |   // Single select
150 |   if (value !== undefined && value !== null && value !== "") {
151 |     const selectedOption = Array.from(options).find((o) => o.value === value);
152 |     return <div className={styles.selectValue}>{selectedOption?.label}</div>;
153 |   }
154 | 
155 |   return (
156 |     <div aria-placeholder={placeholder} className={styles.placeholder}>
157 |       {readOnly ? "" : placeholder || ""}
158 |     </div>
159 |   );
160 | };
161 | 
162 | // Common trigger actions (clear button + chevron)
163 | interface SelectTriggerActionsProps {
164 |   value: ValueType;
165 |   multiSelect: boolean;
166 |   enabled: boolean;
167 |   readOnly: boolean;
168 |   clearValue: () => void;
169 |   showChevron?: boolean;
170 | }
171 | 
172 | const SelectTriggerActions = ({
173 |   value,
174 |   multiSelect,
175 |   enabled,
176 |   readOnly,
177 |   clearValue,
178 |   showChevron = true,
179 | }: SelectTriggerActionsProps) => {
180 |   const hasValue = multiSelect
181 |     ? Array.isArray(value) && value.length > 0
182 |     : value !== undefined && value !== null && value !== "";
183 | 
184 |   return (
185 |     <div className={styles.actions}>
186 |       {hasValue && enabled && !readOnly && (
187 |         <span
188 |           className={styles.action}
189 |           onClick={(event) => {
190 |             event.stopPropagation();
191 |             clearValue();
192 |           }}
193 |         >
194 |           <Icon name="close" />
195 |         </span>
196 |       )}
197 |       {showChevron && (
198 |         <span className={styles.action}>
199 |           <Icon name="chevrondown" />
200 |         </span>
201 |       )}
202 |     </div>
203 |   );
204 | };
205 | 
206 | export const Select = forwardRef<HTMLDivElement, SelectProps>(function Select(
207 |   {
208 |     // Basic props
209 |     id,
210 |     initialValue,
211 |     value,
212 |     enabled = defaultProps.enabled,
213 |     placeholder = defaultProps.placeholder,
214 |     autoFocus = defaultProps.autoFocus,
215 |     readOnly = false,
216 |     required = defaultProps.required,
217 | 
218 |     // Styling
219 |     style,
220 |     className,
221 |     dropdownHeight,
222 | 
223 |     // Validation
224 |     validationStatus = defaultProps.validationStatus,
225 | 
226 |     // Event handlers
227 |     onDidChange = noop,
228 |     onFocus = noop,
229 |     onBlur = noop,
230 | 
231 |     // Multi-select and search
232 |     searchable = defaultProps.searchable,
233 |     multiSelect = defaultProps.multiSelect,
234 | 
235 |     emptyListTemplate,
236 |     valueRenderer,
237 |     optionRenderer,
238 | 
239 |     // Progress state
240 |     inProgress = defaultProps.inProgress,
241 |     inProgressNotificationMessage = defaultProps.inProgressNotificationMessage,
242 | 
243 |     // Internal
244 |     updateState = noop,
245 |     registerComponentApi,
246 |     children,
247 | 
248 |     ...rest
249 |   },
250 |   forwardedRef,
251 | ) {
252 |   const [referenceElement, setReferenceElement] = useState<HTMLElement | null>(null);
253 |   const [open, setOpen] = useState(false);
254 |   const [width, setWidth] = useState(0);
255 |   const observer = useRef<ResizeObserver>();
256 |   const { root } = useTheme();
257 |   const [options, setOptions] = useState(new Set<Option>());
258 |   const [searchTerm, setSearchTerm] = useState("");
259 |   const [selectedIndex, setSelectedIndex] = useState(-1);
260 | 
261 |   // Filter options based on search term
262 |   const filteredOptions = useMemo(() => {
263 |     if (!searchTerm || searchTerm.trim() === "") {
264 |       return Array.from(options);
265 |     }
266 | 
267 |     const searchLower = searchTerm.toLowerCase();
268 |     return Array.from(options).filter((option) => {
269 |       const extendedValue =
270 |         option.value + " " + option.label + " " + (option.keywords || []).join(" ");
271 |       return extendedValue.toLowerCase().includes(searchLower);
272 |     });
273 |   }, [options, searchTerm]);
274 | 
275 |   // Reset selected index when options change or dropdown closes
276 |   useEffect(() => {
277 |     if (!open) {
278 |       setSelectedIndex(-1);
279 |       setSearchTerm("");
280 |     }
281 |   }, [open]);
282 | 
283 |   // Set initial state based on the initialValue prop
284 |   useEffect(() => {
285 |     if (initialValue !== undefined) {
286 |       updateState({ value: initialValue }, { initial: true });
287 |     }
288 |   }, [initialValue, updateState]);
289 | 
290 |   // Observe the size of the reference element
291 |   useEffect(() => {
292 |     const current = referenceElement;
293 |     observer.current?.disconnect();
294 | 
295 |     if (current) {
296 |       observer.current = new ResizeObserver(() => setWidth(current.clientWidth));
297 |       observer.current.observe(current);
298 |     }
299 | 
300 |     return () => {
301 |       observer.current?.disconnect();
302 |     };
303 |   }, [referenceElement]);
304 | 
305 |   // Handle option selection
306 |   const toggleOption = useCallback(
307 |     (selectedValue: SingleValueType) => {
308 |       const newSelectedValue = multiSelect
309 |         ? Array.isArray(value)
310 |           ? value.map((v) => String(v)).includes(String(selectedValue))
311 |             ? value.filter((v) => String(v) !== String(selectedValue))
312 |             : [...value, selectedValue]
313 |           : [selectedValue]
314 |         : String(selectedValue) === String(value)
315 |           ? null
316 |           : selectedValue;
317 |       updateState({ value: newSelectedValue });
318 |       onDidChange(newSelectedValue);
319 |       if (!multiSelect) {
320 |         setOpen(false);
321 |       }
322 |     },
323 |     [multiSelect, value, updateState, onDidChange],
324 |   );
325 | 
326 |   // Clear selected value
327 |   const clearValue = useCallback(() => {
328 |     const newValue = multiSelect ? [] : "";
329 |     updateState({ value: newValue });
330 |     onDidChange(newValue);
331 |   }, [multiSelect, updateState, onDidChange]);
332 | 
333 |   // Helper functions to find next/previous enabled option
334 |   const findNextEnabledIndex = useCallback(
335 |     (currentIndex: number) => {
336 |       if (filteredOptions.length === 0) return -1;
337 | 
338 |       for (let i = currentIndex + 1; i < filteredOptions.length; i++) {
339 |         const item = filteredOptions[i];
340 |         if (item && item.enabled !== false) {
341 |           return i;
342 |         }
343 |       }
344 |       // Wrap around to beginning
345 |       for (let i = 0; i <= currentIndex; i++) {
346 |         const item = filteredOptions[i];
347 |         if (item && item.enabled !== false) {
348 |           return i;
349 |         }
350 |       }
351 |       return -1;
352 |     },
353 |     [filteredOptions],
354 |   );
355 | 
356 |   const findPreviousEnabledIndex = useCallback(
357 |     (currentIndex: number) => {
358 |       if (filteredOptions.length === 0) return -1;
359 | 
360 |       for (let i = currentIndex - 1; i >= 0; i--) {
361 |         const item = filteredOptions[i];
362 |         if (item && item.enabled !== false) {
363 |           return i;
364 |         }
365 |       }
366 |       // Wrap around to end
367 |       for (let i = filteredOptions.length - 1; i >= currentIndex; i--) {
368 |         const item = filteredOptions[i];
369 |         if (item && item.enabled !== false) {
370 |           return i;
371 |         }
372 |       }
373 |       return -1;
374 |     },
375 |     [filteredOptions],
376 |   );
377 | 
378 |   // Keyboard navigation
379 |   const handleKeyDown = useCallback(
380 |     (event: React.KeyboardEvent) => {
381 |       if (!open) return;
382 | 
383 |       switch (event.key) {
384 |         case "ArrowDown":
385 |           event.preventDefault();
386 |           setSelectedIndex((prev) => {
387 |             const nextIndex = findNextEnabledIndex(prev);
388 |             return nextIndex !== -1 ? nextIndex : prev;
389 |           });
390 |           break;
391 |         case "ArrowUp":
392 |           event.preventDefault();
393 |           setSelectedIndex((prev) => {
394 |             const prevIndex = findPreviousEnabledIndex(prev);
395 |             return prevIndex !== -1 ? prevIndex : prev;
396 |           });
397 |           break;
398 |         case "Enter":
399 |           event.preventDefault();
400 |           if (selectedIndex >= 0 && selectedIndex < filteredOptions.length) {
401 |             const selectedItem = filteredOptions[selectedIndex];
402 |             if (selectedItem && selectedItem.enabled !== false) {
403 |               toggleOption(selectedItem.value);
404 |               // Close dropdown after selecting in single-select mode
405 |               if (!multiSelect) {
406 |                 setOpen(false);
407 |               }
408 |             }
409 |           }
410 |           break;
411 |         case "Escape":
412 |           event.preventDefault();
413 |           setOpen(false);
414 |           break;
415 |       }
416 |     },
417 |     [
418 |       open,
419 |       selectedIndex,
420 |       filteredOptions,
421 |       toggleOption,
422 |       multiSelect,
423 |       findNextEnabledIndex,
424 |       findPreviousEnabledIndex,
425 |     ],
426 |   );
427 | 
428 |   // Register component API for external interactions
429 |   const focus = useCallback(() => {
430 |     referenceElement?.focus();
431 |   }, [referenceElement]);
432 | 
433 |   const setValue = useEvent((newValue: string) => {
434 |     toggleOption(newValue);
435 |   });
436 | 
437 |   const reset = useEvent(() => {
438 |     if (initialValue !== undefined) {
439 |       updateState({ value: initialValue });
440 |       onDidChange(initialValue);
441 |     } else {
442 |       clearValue();
443 |     }
444 |   });
445 | 
446 |   useEffect(() => {
447 |     registerComponentApi?.({
448 |       focus,
449 |       setValue,
450 |       reset,
451 |     });
452 |   }, [focus, registerComponentApi, setValue, reset]);
453 | 
454 |   // Render the "empty list" message
455 |   const emptyListNode = useMemo(
456 |     () =>
457 |       emptyListTemplate ?? (
458 |         <div className={styles.selectEmpty}>
459 |           <Icon name="noresult" />
460 |           <span>List is empty</span>
461 |         </div>
462 |       ),
463 |     [emptyListTemplate],
464 |   );
465 | 
466 |   const onOptionAdd = useCallback((option: Option) => {
467 |     setOptions((prev) => {
468 |       // Check if option with same value already exists
469 |       const exists = Array.from(prev).some((opt) => opt.value === option.value);
470 |       if (exists) {
471 |         return prev;
472 |       }
473 |       const newSet = new Set(prev);
474 |       newSet.add(option);
475 |       return newSet;
476 |     });
477 |   }, []);
478 | 
479 |   const onOptionRemove = useCallback((option: Option) => {
480 |     setOptions((prev) => {
481 |       const optionsSet = new Set(prev);
482 |       optionsSet.delete(option);
483 |       return optionsSet;
484 |     });
485 |   }, []);
486 | 
487 |   const optionContextValue = useMemo(
488 |     () => ({
489 |       onOptionAdd,
490 |       onOptionRemove,
491 |     }),
492 |     [onOptionAdd, onOptionRemove],
493 |   );
494 | 
495 |   const selectContextValue = useMemo(
496 |     () => ({
497 |       multiSelect,
498 |       readOnly,
499 |       value,
500 |       onChange: toggleOption,
501 |       setOpen,
502 |       setSelectedIndex,
503 |       options,
504 |       highlightedValue:
505 |         selectedIndex >= 0 &&
506 |         selectedIndex < filteredOptions.length &&
507 |         filteredOptions[selectedIndex]
508 |           ? filteredOptions[selectedIndex].value
509 |           : undefined,
510 |       optionRenderer,
511 |     }),
512 |     [
513 |       multiSelect,
514 |       readOnly,
515 |       value,
516 |       toggleOption,
517 |       options,
518 |       selectedIndex,
519 |       filteredOptions,
520 |       optionRenderer,
521 |     ],
522 |   );
523 | 
524 |   return (
525 |     <SelectContext.Provider value={selectContextValue}>
526 |       <OptionContext.Provider value={optionContextValue}>
527 |         <OptionTypeProvider Component={VisibleSelectOption}>
528 |           <Popover
529 |             open={open}
530 |             onOpenChange={(isOpen) => {
531 |               if (!enabled) return;
532 |               setOpen(isOpen);
533 |               // Reset highlighted option when dropdown closes
534 |               setSelectedIndex(-1);
535 |             }}
536 |             modal={false}
537 |           >
538 |             <PopoverTrigger
539 |               {...rest}
540 |               ref={composeRefs(setReferenceElement, forwardedRef)}
541 |               id={id}
542 |               aria-haspopup="listbox"
543 |               style={style}
544 |               onFocus={onFocus}
545 |               onBlur={onBlur}
546 |               disabled={!enabled}
547 |               aria-expanded={open}
548 |               data-part-id={PART_LIST_WRAPPER}
549 |               className={classnames(className, styles.selectTrigger, styles[validationStatus], {
550 |                 [styles.disabled]: !enabled,
551 |                 [styles.multi]: multiSelect,
552 |               })}
553 |               role="combobox"
554 |               onClick={(event) => {
555 |                 if (!enabled) return;
556 |                 event.stopPropagation();
557 |                 setOpen((prev) => !prev);
558 |               }}
559 |               onKeyDown={(event) => {
560 |                 if (!enabled || readOnly) return;
561 | 
562 |                 // Handle opening dropdown with keyboard
563 |                 if (
564 |                   !open &&
565 |                   (event.key === "ArrowDown" ||
566 |                     event.key === "ArrowUp" ||
567 |                     event.key === " " ||
568 |                     event.key === "Enter")
569 |                 ) {
570 |                   event.preventDefault();
571 |                   setOpen(true);
572 |                   // Set initial selectedIndex to first enabled option if options exist
573 |                   if (filteredOptions.length > 0) {
574 |                     const firstEnabledIndex = findNextEnabledIndex(-1);
575 |                     setSelectedIndex(firstEnabledIndex !== -1 ? firstEnabledIndex : 0);
576 |                   }
577 |                   return;
578 |                 }
579 | 
580 |                 // Handle keyboard navigation when dropdown is open
581 |                 if (open) {
582 |                   handleKeyDown(event);
583 |                 }
584 |               }}
585 |               autoFocus={autoFocus}
586 |             >
587 |               <SelectTriggerValue
588 |                 value={value}
589 |                 placeholder={placeholder}
590 |                 readOnly={readOnly}
591 |                 multiSelect={multiSelect}
592 |                 options={options}
593 |                 valueRenderer={valueRenderer}
594 |                 toggleOption={toggleOption}
595 |               />
596 |               <SelectTriggerActions
597 |                 value={value}
598 |                 multiSelect={multiSelect}
599 |                 enabled={enabled}
600 |                 readOnly={readOnly}
601 |                 clearValue={clearValue}
602 |               />
603 |             </PopoverTrigger>
604 |             {open && (
605 |               <Portal container={root}>
606 |                 <PopoverContent
607 |                   style={{ minWidth: width, height: dropdownHeight }}
608 |                   className={styles.selectContent}
609 |                   onKeyDown={handleKeyDown}
610 |                 >
611 |                   <div className={styles.command}>
612 |                     {searchable ? (
613 |                       <div className={styles.commandInputContainer}>
614 |                         <Icon name="search" />
615 |                         <input
616 |                           role="searchbox"
617 |                           className={classnames(styles.commandInput)}
618 |                           placeholder="Search..."
619 |                           value={searchTerm}
620 |                           onChange={(e) => setSearchTerm(e.target.value)}
621 |                         />
622 |                       </div>
623 |                     ) : (
624 |                       <button aria-hidden="true" className={styles.srOnly} />
625 |                     )}
626 |                     <div role="listbox" className={styles.commandList}>
627 |                       {inProgress ? (
628 |                         <div className={styles.loading}>{inProgressNotificationMessage}</div>
629 |                       ) : searchable && searchTerm ? (
630 |                         // When searching, show only filtered options
631 |                         filteredOptions.length === 0 ? (
632 |                           <div>{emptyListNode}</div>
633 |                         ) : (
634 |                           filteredOptions.map(({ value, label, enabled, keywords }, index) => (
635 |                             <SelectOptionItem
636 |                               key={value}
637 |                               readOnly={readOnly}
638 |                               value={value}
639 |                               label={label}
640 |                               enabled={enabled}
641 |                               keywords={keywords}
642 |                               isHighlighted={selectedIndex === index}
643 |                               itemIndex={index}
644 |                             />
645 |                           ))
646 |                         )
647 |                       ) : (
648 |                         // When not searching, show all children (includes Options and other components like Button)
649 |                         <>
650 |                           {children}
651 |                           {options.size === 0 && <div>{emptyListNode}</div>}
652 |                         </>
653 |                       )}
654 |                     </div>
655 |                   </div>
656 |                 </PopoverContent>
657 |               </Portal>
658 |             )}
659 |           </Popover>
660 |         </OptionTypeProvider>
661 |         {/* Hidden render to collect options when dropdown is closed */}
662 |         {!open && (
663 |           <div style={{ display: "none" }}>
664 |             <OptionTypeProvider Component={HiddenOption}>{children}</OptionTypeProvider>
665 |           </div>
666 |         )}
667 |       </OptionContext.Provider>
668 |     </SelectContext.Provider>
669 |   );
670 | });
671 | 
672 | // Visible option component for rendering items in the dropdown (used by OptionTypeProvider)
673 | function VisibleSelectOption(option: Option) {
674 |   const { value, label, enabled = true, children } = option;
675 |   const { onOptionAdd } = useOption();
676 |   const {
677 |     value: selectedValue,
678 |     onChange,
679 |     multiSelect,
680 |     readOnly,
681 |     setOpen,
682 |     highlightedValue,
683 |     optionRenderer,
684 |   } = useSelect();
685 | 
686 |   const optionRef = useRef<HTMLDivElement>(null);
687 | 
688 |   const opt: Option = useMemo(() => {
689 |     return {
690 |       ...option,
691 |       label: label ?? "",
692 |       keywords: option.keywords || [label ?? ""],
693 |     };
694 |   }, [option, label]);
695 | 
696 |   useEffect(() => {
697 |     onOptionAdd(opt);
698 |     // Don't remove options when component unmounts - they should persist
699 |   }, [opt, onOptionAdd]);
700 | 
701 |   const selected = useMemo(() => {
702 |     return Array.isArray(selectedValue) && multiSelect
703 |       ? selectedValue.map((v) => String(v)).includes(value)
704 |       : String(selectedValue) === String(value);
705 |   }, [selectedValue, value, multiSelect]);
706 | 
707 |   const isHighlighted = useMemo(() => {
708 |     return highlightedValue !== undefined && String(highlightedValue) === String(value);
709 |   }, [highlightedValue, value]);
710 | 
711 |   // Scroll into view when highlighted
712 |   useEffect(() => {
713 |     if (isHighlighted && optionRef.current) {
714 |       optionRef.current.scrollIntoView({ block: "nearest", behavior: "smooth" });
715 |     }
716 |   }, [isHighlighted]);
717 | 
718 |   const handleClick = () => {
719 |     if (readOnly) {
720 |       setOpen(false);
721 |       return;
722 |     }
723 |     if (enabled) {
724 |       onChange(value);
725 |     }
726 |   };
727 | 
728 |   return (
729 |     <div
730 |       ref={optionRef}
731 |       role="option"
732 |       aria-disabled={!enabled}
733 |       aria-selected={selected}
734 |       className={classnames(styles.multiSelectOption, {
735 |         [styles.disabledOption]: !enabled,
736 |         [styles.highlighted]: isHighlighted,
737 |       })}
738 |       onMouseDown={(e) => {
739 |         e.preventDefault();
740 |         e.stopPropagation();
741 |       }}
742 |       onClick={handleClick}
743 |       data-state={selected ? "checked" : undefined}
744 |     >
745 |       <div className={styles.multiSelectOptionContent}>
746 |         {optionRenderer ? (
747 |           optionRenderer({ label, value, enabled }, selectedValue as any, false)
748 |         ) : (
749 |           <>
750 |             {children || label}
751 |             {selected && <Icon name="checkmark" />}
752 |           </>
753 |         )}
754 |       </div>
755 |     </div>
756 |   );
757 | }
758 | 
759 | // Internal option component for rendering items in the dropdown
760 | function SelectOptionItem(option: Option & { isHighlighted?: boolean; itemIndex?: number }) {
761 |   const {
762 |     value,
763 |     label,
764 |     enabled = true,
765 |     readOnly,
766 |     children,
767 |     isHighlighted = false,
768 |     itemIndex,
769 |   } = option;
770 |   const {
771 |     value: selectedValue,
772 |     onChange,
773 |     multiSelect,
774 |     setOpen,
775 |     setSelectedIndex,
776 |     optionRenderer,
777 |   } = useSelect();
778 | 
779 |   const optionRef = useRef<HTMLDivElement>(null);
780 | 
781 |   const selected = useMemo(() => {
782 |     return Array.isArray(selectedValue) && multiSelect
783 |       ? selectedValue.map((v) => String(v)).includes(value)
784 |       : String(selectedValue) === String(value);
785 |   }, [selectedValue, value, multiSelect]);
786 | 
787 |   // Scroll into view when highlighted
788 |   useEffect(() => {
789 |     if (isHighlighted && optionRef.current) {
790 |       optionRef.current.scrollIntoView({ block: "nearest", behavior: "smooth" });
791 |     }
792 |   }, [isHighlighted]);
793 | 
794 |   const handleClick = () => {
795 |     if (readOnly) {
796 |       setOpen(false);
797 |       return;
798 |     }
799 |     if (enabled) {
800 |       onChange(value);
801 |     }
802 |   };
803 | 
804 |   return (
805 |     <div
806 |       ref={optionRef}
807 |       role="option"
808 |       aria-disabled={!enabled}
809 |       aria-selected={selected}
810 |       className={classnames(styles.multiSelectOption, {
811 |         [styles.disabledOption]: !enabled,
812 |         [styles.highlighted]: isHighlighted,
813 |       })}
814 |       onMouseDown={(e) => {
815 |         e.preventDefault();
816 |         e.stopPropagation();
817 |       }}
818 |       onMouseEnter={() => {
819 |         if (itemIndex !== undefined && setSelectedIndex && enabled) {
820 |           setSelectedIndex(itemIndex);
821 |         }
822 |       }}
823 |       onClick={handleClick}
824 |       data-state={selected ? "checked" : undefined}
825 |     >
826 |       <div className={styles.multiSelectOptionContent}>
827 |         {optionRenderer ? (
828 |           optionRenderer({ label, value, enabled }, selectedValue as any, false)
829 |         ) : (
830 |           <>
831 |             {children || label}
832 |             {selected && <Icon name="checkmark" />}
833 |           </>
834 |         )}
835 |       </div>
836 |     </div>
837 |   );
838 | }
839 | 
```
Page 99/183FirstPrevNextLast