#
tokens: 46647/50000 3/1629 files (page 91/186)
lines: on (toggle) GitHub
raw markdown copy reset
This is page 91 of 186. Use http://codebase.md/xmlui-org/xmlui/xmlui/tools/vscode/resources/xmlui-markup-syntax-highlighting.png?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-swa.yml
│       ├── deploy-blog.yml
│       ├── deploy-docs-optimized.yml
│       ├── deploy-docs-swa.yml
│       ├── deploy-docs.yml
│       ├── prepare-versions.yml
│       ├── release-packages.yml
│       ├── run-all-tests.yml
│       └── run-smoke-tests.yml
├── .gitignore
├── .prettierrc.js
├── .vscode
│   ├── launch.json
│   └── settings.json
├── blog
│   ├── .gitignore
│   ├── .gitkeep
│   ├── CHANGELOG.md
│   ├── extensions.ts
│   ├── index.html
│   ├── index.ts
│   ├── package.json
│   ├── public
│   │   ├── blog
│   │   │   ├── images
│   │   │   │   ├── an-advanced-codefence.gif
│   │   │   │   ├── an-advanced-codefence.mp4
│   │   │   │   ├── blog-page-component.png
│   │   │   │   ├── blog-scrabble.png
│   │   │   │   ├── codefence-runner.png
│   │   │   │   ├── integrated-blog-search.png
│   │   │   │   ├── lorem-ipsum.png
│   │   │   │   ├── playground-checkbox-source.png
│   │   │   │   ├── playground.png
│   │   │   │   ├── use-xmlui-mcp-to-find-a-howto.png
│   │   │   │   └── xmlui-demo-gallery.png
│   │   │   ├── introducing-xmlui.md
│   │   │   ├── lorem-ipsum.md
│   │   │   ├── newest-post.md
│   │   │   ├── older-post.md
│   │   │   ├── xmlui-playground.md
│   │   │   └── xmlui-powered-blog.md
│   │   ├── mockServiceWorker.js
│   │   ├── resources
│   │   │   ├── favicon.ico
│   │   │   ├── files
│   │   │   │   └── for-download
│   │   │   │       └── xmlui
│   │   │   │           └── xmlui-standalone.umd.js
│   │   │   ├── github.svg
│   │   │   ├── llms.txt
│   │   │   ├── logo-dark.svg
│   │   │   ├── logo.svg
│   │   │   ├── pg-popout.svg
│   │   │   ├── rss.svg
│   │   │   └── xmlui-logo.svg
│   │   ├── serve.json
│   │   ├── staticwebapp.config.json
│   │   └── web.config
│   ├── scripts
│   │   ├── download-latest-xmlui.js
│   │   ├── generate-rss.js
│   │   ├── get-releases.js
│   │   └── utils.js
│   ├── src
│   │   ├── components
│   │   │   ├── BlogOverview.xmlui
│   │   │   ├── BlogPage.xmlui
│   │   │   └── PageNotFound.xmlui
│   │   ├── config.ts
│   │   ├── Main.xmlui
│   │   └── themes
│   │       └── blog-theme.ts
│   └── tsconfig.json
├── CONTRIBUTING.md
├── docs
│   ├── .gitignore
│   ├── CHANGELOG.md
│   ├── ComponentRefLinks.txt
│   ├── content
│   │   ├── _meta.json
│   │   ├── components
│   │   │   ├── _meta.json
│   │   │   ├── _overview.md
│   │   │   ├── APICall.md
│   │   │   ├── App.md
│   │   │   ├── AppHeader.md
│   │   │   ├── AppState.md
│   │   │   ├── AutoComplete.md
│   │   │   ├── Avatar.md
│   │   │   ├── Backdrop.md
│   │   │   ├── Badge.md
│   │   │   ├── BarChart.md
│   │   │   ├── Bookmark.md
│   │   │   ├── Breakout.md
│   │   │   ├── Button.md
│   │   │   ├── Card.md
│   │   │   ├── Carousel.md
│   │   │   ├── ChangeListener.md
│   │   │   ├── Checkbox.md
│   │   │   ├── CHStack.md
│   │   │   ├── ColorPicker.md
│   │   │   ├── Column.md
│   │   │   ├── ContentSeparator.md
│   │   │   ├── CVStack.md
│   │   │   ├── DataSource.md
│   │   │   ├── DateInput.md
│   │   │   ├── DatePicker.md
│   │   │   ├── DonutChart.md
│   │   │   ├── DropdownMenu.md
│   │   │   ├── EmojiSelector.md
│   │   │   ├── ExpandableItem.md
│   │   │   ├── FileInput.md
│   │   │   ├── FileUploadDropZone.md
│   │   │   ├── FlowLayout.md
│   │   │   ├── Footer.md
│   │   │   ├── Form.md
│   │   │   ├── FormItem.md
│   │   │   ├── FormSection.md
│   │   │   ├── Fragment.md
│   │   │   ├── H1.md
│   │   │   ├── H2.md
│   │   │   ├── H3.md
│   │   │   ├── H4.md
│   │   │   ├── H5.md
│   │   │   ├── H6.md
│   │   │   ├── Heading.md
│   │   │   ├── HSplitter.md
│   │   │   ├── HStack.md
│   │   │   ├── Icon.md
│   │   │   ├── IFrame.md
│   │   │   ├── Image.md
│   │   │   ├── Items.md
│   │   │   ├── LabelList.md
│   │   │   ├── Legend.md
│   │   │   ├── LineChart.md
│   │   │   ├── Link.md
│   │   │   ├── List.md
│   │   │   ├── Logo.md
│   │   │   ├── Markdown.md
│   │   │   ├── MenuItem.md
│   │   │   ├── MenuSeparator.md
│   │   │   ├── ModalDialog.md
│   │   │   ├── NavGroup.md
│   │   │   ├── NavLink.md
│   │   │   ├── NavPanel.md
│   │   │   ├── NoResult.md
│   │   │   ├── NumberBox.md
│   │   │   ├── Option.md
│   │   │   ├── Page.md
│   │   │   ├── PageMetaTitle.md
│   │   │   ├── Pages.md
│   │   │   ├── Pagination.md
│   │   │   ├── PasswordInput.md
│   │   │   ├── PieChart.md
│   │   │   ├── ProgressBar.md
│   │   │   ├── Queue.md
│   │   │   ├── RadioGroup.md
│   │   │   ├── RealTimeAdapter.md
│   │   │   ├── Redirect.md
│   │   │   ├── Select.md
│   │   │   ├── Slider.md
│   │   │   ├── Slot.md
│   │   │   ├── SpaceFiller.md
│   │   │   ├── Spinner.md
│   │   │   ├── Splitter.md
│   │   │   ├── Stack.md
│   │   │   ├── StickyBox.md
│   │   │   ├── SubMenuItem.md
│   │   │   ├── Switch.md
│   │   │   ├── TabItem.md
│   │   │   ├── Table.md
│   │   │   ├── TableOfContents.md
│   │   │   ├── Tabs.md
│   │   │   ├── Text.md
│   │   │   ├── TextArea.md
│   │   │   ├── TextBox.md
│   │   │   ├── Theme.md
│   │   │   ├── TimeInput.md
│   │   │   ├── Timer.md
│   │   │   ├── ToneChangerButton.md
│   │   │   ├── ToneSwitch.md
│   │   │   ├── Tooltip.md
│   │   │   ├── Tree.md
│   │   │   ├── VSplitter.md
│   │   │   ├── VStack.md
│   │   │   ├── xmlui-animations
│   │   │   │   ├── _meta.json
│   │   │   │   ├── _overview.md
│   │   │   │   ├── Animation.md
│   │   │   │   ├── FadeAnimation.md
│   │   │   │   ├── FadeInAnimation.md
│   │   │   │   ├── FadeOutAnimation.md
│   │   │   │   ├── ScaleAnimation.md
│   │   │   │   └── SlideInAnimation.md
│   │   │   ├── xmlui-pdf
│   │   │   │   ├── _meta.json
│   │   │   │   ├── _overview.md
│   │   │   │   └── Pdf.md
│   │   │   ├── xmlui-spreadsheet
│   │   │   │   ├── _meta.json
│   │   │   │   ├── _overview.md
│   │   │   │   └── Spreadsheet.md
│   │   │   └── xmlui-website-blocks
│   │   │       ├── _meta.json
│   │   │       ├── _overview.md
│   │   │       ├── Carousel.md
│   │   │       ├── HelloMd.md
│   │   │       ├── HeroSection.md
│   │   │       └── ScrollToTop.md
│   │   └── extensions
│   │       ├── _meta.json
│   │       ├── xmlui-animations
│   │       │   ├── _meta.json
│   │       │   ├── _overview.md
│   │       │   ├── Animation.md
│   │       │   ├── FadeAnimation.md
│   │       │   ├── FadeInAnimation.md
│   │       │   ├── FadeOutAnimation.md
│   │       │   ├── ScaleAnimation.md
│   │       │   └── SlideInAnimation.md
│   │       └── xmlui-website-blocks
│   │           ├── _meta.json
│   │           ├── _overview.md
│   │           ├── Carousel.md
│   │           ├── 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.module.scss
│   │       │   ├── CodeSelector.tsx
│   │       │   ├── ConfirmationDialog.module.scss
│   │       │   ├── ConfirmationDialog.tsx
│   │       │   ├── Editor.tsx
│   │       │   ├── Header.module.scss
│   │       │   ├── Header.tsx
│   │       │   ├── Playground.tsx
│   │       │   ├── PlaygroundContent.module.scss
│   │       │   ├── PlaygroundContent.tsx
│   │       │   ├── PlaygroundNative.module.scss
│   │       │   ├── PlaygroundNative.tsx
│   │       │   ├── Preview.tsx
│   │       │   ├── StandalonePlayground.tsx
│   │       │   ├── StandalonePlaygroundNative.module.scss
│   │       │   ├── StandalonePlaygroundNative.tsx
│   │       │   ├── ThemeSwitcher.module.scss
│   │       │   ├── ThemeSwitcher.tsx
│   │       │   └── utils.ts
│   │       ├── providers
│   │       │   ├── Toast.module.scss
│   │       │   └── ToastProvider.tsx
│   │       ├── state
│   │       │   └── store.ts
│   │       ├── themes
│   │       │   └── theme.ts
│   │       └── utils
│   │           └── helpers.ts
│   ├── xmlui-search
│   │   ├── .gitignore
│   │   ├── CHANGELOG.md
│   │   ├── demo
│   │   │   └── Main.xmlui
│   │   ├── index.html
│   │   ├── index.ts
│   │   ├── meta
│   │   │   └── componentsMetadata.ts
│   │   ├── package.json
│   │   └── src
│   │       ├── index.tsx
│   │       ├── Search.module.scss
│   │       └── Search.tsx
│   ├── xmlui-spreadsheet
│   │   ├── .gitignore
│   │   ├── demo
│   │   │   └── Main.xmlui
│   │   ├── index.html
│   │   ├── index.ts
│   │   ├── meta
│   │   │   └── componentsMetadata.ts
│   │   ├── package.json
│   │   └── src
│   │       ├── index.tsx
│   │       ├── Spreadsheet.tsx
│   │       └── SpreadsheetNative.tsx
│   └── xmlui-website-blocks
│       ├── .gitignore
│       ├── CHANGELOG.md
│       ├── demo
│       │   ├── components
│       │   │   ├── HeroBackgroundBreakoutPage.xmlui
│       │   │   ├── HeroBackgroundsPage.xmlui
│       │   │   ├── HeroContentsPage.xmlui
│       │   │   ├── HeroTextAlignPage.xmlui
│       │   │   ├── HeroTextPage.xmlui
│       │   │   └── HeroTonesPage.xmlui
│       │   ├── Main.xmlui
│       │   └── themes
│       │       └── default.ts
│       ├── index.html
│       ├── index.ts
│       ├── meta
│       │   └── componentsMetadata.ts
│       ├── package.json
│       ├── public
│       │   └── resources
│       │       ├── building.jpg
│       │       └── xmlui-logo.svg
│       └── src
│           ├── Carousel
│           │   ├── Carousel.module.scss
│           │   ├── Carousel.tsx
│           │   ├── CarouselContext.tsx
│           │   └── CarouselNative.tsx
│           ├── FancyButton
│           │   ├── FancyButton.module.scss
│           │   ├── FancyButton.tsx
│           │   └── FancyButton.xmlui
│           ├── Hello
│           │   ├── Hello.tsx
│           │   ├── Hello.xmlui
│           │   └── Hello.xmlui.xs
│           ├── HeroSection
│           │   ├── HeroSection.module.scss
│           │   ├── HeroSection.spec.ts
│           │   ├── HeroSection.tsx
│           │   └── HeroSectionNative.tsx
│           ├── index.tsx
│           ├── ScrollToTop
│           │   ├── ScrollToTop.module.scss
│           │   ├── ScrollToTop.tsx
│           │   └── ScrollToTopNative.tsx
│           └── vite-env.d.ts
├── playwright.config.ts
├── README.md
├── tools
│   ├── codefence
│   │   └── xmlui-code-fence-docs.md
│   ├── create-app
│   │   ├── .gitignore
│   │   ├── CHANGELOG.md
│   │   ├── create-app.ts
│   │   ├── helpers
│   │   │   ├── copy.ts
│   │   │   ├── get-pkg-manager.ts
│   │   │   ├── git.ts
│   │   │   ├── install.ts
│   │   │   ├── is-folder-empty.ts
│   │   │   ├── is-writeable.ts
│   │   │   ├── make-dir.ts
│   │   │   └── validate-pkg.ts
│   │   ├── index.ts
│   │   ├── package.json
│   │   ├── templates
│   │   │   ├── default
│   │   │   │   └── ts
│   │   │   │       ├── gitignore
│   │   │   │       ├── index.html
│   │   │   │       ├── index.ts
│   │   │   │       ├── public
│   │   │   │       │   ├── mockServiceWorker.js
│   │   │   │       │   ├── resources
│   │   │   │       │   │   ├── favicon.ico
│   │   │   │       │   │   └── xmlui-logo.svg
│   │   │   │       │   └── serve.json
│   │   │   │       └── src
│   │   │   │           ├── components
│   │   │   │           │   ├── ApiAware.xmlui
│   │   │   │           │   ├── Home.xmlui
│   │   │   │           │   ├── IncButton.xmlui
│   │   │   │           │   └── PagePanel.xmlui
│   │   │   │           ├── config.ts
│   │   │   │           └── Main.xmlui
│   │   │   ├── index.ts
│   │   │   └── types.ts
│   │   └── tsconfig.json
│   ├── create-xmlui-hello-world
│   │   ├── index.js
│   │   └── package.json
│   └── vscode
│       ├── .gitignore
│       ├── .vscode
│       │   ├── launch.json
│       │   └── tasks.json
│       ├── .vscodeignore
│       ├── build.sh
│       ├── CHANGELOG.md
│       ├── esbuild.js
│       ├── eslint.config.mjs
│       ├── formatter-docs.md
│       ├── generate-test-sample.sh
│       ├── LICENSE.md
│       ├── package-lock.json
│       ├── package.json
│       ├── README.md
│       ├── resources
│       │   ├── xmlui-logo.png
│       │   └── xmlui-markup-syntax-highlighting.png
│       ├── src
│       │   ├── extension.ts
│       │   └── server.ts
│       ├── syntaxes
│       │   └── xmlui.tmLanguage.json
│       ├── test-samples
│       │   └── sample.xmlui
│       ├── tsconfig.json
│       └── tsconfig.tsbuildinfo
├── turbo.json
└── xmlui
    ├── .gitignore
    ├── bin
    │   ├── bootstrap.cjs
    │   ├── bootstrap.js
    │   ├── build-lib.ts
    │   ├── build.ts
    │   ├── index.ts
    │   ├── preview.ts
    │   ├── start.ts
    │   ├── vite-xmlui-plugin.ts
    │   └── viteConfig.ts
    ├── CHANGELOG.md
    ├── conventions
    │   ├── component-qa-checklist.md
    │   ├── copilot-conventions.md
    │   ├── create-xmlui-components.md
    │   ├── mermaid.md
    │   ├── testing-conventions.md
    │   └── xmlui-in-a-nutshell.md
    ├── dev-docs
    │   ├── accessibility.md
    │   ├── build-system.md
    │   ├── build-xmlui.md
    │   ├── component-behaviors.md
    │   ├── component-metadata.md
    │   ├── components-with-options.md
    │   ├── containers.md
    │   ├── data-operations.md
    │   ├── glossary.md
    │   ├── index.md
    │   ├── next
    │   │   ├── component-dev-guide.md
    │   │   ├── configuration-management-enhancement-summary.md
    │   │   ├── documentation-scripts-refactoring-complete-summary.md
    │   │   ├── documentation-scripts-refactoring-plan.md
    │   │   ├── duplicate-pattern-extraction-summary.md
    │   │   ├── error-handling-standardization-summary.md
    │   │   ├── generating-component-reference.md
    │   │   ├── index.md
    │   │   ├── logging-consistency-implementation-summary.md
    │   │   ├── project-build.md
    │   │   ├── project-structure.md
    │   │   ├── theme-context.md
    │   │   ├── tiptap-design-considerations.md
    │   │   ├── working-with-code.md
    │   │   ├── xmlui-runtime-architecture
    │   │   └── xmlui-wcag-accessibility-report.md
    │   ├── react-fundamentals.md
    │   ├── release-method.md
    │   ├── standalone-app.md
    │   ├── theme-variables-refactoring.md
    │   ├── ud-components.md
    │   └── xmlui-repo.md
    ├── package.json
    ├── scripts
    │   ├── coverage-only.js
    │   ├── e2e-test-summary.js
    │   ├── extract-component-metadata.js
    │   ├── generate-docs
    │   │   ├── build-downloads-map.mjs
    │   │   ├── build-pages-map.mjs
    │   │   ├── components-config.json
    │   │   ├── configuration-management.mjs
    │   │   ├── constants.mjs
    │   │   ├── create-theme-files.mjs
    │   │   ├── DocsGenerator.mjs
    │   │   ├── error-handling.mjs
    │   │   ├── extensions-config.json
    │   │   ├── folders.mjs
    │   │   ├── generate-summary-files.mjs
    │   │   ├── get-docs.mjs
    │   │   ├── input-handler.mjs
    │   │   ├── logger.mjs
    │   │   ├── logging-standards.mjs
    │   │   ├── MetadataProcessor.mjs
    │   │   ├── pattern-utilities.mjs
    │   │   └── utils.mjs
    │   ├── generate-metadata-markdown.js
    │   ├── get-langserver-metadata.js
    │   ├── inline-links.mjs
    │   └── README-e2e-summary.md
    ├── src
    │   ├── abstractions
    │   │   ├── _conventions.md
    │   │   ├── ActionDefs.ts
    │   │   ├── AppContextDefs.ts
    │   │   ├── ComponentDefs.ts
    │   │   ├── ContainerDefs.ts
    │   │   ├── ExtensionDefs.ts
    │   │   ├── FunctionDefs.ts
    │   │   ├── RendererDefs.ts
    │   │   ├── scripting
    │   │   │   ├── BlockScope.ts
    │   │   │   ├── Compilation.ts
    │   │   │   ├── LogicalThread.ts
    │   │   │   ├── LoopScope.ts
    │   │   │   ├── modules.ts
    │   │   │   ├── ScriptParserError.ts
    │   │   │   ├── Token.ts
    │   │   │   ├── TryScope.ts
    │   │   │   └── TryScopeExp.ts
    │   │   └── ThemingDefs.ts
    │   ├── components
    │   │   ├── _conventions.md
    │   │   ├── abstractions.ts
    │   │   ├── Accordion
    │   │   │   ├── Accordion.md
    │   │   │   ├── Accordion.module.scss
    │   │   │   ├── Accordion.spec.ts
    │   │   │   ├── Accordion.tsx
    │   │   │   ├── AccordionContext.tsx
    │   │   │   ├── AccordionItem.tsx
    │   │   │   ├── AccordionItemNative.tsx
    │   │   │   └── AccordionNative.tsx
    │   │   ├── Animation
    │   │   │   └── AnimationNative.tsx
    │   │   ├── APICall
    │   │   │   ├── APICall.md
    │   │   │   ├── APICall.spec.ts
    │   │   │   ├── APICall.tsx
    │   │   │   └── APICallNative.tsx
    │   │   ├── App
    │   │   │   ├── App.md
    │   │   │   ├── App.module.scss
    │   │   │   ├── App.spec.ts
    │   │   │   ├── App.tsx
    │   │   │   ├── AppLayoutContext.ts
    │   │   │   ├── AppNative.tsx
    │   │   │   ├── AppStateContext.ts
    │   │   │   ├── doc-resources
    │   │   │   │   ├── condensed-sticky.xmlui
    │   │   │   │   ├── condensed.xmlui
    │   │   │   │   ├── horizontal-sticky.xmlui
    │   │   │   │   ├── horizontal.xmlui
    │   │   │   │   ├── vertical-full-header.xmlui
    │   │   │   │   ├── vertical-sticky.xmlui
    │   │   │   │   └── vertical.xmlui
    │   │   │   ├── IndexerContext.ts
    │   │   │   ├── LinkInfoContext.ts
    │   │   │   ├── SearchContext.tsx
    │   │   │   ├── Sheet.module.scss
    │   │   │   └── Sheet.tsx
    │   │   ├── AppHeader
    │   │   │   ├── AppHeader.md
    │   │   │   ├── AppHeader.module.scss
    │   │   │   ├── AppHeader.spec.ts
    │   │   │   ├── AppHeader.tsx
    │   │   │   └── AppHeaderNative.tsx
    │   │   ├── AppState
    │   │   │   ├── AppState.md
    │   │   │   ├── AppState.spec.ts
    │   │   │   ├── AppState.tsx
    │   │   │   └── AppStateNative.tsx
    │   │   ├── AutoComplete
    │   │   │   ├── AutoComplete.md
    │   │   │   ├── AutoComplete.module.scss
    │   │   │   ├── AutoComplete.spec.ts
    │   │   │   ├── AutoComplete.tsx
    │   │   │   ├── AutoCompleteContext.tsx
    │   │   │   └── AutoCompleteNative.tsx
    │   │   ├── Avatar
    │   │   │   ├── Avatar.md
    │   │   │   ├── Avatar.module.scss
    │   │   │   ├── Avatar.spec.ts
    │   │   │   ├── Avatar.tsx
    │   │   │   └── AvatarNative.tsx
    │   │   ├── Backdrop
    │   │   │   ├── Backdrop.md
    │   │   │   ├── Backdrop.module.scss
    │   │   │   ├── Backdrop.spec.ts
    │   │   │   ├── Backdrop.tsx
    │   │   │   └── BackdropNative.tsx
    │   │   ├── Badge
    │   │   │   ├── Badge.md
    │   │   │   ├── Badge.module.scss
    │   │   │   ├── Badge.spec.ts
    │   │   │   ├── Badge.tsx
    │   │   │   └── BadgeNative.tsx
    │   │   ├── Bookmark
    │   │   │   ├── Bookmark.md
    │   │   │   ├── Bookmark.module.scss
    │   │   │   ├── Bookmark.spec.ts
    │   │   │   ├── Bookmark.tsx
    │   │   │   └── BookmarkNative.tsx
    │   │   ├── Breakout
    │   │   │   ├── Breakout.module.scss
    │   │   │   ├── Breakout.spec.ts
    │   │   │   ├── Breakout.tsx
    │   │   │   └── BreakoutNative.tsx
    │   │   ├── Button
    │   │   │   ├── Button-style.spec.ts
    │   │   │   ├── Button.md
    │   │   │   ├── Button.module.scss
    │   │   │   ├── Button.spec.ts
    │   │   │   ├── Button.tsx
    │   │   │   └── ButtonNative.tsx
    │   │   ├── Card
    │   │   │   ├── Card.md
    │   │   │   ├── Card.module.scss
    │   │   │   ├── Card.spec.ts
    │   │   │   ├── Card.tsx
    │   │   │   └── CardNative.tsx
    │   │   ├── Carousel
    │   │   │   ├── Carousel.md
    │   │   │   ├── Carousel.module.scss
    │   │   │   ├── Carousel.spec.ts
    │   │   │   ├── Carousel.tsx
    │   │   │   ├── CarouselContext.tsx
    │   │   │   ├── CarouselItem.tsx
    │   │   │   ├── CarouselItemNative.tsx
    │   │   │   └── CarouselNative.tsx
    │   │   ├── ChangeListener
    │   │   │   ├── ChangeListener.md
    │   │   │   ├── ChangeListener.spec.ts
    │   │   │   ├── ChangeListener.tsx
    │   │   │   └── ChangeListenerNative.tsx
    │   │   ├── chart-color-schemes.ts
    │   │   ├── Charts
    │   │   │   ├── AreaChart
    │   │   │   │   ├── AreaChart.md
    │   │   │   │   ├── AreaChart.spec.ts
    │   │   │   │   ├── AreaChart.tsx
    │   │   │   │   └── AreaChartNative.tsx
    │   │   │   ├── BarChart
    │   │   │   │   ├── BarChart.md
    │   │   │   │   ├── BarChart.module.scss
    │   │   │   │   ├── BarChart.spec.ts
    │   │   │   │   ├── BarChart.tsx
    │   │   │   │   └── BarChartNative.tsx
    │   │   │   ├── DonutChart
    │   │   │   │   ├── DonutChart.spec.ts
    │   │   │   │   └── DonutChart.tsx
    │   │   │   ├── LabelList
    │   │   │   │   ├── LabelList.module.scss
    │   │   │   │   ├── LabelList.spec.ts
    │   │   │   │   ├── LabelList.tsx
    │   │   │   │   └── LabelListNative.tsx
    │   │   │   ├── Legend
    │   │   │   │   ├── Legend.spec.ts
    │   │   │   │   ├── Legend.tsx
    │   │   │   │   └── LegendNative.tsx
    │   │   │   ├── LineChart
    │   │   │   │   ├── LineChart.md
    │   │   │   │   ├── LineChart.module.scss
    │   │   │   │   ├── LineChart.spec.ts
    │   │   │   │   ├── LineChart.tsx
    │   │   │   │   └── LineChartNative.tsx
    │   │   │   ├── PieChart
    │   │   │   │   ├── PieChart.md
    │   │   │   │   ├── PieChart.spec.ts
    │   │   │   │   ├── PieChart.tsx
    │   │   │   │   ├── PieChartNative.module.scss
    │   │   │   │   └── PieChartNative.tsx
    │   │   │   ├── RadarChart
    │   │   │   │   ├── RadarChart.md
    │   │   │   │   ├── RadarChart.spec.ts
    │   │   │   │   ├── RadarChart.tsx
    │   │   │   │   └── RadarChartNative.tsx
    │   │   │   ├── Tooltip
    │   │   │   │   ├── TooltipContent.module.scss
    │   │   │   │   ├── TooltipContent.spec.ts
    │   │   │   │   └── TooltipContent.tsx
    │   │   │   └── utils
    │   │   │       ├── abstractions.ts
    │   │   │       └── ChartProvider.tsx
    │   │   ├── Checkbox
    │   │   │   ├── Checkbox.md
    │   │   │   ├── Checkbox.spec.ts
    │   │   │   └── Checkbox.tsx
    │   │   ├── CodeBlock
    │   │   │   ├── CodeBlock.module.scss
    │   │   │   ├── CodeBlock.spec.ts
    │   │   │   ├── CodeBlock.tsx
    │   │   │   ├── CodeBlockNative.tsx
    │   │   │   └── highlight-code.ts
    │   │   ├── collectedComponentMetadata.ts
    │   │   ├── ColorPicker
    │   │   │   ├── ColorPicker.md
    │   │   │   ├── ColorPicker.module.scss
    │   │   │   ├── ColorPicker.spec.ts
    │   │   │   ├── ColorPicker.tsx
    │   │   │   └── ColorPickerNative.tsx
    │   │   ├── Column
    │   │   │   ├── Column.md
    │   │   │   ├── Column.tsx
    │   │   │   ├── ColumnNative.tsx
    │   │   │   ├── doc-resources
    │   │   │   │   └── list-component-data.js
    │   │   │   └── TableContext.tsx
    │   │   ├── component-utils.ts
    │   │   ├── ComponentProvider.tsx
    │   │   ├── ComponentRegistryContext.tsx
    │   │   ├── container-helpers.tsx
    │   │   ├── ContentSeparator
    │   │   │   ├── ContentSeparator.md
    │   │   │   ├── ContentSeparator.module.scss
    │   │   │   ├── ContentSeparator.spec.ts
    │   │   │   ├── ContentSeparator.tsx
    │   │   │   └── ContentSeparatorNative.tsx
    │   │   ├── DataSource
    │   │   │   ├── DataSource.md
    │   │   │   └── DataSource.tsx
    │   │   ├── DateInput
    │   │   │   ├── DateInput.md
    │   │   │   ├── DateInput.module.scss
    │   │   │   ├── DateInput.spec.ts
    │   │   │   ├── DateInput.tsx
    │   │   │   └── DateInputNative.tsx
    │   │   ├── DatePicker
    │   │   │   ├── DatePicker.md
    │   │   │   ├── DatePicker.module.scss
    │   │   │   ├── DatePicker.spec.ts
    │   │   │   ├── DatePicker.tsx
    │   │   │   └── DatePickerNative.tsx
    │   │   ├── DropdownMenu
    │   │   │   ├── DropdownMenu.md
    │   │   │   ├── DropdownMenu.module.scss
    │   │   │   ├── DropdownMenu.spec.ts
    │   │   │   ├── DropdownMenu.tsx
    │   │   │   ├── DropdownMenuNative.tsx
    │   │   │   ├── MenuItem.md
    │   │   │   └── SubMenuItem.md
    │   │   ├── EmojiSelector
    │   │   │   ├── EmojiSelector.md
    │   │   │   ├── EmojiSelector.spec.ts
    │   │   │   ├── EmojiSelector.tsx
    │   │   │   └── EmojiSelectorNative.tsx
    │   │   ├── ExpandableItem
    │   │   │   ├── ExpandableItem.module.scss
    │   │   │   ├── ExpandableItem.spec.ts
    │   │   │   ├── ExpandableItem.tsx
    │   │   │   └── ExpandableItemNative.tsx
    │   │   ├── FileInput
    │   │   │   ├── FileInput.md
    │   │   │   ├── FileInput.module.scss
    │   │   │   ├── FileInput.spec.ts
    │   │   │   ├── FileInput.tsx
    │   │   │   └── FileInputNative.tsx
    │   │   ├── FileUploadDropZone
    │   │   │   ├── FileUploadDropZone.md
    │   │   │   ├── FileUploadDropZone.module.scss
    │   │   │   ├── FileUploadDropZone.spec.ts
    │   │   │   ├── FileUploadDropZone.tsx
    │   │   │   └── FileUploadDropZoneNative.tsx
    │   │   ├── FlowLayout
    │   │   │   ├── FlowLayout.md
    │   │   │   ├── FlowLayout.module.scss
    │   │   │   ├── FlowLayout.spec.ts
    │   │   │   ├── FlowLayout.spec.ts-snapshots
    │   │   │   │   └── Edge-cases-boxShadow-is-not-clipped-1-non-smoke-darwin.png
    │   │   │   ├── FlowLayout.tsx
    │   │   │   └── FlowLayoutNative.tsx
    │   │   ├── Footer
    │   │   │   ├── Footer.md
    │   │   │   ├── Footer.module.scss
    │   │   │   ├── Footer.spec.ts
    │   │   │   ├── Footer.tsx
    │   │   │   └── FooterNative.tsx
    │   │   ├── Form
    │   │   │   ├── Form.md
    │   │   │   ├── Form.module.scss
    │   │   │   ├── Form.spec.ts
    │   │   │   ├── Form.tsx
    │   │   │   ├── formActions.ts
    │   │   │   ├── FormContext.ts
    │   │   │   └── FormNative.tsx
    │   │   ├── FormItem
    │   │   │   ├── FormItem.md
    │   │   │   ├── FormItem.module.scss
    │   │   │   ├── FormItem.spec.ts
    │   │   │   ├── FormItem.tsx
    │   │   │   ├── FormItemNative.tsx
    │   │   │   ├── HelperText.module.scss
    │   │   │   ├── HelperText.tsx
    │   │   │   ├── ItemWithLabel.tsx
    │   │   │   └── Validations.ts
    │   │   ├── FormSection
    │   │   │   ├── FormSection.md
    │   │   │   ├── FormSection.ts
    │   │   │   └── FormSection.xmlui
    │   │   ├── Fragment
    │   │   │   ├── Fragment.spec.ts
    │   │   │   └── Fragment.tsx
    │   │   ├── Heading
    │   │   │   ├── abstractions.ts
    │   │   │   ├── H1.md
    │   │   │   ├── H1.spec.ts
    │   │   │   ├── H2.md
    │   │   │   ├── H2.spec.ts
    │   │   │   ├── H3.md
    │   │   │   ├── H3.spec.ts
    │   │   │   ├── H4.md
    │   │   │   ├── H4.spec.ts
    │   │   │   ├── H5.md
    │   │   │   ├── H5.spec.ts
    │   │   │   ├── H6.md
    │   │   │   ├── H6.spec.ts
    │   │   │   ├── Heading.md
    │   │   │   ├── Heading.module.scss
    │   │   │   ├── Heading.spec.ts
    │   │   │   ├── Heading.tsx
    │   │   │   └── HeadingNative.tsx
    │   │   ├── HoverCard
    │   │   │   ├── HoverCard.tsx
    │   │   │   └── HovercardNative.tsx
    │   │   ├── HtmlTags
    │   │   │   ├── HtmlTags.module.scss
    │   │   │   ├── HtmlTags.spec.ts
    │   │   │   └── HtmlTags.tsx
    │   │   ├── Icon
    │   │   │   ├── AdmonitionDanger.tsx
    │   │   │   ├── AdmonitionInfo.tsx
    │   │   │   ├── AdmonitionNote.tsx
    │   │   │   ├── AdmonitionTip.tsx
    │   │   │   ├── AdmonitionWarning.tsx
    │   │   │   ├── ApiIcon.tsx
    │   │   │   ├── ArrowDropDown.module.scss
    │   │   │   ├── ArrowDropDown.tsx
    │   │   │   ├── ArrowDropUp.module.scss
    │   │   │   ├── ArrowDropUp.tsx
    │   │   │   ├── ArrowLeft.module.scss
    │   │   │   ├── ArrowLeft.tsx
    │   │   │   ├── ArrowRight.module.scss
    │   │   │   ├── ArrowRight.tsx
    │   │   │   ├── Attach.tsx
    │   │   │   ├── Binding.module.scss
    │   │   │   ├── Binding.tsx
    │   │   │   ├── BoardIcon.tsx
    │   │   │   ├── BoxIcon.tsx
    │   │   │   ├── CheckIcon.tsx
    │   │   │   ├── ChevronDownIcon.tsx
    │   │   │   ├── ChevronLeft.tsx
    │   │   │   ├── ChevronRight.tsx
    │   │   │   ├── ChevronUpIcon.tsx
    │   │   │   ├── CodeFileIcon.tsx
    │   │   │   ├── CodeSandbox.tsx
    │   │   │   ├── CompactListIcon.tsx
    │   │   │   ├── ContentCopyIcon.tsx
    │   │   │   ├── DarkToLightIcon.tsx
    │   │   │   ├── DatabaseIcon.module.scss
    │   │   │   ├── DatabaseIcon.tsx
    │   │   │   ├── DocFileIcon.tsx
    │   │   │   ├── DocIcon.tsx
    │   │   │   ├── DotMenuHorizontalIcon.tsx
    │   │   │   ├── DotMenuIcon.tsx
    │   │   │   ├── EmailIcon.tsx
    │   │   │   ├── EmptyFolderIcon.tsx
    │   │   │   ├── ErrorIcon.tsx
    │   │   │   ├── ExpressionIcon.tsx
    │   │   │   ├── FillPlusCricleIcon.tsx
    │   │   │   ├── FilterIcon.tsx
    │   │   │   ├── FolderIcon.tsx
    │   │   │   ├── GlobeIcon.tsx
    │   │   │   ├── HomeIcon.tsx
    │   │   │   ├── HyperLinkIcon.tsx
    │   │   │   ├── Icon.md
    │   │   │   ├── Icon.module.scss
    │   │   │   ├── Icon.spec.ts
    │   │   │   ├── Icon.tsx
    │   │   │   ├── IconNative.tsx
    │   │   │   ├── ImageFileIcon.tsx
    │   │   │   ├── Inspect.tsx
    │   │   │   ├── LightToDark.tsx
    │   │   │   ├── LinkIcon.tsx
    │   │   │   ├── ListIcon.tsx
    │   │   │   ├── LooseListIcon.tsx
    │   │   │   ├── MoonIcon.tsx
    │   │   │   ├── MoreOptionsIcon.tsx
    │   │   │   ├── NoSortIcon.tsx
    │   │   │   ├── PDFIcon.tsx
    │   │   │   ├── PenIcon.tsx
    │   │   │   ├── PhoneIcon.tsx
    │   │   │   ├── PhotoIcon.tsx
    │   │   │   ├── PlusIcon.tsx
    │   │   │   ├── SearchIcon.tsx
    │   │   │   ├── ShareIcon.tsx
    │   │   │   ├── SortAscendingIcon.tsx
    │   │   │   ├── SortDescendingIcon.tsx
    │   │   │   ├── StarsIcon.tsx
    │   │   │   ├── SunIcon.tsx
    │   │   │   ├── svg
    │   │   │   │   ├── admonition_danger.svg
    │   │   │   │   ├── admonition_info.svg
    │   │   │   │   ├── admonition_note.svg
    │   │   │   │   ├── admonition_tip.svg
    │   │   │   │   ├── admonition_warning.svg
    │   │   │   │   ├── api.svg
    │   │   │   │   ├── arrow-dropdown.svg
    │   │   │   │   ├── arrow-left.svg
    │   │   │   │   ├── arrow-right.svg
    │   │   │   │   ├── arrow-up.svg
    │   │   │   │   ├── attach.svg
    │   │   │   │   ├── binding.svg
    │   │   │   │   ├── box.svg
    │   │   │   │   ├── bulb.svg
    │   │   │   │   ├── code-file.svg
    │   │   │   │   ├── code-sandbox.svg
    │   │   │   │   ├── dark_to_light.svg
    │   │   │   │   ├── database.svg
    │   │   │   │   ├── doc.svg
    │   │   │   │   ├── empty-folder.svg
    │   │   │   │   ├── expression.svg
    │   │   │   │   ├── eye-closed.svg
    │   │   │   │   ├── eye-dark.svg
    │   │   │   │   ├── eye.svg
    │   │   │   │   ├── file-text.svg
    │   │   │   │   ├── filter.svg
    │   │   │   │   ├── folder.svg
    │   │   │   │   ├── img.svg
    │   │   │   │   ├── inspect.svg
    │   │   │   │   ├── light_to_dark.svg
    │   │   │   │   ├── moon.svg
    │   │   │   │   ├── pdf.svg
    │   │   │   │   ├── photo.svg
    │   │   │   │   ├── share.svg
    │   │   │   │   ├── stars.svg
    │   │   │   │   ├── sun.svg
    │   │   │   │   ├── trending-down.svg
    │   │   │   │   ├── trending-level.svg
    │   │   │   │   ├── trending-up.svg
    │   │   │   │   ├── txt.svg
    │   │   │   │   ├── unknown-file.svg
    │   │   │   │   ├── unlink.svg
    │   │   │   │   └── xls.svg
    │   │   │   ├── TableDeleteColumnIcon.tsx
    │   │   │   ├── TableDeleteRowIcon.tsx
    │   │   │   ├── TableInsertColumnIcon.tsx
    │   │   │   ├── TableInsertRowIcon.tsx
    │   │   │   ├── TrashIcon.tsx
    │   │   │   ├── TrendingDownIcon.tsx
    │   │   │   ├── TrendingLevelIcon.tsx
    │   │   │   ├── TrendingUpIcon.tsx
    │   │   │   ├── TxtIcon.tsx
    │   │   │   ├── UnknownFileIcon.tsx
    │   │   │   ├── UnlinkIcon.tsx
    │   │   │   ├── UserIcon.tsx
    │   │   │   ├── WarningIcon.tsx
    │   │   │   └── XlsIcon.tsx
    │   │   ├── IconProvider.tsx
    │   │   ├── IconRegistryContext.tsx
    │   │   ├── IFrame
    │   │   │   ├── IFrame.md
    │   │   │   ├── IFrame.module.scss
    │   │   │   ├── IFrame.spec.ts
    │   │   │   ├── IFrame.tsx
    │   │   │   └── IFrameNative.tsx
    │   │   ├── Image
    │   │   │   ├── Image.md
    │   │   │   ├── Image.module.scss
    │   │   │   ├── Image.spec.ts
    │   │   │   ├── Image.tsx
    │   │   │   └── ImageNative.tsx
    │   │   ├── Input
    │   │   │   ├── index.ts
    │   │   │   ├── InputAdornment.module.scss
    │   │   │   ├── InputAdornment.tsx
    │   │   │   ├── InputDivider.module.scss
    │   │   │   ├── InputDivider.tsx
    │   │   │   ├── InputLabel.module.scss
    │   │   │   ├── InputLabel.tsx
    │   │   │   ├── PartialInput.module.scss
    │   │   │   └── PartialInput.tsx
    │   │   ├── InspectButton
    │   │   │   ├── InspectButton.module.scss
    │   │   │   └── InspectButton.tsx
    │   │   ├── Items
    │   │   │   ├── Items.md
    │   │   │   ├── Items.spec.ts
    │   │   │   ├── Items.tsx
    │   │   │   └── ItemsNative.tsx
    │   │   ├── Link
    │   │   │   ├── Link.md
    │   │   │   ├── Link.module.scss
    │   │   │   ├── Link.spec.ts
    │   │   │   ├── Link.tsx
    │   │   │   └── LinkNative.tsx
    │   │   ├── List
    │   │   │   ├── doc-resources
    │   │   │   │   └── list-component-data.js
    │   │   │   ├── List.md
    │   │   │   ├── List.module.scss
    │   │   │   ├── List.spec.ts
    │   │   │   ├── List.tsx
    │   │   │   └── ListNative.tsx
    │   │   ├── Logo
    │   │   │   ├── doc-resources
    │   │   │   │   └── xmlui-logo.svg
    │   │   │   ├── Logo.md
    │   │   │   ├── Logo.tsx
    │   │   │   └── LogoNative.tsx
    │   │   ├── Markdown
    │   │   │   ├── CodeText.module.scss
    │   │   │   ├── CodeText.tsx
    │   │   │   ├── Markdown.md
    │   │   │   ├── Markdown.module.scss
    │   │   │   ├── Markdown.spec.ts
    │   │   │   ├── Markdown.tsx
    │   │   │   ├── MarkdownNative.tsx
    │   │   │   ├── parse-binding-expr.ts
    │   │   │   └── utils.ts
    │   │   ├── metadata-helpers.ts
    │   │   ├── ModalDialog
    │   │   │   ├── ConfirmationModalContextProvider.tsx
    │   │   │   ├── Dialog.module.scss
    │   │   │   ├── Dialog.tsx
    │   │   │   ├── ModalDialog.md
    │   │   │   ├── ModalDialog.module.scss
    │   │   │   ├── ModalDialog.spec.ts
    │   │   │   ├── ModalDialog.tsx
    │   │   │   ├── ModalDialogNative.tsx
    │   │   │   └── ModalVisibilityContext.tsx
    │   │   ├── NavGroup
    │   │   │   ├── NavGroup.md
    │   │   │   ├── NavGroup.module.scss
    │   │   │   ├── NavGroup.spec.ts
    │   │   │   ├── NavGroup.tsx
    │   │   │   ├── NavGroupContext.ts
    │   │   │   └── NavGroupNative.tsx
    │   │   ├── NavLink
    │   │   │   ├── NavLink.md
    │   │   │   ├── NavLink.module.scss
    │   │   │   ├── NavLink.spec.ts
    │   │   │   ├── NavLink.tsx
    │   │   │   └── NavLinkNative.tsx
    │   │   ├── NavPanel
    │   │   │   ├── NavPanel.md
    │   │   │   ├── NavPanel.module.scss
    │   │   │   ├── NavPanel.spec.ts
    │   │   │   ├── NavPanel.tsx
    │   │   │   └── NavPanelNative.tsx
    │   │   ├── NestedApp
    │   │   │   ├── AppWithCodeView.module.scss
    │   │   │   ├── AppWithCodeView.tsx
    │   │   │   ├── AppWithCodeViewNative.tsx
    │   │   │   ├── defaultProps.tsx
    │   │   │   ├── logo.svg
    │   │   │   ├── NestedApp.module.scss
    │   │   │   ├── NestedApp.tsx
    │   │   │   ├── NestedAppNative.tsx
    │   │   │   ├── Tooltip.module.scss
    │   │   │   ├── Tooltip.tsx
    │   │   │   └── utils.ts
    │   │   ├── NoResult
    │   │   │   ├── NoResult.md
    │   │   │   ├── NoResult.module.scss
    │   │   │   ├── NoResult.spec.ts
    │   │   │   ├── NoResult.tsx
    │   │   │   └── NoResultNative.tsx
    │   │   ├── NumberBox
    │   │   │   ├── numberbox-abstractions.ts
    │   │   │   ├── NumberBox.md
    │   │   │   ├── NumberBox.module.scss
    │   │   │   ├── NumberBox.spec.ts
    │   │   │   ├── NumberBox.tsx
    │   │   │   └── NumberBoxNative.tsx
    │   │   ├── Option
    │   │   │   ├── Option.md
    │   │   │   ├── Option.spec.ts
    │   │   │   ├── Option.tsx
    │   │   │   ├── OptionNative.tsx
    │   │   │   └── OptionTypeProvider.tsx
    │   │   ├── PageMetaTitle
    │   │   │   ├── PageMetaTilteNative.tsx
    │   │   │   ├── PageMetaTitle.md
    │   │   │   ├── PageMetaTitle.spec.ts
    │   │   │   └── PageMetaTitle.tsx
    │   │   ├── Pages
    │   │   │   ├── Page.md
    │   │   │   ├── Pages.md
    │   │   │   ├── Pages.module.scss
    │   │   │   ├── Pages.tsx
    │   │   │   └── PagesNative.tsx
    │   │   ├── Pagination
    │   │   │   ├── Pagination.md
    │   │   │   ├── Pagination.module.scss
    │   │   │   ├── Pagination.spec.ts
    │   │   │   ├── Pagination.tsx
    │   │   │   └── PaginationNative.tsx
    │   │   ├── PositionedContainer
    │   │   │   ├── PositionedContainer.module.scss
    │   │   │   ├── PositionedContainer.tsx
    │   │   │   └── PositionedContainerNative.tsx
    │   │   ├── ProfileMenu
    │   │   │   ├── ProfileMenu.module.scss
    │   │   │   └── ProfileMenu.tsx
    │   │   ├── ProgressBar
    │   │   │   ├── ProgressBar.md
    │   │   │   ├── ProgressBar.module.scss
    │   │   │   ├── ProgressBar.spec.ts
    │   │   │   ├── ProgressBar.tsx
    │   │   │   └── ProgressBarNative.tsx
    │   │   ├── Queue
    │   │   │   ├── Queue.md
    │   │   │   ├── Queue.spec.ts
    │   │   │   ├── Queue.tsx
    │   │   │   ├── queueActions.ts
    │   │   │   └── QueueNative.tsx
    │   │   ├── RadioGroup
    │   │   │   ├── RadioGroup.md
    │   │   │   ├── RadioGroup.module.scss
    │   │   │   ├── RadioGroup.spec.ts
    │   │   │   ├── RadioGroup.tsx
    │   │   │   ├── RadioGroupNative.tsx
    │   │   │   ├── RadioItem.tsx
    │   │   │   └── RadioItemNative.tsx
    │   │   ├── RealTimeAdapter
    │   │   │   ├── RealTimeAdapter.tsx
    │   │   │   └── RealTimeAdapterNative.tsx
    │   │   ├── Redirect
    │   │   │   ├── Redirect.md
    │   │   │   ├── Redirect.spec.ts
    │   │   │   └── Redirect.tsx
    │   │   ├── ResponsiveBar
    │   │   │   ├── README.md
    │   │   │   ├── ResponsiveBar.md
    │   │   │   ├── ResponsiveBar.module.scss
    │   │   │   ├── ResponsiveBar.spec.ts
    │   │   │   ├── ResponsiveBar.tsx
    │   │   │   └── ResponsiveBarNative.tsx
    │   │   ├── Select
    │   │   │   ├── HiddenOption.tsx
    │   │   │   ├── OptionContext.ts
    │   │   │   ├── Select.md
    │   │   │   ├── Select.module.scss
    │   │   │   ├── Select.spec.ts
    │   │   │   ├── Select.tsx
    │   │   │   ├── SelectContext.tsx
    │   │   │   └── SelectNative.tsx
    │   │   ├── SelectionStore
    │   │   │   ├── SelectionStore.md
    │   │   │   ├── SelectionStore.tsx
    │   │   │   └── SelectionStoreNative.tsx
    │   │   ├── Slider
    │   │   │   ├── Slider.md
    │   │   │   ├── Slider.module.scss
    │   │   │   ├── Slider.spec.ts
    │   │   │   ├── Slider.tsx
    │   │   │   └── SliderNative.tsx
    │   │   ├── Slot
    │   │   │   ├── Slot.md
    │   │   │   ├── Slot.spec.ts
    │   │   │   └── Slot.ts
    │   │   ├── SlotItem.tsx
    │   │   ├── SpaceFiller
    │   │   │   ├── SpaceFiller.md
    │   │   │   ├── SpaceFiller.module.scss
    │   │   │   ├── SpaceFiller.spec.ts
    │   │   │   ├── SpaceFiller.tsx
    │   │   │   └── SpaceFillerNative.tsx
    │   │   ├── Spinner
    │   │   │   ├── Spinner.md
    │   │   │   ├── Spinner.module.scss
    │   │   │   ├── Spinner.spec.ts
    │   │   │   ├── Spinner.tsx
    │   │   │   └── SpinnerNative.tsx
    │   │   ├── Splitter
    │   │   │   ├── HSplitter.md
    │   │   │   ├── HSplitter.spec.ts
    │   │   │   ├── Splitter.md
    │   │   │   ├── Splitter.module.scss
    │   │   │   ├── Splitter.spec.ts
    │   │   │   ├── Splitter.tsx
    │   │   │   ├── SplitterNative.tsx
    │   │   │   ├── utils.ts
    │   │   │   ├── VSplitter.md
    │   │   │   └── VSplitter.spec.ts
    │   │   ├── Stack
    │   │   │   ├── CHStack.md
    │   │   │   ├── CHStack.spec.ts
    │   │   │   ├── CVStack.md
    │   │   │   ├── CVStack.spec.ts
    │   │   │   ├── HStack.md
    │   │   │   ├── HStack.spec.ts
    │   │   │   ├── Stack.md
    │   │   │   ├── Stack.module.scss
    │   │   │   ├── Stack.spec.ts
    │   │   │   ├── Stack.tsx
    │   │   │   ├── StackNative.tsx
    │   │   │   ├── VStack.md
    │   │   │   └── VStack.spec.ts
    │   │   ├── StickyBox
    │   │   │   ├── StickyBox.md
    │   │   │   ├── StickyBox.module.scss
    │   │   │   ├── StickyBox.tsx
    │   │   │   └── StickyBoxNative.tsx
    │   │   ├── Switch
    │   │   │   ├── Switch.md
    │   │   │   ├── Switch.spec.ts
    │   │   │   └── Switch.tsx
    │   │   ├── Table
    │   │   │   ├── doc-resources
    │   │   │   │   └── list-component-data.js
    │   │   │   ├── react-table-config.d.ts
    │   │   │   ├── Table.md
    │   │   │   ├── Table.module.scss
    │   │   │   ├── Table.spec.ts
    │   │   │   ├── Table.tsx
    │   │   │   ├── TableNative.tsx
    │   │   │   └── useRowSelection.tsx
    │   │   ├── TableOfContents
    │   │   │   ├── TableOfContents.module.scss
    │   │   │   ├── TableOfContents.spec.ts
    │   │   │   ├── TableOfContents.tsx
    │   │   │   └── TableOfContentsNative.tsx
    │   │   ├── Tabs
    │   │   │   ├── TabContext.tsx
    │   │   │   ├── TabItem.md
    │   │   │   ├── TabItem.tsx
    │   │   │   ├── TabItemNative.tsx
    │   │   │   ├── Tabs.md
    │   │   │   ├── Tabs.module.scss
    │   │   │   ├── Tabs.spec.ts
    │   │   │   ├── Tabs.tsx
    │   │   │   └── TabsNative.tsx
    │   │   ├── Text
    │   │   │   ├── Text.md
    │   │   │   ├── Text.module.scss
    │   │   │   ├── Text.spec.ts
    │   │   │   ├── Text.tsx
    │   │   │   └── TextNative.tsx
    │   │   ├── TextArea
    │   │   │   ├── TextArea.md
    │   │   │   ├── TextArea.module.scss
    │   │   │   ├── TextArea.spec.ts
    │   │   │   ├── TextArea.tsx
    │   │   │   ├── TextAreaNative.tsx
    │   │   │   ├── TextAreaResizable.tsx
    │   │   │   └── useComposedRef.ts
    │   │   ├── TextBox
    │   │   │   ├── TextBox.md
    │   │   │   ├── TextBox.module.scss
    │   │   │   ├── TextBox.spec.ts
    │   │   │   ├── TextBox.tsx
    │   │   │   └── TextBoxNative.tsx
    │   │   ├── Theme
    │   │   │   ├── NotificationToast.tsx
    │   │   │   ├── Theme.md
    │   │   │   ├── Theme.module.scss
    │   │   │   ├── Theme.spec.ts
    │   │   │   ├── Theme.tsx
    │   │   │   └── ThemeNative.tsx
    │   │   ├── TimeInput
    │   │   │   ├── TimeInput.md
    │   │   │   ├── TimeInput.module.scss
    │   │   │   ├── TimeInput.spec.ts
    │   │   │   ├── TimeInput.tsx
    │   │   │   ├── TimeInputNative.tsx
    │   │   │   └── utils.ts
    │   │   ├── Timer
    │   │   │   ├── Timer.md
    │   │   │   ├── Timer.spec.ts
    │   │   │   ├── Timer.tsx
    │   │   │   └── TimerNative.tsx
    │   │   ├── Toggle
    │   │   │   ├── Toggle.module.scss
    │   │   │   └── Toggle.tsx
    │   │   ├── ToneChangerButton
    │   │   │   ├── ToneChangerButton.md
    │   │   │   ├── ToneChangerButton.spec.ts
    │   │   │   └── ToneChangerButton.tsx
    │   │   ├── ToneSwitch
    │   │   │   ├── ToneSwitch.md
    │   │   │   ├── ToneSwitch.module.scss
    │   │   │   ├── ToneSwitch.spec.ts
    │   │   │   ├── ToneSwitch.tsx
    │   │   │   └── ToneSwitchNative.tsx
    │   │   ├── Tooltip
    │   │   │   ├── Tooltip.md
    │   │   │   ├── Tooltip.module.scss
    │   │   │   ├── Tooltip.spec.ts
    │   │   │   ├── Tooltip.tsx
    │   │   │   └── TooltipNative.tsx
    │   │   ├── Tree
    │   │   │   ├── testData.ts
    │   │   │   ├── Tree-dynamic.spec.ts
    │   │   │   ├── Tree-icons.spec.ts
    │   │   │   ├── Tree.md
    │   │   │   ├── Tree.spec.ts
    │   │   │   ├── TreeComponent.module.scss
    │   │   │   ├── TreeComponent.tsx
    │   │   │   └── TreeNative.tsx
    │   │   ├── TreeDisplay
    │   │   │   ├── TreeDisplay.md
    │   │   │   ├── TreeDisplay.module.scss
    │   │   │   ├── TreeDisplay.tsx
    │   │   │   └── TreeDisplayNative.tsx
    │   │   ├── ValidationSummary
    │   │   │   ├── ValidationSummary.module.scss
    │   │   │   └── ValidationSummary.tsx
    │   │   └── VisuallyHidden.tsx
    │   ├── components-core
    │   │   ├── abstractions
    │   │   │   ├── ComponentRenderer.ts
    │   │   │   ├── LoaderRenderer.ts
    │   │   │   ├── standalone.ts
    │   │   │   └── treeAbstractions.ts
    │   │   ├── action
    │   │   │   ├── actions.ts
    │   │   │   ├── APICall.tsx
    │   │   │   ├── FileDownloadAction.tsx
    │   │   │   ├── FileUploadAction.tsx
    │   │   │   ├── NavigateAction.tsx
    │   │   │   └── TimedAction.tsx
    │   │   ├── ApiBoundComponent.tsx
    │   │   ├── appContext
    │   │   │   ├── date-functions.ts
    │   │   │   ├── math-function.ts
    │   │   │   └── misc-utils.ts
    │   │   ├── AppContext.tsx
    │   │   ├── behaviors
    │   │   │   ├── Behavior.tsx
    │   │   │   └── CoreBehaviors.tsx
    │   │   ├── component-hooks.ts
    │   │   ├── ComponentDecorator.tsx
    │   │   ├── ComponentViewer.tsx
    │   │   ├── CompoundComponent.tsx
    │   │   ├── constants.ts
    │   │   ├── DebugViewProvider.tsx
    │   │   ├── descriptorHelper.ts
    │   │   ├── devtools
    │   │   │   ├── InspectorDialog.module.scss
    │   │   │   ├── InspectorDialog.tsx
    │   │   │   └── InspectorDialogVisibilityContext.tsx
    │   │   ├── EngineError.ts
    │   │   ├── event-handlers.ts
    │   │   ├── InspectorButton.module.scss
    │   │   ├── InspectorContext.tsx
    │   │   ├── interception
    │   │   │   ├── abstractions.ts
    │   │   │   ├── ApiInterceptor.ts
    │   │   │   ├── ApiInterceptorProvider.tsx
    │   │   │   ├── apiInterceptorWorker.ts
    │   │   │   ├── Backend.ts
    │   │   │   ├── Errors.ts
    │   │   │   ├── IndexedDb.ts
    │   │   │   ├── initMock.ts
    │   │   │   ├── InMemoryDb.ts
    │   │   │   ├── ReadonlyCollection.ts
    │   │   │   └── useApiInterceptorContext.tsx
    │   │   ├── loader
    │   │   │   ├── ApiLoader.tsx
    │   │   │   ├── DataLoader.tsx
    │   │   │   ├── ExternalDataLoader.tsx
    │   │   │   ├── Loader.tsx
    │   │   │   ├── MockLoaderRenderer.tsx
    │   │   │   └── PageableLoader.tsx
    │   │   ├── LoaderComponent.tsx
    │   │   ├── markup-check.ts
    │   │   ├── parts.ts
    │   │   ├── renderers.ts
    │   │   ├── rendering
    │   │   │   ├── AppContent.tsx
    │   │   │   ├── AppRoot.tsx
    │   │   │   ├── AppWrapper.tsx
    │   │   │   ├── buildProxy.ts
    │   │   │   ├── collectFnVarDeps.ts
    │   │   │   ├── ComponentAdapter.tsx
    │   │   │   ├── ComponentWrapper.tsx
    │   │   │   ├── Container.tsx
    │   │   │   ├── containers.ts
    │   │   │   ├── ContainerWrapper.tsx
    │   │   │   ├── ErrorBoundary.module.scss
    │   │   │   ├── ErrorBoundary.tsx
    │   │   │   ├── InvalidComponent.module.scss
    │   │   │   ├── InvalidComponent.tsx
    │   │   │   ├── nodeUtils.ts
    │   │   │   ├── reducer.ts
    │   │   │   ├── renderChild.tsx
    │   │   │   ├── StandaloneComponent.tsx
    │   │   │   ├── StateContainer.tsx
    │   │   │   ├── UnknownComponent.module.scss
    │   │   │   ├── UnknownComponent.tsx
    │   │   │   └── valueExtractor.ts
    │   │   ├── reportEngineError.ts
    │   │   ├── RestApiProxy.ts
    │   │   ├── script-runner
    │   │   │   ├── asyncProxy.ts
    │   │   │   ├── AttributeValueParser.ts
    │   │   │   ├── bannedFunctions.ts
    │   │   │   ├── BindingTreeEvaluationContext.ts
    │   │   │   ├── eval-tree-async.ts
    │   │   │   ├── eval-tree-common.ts
    │   │   │   ├── eval-tree-sync.ts
    │   │   │   ├── ParameterParser.ts
    │   │   │   ├── process-statement-async.ts
    │   │   │   ├── process-statement-common.ts
    │   │   │   ├── process-statement-sync.ts
    │   │   │   ├── ScriptingSourceTree.ts
    │   │   │   ├── simplify-expression.ts
    │   │   │   ├── statement-queue.ts
    │   │   │   └── visitors.ts
    │   │   ├── StandaloneApp.tsx
    │   │   ├── StandaloneExtensionManager.ts
    │   │   ├── TableOfContentsContext.tsx
    │   │   ├── theming
    │   │   │   ├── _themes.scss
    │   │   │   ├── component-layout-resolver.ts
    │   │   │   ├── extendThemeUtils.ts
    │   │   │   ├── hvar.ts
    │   │   │   ├── layout-resolver.ts
    │   │   │   ├── parse-layout-props.ts
    │   │   │   ├── StyleContext.tsx
    │   │   │   ├── StyleRegistry.ts
    │   │   │   ├── ThemeContext.tsx
    │   │   │   ├── ThemeProvider.tsx
    │   │   │   ├── themes
    │   │   │   │   ├── base-utils.ts
    │   │   │   │   ├── palette.ts
    │   │   │   │   ├── root.ts
    │   │   │   │   ├── solid.ts
    │   │   │   │   ├── theme-colors.ts
    │   │   │   │   └── xmlui.ts
    │   │   │   ├── themeVars.module.scss
    │   │   │   ├── themeVars.ts
    │   │   │   ├── transformThemeVars.ts
    │   │   │   └── utils.ts
    │   │   ├── utils
    │   │   │   ├── actionUtils.ts
    │   │   │   ├── audio-utils.ts
    │   │   │   ├── base64-utils.ts
    │   │   │   ├── compound-utils.ts
    │   │   │   ├── css-utils.ts
    │   │   │   ├── DataLoaderQueryKeyGenerator.ts
    │   │   │   ├── date-utils.ts
    │   │   │   ├── extractParam.ts
    │   │   │   ├── hooks.tsx
    │   │   │   ├── LruCache.ts
    │   │   │   ├── mergeProps.ts
    │   │   │   ├── misc.ts
    │   │   │   ├── request-params.ts
    │   │   │   ├── statementUtils.ts
    │   │   │   └── treeUtils.ts
    │   │   └── xmlui-parser.ts
    │   ├── index-standalone.ts
    │   ├── index.scss
    │   ├── index.ts
    │   ├── language-server
    │   │   ├── server-common.ts
    │   │   ├── server-web-worker.ts
    │   │   ├── server.ts
    │   │   ├── services
    │   │   │   ├── common
    │   │   │   │   ├── docs-generation.ts
    │   │   │   │   ├── lsp-utils.ts
    │   │   │   │   ├── metadata-utils.ts
    │   │   │   │   └── syntax-node-utilities.ts
    │   │   │   ├── completion.ts
    │   │   │   ├── diagnostic.ts
    │   │   │   ├── format.ts
    │   │   │   └── hover.ts
    │   │   └── xmlui-metadata-generated.js
    │   ├── logging
    │   │   ├── LoggerContext.tsx
    │   │   ├── LoggerInitializer.tsx
    │   │   ├── LoggerService.ts
    │   │   └── xmlui.ts
    │   ├── logo.svg
    │   ├── parsers
    │   │   ├── common
    │   │   │   ├── GenericToken.ts
    │   │   │   ├── InputStream.ts
    │   │   │   └── utils.ts
    │   │   ├── scripting
    │   │   │   ├── code-behind-collect.ts
    │   │   │   ├── Lexer.ts
    │   │   │   ├── modules.ts
    │   │   │   ├── Parser.ts
    │   │   │   ├── ParserError.ts
    │   │   │   ├── ScriptingNodeTypes.ts
    │   │   │   ├── TokenTrait.ts
    │   │   │   ├── TokenType.ts
    │   │   │   └── tree-visitor.ts
    │   │   ├── style-parser
    │   │   │   ├── errors.ts
    │   │   │   ├── source-tree.ts
    │   │   │   ├── StyleInputStream.ts
    │   │   │   ├── StyleLexer.ts
    │   │   │   ├── StyleParser.ts
    │   │   │   └── tokens.ts
    │   │   └── xmlui-parser
    │   │       ├── CharacterCodes.ts
    │   │       ├── diagnostics.ts
    │   │       ├── fileExtensions.ts
    │   │       ├── index.ts
    │   │       ├── lint.ts
    │   │       ├── parser.ts
    │   │       ├── ParserError.ts
    │   │       ├── scanner.ts
    │   │       ├── syntax-kind.ts
    │   │       ├── syntax-node.ts
    │   │       ├── transform.ts
    │   │       ├── utils.ts
    │   │       ├── xmlui-serializer.ts
    │   │       └── xmlui-tree.ts
    │   ├── react-app-env.d.ts
    │   ├── syntax
    │   │   ├── monaco
    │   │   │   ├── grammar.monacoLanguage.ts
    │   │   │   ├── index.ts
    │   │   │   ├── xmlui-dark.ts
    │   │   │   ├── xmlui-light.ts
    │   │   │   └── xmluiscript.monacoLanguage.ts
    │   │   └── textMate
    │   │       ├── index.ts
    │   │       ├── xmlui-dark.json
    │   │       ├── xmlui-light.json
    │   │       ├── xmlui.json
    │   │       └── xmlui.tmLanguage.json
    │   ├── testing
    │   │   ├── assertions.ts
    │   │   ├── component-test-helpers.ts
    │   │   ├── ComponentDrivers.ts
    │   │   ├── drivers
    │   │   │   ├── DateInputDriver.ts
    │   │   │   ├── index.ts
    │   │   │   ├── ModalDialogDriver.ts
    │   │   │   ├── NumberBoxDriver.ts
    │   │   │   ├── TextBoxDriver.ts
    │   │   │   ├── TimeInputDriver.ts
    │   │   │   ├── TimerDriver.ts
    │   │   │   └── TreeDriver.ts
    │   │   ├── fixtures.ts
    │   │   ├── index.ts
    │   │   ├── infrastructure
    │   │   │   ├── index.html
    │   │   │   ├── main.tsx
    │   │   │   ├── public
    │   │   │   │   ├── mockServiceWorker.js
    │   │   │   │   ├── resources
    │   │   │   │   │   ├── bell.svg
    │   │   │   │   │   ├── box.svg
    │   │   │   │   │   ├── doc.svg
    │   │   │   │   │   ├── eye.svg
    │   │   │   │   │   ├── flower-640x480.jpg
    │   │   │   │   │   ├── sun.svg
    │   │   │   │   │   ├── test-image-100x100.jpg
    │   │   │   │   │   └── txt.svg
    │   │   │   │   └── serve.json
    │   │   │   └── TestBed.tsx
    │   │   └── themed-app-test-helpers.ts
    │   └── vite-env.d.ts
    ├── tests
    │   ├── components
    │   │   ├── CodeBlock
    │   │   │   └── hightlight-code.test.ts
    │   │   ├── playground-pattern.test.ts
    │   │   └── Tree
    │   │       └── Tree-states.test.ts
    │   ├── components-core
    │   │   ├── abstractions
    │   │   │   └── treeAbstractions.test.ts
    │   │   ├── container
    │   │   │   └── buildProxy.test.ts
    │   │   ├── interception
    │   │   │   ├── orderBy.test.ts
    │   │   │   ├── ReadOnlyCollection.test.ts
    │   │   │   └── request-param-converter.test.ts
    │   │   ├── scripts-runner
    │   │   │   ├── AttributeValueParser.test.ts
    │   │   │   ├── eval-tree-arrow-async.test.ts
    │   │   │   ├── eval-tree-arrow.test.ts
    │   │   │   ├── eval-tree-func-decl-async.test.ts
    │   │   │   ├── eval-tree-func-decl.test.ts
    │   │   │   ├── eval-tree-pre-post.test.ts
    │   │   │   ├── eval-tree-regression.test.ts
    │   │   │   ├── eval-tree.test.ts
    │   │   │   ├── function-proxy.test.ts
    │   │   │   ├── parser-regression.test.ts
    │   │   │   ├── process-event.test.ts
    │   │   │   ├── process-function.test.ts
    │   │   │   ├── process-implicit-context.test.ts
    │   │   │   ├── process-statement-asgn.test.ts
    │   │   │   ├── process-statement-destruct.test.ts
    │   │   │   ├── process-statement-regs.test.ts
    │   │   │   ├── process-statement-sync.test.ts
    │   │   │   ├── process-statement.test.ts
    │   │   │   ├── process-switch-sync.test.ts
    │   │   │   ├── process-switch.test.ts
    │   │   │   ├── process-try-sync.test.ts
    │   │   │   ├── process-try.test.ts
    │   │   │   └── test-helpers.ts
    │   │   ├── test-metadata-handler.ts
    │   │   ├── theming
    │   │   │   ├── border-segments.test.ts
    │   │   │   ├── component-layout.resolver.test.ts
    │   │   │   ├── layout-property-parser.test.ts
    │   │   │   ├── layout-resolver.test.ts
    │   │   │   ├── layout-resolver2.test.ts
    │   │   │   ├── layout-vp-override.test.ts
    │   │   │   └── padding-segments.test.ts
    │   │   └── utils
    │   │       ├── date-utils.test.ts
    │   │       ├── format-human-elapsed-time.test.ts
    │   │       └── LruCache.test.ts
    │   ├── language-server
    │   │   ├── completion.test.ts
    │   │   ├── format.test.ts
    │   │   ├── hover.test.ts
    │   │   └── mockData.ts
    │   └── parsers
    │       ├── common
    │       │   └── input-stream.test.ts
    │       ├── markdown
    │       │   └── parse-binding-expression.test.ts
    │       ├── parameter-parser.test.ts
    │       ├── paremeter-parser.test.ts
    │       ├── scripting
    │       │   ├── eval-tree-arrow.test.ts
    │       │   ├── eval-tree-pre-post.test.ts
    │       │   ├── eval-tree.test.ts
    │       │   ├── function-proxy.test.ts
    │       │   ├── lexer-literals.test.ts
    │       │   ├── lexer-misc.test.ts
    │       │   ├── module-parse.test.ts
    │       │   ├── parser-arrow.test.ts
    │       │   ├── parser-assignments.test.ts
    │       │   ├── parser-binary.test.ts
    │       │   ├── parser-destructuring.test.ts
    │       │   ├── parser-errors.test.ts
    │       │   ├── parser-expressions.test.ts
    │       │   ├── parser-function.test.ts
    │       │   ├── parser-literals.test.ts
    │       │   ├── parser-primary.test.ts
    │       │   ├── parser-regex.test.ts
    │       │   ├── parser-statements.test.ts
    │       │   ├── parser-unary.test.ts
    │       │   ├── process-event.test.ts
    │       │   ├── process-implicit-context.test.ts
    │       │   ├── process-statement-asgn.test.ts
    │       │   ├── process-statement-destruct.test.ts
    │       │   ├── process-statement-regs.test.ts
    │       │   ├── process-statement-sync.test.ts
    │       │   ├── process-statement.test.ts
    │       │   ├── process-switch-sync.test.ts
    │       │   ├── process-switch.test.ts
    │       │   ├── process-try-sync.test.ts
    │       │   ├── process-try.test.ts
    │       │   ├── simplify-expression.test.ts
    │       │   ├── statement-hooks.test.ts
    │       │   └── test-helpers.ts
    │       ├── style-parser
    │       │   ├── generateHvarChain.test.ts
    │       │   ├── parseHVar.test.ts
    │       │   ├── parser.test.ts
    │       │   └── tokens.test.ts
    │       └── xmlui
    │           ├── lint.test.ts
    │           ├── parser.test.ts
    │           ├── scanner.test.ts
    │           ├── transform.attr.test.ts
    │           ├── transform.circular.test.ts
    │           ├── transform.element.test.ts
    │           ├── transform.errors.test.ts
    │           ├── transform.escape.test.ts
    │           ├── transform.regression.test.ts
    │           ├── transform.script.test.ts
    │           ├── transform.test.ts
    │           └── xmlui.ts
    ├── tests-e2e
    │   ├── api-bound-component-regression.spec.ts
    │   ├── api-call-as-extracted-component.spec.ts
    │   ├── assign-to-object-or-array-regression.spec.ts
    │   ├── binding-regression.spec.ts
    │   ├── children-as-template-context-vars.spec.ts
    │   ├── compound-component.spec.ts
    │   ├── context-vars-regression.spec.ts
    │   ├── data-bindings.spec.ts
    │   ├── datasource-and-api-usage-in-var.spec.ts
    │   ├── datasource-direct-binding.spec.ts
    │   ├── datasource-onLoaded-regression.spec.ts
    │   ├── modify-array-item-regression.spec.ts
    │   ├── namespaces.spec.ts
    │   ├── push-to-array-regression.spec.ts
    │   ├── screen-breakpoints.spec.ts
    │   ├── scripting.spec.ts
    │   ├── state-scope-in-pages.spec.ts
    │   └── state-var-scopes.spec.ts
    ├── tsconfig.json
    ├── tsdown.config.ts
    ├── vite.config.ts
    └── vitest.config.ts
```

# Files

--------------------------------------------------------------------------------
/docs/content/components/DatePicker.md:
--------------------------------------------------------------------------------

```markdown
  1 | # DatePicker [#datepicker]
  2 | 
  3 | `DatePicker` provides an interactive calendar interface for selecting single dates or date ranges, with customizable formatting and validation options. It displays a text input that opens a calendar popup when clicked, offering both keyboard and mouse interaction.
  4 | 
  5 | **Key features:**
  6 | - **Flexible modes**: Single date selection (default) or date range selection
  7 | - **Format customization**: Support for various date formats (MM/dd/yyyy, yyyy-MM-dd, etc.)
  8 | - **Date restrictions**: Set minimum/maximum dates and disable specific dates
  9 | - **Localization options**: Configure first day of week and show week numbers
 10 | 
 11 | ## Properties [#properties]
 12 | 
 13 | ### `autoFocus` (default: false) [#autofocus-default-false]
 14 | 
 15 | If this property is set to `true`, the component gets the focus automatically when displayed.
 16 | 
 17 | ### `dateFormat` (default: "MM/dd/yyyy") [#dateformat-default-mm-dd-yyyy]
 18 | 
 19 | The format of the date displayed in the input field
 20 | 
 21 | Available values: `MM/dd/yyyy` **(default)**, `MM-dd-yyyy`, `yyyy/MM/dd`, `yyyy-MM-dd`, `dd/MM/yyyy`, `dd-MM-yyyy`, `yyyyMMdd`, `MMddyyyy`
 22 | 
 23 | Formats handle years (`y`), months (`m` or `M`), days of the month (`d`).
 24 | Providing multiple placeholder letters changes the display of the date.
 25 | 
 26 | The table below shows the available date formats:
 27 | 
 28 | | Format     | Example    |
 29 | | :--------- | :--------- |
 30 | | MM/dd/yyyy | 05/25/2024 |
 31 | | MM-dd-yyyy | 05-25-2024 |
 32 | | yyyy/MM/dd | 2024/05/25 |
 33 | | yyyy-MM-dd | 2024-05-25 |
 34 | | dd/MM/yyyy | 25/05/2024 |
 35 | | dd-MM-yyyy | 25-05-2024 |
 36 | | yyyyMMdd   | 20240525   |
 37 | | MMddyyyy   | 05252024   |
 38 | 
 39 | ```xmlui-pg copy display name="Example: dateFormat" height="440px"
 40 | <App>
 41 |   <DatePicker 
 42 |     inline 
 43 |     dateFormat="dd-MM-yyyy" 
 44 |     initialValue="05/25/2024" />
 45 | </App>
 46 | ```
 47 | 
 48 | ### `disabledDates` [#disableddates]
 49 | 
 50 | An optional array of dates that are to be disabled.
 51 | 
 52 | The `disabledDates` prop supports multiple patterns for disabling specific dates in the calendar. You can use Date objects, strings (parsed using the `dateFormat`), or complex matcher objects.
 53 | 
 54 | **Basic patterns:**
 55 | 
 56 | | Pattern | Description | Example |
 57 | | :------ | :---------- | :------ |
 58 | | Single string | Disable one specific date | `"05/25/2024"` |
 59 | | Array of strings | Disable multiple specific dates | `["05/25/2024", "05/26/2024"]` |
 60 | | Boolean | Disable all dates | `true` |
 61 | 
 62 | > [!INFO] You can use the [getDate()](/globals#getdate) function to query the current date.
 63 | 
 64 | ```xmlui-pg copy display name="Example: Disable specific dates" height="440px"
 65 | <App>
 66 |   <DatePicker 
 67 |     inline 
 68 |     disabledDates="{['05/26/2024', '05/27/2024']}" 
 69 |     initialValue="05/25/2024" />
 70 | </App>  
 71 | ```
 72 | 
 73 | **Advanced patterns:**
 74 | 
 75 | | Pattern | Description | Example |
 76 | | :------ | :---------- | :------ |
 77 | | Date range | Disable a range of dates | `{from: "05/20/2024", to: "05/25/2024"}` |
 78 | | Day of week | Disable specific weekdays (0=Sunday, 6=Saturday) | `{dayOfWeek: [0, 6]}` |
 79 | | Before date | Disable all dates before a specific date | `{before: "05/25/2024"}` |
 80 | | After date | Disable all dates after a specific date | `{after: "05/25/2024"}` |
 81 | | Date interval | Disable dates between two dates (exclusive) | `{before: "05/30/2024", after: "05/20/2024"}` |
 82 | 
 83 | ```xmlui-pg copy display name="Example: Disable weekends" height="440px"
 84 | <App>
 85 |   <DatePicker inline disabledDates="{{dayOfWeek: [0, 6]}}" />
 86 | </App>  
 87 | ```
 88 | 
 89 | ```xmlui-pg copy display name="Example: Disable date range" height="440px"
 90 | <App>
 91 |   <DatePicker 
 92 |     inline 
 93 |     disabledDates="{{from: '05/20/2024', to: '05/25/2024'}}" 
 94 |     initialValue="05/18/2024" />
 95 | </App>  
 96 | ```
 97 | 
 98 | ```xmlui-pg copy display name="Example: Disable dates before today" height="440px"
 99 | <App>
100 |   <DatePicker
101 |     inline 
102 |     disabledDates="{{before: getDate()}}"
103 |     intialValue="{getDate()}"/>
104 | </App>  
105 | ```
106 | 
107 | ```xmlui-pg copy display name="Example: Disable dates today and after" height="440px"
108 | <App>
109 |   <DatePicker
110 |     inline 
111 |     disabledDates="{[getDate(), {after: getDate()}]}"
112 |     intialValue="{getDate()}"/>
113 | </App>  
114 | ```
115 | 
116 | ```xmlui-pg copy display name="Example: Complex combination" height="440px"
117 | <App>
118 |   <DatePicker 
119 |     inline
120 |     disabledDates="{[
121 |     {dayOfWeek: [0, 6]}, 
122 |     {from: '12/24/2024', to: '12/26/2024'}, 
123 |     '01/01/2025']}" 
124 |     initialValue="12/20/2024"
125 | />
126 | </App>  
127 | ```
128 | 
129 | ### `enabled` (default: true) [#enabled-default-true]
130 | 
131 | This boolean property value indicates whether the component responds to user events (`true`) or not (`false`).
132 | 
133 | ```xmlui-pg copy display name="Example: enabled" height="120px"
134 | <App>
135 |   <DatePicker enabled="false" />
136 | </App>  
137 | ```
138 | 
139 | ### `endDate` [#enddate]
140 | 
141 | The latest month to start the month navigation from (inclusive). If not defined, the component allows any future dates. Accepts the same date format as the `initialValue`.Example: '2023-12-31' ensures the last month to select a date from is December 2023.
142 | 
143 | ### `endIcon` [#endicon]
144 | 
145 | This property sets an optional icon to appear on the end (right side when the left-to-right direction is set) of the input.
146 | 
147 | ### `endText` [#endtext]
148 | 
149 | This property sets an optional text to appear on the end (right side when the left-to-right direction is set) of the input.
150 | 
151 | ### `initialValue` [#initialvalue]
152 | 
153 | This property sets the component's initial value.
154 | 
155 | ```xmlui-pg copy display name="Example: initialValue" height="440px"
156 | <App>
157 |   <DatePicker inline initialValue="05/25/2024" />
158 | </App>  
159 | ```
160 | 
161 | ### `inline` (default: false) [#inline-default-false]
162 | 
163 | If set to true, the calendar is always visible and its panel is rendered as part of the layout. If false, the calendar is shown in a popup when the input is focused or clicked.
164 | 
165 | ### `mode` (default: "single") [#mode-default-single]
166 | 
167 | The mode of the datepicker (single or range)
168 | 
169 | Available values: `single` **(default)**, `range`
170 | 
171 | ```xmlui-pg copy {2-3} display name="Example: mode" height="560px"
172 | <App>
173 |   <DatePicker mode="single" />
174 |   <DatePicker mode="range" />
175 | </App>
176 | ```
177 | 
178 | ### `placeholder` [#placeholder]
179 | 
180 | An optional placeholder text that is visible in the input field when its empty.
181 | 
182 | ```xmlui-pg copy display name="Example: placeholder" height="500px"
183 | <App>
184 |   <DatePicker placeholder="This is a placeholder" />
185 | </App>  
186 | ```
187 | 
188 | ### `readOnly` (default: false) [#readonly-default-false]
189 | 
190 | Set this property to `true` to disallow changing the component value.
191 | 
192 | ### `showWeekNumber` (default: false) [#showweeknumber-default-false]
193 | 
194 | Whether to show the week number in the calendar
195 | 
196 | ```xmlui-pg copy display name="Example: showWeekNumber" height="500px"
197 | <App>
198 |   <DatePicker showWeekNumber="true" />
199 | </App>
200 | ```
201 | 
202 | ### `startDate` [#startdate]
203 | 
204 | The earliest month to start the month navigation from (inclusive). If not defined, the component allows any dates in the past. Accepts the same date format as the `initialValue`.Example: '2023-01-01' ensures the first month to select a date from is January 2023.
205 | 
206 | ### `startIcon` [#starticon]
207 | 
208 | This property sets an optional icon to appear at the start (left side when the left-to-right direction is set) of the input.
209 | 
210 | ### `startText` [#starttext]
211 | 
212 | This property sets an optional text to appear at the start (left side when the left-to-right direction is set) of the input.
213 | 
214 | ### `validationStatus` (default: "none") [#validationstatus-default-none]
215 | 
216 | This property allows you to set the validation status of the input component.
217 | 
218 | Available values:
219 | 
220 | | Value | Description |
221 | | --- | --- |
222 | | `valid` | Visual indicator for an input that is accepted |
223 | | `warning` | Visual indicator for an input that produced a warning |
224 | | `error` | Visual indicator for an input that produced an error |
225 | 
226 | | Value     | Description                                           |
227 | | :-------- | :---------------------------------------------------- |
228 | | `valid`   | Visual indicator for an input that is accepted        |
229 | | `warning` | Visual indicator for an input that produced a warning |
230 | | `error`   | Visual indicator for an input that produced an error  |
231 | 
232 | ```xmlui-pg copy display name="Example: validationStatus" height="500px"
233 | <App>
234 |   <DatePicker />
235 |   <DatePicker validationStatus="valid" />
236 |   <DatePicker validationStatus="warning" />
237 |   <DatePicker validationStatus="error" />
238 | </App>
239 | ```
240 | 
241 | ### `weekStartsOn` (default: 0) [#weekstartson-default-0]
242 | 
243 | The first day of the week. 0 is Sunday, 1 is Monday, etc.
244 | 
245 | Available values:
246 | 
247 | | Value | Description |
248 | | --- | --- |
249 | | `0` | Sunday **(default)** |
250 | | `1` | Monday |
251 | | `2` | Tuesday |
252 | | `3` | Wednesday |
253 | | `4` | Thursday |
254 | | `5` | Friday |
255 | | `6` | Saturday |
256 | 
257 | | Day       | Number |
258 | | :-------- | :----- |
259 | | Sunday    | 0      |
260 | | Monday    | 1      |
261 | | Tuesday   | 2      |
262 | | Wednesday | 3      |
263 | | Thursday  | 4      |
264 | | Friday    | 5      |
265 | | Saturday  | 6      |
266 | 
267 | ```xmlui-pg copy display name="Example: weekStartsOn" height="440px"
268 | <App>
269 |   <DatePicker inline weekStartsOn="1" />
270 | </App>
271 | ```
272 | 
273 | ## Events [#events]
274 | 
275 | ### `didChange` [#didchange]
276 | 
277 | This event is triggered when value of DatePicker has changed.
278 | 
279 | Write in the input field and see how the `Text` underneath it is updated in parallel.
280 | 
281 | ```xmlui-pg copy {2} display name="Example: didChange" height="520px"
282 | <App var.field="(none)">
283 |   <Text value="{field}" />
284 |   <DatePicker 
285 |     inline
286 |     initialValue="{field}" 
287 |     onDidChange="(val) => field = val" />
288 | </App>
289 | ```
290 | 
291 | ### `gotFocus` [#gotfocus]
292 | 
293 | This event is triggered when the DatePicker has received the focus.
294 | 
295 | Clicking on the `DatePicker` in the example demo changes the label text.
296 | Note how clicking elsewhere resets the text to the original.
297 | 
298 | ```xmlui-pg copy {4-5} display name="Example: gotFocus/lostFocus" height="540px"
299 | <App var.isFocused="false">
300 |   <Text value="{isFocused === true 
301 |     ? 'DatePicker focused' : 'DatePicker lost focus'}" 
302 |   />
303 |   <DatePicker
304 |     onGotFocus="isFocused = true"
305 |     onLostFocus="isFocused = false"
306 |   />
307 | </App>
308 | ```
309 | 
310 | ### `lostFocus` [#lostfocus]
311 | 
312 | This event is triggered when the DatePicker has lost the focus.
313 | 
314 | ## Exposed Methods [#exposed-methods]
315 | 
316 | ### `focus` [#focus]
317 | 
318 | Focus the DatePicker component.
319 | 
320 | **Signature**: `focus(): void`
321 | 
322 | ### `setValue` [#setvalue]
323 | 
324 | This method sets the current value of the DatePicker.
325 | 
326 | **Signature**: `set value(value: any): void`
327 | 
328 | - `value`: The new value to set for the date picker.
329 | 
330 | ```xmlui-pg copy {3, 9, 12} display name="Example: setValue" height="500px"
331 | <App>
332 |   <HStack>
333 |     <Button
334 |       label="Set Date to 05/25/2024"
335 |       onClick="picker.setValue('05/25/2024')" />
336 |     <Button
337 |       label="Remove Date"
338 |       onClick="picker.setValue('')" />
339 |   </HStack>
340 |   <DatePicker inline id="picker" />
341 | </App>
342 | ```
343 | 
344 | ### `value` [#value]
345 | 
346 | You can query the component's value. If no value is set, it will retrieve `undefined`.
347 | 
348 | **Signature**: `get value(): any`
349 | 
350 | ## Styling [#styling]
351 | 
352 | ### Theme Variables [#theme-variables]
353 | 
354 | | Variable | Default Value (Light) | Default Value (Dark) |
355 | | --- | --- | --- |
356 | | [backgroundColor](../styles-and-themes/common-units/#color)-DatePicker--default | *none* | *none* |
357 | | [backgroundColor](../styles-and-themes/common-units/#color)-DatePicker--default--hover | *none* | *none* |
358 | | [backgroundColor](../styles-and-themes/common-units/#color)-DatePicker--disabled | *none* | *none* |
359 | | [backgroundColor](../styles-and-themes/common-units/#color)-DatePicker--error | *none* | *none* |
360 | | [backgroundColor](../styles-and-themes/common-units/#color)-DatePicker--error--hover | *none* | *none* |
361 | | [backgroundColor](../styles-and-themes/common-units/#color)-DatePicker--success | *none* | *none* |
362 | | [backgroundColor](../styles-and-themes/common-units/#color)-DatePicker--success--hover | *none* | *none* |
363 | | [backgroundColor](../styles-and-themes/common-units/#color)-DatePicker--warning | *none* | *none* |
364 | | [backgroundColor](../styles-and-themes/common-units/#color)-DatePicker--warning--hover | *none* | *none* |
365 | | [backgroundColor](../styles-and-themes/common-units/#color)-item-DatePicker--active | $color-surface-200 | $color-surface-200 |
366 | | [backgroundColor](../styles-and-themes/common-units/#color)-item-DatePicker--active | $color-surface-200 | $color-surface-200 |
367 | | [backgroundColor](../styles-and-themes/common-units/#color)-item-DatePicker--hover | $color-surface-100 | $color-surface-100 |
368 | | [backgroundColor](../styles-and-themes/common-units/#color)-item-DatePicker--hover | $color-surface-100 | $color-surface-100 |
369 | | [backgroundColor](../styles-and-themes/common-units/#color)-menu-DatePicker | $color-surface-50 | $color-surface-50 |
370 | | [backgroundColor](../styles-and-themes/common-units/#color)-menu-DatePicker | $color-surface-50 | $color-surface-50 |
371 | | [borderColor](../styles-and-themes/common-units/#color)-DatePicker--default | *none* | *none* |
372 | | [borderColor](../styles-and-themes/common-units/#color)-DatePicker--default--hover | *none* | *none* |
373 | | [borderColor](../styles-and-themes/common-units/#color)-DatePicker--disabled | *none* | *none* |
374 | | [borderColor](../styles-and-themes/common-units/#color)-DatePicker--error | *none* | *none* |
375 | | [borderColor](../styles-and-themes/common-units/#color)-DatePicker--error--hover | *none* | *none* |
376 | | [borderColor](../styles-and-themes/common-units/#color)-DatePicker--success | *none* | *none* |
377 | | [borderColor](../styles-and-themes/common-units/#color)-DatePicker--success--hover | *none* | *none* |
378 | | [borderColor](../styles-and-themes/common-units/#color)-DatePicker--warning | *none* | *none* |
379 | | [borderColor](../styles-and-themes/common-units/#color)-DatePicker--warning--hover | *none* | *none* |
380 | | [borderColor](../styles-and-themes/common-units/#color)-selectedItem-DatePicker | $color-primary-200 | $color-primary-200 |
381 | | [borderColor](../styles-and-themes/common-units/#color)-selectedItem-DatePicker | $color-primary-200 | $color-primary-200 |
382 | | [borderRadius](../styles-and-themes/common-units/#border-rounding)-DatePicker--default | *none* | *none* |
383 | | [borderRadius](../styles-and-themes/common-units/#border-rounding)-DatePicker--error | *none* | *none* |
384 | | [borderRadius](../styles-and-themes/common-units/#border-rounding)-DatePicker--success | *none* | *none* |
385 | | [borderRadius](../styles-and-themes/common-units/#border-rounding)-DatePicker--warning | *none* | *none* |
386 | | [borderRadius](../styles-and-themes/common-units/#border-rounding)-menu-DatePicker | $borderRadius | $borderRadius |
387 | | [borderRadius](../styles-and-themes/common-units/#border-rounding)-menu-DatePicker | $borderRadius | $borderRadius |
388 | | [borderStyle](../styles-and-themes/common-units/#border-style)-DatePicker--default | *none* | *none* |
389 | | [borderStyle](../styles-and-themes/common-units/#border-style)-DatePicker--error | *none* | *none* |
390 | | [borderStyle](../styles-and-themes/common-units/#border-style)-DatePicker--success | *none* | *none* |
391 | | [borderStyle](../styles-and-themes/common-units/#border-style)-DatePicker--warning | *none* | *none* |
392 | | [borderWidth](../styles-and-themes/common-units/#size)-DatePicker--default | *none* | *none* |
393 | | [borderWidth](../styles-and-themes/common-units/#size)-DatePicker--error | *none* | *none* |
394 | | [borderWidth](../styles-and-themes/common-units/#size)-DatePicker--success | *none* | *none* |
395 | | [borderWidth](../styles-and-themes/common-units/#size)-DatePicker--warning | *none* | *none* |
396 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-DatePicker--default | *none* | *none* |
397 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-DatePicker--default--hover | *none* | *none* |
398 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-DatePicker--error | *none* | *none* |
399 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-DatePicker--error--hover | *none* | *none* |
400 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-DatePicker--success | *none* | *none* |
401 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-DatePicker--success--hover | *none* | *none* |
402 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-DatePicker--warning | *none* | *none* |
403 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-DatePicker--warning--hover | *none* | *none* |
404 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-menu-DatePicker | $boxShadow-md | $boxShadow-md |
405 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-menu-DatePicker | $boxShadow-md | $boxShadow-md |
406 | | [color](../styles-and-themes/common-units/#color)-adornment-DatePicker--default | *none* | *none* |
407 | | [color](../styles-and-themes/common-units/#color)-adornment-DatePicker--error | *none* | *none* |
408 | | [color](../styles-and-themes/common-units/#color)-adornment-DatePicker--success | *none* | *none* |
409 | | [color](../styles-and-themes/common-units/#color)-adornment-DatePicker--warning | *none* | *none* |
410 | | [fontSize](../styles-and-themes/common-units/#size)-DatePicker | *none* | *none* |
411 | | [fontSize](../styles-and-themes/common-units/#size)-placeholder-DatePicker--default | *none* | *none* |
412 | | [fontSize](../styles-and-themes/common-units/#size)-placeholder-DatePicker--error | *none* | *none* |
413 | | [fontSize](../styles-and-themes/common-units/#size)-placeholder-DatePicker--success | *none* | *none* |
414 | | [fontSize](../styles-and-themes/common-units/#size)-placeholder-DatePicker--warning | *none* | *none* |
415 | | [minHeight](../styles-and-themes/common-units/#size)-DatePicker | *none* | *none* |
416 | | [outlineColor](../styles-and-themes/common-units/#color)-DatePicker--default--focus | *none* | *none* |
417 | | [outlineColor](../styles-and-themes/common-units/#color)-DatePicker--error--focus | *none* | *none* |
418 | | [outlineColor](../styles-and-themes/common-units/#color)-DatePicker--success--focus | *none* | *none* |
419 | | [outlineColor](../styles-and-themes/common-units/#color)-DatePicker--warning--focus | *none* | *none* |
420 | | [outlineOffset](../styles-and-themes/common-units/#size)-DatePicker--default--focus | *none* | *none* |
421 | | [outlineOffset](../styles-and-themes/common-units/#size)-DatePicker--error--focus | *none* | *none* |
422 | | [outlineOffset](../styles-and-themes/common-units/#size)-DatePicker--success--focus | *none* | *none* |
423 | | [outlineOffset](../styles-and-themes/common-units/#size)-DatePicker--warning--focus | *none* | *none* |
424 | | [outlineStyle](../styles-and-themes/common-units/#border)-DatePicker--default--focus | *none* | *none* |
425 | | [outlineStyle](../styles-and-themes/common-units/#border)-DatePicker--error--focus | *none* | *none* |
426 | | [outlineStyle](../styles-and-themes/common-units/#border)-DatePicker--success--focus | *none* | *none* |
427 | | [outlineStyle](../styles-and-themes/common-units/#border)-DatePicker--warning--focus | *none* | *none* |
428 | | [outlineWidth](../styles-and-themes/common-units/#size)-DatePicker--default--focus | *none* | *none* |
429 | | [outlineWidth](../styles-and-themes/common-units/#size)-DatePicker--error--focus | *none* | *none* |
430 | | [outlineWidth](../styles-and-themes/common-units/#size)-DatePicker--success--focus | *none* | *none* |
431 | | [outlineWidth](../styles-and-themes/common-units/#size)-DatePicker--warning--focus | *none* | *none* |
432 | | [padding](../styles-and-themes/common-units/#size)-DatePicker | *none* | *none* |
433 | | [paddingBottom](../styles-and-themes/common-units/#size)-DatePicker | *none* | *none* |
434 | | [paddingHorizontal](../styles-and-themes/common-units/#size)-DatePicker | $space-2 | $space-2 |
435 | | [paddingLeft](../styles-and-themes/common-units/#size)-DatePicker | *none* | *none* |
436 | | [paddingRight](../styles-and-themes/common-units/#size)-DatePicker | *none* | *none* |
437 | | [paddingTop](../styles-and-themes/common-units/#size)-DatePicker | *none* | *none* |
438 | | [paddingVertical](../styles-and-themes/common-units/#size)-DatePicker | $space-2 | $space-2 |
439 | | [textColor](../styles-and-themes/common-units/#color)-DatePicker--default | *none* | *none* |
440 | | [textColor](../styles-and-themes/common-units/#color)-DatePicker--default--hover | *none* | *none* |
441 | | [textColor](../styles-and-themes/common-units/#color)-DatePicker--disabled | *none* | *none* |
442 | | [textColor](../styles-and-themes/common-units/#color)-DatePicker--error | *none* | *none* |
443 | | [textColor](../styles-and-themes/common-units/#color)-DatePicker--error--hover | *none* | *none* |
444 | | [textColor](../styles-and-themes/common-units/#color)-DatePicker--success | *none* | *none* |
445 | | [textColor](../styles-and-themes/common-units/#color)-DatePicker--success--hover | *none* | *none* |
446 | | [textColor](../styles-and-themes/common-units/#color)-DatePicker--warning | *none* | *none* |
447 | | [textColor](../styles-and-themes/common-units/#color)-DatePicker--warning--hover | *none* | *none* |
448 | | [textColor](../styles-and-themes/common-units/#color)-placeholder-DatePicker--default | *none* | *none* |
449 | | [textColor](../styles-and-themes/common-units/#color)-placeholder-DatePicker--error | *none* | *none* |
450 | | [textColor](../styles-and-themes/common-units/#color)-placeholder-DatePicker--success | *none* | *none* |
451 | | [textColor](../styles-and-themes/common-units/#color)-placeholder-DatePicker--warning | *none* | *none* |
452 | | [textColor](../styles-and-themes/common-units/#color)-value-DatePicker | $textColor-primary | $textColor-primary |
453 | | [textColor](../styles-and-themes/common-units/#color)-value-DatePicker | $textColor-primary | $textColor-primary |
454 | 
```

--------------------------------------------------------------------------------
/docs/content/components/AutoComplete.md:
--------------------------------------------------------------------------------

```markdown
  1 | # AutoComplete [#autocomplete]
  2 | 
  3 | `AutoComplete` is a searchable dropdown input that allows users to type and filter through options, with support for single or multiple selections. Unlike a basic [`Select`](/components/Select), it provides type-ahead functionality and can allow users to create new options.
  4 | 
  5 | **Key features:**
  6 | - **Type-ahead filtering**: Users can type to narrow down options in real-time
  7 | - **Multi-select support**: Set `multi="true"` to allow selecting multiple items
  8 | - **Custom option creation**: Enable `creatable="true"` to let users add new options
  9 | - **Rich customization**: Use `optionTemplate` to create complex option layouts
 10 | 
 11 | ## Using AutoComplete [#using-autocomplete]
 12 | 
 13 | ```xmlui-pg copy display height="200px" name="Example: Using AutoComplete"
 14 | <App>
 15 |   <AutoComplete>
 16 |     <Option value="1" label="Bruce Wayne" />
 17 |     <Option value="2" label="Clark Kent" enabled="false" />
 18 |     <Option value="3" label="Diana Prince" />
 19 |   </AutoComplete>
 20 | </App>
 21 | ```
 22 | 
 23 | **Context variables available during execution:**
 24 | 
 25 | - `$item`: This context value represents an item when you define an option item template. Use `$item.value` and `$item.label` to refer to the value and label of the particular option.
 26 | 
 27 | ## Properties [#properties]
 28 | 
 29 | ### `autoFocus` (default: false) [#autofocus-default-false]
 30 | 
 31 | If this property is set to `true`, the component gets the focus automatically when displayed.
 32 | 
 33 | ### `creatable` (default: false) [#creatable-default-false]
 34 | 
 35 | This property allows the user to create new items that are not present in the list of options.
 36 | 
 37 | ### `dropdownHeight` [#dropdownheight]
 38 | 
 39 | This property sets the height of the dropdown list.
 40 | 
 41 | ### `emptyListTemplate` [#emptylisttemplate]
 42 | 
 43 | This property defines the template to display when the list of options is empty.
 44 | 
 45 | ```xmlui-pg copy display height="200px" name="Example: emptyListTemplate"
 46 | <App>
 47 |   <AutoComplete>
 48 |     <property name="emptyListTemplate">
 49 |       <Text>No options found</Text>
 50 |     </property>
 51 |   </AutoComplete>
 52 | </App>
 53 | ```
 54 | 
 55 | ### `enabled` (default: true) [#enabled-default-true]
 56 | 
 57 | This boolean property value indicates whether the component responds to user events (`true`) or not (`false`).
 58 | 
 59 | ### `initiallyOpen` (default: false) [#initiallyopen-default-false]
 60 | 
 61 | This property determines whether the dropdown list is open when the component is first rendered.
 62 | 
 63 | ### `initialValue` [#initialvalue]
 64 | 
 65 | This property sets the component's initial value.
 66 | 
 67 | ### `maxLength` [#maxlength]
 68 | 
 69 | This property sets the maximum length of the input it accepts.
 70 | 
 71 | ### `multi` (default: false) [#multi-default-false]
 72 | 
 73 | The `true` value of the property indicates if the user can select multiple items.
 74 | 
 75 | ```xmlui-pg copy display height="300px" name="Example: multi"
 76 |     <App>
 77 |       <AutoComplete multi="true">
 78 |         <Option value="1" label="Bruce Wayne" />
 79 |         <Option value="2" label="Clark Kent" />
 80 |         <Option value="3" label="Diana Prince" />
 81 |         <Option value="4" label="Barry Allen" />
 82 |         <Option value="5" label="Hal Jordan" />
 83 |       </AutoComplete>
 84 |     </App>
 85 | ```
 86 | 
 87 | ### `optionTemplate` [#optiontemplate]
 88 | 
 89 | This property enables the customization of list items. To access the attributes of a list item use the `$item` context variable.
 90 | 
 91 | ```xmlui-pg copy display height="300px" name="Example: optionTemplate"
 92 | <App>
 93 |   <AutoComplete multi="true">
 94 |     <property name="optionTemplate">
 95 |       <Text textAlign="center" color="red">{$item.label}</Text>
 96 |     </property>
 97 |     <Option value="1" label="Bruce Wayne" />
 98 |     <Option value="2" label="Clark Kent" />
 99 |     <Option value="3" label="Diana Prince" />
100 |   </AutoComplete>
101 | </App>
102 | ```
103 | 
104 | ### `placeholder` [#placeholder]
105 | 
106 | An optional placeholder text that is visible in the input field when its empty.
107 | 
108 | ### `readOnly` (default: false) [#readonly-default-false]
109 | 
110 | Set this property to `true` to disallow changing the component value.
111 | 
112 | ### `required` (default: false) [#required-default-false]
113 | 
114 | Set this property to `true` to indicate it must have a value before submitting the containing form.
115 | 
116 | ### `validationStatus` (default: "none") [#validationstatus-default-none]
117 | 
118 | This property allows you to set the validation status of the input component.
119 | 
120 | Available values:
121 | 
122 | | Value | Description |
123 | | --- | --- |
124 | | `valid` | Visual indicator for an input that is accepted |
125 | | `warning` | Visual indicator for an input that produced a warning |
126 | | `error` | Visual indicator for an input that produced an error |
127 | 
128 | ## Events [#events]
129 | 
130 | ### `didChange` [#didchange]
131 | 
132 | This event is triggered when value of AutoComplete has changed.
133 | 
134 | ### `gotFocus` [#gotfocus]
135 | 
136 | This event is triggered when the AutoComplete has received the focus.
137 | 
138 | ### `itemCreated` [#itemcreated]
139 | 
140 | This event is triggered when a new item is created by the user (if `creatable` is enabled).
141 | 
142 | Add a few new items not in the options list. The following markup will display them:
143 | 
144 | ```xmlui-pg copy display height="300px" name="Example: itemCreated"
145 | <App var.newItems="{[]}">
146 |   <AutoComplete
147 |     id="autoComplete"
148 |     creatable="true"
149 |     onItemCreated="item => newItems.push(item)">
150 |     <Option value="1" label="Bruce Wayne" />
151 |     <Option value="2" label="Clark Kent" />
152 |   </AutoComplete>
153 |   <Text testId="text">
154 |     New items: {newItems.join(", ")}
155 |   </Text>
156 | </App>
157 | ```
158 | 
159 | ### `lostFocus` [#lostfocus]
160 | 
161 | This event is triggered when the AutoComplete has lost the focus.
162 | 
163 | ## Exposed Methods [#exposed-methods]
164 | 
165 | ### `focus` [#focus]
166 | 
167 | This method focuses the AutoComplete component.
168 | 
169 | **Signature**: `focus()`
170 | 
171 | ### `setValue` [#setvalue]
172 | 
173 | This API allows you to set the value of the component. If the value is not valid, the component will not update its internal state.
174 | 
175 | **Signature**: `setValue(value: any)`
176 | 
177 | - `value`: The value to set.
178 | 
179 | ### `value` [#value]
180 | 
181 | This API allows you to get or set the value of the component. If no value is set, it will retrieve `undefined`.
182 | 
183 | **Signature**: `get value(): any`
184 | 
185 | ## Styling [#styling]
186 | 
187 | ### Theme Variables [#theme-variables]
188 | 
189 | | Variable | Default Value (Light) | Default Value (Dark) |
190 | | --- | --- | --- |
191 | | [backgroundColor](../styles-and-themes/common-units/#color)-AutoComplete--default | *none* | *none* |
192 | | [backgroundColor](../styles-and-themes/common-units/#color)-AutoComplete--default--hover | *none* | *none* |
193 | | [backgroundColor](../styles-and-themes/common-units/#color)-AutoComplete--disabled | *none* | *none* |
194 | | [backgroundColor](../styles-and-themes/common-units/#color)-AutoComplete--error | *none* | *none* |
195 | | [backgroundColor](../styles-and-themes/common-units/#color)-AutoComplete--error--hover | *none* | *none* |
196 | | [backgroundColor](../styles-and-themes/common-units/#color)-AutoComplete--success | *none* | *none* |
197 | | [backgroundColor](../styles-and-themes/common-units/#color)-AutoComplete--success--hover | *none* | *none* |
198 | | [backgroundColor](../styles-and-themes/common-units/#color)-AutoComplete--warning | *none* | *none* |
199 | | [backgroundColor](../styles-and-themes/common-units/#color)-AutoComplete--warning--hover | *none* | *none* |
200 | | [backgroundColor](../styles-and-themes/common-units/#color)-AutoComplete-badge | $color-primary-500 | $color-primary-500 |
201 | | [backgroundColor](../styles-and-themes/common-units/#color)-AutoComplete-badge | $color-primary-500 | $color-primary-500 |
202 | | [backgroundColor](../styles-and-themes/common-units/#color)-AutoComplete-badge--active | $color-primary-500 | $color-primary-500 |
203 | | [backgroundColor](../styles-and-themes/common-units/#color)-AutoComplete-badge--active | $color-primary-500 | $color-primary-500 |
204 | | [backgroundColor](../styles-and-themes/common-units/#color)-AutoComplete-badge--hover | $color-primary-400 | $color-primary-400 |
205 | | [backgroundColor](../styles-and-themes/common-units/#color)-AutoComplete-badge--hover | $color-primary-400 | $color-primary-400 |
206 | | [backgroundColor](../styles-and-themes/common-units/#color)-item-AutoComplete | $backgroundColor-dropdown-item | $backgroundColor-dropdown-item |
207 | | [backgroundColor](../styles-and-themes/common-units/#color)-item-AutoComplete--active | $backgroundColor-dropdown-item--active | $backgroundColor-dropdown-item--active |
208 | | [backgroundColor](../styles-and-themes/common-units/#color)-item-AutoComplete--hover | $backgroundColor-dropdown-item--hover | $backgroundColor-dropdown-item--hover |
209 | | [backgroundColor](../styles-and-themes/common-units/#color)-menu-AutoComplete | $color-surface-raised | $color-surface-raised |
210 | | [backgroundColor](../styles-and-themes/common-units/#color)-menu-AutoComplete | $color-surface-raised | $color-surface-raised |
211 | | [border](../styles-and-themes/common-units/#border)-AutoComplete | *none* | *none* |
212 | | [borderBottom](../styles-and-themes/common-units/#border)-AutoComplete | *none* | *none* |
213 | | [borderBottomColor](../styles-and-themes/common-units/#color)-AutoComplete | *none* | *none* |
214 | | [borderBottomStyle](../styles-and-themes/common-units/#border-style)-AutoComplete | *none* | *none* |
215 | | [borderBottomWidth](../styles-and-themes/common-units/#size)-AutoComplete | *none* | *none* |
216 | | [borderColor](../styles-and-themes/common-units/#color)-AutoComplete | *none* | *none* |
217 | | [borderColor](../styles-and-themes/common-units/#color)-AutoComplete--default | *none* | *none* |
218 | | [borderColor](../styles-and-themes/common-units/#color)-AutoComplete--default--hover | *none* | *none* |
219 | | [borderColor](../styles-and-themes/common-units/#color)-AutoComplete--disabled | initial | initial |
220 | | [borderColor](../styles-and-themes/common-units/#color)-AutoComplete--disabled | initial | initial |
221 | | [borderColor](../styles-and-themes/common-units/#color)-AutoComplete--error | *none* | *none* |
222 | | [borderColor](../styles-and-themes/common-units/#color)-AutoComplete--error--hover | *none* | *none* |
223 | | [borderColor](../styles-and-themes/common-units/#color)-AutoComplete--success | *none* | *none* |
224 | | [borderColor](../styles-and-themes/common-units/#color)-AutoComplete--success--hover | *none* | *none* |
225 | | [borderColor](../styles-and-themes/common-units/#color)-AutoComplete--warning | *none* | *none* |
226 | | [borderColor](../styles-and-themes/common-units/#color)-AutoComplete--warning--hover | *none* | *none* |
227 | | [borderColor](../styles-and-themes/common-units/#color)-menu-AutoComplete | $borderColor | $borderColor |
228 | | [borderColor](../styles-and-themes/common-units/#color)-menu-AutoComplete | $borderColor | $borderColor |
229 | | [borderEndEndRadius](../styles-and-themes/common-units/#border-rounding)-AutoComplete | *none* | *none* |
230 | | [borderEndStartRadius](../styles-and-themes/common-units/#border-rounding)-AutoComplete | *none* | *none* |
231 | | [borderHorizontal](../styles-and-themes/common-units/#border)-AutoComplete | *none* | *none* |
232 | | [borderHorizontalColor](../styles-and-themes/common-units/#color)-AutoComplete | *none* | *none* |
233 | | [borderHorizontalStyle](../styles-and-themes/common-units/#border-style)-AutoComplete | *none* | *none* |
234 | | [borderHorizontalWidth](../styles-and-themes/common-units/#size)-AutoComplete | *none* | *none* |
235 | | [borderLeft](../styles-and-themes/common-units/#border)-AutoComplete | *none* | *none* |
236 | | [color](../styles-and-themes/common-units/#color)-AutoComplete | *none* | *none* |
237 | | [borderLeftStyle](../styles-and-themes/common-units/#border-style)-AutoComplete | *none* | *none* |
238 | | [borderLeftWidth](../styles-and-themes/common-units/#size)-AutoComplete | *none* | *none* |
239 | | [borderRadius](../styles-and-themes/common-units/#border-rounding)-AutoComplete--default | *none* | *none* |
240 | | [borderRadius](../styles-and-themes/common-units/#border-rounding)-AutoComplete--error | *none* | *none* |
241 | | [borderRadius](../styles-and-themes/common-units/#border-rounding)-AutoComplete--success | *none* | *none* |
242 | | [borderRadius](../styles-and-themes/common-units/#border-rounding)-AutoComplete--warning | *none* | *none* |
243 | | [borderRadius](../styles-and-themes/common-units/#border-rounding)-AutoComplete-badge | $borderRadius | $borderRadius |
244 | | [borderRadius](../styles-and-themes/common-units/#border-rounding)-menu-AutoComplete | $borderRadius | $borderRadius |
245 | | [borderRadius](../styles-and-themes/common-units/#border-rounding)-menu-AutoComplete | $borderRadius | $borderRadius |
246 | | [borderRight](../styles-and-themes/common-units/#border)-AutoComplete | *none* | *none* |
247 | | [color](../styles-and-themes/common-units/#color)-AutoComplete | *none* | *none* |
248 | | [borderRightStyle](../styles-and-themes/common-units/#border-style)-AutoComplete | *none* | *none* |
249 | | [borderRightWidth](../styles-and-themes/common-units/#size)-AutoComplete | *none* | *none* |
250 | | [borderStartEndRadius](../styles-and-themes/common-units/#border-rounding)-AutoComplete | *none* | *none* |
251 | | [borderStartStartRadius](../styles-and-themes/common-units/#border-rounding)-AutoComplete | *none* | *none* |
252 | | [borderStyle](../styles-and-themes/common-units/#border-style)-AutoComplete | *none* | *none* |
253 | | [borderStyle](../styles-and-themes/common-units/#border-style)-AutoComplete--default | *none* | *none* |
254 | | [borderStyle](../styles-and-themes/common-units/#border-style)-AutoComplete--error | *none* | *none* |
255 | | [borderStyle](../styles-and-themes/common-units/#border-style)-AutoComplete--success | *none* | *none* |
256 | | [borderStyle](../styles-and-themes/common-units/#border-style)-AutoComplete--warning | *none* | *none* |
257 | | [borderTop](../styles-and-themes/common-units/#border)-AutoComplete | *none* | *none* |
258 | | [borderTopColor](../styles-and-themes/common-units/#color)-AutoComplete | *none* | *none* |
259 | | [borderTopStyle](../styles-and-themes/common-units/#border-style)-AutoComplete | *none* | *none* |
260 | | [borderTopWidth](../styles-and-themes/common-units/#size)-AutoComplete | *none* | *none* |
261 | | [borderHorizontal](../styles-and-themes/common-units/#border)-AutoComplete | *none* | *none* |
262 | | [borderVerticalColor](../styles-and-themes/common-units/#color)-AutoComplete | *none* | *none* |
263 | | [borderVerticalStyle](../styles-and-themes/common-units/#border-style)-AutoComplete | *none* | *none* |
264 | | [borderVerticalWidth](../styles-and-themes/common-units/#size)-AutoComplete | *none* | *none* |
265 | | [borderWidth](../styles-and-themes/common-units/#size)-AutoComplete | *none* | *none* |
266 | | [borderWidth](../styles-and-themes/common-units/#size)-AutoComplete--default | *none* | *none* |
267 | | [borderWidth](../styles-and-themes/common-units/#size)-AutoComplete--error | *none* | *none* |
268 | | [borderWidth](../styles-and-themes/common-units/#size)-AutoComplete--success | *none* | *none* |
269 | | [borderWidth](../styles-and-themes/common-units/#size)-AutoComplete--warning | *none* | *none* |
270 | | [borderWidth](../styles-and-themes/common-units/#size)-menu-AutoComplete | 1px | 1px |
271 | | [borderWidth](../styles-and-themes/common-units/#size)-menu-AutoComplete | 1px | 1px |
272 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-AutoComplete--default | *none* | *none* |
273 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-AutoComplete--default--hover | *none* | *none* |
274 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-AutoComplete--error | *none* | *none* |
275 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-AutoComplete--error--hover | *none* | *none* |
276 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-AutoComplete--success | *none* | *none* |
277 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-AutoComplete--success--hover | *none* | *none* |
278 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-AutoComplete--warning | *none* | *none* |
279 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-AutoComplete--warning--hover | *none* | *none* |
280 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-menu-AutoComplete | $boxShadow-md | $boxShadow-md |
281 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-menu-AutoComplete | $boxShadow-md | $boxShadow-md |
282 | | [fontSize](../styles-and-themes/common-units/#size)-AutoComplete--default | *none* | *none* |
283 | | [fontSize](../styles-and-themes/common-units/#size)-AutoComplete--error | *none* | *none* |
284 | | [fontSize](../styles-and-themes/common-units/#size)-AutoComplete--success | *none* | *none* |
285 | | [fontSize](../styles-and-themes/common-units/#size)-AutoComplete--warning | *none* | *none* |
286 | | [fontSize](../styles-and-themes/common-units/#size)-AutoComplete-badge | $fontSize-sm | $fontSize-sm |
287 | | [fontSize](../styles-and-themes/common-units/#size)-AutoComplete-badge | $fontSize-sm | $fontSize-sm |
288 | | [fontSize](../styles-and-themes/common-units/#size)-placeholder-AutoComplete--default | *none* | *none* |
289 | | [fontSize](../styles-and-themes/common-units/#size)-placeholder-AutoComplete--error | *none* | *none* |
290 | | [fontSize](../styles-and-themes/common-units/#size)-placeholder-AutoComplete--success | *none* | *none* |
291 | | [fontSize](../styles-and-themes/common-units/#size)-placeholder-AutoComplete--warning | *none* | *none* |
292 | | [gap](../styles-and-themes/common-units/#size)-adornment-AutoComplete | *none* | *none* |
293 | | [opacity](../styles-and-themes/common-units/#opacity)-AutoComplete--disabled | 0.5 | 0.5 |
294 | | [opacity](../styles-and-themes/common-units/#opacity)-text-item-AutoComplete--disabled | 0.5 | 0.5 |
295 | | [outlineColor](../styles-and-themes/common-units/#color)-AutoComplete--focus | *none* | *none* |
296 | | [outlineOffset](../styles-and-themes/common-units/#size)-AutoComplete--focus | *none* | *none* |
297 | | [outlineStyle](../styles-and-themes/common-units/#border)-AutoComplete--focus | *none* | *none* |
298 | | [outlineWidth](../styles-and-themes/common-units/#size)-AutoComplete--focus | *none* | *none* |
299 | | [padding](../styles-and-themes/common-units/#size)-AutoComplete | *none* | *none* |
300 | | [padding](../styles-and-themes/common-units/#size)-item-AutoComplete | *none* | *none* |
301 | | [paddingBottom](../styles-and-themes/common-units/#size)-AutoComplete | *none* | *none* |
302 | | [paddingBottom](../styles-and-themes/common-units/#size)-item-AutoComplete | *none* | *none* |
303 | | [paddingHorizontal](../styles-and-themes/common-units/#size)-AutoComplete | $space-2 | $space-2 |
304 | | [paddingHorizontal](../styles-and-themes/common-units/#size)-AutoComplete-badge | $space-2_5 | $space-2_5 |
305 | | [paddingHorizontal](../styles-and-themes/common-units/#size)-item-AutoComplete | $space-2 | $space-2 |
306 | | [paddingLeft](../styles-and-themes/common-units/#size)-AutoComplete | *none* | *none* |
307 | | [paddingLeft](../styles-and-themes/common-units/#size)-item-AutoComplete | *none* | *none* |
308 | | [paddingRight](../styles-and-themes/common-units/#size)-AutoComplete | *none* | *none* |
309 | | [paddingRight](../styles-and-themes/common-units/#size)-item-AutoComplete | *none* | *none* |
310 | | [paddingTop](../styles-and-themes/common-units/#size)-AutoComplete | *none* | *none* |
311 | | [paddingTop](../styles-and-themes/common-units/#size)-item-AutoComplete | *none* | *none* |
312 | | [paddingVertical](../styles-and-themes/common-units/#size)-AutoComplete | $space-2 | $space-2 |
313 | | [paddingVertical](../styles-and-themes/common-units/#size)-AutoComplete-badge | $space-0_5 | $space-0_5 |
314 | | [paddingVertical](../styles-and-themes/common-units/#size)-item-AutoComplete | $space-2 | $space-2 |
315 | | [textColor](../styles-and-themes/common-units/#color)-AutoComplete--default | *none* | *none* |
316 | | [textColor](../styles-and-themes/common-units/#color)-AutoComplete--default--hover | *none* | *none* |
317 | | [textColor](../styles-and-themes/common-units/#color)-AutoComplete--disabled | *none* | *none* |
318 | | [textColor](../styles-and-themes/common-units/#color)-AutoComplete--error | *none* | *none* |
319 | | [textColor](../styles-and-themes/common-units/#color)-AutoComplete--error--hover | *none* | *none* |
320 | | [textColor](../styles-and-themes/common-units/#color)-AutoComplete--success | *none* | *none* |
321 | | [textColor](../styles-and-themes/common-units/#color)-AutoComplete--success--hover | *none* | *none* |
322 | | [textColor](../styles-and-themes/common-units/#color)-AutoComplete--warning | *none* | *none* |
323 | | [textColor](../styles-and-themes/common-units/#color)-AutoComplete--warning--hover | *none* | *none* |
324 | | [textColor](../styles-and-themes/common-units/#color)-AutoComplete-badge | $const-color-surface-50 | $const-color-surface-50 |
325 | | [textColor](../styles-and-themes/common-units/#color)-AutoComplete-badge | $const-color-surface-50 | $const-color-surface-50 |
326 | | [textColor](../styles-and-themes/common-units/#color)-AutoComplete-badge--active | *none* | *none* |
327 | | [textColor](../styles-and-themes/common-units/#color)-AutoComplete-badge--hover | *none* | *none* |
328 | | [textColor](../styles-and-themes/common-units/#color)-item-AutoComplete--disabled | $color-surface-200 | $color-surface-200 |
329 | | [textColor](../styles-and-themes/common-units/#color)-placeholder-AutoComplete | *none* | *none* |
330 | | [textColor](../styles-and-themes/common-units/#color)-placeholder-AutoComplete--default | *none* | *none* |
331 | | [textColor](../styles-and-themes/common-units/#color)-placeholder-AutoComplete--error | *none* | *none* |
332 | | [textColor](../styles-and-themes/common-units/#color)-placeholder-AutoComplete--success | *none* | *none* |
333 | | [textColor](../styles-and-themes/common-units/#color)-placeholder-AutoComplete--warning | *none* | *none* |
334 | 
```

--------------------------------------------------------------------------------
/docs/content/components/TimeInput.md:
--------------------------------------------------------------------------------

```markdown
  1 | # TimeInput [#timeinput]
  2 | 
  3 | `TimeInput` provides time input with support for 12-hour and 24-hour formats and configurable precision for hours, minutes, and seconds.
  4 | 
  5 | **Key features:**
  6 | - **Time format support**: 12-hour and 24-hour formats with customizable display
  7 | - **Precision control**: Configure precision for hours, minutes, and seconds
  8 | - **Input validation**: Real-time validation with visual feedback for invalid times
  9 | - **Accessibility**: Full keyboard navigation and screen reader support
 10 | - **Localization**: Automatic AM/PM labels based on user locale
 11 | 
 12 | ## Properties [#properties]
 13 | 
 14 | ### `autoFocus` (default: false) [#autofocus-default-false]
 15 | 
 16 | If this property is set to `true`, the component gets the focus automatically when displayed.
 17 | 
 18 | ### `clearable` (default: false) [#clearable-default-false]
 19 | 
 20 | Whether to show a clear button that allows clearing the selected time
 21 | 
 22 | When enabled, it displays a clear button that allows users to reset the time picker back to its initial value. Change the time value in this app and then click the clear button:
 23 | 
 24 | ```xmlui-pg copy display name="Example: clearable" /clearable/
 25 | <App>
 26 |   <TimeInput initialValue="11:30" />
 27 |   <TimeInput clearable="true" initialValue="10:20" />
 28 | </App>
 29 | ```
 30 | 
 31 | ### `clearIcon` [#clearicon]
 32 | 
 33 | The icon to display in the clear button.
 34 | 
 35 | ```xmlui-pg copy display name="Example: clearIcon" /clearIcon/
 36 | <App>
 37 |   <TimeInput initialValue="11:30" clearIcon="trash" />
 38 | </App>
 39 | ```
 40 | 
 41 | ### `clearToInitialValue` (default: true) [#cleartoinitialvalue-default-true]
 42 | 
 43 | Whether the clear button resets the time input to its initial value
 44 | 
 45 | ### `emptyCharacter` (default: "-") [#emptycharacter-default-]
 46 | 
 47 | Character to use as placeholder for empty time values. If longer than 1 character, uses the first character. Defaults to '-'
 48 | 
 49 | Character to use as placeholder for empty time values. If longer than 1 character, uses the first character. Defaults to '-'.
 50 | 
 51 | ```xmlui-pg copy display name="Example: emptyCharacter"
 52 | <App>
 53 |   <TimeInput emptyCharacter="." />
 54 |   <TimeInput emptyCharacter="*" />
 55 |   <TimeInput emptyCharacter="abc" />
 56 | </App>
 57 | ```
 58 | 
 59 | ### `enabled` (default: true) [#enabled-default-true]
 60 | 
 61 | This boolean property value indicates whether the component responds to user events (`true`) or not (`false`).
 62 | 
 63 | ```xmlui-pg copy display name="Example: enabled" height="120px"
 64 | <App>
 65 |   <TimeInput enabled="false" initialValue="14:30" />
 66 | </App>  
 67 | ```
 68 | 
 69 | ### `endIcon` [#endicon]
 70 | 
 71 | This property sets an optional icon to appear on the end (right side when the left-to-right direction is set) of the input.
 72 | 
 73 | ### `endText` [#endtext]
 74 | 
 75 | This property sets an optional text to appear on the end (right side when the left-to-right direction is set) of the input.
 76 | 
 77 | ### `gap` [#gap]
 78 | 
 79 | This property defines the gap between the adornments and the input area. If not set, the gap declared by the current theme is used.
 80 | 
 81 | ### `hour24` (default: true) [#hour24-default-true]
 82 | 
 83 | Whether to use 24-hour format (true) or 12-hour format with AM/PM (false)
 84 | 
 85 | ### `initialValue` [#initialvalue]
 86 | 
 87 | This property sets the component's initial value.
 88 | 
 89 | ```xmlui-pg copy display name="Example: initialValue" height="120px"
 90 | <App>
 91 |   <TimeInput initialValue="14:30:15" />
 92 | </App>  
 93 | ```
 94 | 
 95 | ### `maxTime` [#maxtime]
 96 | 
 97 | Maximum time that the user can select
 98 | 
 99 | ### `minTime` [#mintime]
100 | 
101 | Minimum time that the user can select
102 | 
103 | ### `readOnly` (default: false) [#readonly-default-false]
104 | 
105 | Set this property to `true` to disallow changing the component value.
106 | 
107 | ### `required` (default: false) [#required-default-false]
108 | 
109 | Whether the time input should be required
110 | 
111 | Marks the time input as required for form validation.
112 | 
113 | ```xmlui-pg copy display name="Example: required" height="120px"
114 | <App>
115 |   <TimeInput required="true" />
116 | </App>
117 | ```
118 | 
119 | ### `seconds` (default: false) [#seconds-default-false]
120 | 
121 | Whether to show and allow input of seconds
122 | 
123 | ### `startIcon` [#starticon]
124 | 
125 | This property sets an optional icon to appear at the start (left side when the left-to-right direction is set) of the input.
126 | 
127 | ### `startText` [#starttext]
128 | 
129 | This property sets an optional text to appear at the start (left side when the left-to-right direction is set) of the input.
130 | 
131 | ### `validationStatus` (default: "none") [#validationstatus-default-none]
132 | 
133 | This property allows you to set the validation status of the input component.
134 | 
135 | Available values:
136 | 
137 | | Value | Description |
138 | | --- | --- |
139 | | `valid` | Visual indicator for an input that is accepted |
140 | | `warning` | Visual indicator for an input that produced a warning |
141 | | `error` | Visual indicator for an input that produced an error |
142 | 
143 | | Value     | Description                                           |
144 | | :-------- | :---------------------------------------------------- |
145 | | `valid`   | Visual indicator for an input that is accepted        |
146 | | `warning` | Visual indicator for an input that produced a warning |
147 | | `error`   | Visual indicator for an input that produced an error  |
148 | 
149 | ```xmlui-pg copy display name="Example: validationStatus"
150 | <App>
151 |   <TimeInput validationStatus="valid" initialValue="11:30" />
152 |   <TimeInput validationStatus="warning" initialValue="11:30" />
153 |   <TimeInput validationStatus="error" initialValue="11:30" />
154 | </App>
155 | ```
156 | 
157 | ## Events [#events]
158 | 
159 | ### `didChange` [#didchange]
160 | 
161 | This event is triggered when value of TimeInput has changed.
162 | 
163 | Fired when the time value changes. Receives the new time value as a parameter.
164 | 
165 | > [!INFO] The time value changes when the edited input part (hour, minute, second) loses focus or the AM/PM selectro changes.
166 | 
167 | ```xmlui-pg copy {2} display name="Example: didChange" height="180px"
168 | <App var.selectedTime="No time selected">
169 |   <Text value="{selectedTime}" />
170 |   <TimeInput 
171 |     format="h:m:s a"
172 |     initialValue="07:30:05" 
173 |     onDidChange="(time) => selectedTime = time" />
174 | </App>
175 | ```
176 | 
177 | ### `gotFocus` [#gotfocus]
178 | 
179 | This event is triggered when the TimeInput has received the focus.
180 | 
181 | Fired when the time picker receives focus.
182 | 
183 | ```xmlui-pg copy {4-5} display name="Example: gotFocus/lostFocus"
184 | <App var.isFocused="{false}">
185 |   <Text value="{isFocused 
186 |     ? 'TimeInput focused' : 'TimeInput lost focus'}" 
187 |   />
188 |   <TimeInput
189 |     format="HH:mm:ss a"
190 |     onGotFocus="isFocused = true"
191 |     onLostFocus="isFocused = false"
192 |     initialValue="14:30"
193 |   />
194 | </App>
195 | ```
196 | 
197 | ### `invalidTime` [#invalidtime]
198 | 
199 | Fired when the user enters an invalid time
200 | 
201 | Fired when the user enters an invalid time value.
202 | 
203 | ```xmlui-pg copy {2} display name="Example: invalidTime"
204 | <App var.errorMessage="">
205 |   <Text value="{errorMessage}" />
206 |   <TimeInput 
207 |     onInvalidTime="(error) => errorMessage = 'Invalid time entered'"
208 |     onDidChange="errorMessage = ''" />
209 | </App>
210 | ```
211 | 
212 | ### `lostFocus` [#lostfocus]
213 | 
214 | This event is triggered when the TimeInput has lost the focus.
215 | 
216 | ## Exposed Methods [#exposed-methods]
217 | 
218 | ### `focus` [#focus]
219 | 
220 | Focus the TimeInput component.
221 | 
222 | **Signature**: `focus(): void`
223 | 
224 | ### `isoValue` [#isovalue]
225 | 
226 | Get the current time value formatted in ISO standard (HH:MM:SS) using 24-hour format, suitable for JSON serialization.
227 | 
228 | **Signature**: `isoValue(): string | null`
229 | 
230 | ### `setValue` [#setvalue]
231 | 
232 | This method sets the current value of the TimeInput.
233 | 
234 | **Signature**: `set value(value: any): void`
235 | 
236 | - `value`: The new time value to set for the time picker.
237 | 
238 | ```xmlui-pg copy {3, 9, 12} display name="Example: setValue"
239 | <App>
240 |   <HStack>
241 |     <Button
242 |       label="Set Time to 14:30"
243 |       onClick="picker.setValue('14:30')" />
244 |     <Button
245 |       label="Remove Time"
246 |       onClick="picker.setValue('')" />
247 |   </HStack>
248 |   <TimeInput id="picker" />
249 | </App>
250 | ```
251 | 
252 | ### `value` [#value]
253 | 
254 | You can query the component's value. If no value is set, it will retrieve `undefined`.
255 | 
256 | **Signature**: `get value(): any`
257 | 
258 | ## Parts [#parts]
259 | 
260 | The component has some parts that can be styled through layout properties and theme variables separately:
261 | 
262 | - **`ampm`**: The AM/PM indicator.
263 | - **`clearButton`**: The button to clear the time input.
264 | - **`hour`**: The hour input field.
265 | - **`minute`**: The minute input field.
266 | - **`second`**: The second input field.
267 | 
268 | ## Styling [#styling]
269 | 
270 | ### Theme Variables [#theme-variables]
271 | 
272 | | Variable | Default Value (Light) | Default Value (Dark) |
273 | | --- | --- | --- |
274 | | [backgroundColor](../styles-and-themes/common-units/#color)-input-TimeInput-invalid | rgba(220, 53, 69, 0.15) | rgba(220, 53, 69, 0.15) |
275 | | [backgroundColor](../styles-and-themes/common-units/#color)-item-TimeInput--active | *none* | *none* |
276 | | [backgroundColor](../styles-and-themes/common-units/#color)-item-TimeInput--hover | *none* | *none* |
277 | | [backgroundColor](../styles-and-themes/common-units/#color)-menu-TimeInput | *none* | *none* |
278 | | [backgroundColor](../styles-and-themes/common-units/#color)-TimeInput--default | *none* | *none* |
279 | | [backgroundColor](../styles-and-themes/common-units/#color)-TimeInput--default--focus | *none* | *none* |
280 | | [backgroundColor](../styles-and-themes/common-units/#color)-TimeInput--default--hover | *none* | *none* |
281 | | [backgroundColor](../styles-and-themes/common-units/#color)-TimeInput--disabled | *none* | *none* |
282 | | [backgroundColor](../styles-and-themes/common-units/#color)-TimeInput--error | *none* | *none* |
283 | | [backgroundColor](../styles-and-themes/common-units/#color)-TimeInput--error--focus | *none* | *none* |
284 | | [backgroundColor](../styles-and-themes/common-units/#color)-TimeInput--error--hover | *none* | *none* |
285 | | [backgroundColor](../styles-and-themes/common-units/#color)-TimeInput--hover | *none* | *none* |
286 | | [backgroundColor](../styles-and-themes/common-units/#color)-TimeInput--success | *none* | *none* |
287 | | [backgroundColor](../styles-and-themes/common-units/#color)-TimeInput--success--focus | *none* | *none* |
288 | | [backgroundColor](../styles-and-themes/common-units/#color)-TimeInput--success--hover | *none* | *none* |
289 | | [backgroundColor](../styles-and-themes/common-units/#color)-TimeInput--warning | *none* | *none* |
290 | | [backgroundColor](../styles-and-themes/common-units/#color)-TimeInput--warning--focus | *none* | *none* |
291 | | [backgroundColor](../styles-and-themes/common-units/#color)-TimeInput--warning--hover | *none* | *none* |
292 | | [borderColor](../styles-and-themes/common-units/#color)-menu-TimeInput | *none* | *none* |
293 | | [borderColor](../styles-and-themes/common-units/#color)-TimeInput--default | *none* | *none* |
294 | | [borderColor](../styles-and-themes/common-units/#color)-TimeInput--default--focus | *none* | *none* |
295 | | [borderColor](../styles-and-themes/common-units/#color)-TimeInput--default--hover | *none* | *none* |
296 | | [borderColor](../styles-and-themes/common-units/#color)-TimeInput--disabled | *none* | *none* |
297 | | [borderColor](../styles-and-themes/common-units/#color)-TimeInput--error | *none* | *none* |
298 | | [borderColor](../styles-and-themes/common-units/#color)-TimeInput--error--focus | *none* | *none* |
299 | | [borderColor](../styles-and-themes/common-units/#color)-TimeInput--error--hover | *none* | *none* |
300 | | [borderColor](../styles-and-themes/common-units/#color)-TimeInput--success | *none* | *none* |
301 | | [borderColor](../styles-and-themes/common-units/#color)-TimeInput--success--focus | *none* | *none* |
302 | | [borderColor](../styles-and-themes/common-units/#color)-TimeInput--success--hover | *none* | *none* |
303 | | [borderColor](../styles-and-themes/common-units/#color)-TimeInput--warning | *none* | *none* |
304 | | [borderColor](../styles-and-themes/common-units/#color)-TimeInput--warning--focus | *none* | *none* |
305 | | [borderColor](../styles-and-themes/common-units/#color)-TimeInput--warning--hover | *none* | *none* |
306 | | [borderRadius](../styles-and-themes/common-units/#border-rounding)-button-TimeInput | $borderRadius | $borderRadius |
307 | | [borderRadius](../styles-and-themes/common-units/#border-rounding)-input-TimeInput | $borderRadius | $borderRadius |
308 | | [borderRadius](../styles-and-themes/common-units/#border-rounding)-menu-TimeInput | *none* | *none* |
309 | | [borderRadius](../styles-and-themes/common-units/#border-rounding)-TimeInput--default | *none* | *none* |
310 | | [borderRadius](../styles-and-themes/common-units/#border-rounding)-TimeInput--error | *none* | *none* |
311 | | [borderRadius](../styles-and-themes/common-units/#border-rounding)-TimeInput--success | *none* | *none* |
312 | | [borderRadius](../styles-and-themes/common-units/#border-rounding)-TimeInput--warning | *none* | *none* |
313 | | [borderStyle](../styles-and-themes/common-units/#border-style)-TimeInput--default | *none* | *none* |
314 | | [borderStyle](../styles-and-themes/common-units/#border-style)-TimeInput--error | *none* | *none* |
315 | | [borderStyle](../styles-and-themes/common-units/#border-style)-TimeInput--success | *none* | *none* |
316 | | [borderStyle](../styles-and-themes/common-units/#border-style)-TimeInput--warning | *none* | *none* |
317 | | [borderWidth](../styles-and-themes/common-units/#size)-TimeInput--default | *none* | *none* |
318 | | [borderWidth](../styles-and-themes/common-units/#size)-TimeInput--error | *none* | *none* |
319 | | [borderWidth](../styles-and-themes/common-units/#size)-TimeInput--success | *none* | *none* |
320 | | [borderWidth](../styles-and-themes/common-units/#size)-TimeInput--warning | *none* | *none* |
321 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-menu-TimeInput | *none* | *none* |
322 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-TimeInput--default | *none* | *none* |
323 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-TimeInput--default--focus | *none* | *none* |
324 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-TimeInput--default--hover | *none* | *none* |
325 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-TimeInput--error | *none* | *none* |
326 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-TimeInput--error--focus | *none* | *none* |
327 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-TimeInput--error--hover | *none* | *none* |
328 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-TimeInput--success | *none* | *none* |
329 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-TimeInput--success--focus | *none* | *none* |
330 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-TimeInput--success--hover | *none* | *none* |
331 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-TimeInput--warning | *none* | *none* |
332 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-TimeInput--warning--focus | *none* | *none* |
333 | | [boxShadow](../styles-and-themes/common-units/#boxShadow)-TimeInput--warning--hover | *none* | *none* |
334 | | [color](../styles-and-themes/common-units/#color)-adornment-TimeInput--default | *none* | *none* |
335 | | [color](../styles-and-themes/common-units/#color)-adornment-TimeInput--error | *none* | *none* |
336 | | [color](../styles-and-themes/common-units/#color)-adornment-TimeInput--success | *none* | *none* |
337 | | [color](../styles-and-themes/common-units/#color)-adornment-TimeInput--warning | *none* | *none* |
338 | | [color](../styles-and-themes/common-units/#color)-divider-TimeInput | $textColor-secondary | $textColor-secondary |
339 | | disabledColor-button-TimeInput | $textColor-disabled | $textColor-disabled |
340 | | [fontSize](../styles-and-themes/common-units/#size)-ampm-TimeInput | inherit | inherit |
341 | | [fontSize](../styles-and-themes/common-units/#size)-input-TimeInput | inherit | inherit |
342 | | [fontSize](../styles-and-themes/common-units/#size)-TimeInput--default | *none* | *none* |
343 | | [fontSize](../styles-and-themes/common-units/#size)-TimeInput--error | *none* | *none* |
344 | | [fontSize](../styles-and-themes/common-units/#size)-TimeInput--success | *none* | *none* |
345 | | [fontSize](../styles-and-themes/common-units/#size)-TimeInput--warning | *none* | *none* |
346 | | [gap](../styles-and-themes/common-units/#size)-adornment-TimeInput | *none* | *none* |
347 | | hoverColor-button-TimeInput | $color-surface-800 | $color-surface-800 |
348 | | [margin](../styles-and-themes/common-units/#size)-icon-TimeInput | *none* | *none* |
349 | | [margin](../styles-and-themes/common-units/#size)-input-TimeInput | *none* | *none* |
350 | | [maxHeight](../styles-and-themes/common-units/#size)-menu-TimeInput | *none* | *none* |
351 | | [minWidth](../styles-and-themes/common-units/#size)-ampm-TimeInput | 2.2em | 2.2em |
352 | | [minWidth](../styles-and-themes/common-units/#size)-input-TimeInput | 0.54em | 0.54em |
353 | | [opacity](../styles-and-themes/common-units/#opacity)-item-TimeInput--disabled | *none* | *none* |
354 | | [opacity](../styles-and-themes/common-units/#opacity)-TimeInput--disabled | *none* | *none* |
355 | | [outlineColor](../styles-and-themes/common-units/#color)-ampm-TimeInput--focused | *none* | *none* |
356 | | [outlineColor](../styles-and-themes/common-units/#color)-button-TimeInput--focused | $color-accent-500 | $color-accent-500 |
357 | | [outlineColor](../styles-and-themes/common-units/#color)-TimeInput--default--focus | *none* | *none* |
358 | | [outlineColor](../styles-and-themes/common-units/#color)-TimeInput--error--focus | *none* | *none* |
359 | | [outlineColor](../styles-and-themes/common-units/#color)-TimeInput--success--focus | *none* | *none* |
360 | | [outlineColor](../styles-and-themes/common-units/#color)-TimeInput--warning--focus | *none* | *none* |
361 | | [outlineOffset](../styles-and-themes/common-units/#size)-ampm-TimeInput--focused | *none* | *none* |
362 | | [outlineOffset](../styles-and-themes/common-units/#size)-button-TimeInput--focused | 0 | 0 |
363 | | [outlineOffset](../styles-and-themes/common-units/#size)-TimeInput--default--focus | *none* | *none* |
364 | | [outlineOffset](../styles-and-themes/common-units/#size)-TimeInput--error--focus | *none* | *none* |
365 | | [outlineOffset](../styles-and-themes/common-units/#size)-TimeInput--success--focus | *none* | *none* |
366 | | [outlineOffset](../styles-and-themes/common-units/#size)-TimeInput--warning--focus | *none* | *none* |
367 | | [outlineStyle](../styles-and-themes/common-units/#border)-TimeInput--default--focus | *none* | *none* |
368 | | [outlineStyle](../styles-and-themes/common-units/#border)-TimeInput--error--focus | *none* | *none* |
369 | | [outlineStyle](../styles-and-themes/common-units/#border)-TimeInput--success--focus | *none* | *none* |
370 | | [outlineStyle](../styles-and-themes/common-units/#border)-TimeInput--warning--focus | *none* | *none* |
371 | | [outlineWidth](../styles-and-themes/common-units/#size)-ampm-TimeInput--focused | *none* | *none* |
372 | | [outlineWidth](../styles-and-themes/common-units/#size)-button-TimeInput--focused | 2px | 2px |
373 | | [outlineWidth](../styles-and-themes/common-units/#size)-TimeInput--default--focus | *none* | *none* |
374 | | [outlineWidth](../styles-and-themes/common-units/#size)-TimeInput--error--focus | *none* | *none* |
375 | | [outlineWidth](../styles-and-themes/common-units/#size)-TimeInput--success--focus | *none* | *none* |
376 | | [outlineWidth](../styles-and-themes/common-units/#size)-TimeInput--warning--focus | *none* | *none* |
377 | | [padding](../styles-and-themes/common-units/#size)-button-TimeInput | 4px 4px | 4px 4px |
378 | | [padding](../styles-and-themes/common-units/#size)-input-TimeInput | 0 2px | 0 2px |
379 | | [padding](../styles-and-themes/common-units/#size)-item-TimeInput | *none* | *none* |
380 | | [padding](../styles-and-themes/common-units/#size)-TimeInput | *none* | *none* |
381 | | [paddingBottom](../styles-and-themes/common-units/#size)-TimeInput | *none* | *none* |
382 | | [paddingHorizontal](../styles-and-themes/common-units/#size)-TimeInput | $space-2 | $space-2 |
383 | | [paddingLeft](../styles-and-themes/common-units/#size)-TimeInput | *none* | *none* |
384 | | [paddingRight](../styles-and-themes/common-units/#size)-TimeInput | *none* | *none* |
385 | | [paddingTop](../styles-and-themes/common-units/#size)-TimeInput | *none* | *none* |
386 | | [paddingVertical](../styles-and-themes/common-units/#size)-TimeInput | $space-2 | $space-2 |
387 | | spacing-divider-TimeInput | 1px 0 | 1px 0 |
388 | | [textAlign](../styles-and-themes/common-units/#text-align)-input-TimeInput | center | center |
389 | | [textColor](../styles-and-themes/common-units/#color)-TimeInput--default | *none* | *none* |
390 | | [textColor](../styles-and-themes/common-units/#color)-TimeInput--default--focus | *none* | *none* |
391 | | [textColor](../styles-and-themes/common-units/#color)-TimeInput--default--hover | *none* | *none* |
392 | | [textColor](../styles-and-themes/common-units/#color)-TimeInput--disabled | *none* | *none* |
393 | | [textColor](../styles-and-themes/common-units/#color)-TimeInput--error | *none* | *none* |
394 | | [textColor](../styles-and-themes/common-units/#color)-TimeInput--error--focus | *none* | *none* |
395 | | [textColor](../styles-and-themes/common-units/#color)-TimeInput--error--hover | *none* | *none* |
396 | | [textColor](../styles-and-themes/common-units/#color)-TimeInput--success | *none* | *none* |
397 | | [textColor](../styles-and-themes/common-units/#color)-TimeInput--success--focus | *none* | *none* |
398 | | [textColor](../styles-and-themes/common-units/#color)-TimeInput--success--hover | *none* | *none* |
399 | | [textColor](../styles-and-themes/common-units/#color)-TimeInput--warning | *none* | *none* |
400 | | [textColor](../styles-and-themes/common-units/#color)-TimeInput--warning--focus | *none* | *none* |
401 | | [textColor](../styles-and-themes/common-units/#color)-TimeInput--warning--hover | *none* | *none* |
402 | | [transition](../styles-and-themes/common-units/#transition)-background-TimeInput | *none* | *none* |
403 | | [width](../styles-and-themes/common-units/#size)-input-TimeInput | 1.8em | 1.8em |
404 | 
```
Page 91/186FirstPrevNextLast