This is page 130 of 179. Use http://codebase.md/xmlui-org/xmlui/xmlui-standalone.umd.js?lines=true&page={x} to view the full context. # Directory Structure ``` ├── .changeset │ ├── cold-items-taste.md │ ├── config.json │ ├── empty-spiders-dress.md │ ├── shy-windows-allow.md │ ├── sour-coins-read.md │ ├── tame-zebras-invite.md │ ├── three-ideas-invent.md │ ├── twenty-jeans-watch.md │ ├── warm-spies-melt.md │ └── whole-ways-cry.md ├── .eslintrc.cjs ├── .github │ ├── build-checklist.png │ ├── ISSUE_TEMPLATE │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows │ ├── deploy-docs-optimized.yml │ ├── deploy-docs.yml │ ├── prepare-versions.yml │ ├── release-packages.yml │ ├── run-all-tests.yml │ └── run-smoke-tests.yml ├── .gitignore ├── .prettierrc.js ├── .vscode │ ├── launch.json │ └── settings.json ├── blog │ ├── .gitignore │ ├── .gitkeep │ ├── CHANGELOG.md │ ├── extensions.ts │ ├── index.html │ ├── index.ts │ ├── package.json │ ├── public │ │ ├── blog │ │ │ ├── images │ │ │ │ ├── blog-page-component.png │ │ │ │ ├── blog-scrabble.png │ │ │ │ ├── integrated-blog-search.png │ │ │ │ └── lorem-ipsum.png │ │ │ ├── lorem-ipsum.md │ │ │ ├── newest-post.md │ │ │ ├── older-post.md │ │ │ └── welcome-to-the-xmlui-blog.md │ │ ├── mockServiceWorker.js │ │ ├── resources │ │ │ ├── favicon.ico │ │ │ ├── files │ │ │ │ └── for-download │ │ │ │ └── xmlui │ │ │ │ └── xmlui-standalone.umd.js │ │ │ ├── github.svg │ │ │ ├── llms.txt │ │ │ ├── logo-dark.svg │ │ │ ├── logo.svg │ │ │ ├── pg-popout.svg │ │ │ └── xmlui-logo.svg │ │ ├── serve.json │ │ └── web.config │ ├── scripts │ │ ├── download-latest-xmlui.js │ │ ├── generate-rss.js │ │ ├── get-releases.js │ │ └── utils.js │ ├── src │ │ ├── components │ │ │ ├── BlogOverview.xmlui │ │ │ ├── BlogPage.xmlui │ │ │ └── PageNotFound.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 ├── CONTRIBUTING.md ├── docs │ ├── .gitignore │ ├── CHANGELOG.md │ ├── ComponentRefLinks.txt │ ├── content │ │ ├── _meta.json │ │ ├── components │ │ │ ├── _meta.json │ │ │ ├── _overview.md │ │ │ ├── APICall.md │ │ │ ├── App.md │ │ │ ├── AppHeader.md │ │ │ ├── AppState.md │ │ │ ├── AutoComplete.md │ │ │ ├── Avatar.md │ │ │ ├── Backdrop.md │ │ │ ├── Badge.md │ │ │ ├── BarChart.md │ │ │ ├── Bookmark.md │ │ │ ├── Breakout.md │ │ │ ├── Button.md │ │ │ ├── Card.md │ │ │ ├── Carousel.md │ │ │ ├── ChangeListener.md │ │ │ ├── Checkbox.md │ │ │ ├── CHStack.md │ │ │ ├── ColorPicker.md │ │ │ ├── Column.md │ │ │ ├── ContentSeparator.md │ │ │ ├── CVStack.md │ │ │ ├── DataSource.md │ │ │ ├── DateInput.md │ │ │ ├── DatePicker.md │ │ │ ├── DonutChart.md │ │ │ ├── DropdownMenu.md │ │ │ ├── EmojiSelector.md │ │ │ ├── ExpandableItem.md │ │ │ ├── FileInput.md │ │ │ ├── FileUploadDropZone.md │ │ │ ├── FlowLayout.md │ │ │ ├── Footer.md │ │ │ ├── Form.md │ │ │ ├── FormItem.md │ │ │ ├── FormSection.md │ │ │ ├── Fragment.md │ │ │ ├── H1.md │ │ │ ├── H2.md │ │ │ ├── H3.md │ │ │ ├── H4.md │ │ │ ├── H5.md │ │ │ ├── H6.md │ │ │ ├── Heading.md │ │ │ ├── HSplitter.md │ │ │ ├── HStack.md │ │ │ ├── Icon.md │ │ │ ├── IFrame.md │ │ │ ├── Image.md │ │ │ ├── Items.md │ │ │ ├── LabelList.md │ │ │ ├── Legend.md │ │ │ ├── LineChart.md │ │ │ ├── Link.md │ │ │ ├── List.md │ │ │ ├── Logo.md │ │ │ ├── Markdown.md │ │ │ ├── MenuItem.md │ │ │ ├── MenuSeparator.md │ │ │ ├── ModalDialog.md │ │ │ ├── NavGroup.md │ │ │ ├── NavLink.md │ │ │ ├── NavPanel.md │ │ │ ├── NoResult.md │ │ │ ├── NumberBox.md │ │ │ ├── Option.md │ │ │ ├── Page.md │ │ │ ├── PageMetaTitle.md │ │ │ ├── Pages.md │ │ │ ├── Pagination.md │ │ │ ├── PasswordInput.md │ │ │ ├── PieChart.md │ │ │ ├── ProgressBar.md │ │ │ ├── Queue.md │ │ │ ├── RadioGroup.md │ │ │ ├── RealTimeAdapter.md │ │ │ ├── Redirect.md │ │ │ ├── Select.md │ │ │ ├── Slider.md │ │ │ ├── Slot.md │ │ │ ├── SpaceFiller.md │ │ │ ├── Spinner.md │ │ │ ├── Splitter.md │ │ │ ├── Stack.md │ │ │ ├── StickyBox.md │ │ │ ├── SubMenuItem.md │ │ │ ├── Switch.md │ │ │ ├── TabItem.md │ │ │ ├── Table.md │ │ │ ├── TableOfContents.md │ │ │ ├── Tabs.md │ │ │ ├── Text.md │ │ │ ├── TextArea.md │ │ │ ├── TextBox.md │ │ │ ├── Theme.md │ │ │ ├── TimeInput.md │ │ │ ├── Timer.md │ │ │ ├── ToneChangerButton.md │ │ │ ├── ToneSwitch.md │ │ │ ├── Tooltip.md │ │ │ ├── Tree.md │ │ │ ├── VSplitter.md │ │ │ ├── VStack.md │ │ │ ├── xmlui-animations │ │ │ │ ├── _meta.json │ │ │ │ ├── _overview.md │ │ │ │ ├── Animation.md │ │ │ │ ├── FadeAnimation.md │ │ │ │ ├── FadeInAnimation.md │ │ │ │ ├── FadeOutAnimation.md │ │ │ │ ├── ScaleAnimation.md │ │ │ │ └── SlideInAnimation.md │ │ │ ├── xmlui-pdf │ │ │ │ ├── _meta.json │ │ │ │ ├── _overview.md │ │ │ │ └── Pdf.md │ │ │ ├── xmlui-spreadsheet │ │ │ │ ├── _meta.json │ │ │ │ ├── _overview.md │ │ │ │ └── Spreadsheet.md │ │ │ └── xmlui-website-blocks │ │ │ ├── _meta.json │ │ │ ├── _overview.md │ │ │ ├── Carousel.md │ │ │ ├── HelloMd.md │ │ │ ├── HeroSection.md │ │ │ └── ScrollToTop.md │ │ └── extensions │ │ ├── _meta.json │ │ ├── xmlui-animations │ │ │ ├── _meta.json │ │ │ ├── _overview.md │ │ │ ├── Animation.md │ │ │ ├── FadeAnimation.md │ │ │ ├── FadeInAnimation.md │ │ │ ├── FadeOutAnimation.md │ │ │ ├── ScaleAnimation.md │ │ │ └── SlideInAnimation.md │ │ └── xmlui-website-blocks │ │ ├── _meta.json │ │ ├── _overview.md │ │ ├── Carousel.md │ │ ├── HelloMd.md │ │ ├── HeroSection.md │ │ └── ScrollToTop.md │ ├── extensions.ts │ ├── index.html │ ├── index.ts │ ├── package.json │ ├── public │ │ ├── feed.rss │ │ ├── mockServiceWorker.js │ │ ├── pages │ │ │ ├── _meta.json │ │ │ ├── app-structure.md │ │ │ ├── build-editor-component.md │ │ │ ├── build-hello-world-component.md │ │ │ ├── components-intro.md │ │ │ ├── context-variables.md │ │ │ ├── forms.md │ │ │ ├── globals.md │ │ │ ├── glossary.md │ │ │ ├── helper-tags.md │ │ │ ├── hosted-deployment.md │ │ │ ├── howto │ │ │ │ ├── assign-a-complex-json-literal-to-a-component-variable.md │ │ │ │ ├── chain-a-refetch.md │ │ │ │ ├── debug-a-component.md │ │ │ │ ├── delay-a-datasource-until-another-datasource-is-ready.md │ │ │ │ ├── delegate-a-method.md │ │ │ │ ├── do-custom-form-validation.md │ │ │ │ ├── expose-a-method-from-a-component.md │ │ │ │ ├── filter-and-transform-data-from-an-api.md │ │ │ │ ├── group-items-in-list-by-a-property.md │ │ │ │ ├── handle-background-operations.md │ │ │ │ ├── hide-an-element-until-its-datasource-is-ready.md │ │ │ │ ├── make-a-set-of-equal-width-cards.md │ │ │ │ ├── make-a-table-responsive.md │ │ │ │ ├── modify-a-value-reported-in-a-column.md │ │ │ │ ├── paginate-a-list.md │ │ │ │ ├── pass-data-to-a-modal-dialog.md │ │ │ │ ├── react-to-button-click-not-keystrokes.md │ │ │ │ ├── set-the-initial-value-of-a-select-from-fetched-data.md │ │ │ │ ├── share-a-modaldialog-across-components.md │ │ │ │ ├── sync-selections-between-table-and-list-views.md │ │ │ │ ├── update-ui-optimistically.md │ │ │ │ ├── use-built-in-form-validation.md │ │ │ │ └── use-the-same-modaldialog-to-add-or-edit.md │ │ │ ├── howto.md │ │ │ ├── intro.md │ │ │ ├── layout.md │ │ │ ├── markup.md │ │ │ ├── mcp.md │ │ │ ├── modal-dialogs.md │ │ │ ├── news-and-reviews.md │ │ │ ├── reactive-intro.md │ │ │ ├── refactoring.md │ │ │ ├── routing-and-links.md │ │ │ ├── samples │ │ │ │ ├── color-palette.xmlui │ │ │ │ ├── color-values.xmlui │ │ │ │ ├── shadow-sizes.xmlui │ │ │ │ ├── spacing-sizes.xmlui │ │ │ │ ├── swatch.xmlui │ │ │ │ ├── theme-gallery-brief.xmlui │ │ │ │ └── theme-gallery.xmlui │ │ │ ├── scoping.md │ │ │ ├── scripting.md │ │ │ ├── styles-and-themes │ │ │ │ ├── common-units.md │ │ │ │ ├── layout-props.md │ │ │ │ ├── theme-variable-defaults.md │ │ │ │ ├── theme-variables.md │ │ │ │ └── themes.md │ │ │ ├── template-properties.md │ │ │ ├── test.md │ │ │ ├── tutorial-01.md │ │ │ ├── tutorial-02.md │ │ │ ├── tutorial-03.md │ │ │ ├── tutorial-04.md │ │ │ ├── tutorial-05.md │ │ │ ├── tutorial-06.md │ │ │ ├── tutorial-07.md │ │ │ ├── tutorial-08.md │ │ │ ├── tutorial-09.md │ │ │ ├── tutorial-10.md │ │ │ ├── tutorial-11.md │ │ │ ├── tutorial-12.md │ │ │ ├── universal-properties.md │ │ │ ├── user-defined-components.md │ │ │ ├── vscode.md │ │ │ ├── working-with-markdown.md │ │ │ ├── working-with-text.md │ │ │ ├── xmlui-animations │ │ │ │ ├── _meta.json │ │ │ │ ├── _overview.md │ │ │ │ ├── Animation.md │ │ │ │ ├── FadeAnimation.md │ │ │ │ ├── FadeInAnimation.md │ │ │ │ ├── FadeOutAnimation.md │ │ │ │ ├── ScaleAnimation.md │ │ │ │ └── SlideInAnimation.md │ │ │ ├── xmlui-charts │ │ │ │ ├── _meta.json │ │ │ │ ├── _overview.md │ │ │ │ ├── BarChart.md │ │ │ │ ├── DonutChart.md │ │ │ │ ├── LabelList.md │ │ │ │ ├── Legend.md │ │ │ │ ├── LineChart.md │ │ │ │ └── PieChart.md │ │ │ ├── xmlui-pdf │ │ │ │ ├── _meta.json │ │ │ │ ├── _overview.md │ │ │ │ └── Pdf.md │ │ │ └── xmlui-spreadsheet │ │ │ ├── _meta.json │ │ │ ├── _overview.md │ │ │ └── Spreadsheet.md │ │ ├── resources │ │ │ ├── devdocs │ │ │ │ ├── debug-proxy-object-2.png │ │ │ │ ├── debug-proxy-object.png │ │ │ │ ├── table_editor_01.png │ │ │ │ ├── table_editor_02.png │ │ │ │ ├── table_editor_03.png │ │ │ │ ├── table_editor_04.png │ │ │ │ ├── table_editor_05.png │ │ │ │ ├── table_editor_06.png │ │ │ │ ├── table_editor_07.png │ │ │ │ ├── table_editor_08.png │ │ │ │ ├── table_editor_09.png │ │ │ │ ├── table_editor_10.png │ │ │ │ ├── table_editor_11.png │ │ │ │ ├── table-editor-01.png │ │ │ │ ├── table-editor-02.png │ │ │ │ ├── table-editor-03.png │ │ │ │ ├── table-editor-04.png │ │ │ │ ├── table-editor-06.png │ │ │ │ ├── table-editor-07.png │ │ │ │ ├── table-editor-08.png │ │ │ │ ├── table-editor-09.png │ │ │ │ └── xmlui-rendering-of-tiptap-markdown.png │ │ │ ├── favicon.ico │ │ │ ├── files │ │ │ │ ├── clients.json │ │ │ │ ├── daily-revenue.json │ │ │ │ ├── dashboard-stats.json │ │ │ │ ├── demo.xmlui │ │ │ │ ├── demo.xmlui.xs │ │ │ │ ├── downloads │ │ │ │ │ └── downloads.json │ │ │ │ ├── for-download │ │ │ │ │ ├── index-with-api.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mockApi.js │ │ │ │ │ ├── start-darwin.sh │ │ │ │ │ ├── start-linux.sh │ │ │ │ │ ├── start.bat │ │ │ │ │ └── xmlui │ │ │ │ │ └── xmlui-standalone.umd.js │ │ │ │ ├── getting-started │ │ │ │ │ ├── cl-tutorial-final.zip │ │ │ │ │ ├── cl-tutorial.zip │ │ │ │ │ ├── cl-tutorial2.zip │ │ │ │ │ ├── cl-tutorial3.zip │ │ │ │ │ ├── cl-tutorial4.zip │ │ │ │ │ ├── cl-tutorial5.zip │ │ │ │ │ ├── cl-tutorial6.zip │ │ │ │ │ ├── getting-started.zip │ │ │ │ │ ├── hello-xmlui.zip │ │ │ │ │ ├── xmlui-empty.zip │ │ │ │ │ └── xmlui-starter.zip │ │ │ │ ├── howto │ │ │ │ │ └── component-icons │ │ │ │ │ └── up-arrow.svg │ │ │ │ ├── invoices.json │ │ │ │ ├── monthly-status.json │ │ │ │ ├── news-and-reviews.json │ │ │ │ ├── products.json │ │ │ │ ├── releases.json │ │ │ │ ├── tutorials │ │ │ │ │ ├── datasource │ │ │ │ │ │ └── api.ts │ │ │ │ │ └── p2do │ │ │ │ │ ├── api.ts │ │ │ │ │ └── todo-logo.svg │ │ │ │ └── xmlui.json │ │ │ ├── github.svg │ │ │ ├── images │ │ │ │ ├── apiaction-tutorial │ │ │ │ │ ├── add-success.png │ │ │ │ │ ├── apiaction-param.png │ │ │ │ │ ├── change-completed.png │ │ │ │ │ ├── change-in-progress.png │ │ │ │ │ ├── confirm-delete.png │ │ │ │ │ ├── data-error.png │ │ │ │ │ ├── data-progress.png │ │ │ │ │ ├── data-success.png │ │ │ │ │ ├── display-1.png │ │ │ │ │ ├── item-deleted.png │ │ │ │ │ ├── item-updated.png │ │ │ │ │ ├── missing-api-key.png │ │ │ │ │ ├── new-item-added.png │ │ │ │ │ └── test-message.png │ │ │ │ ├── chat-api │ │ │ │ │ └── domain-model.svg │ │ │ │ ├── components │ │ │ │ │ ├── image │ │ │ │ │ │ └── breakfast.jpg │ │ │ │ │ ├── markdown │ │ │ │ │ │ └── colors.png │ │ │ │ │ └── modal │ │ │ │ │ ├── deep_link_dialog_1.jpg │ │ │ │ │ └── deep_link_dialog_2.jpg │ │ │ │ ├── create-apps │ │ │ │ │ ├── collapsed-vertical.png │ │ │ │ │ ├── using-forms-warning-dialog.png │ │ │ │ │ └── using-forms.png │ │ │ │ ├── datasource-tutorial │ │ │ │ │ ├── data-with-header.png │ │ │ │ │ ├── filtered-data.png │ │ │ │ │ ├── filtered-items.png │ │ │ │ │ ├── initial-page-items.png │ │ │ │ │ ├── list-items.png │ │ │ │ │ ├── next-page-items.png │ │ │ │ │ ├── no-data.png │ │ │ │ │ ├── pagination-1.jpg │ │ │ │ │ ├── pagination-1.png │ │ │ │ │ ├── polling-1.png │ │ │ │ │ ├── refetch-data.png │ │ │ │ │ ├── slow-loading.png │ │ │ │ │ ├── test-message.png │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ ├── unconventional-data.png │ │ │ │ │ └── unfiltered-items.png │ │ │ │ ├── flower.jpg │ │ │ │ ├── get-started │ │ │ │ │ ├── add-new-contact.png │ │ │ │ │ ├── app-modified.png │ │ │ │ │ ├── app-start.png │ │ │ │ │ ├── app-with-boxes.png │ │ │ │ │ ├── app-with-toast.png │ │ │ │ │ ├── boilerplate-structure.png │ │ │ │ │ ├── cl-initial.png │ │ │ │ │ ├── cl-start.png │ │ │ │ │ ├── contact-counts.png │ │ │ │ │ ├── contact-dialog-title.png │ │ │ │ │ ├── contact-dialog.png │ │ │ │ │ ├── contact-menus.png │ │ │ │ │ ├── contact-predicates.png │ │ │ │ │ ├── context-menu.png │ │ │ │ │ ├── dashboard-numbers.png │ │ │ │ │ ├── default-contact-list.png │ │ │ │ │ ├── delete-contact.png │ │ │ │ │ ├── delete-task.png │ │ │ │ │ ├── detailed-template.png │ │ │ │ │ ├── edit-contact-details.png │ │ │ │ │ ├── edited-contact-saved.png │ │ │ │ │ ├── empty-sections.png │ │ │ │ │ ├── filter-completed.png │ │ │ │ │ ├── fullwidth-desktop.png │ │ │ │ │ ├── fullwidth-mobile.png │ │ │ │ │ ├── initial-table.png │ │ │ │ │ ├── items-and-badges.png │ │ │ │ │ ├── loading-message.png │ │ │ │ │ ├── new-contact-button.png │ │ │ │ │ ├── new-contact-saved.png │ │ │ │ │ ├── no-empty-sections.png │ │ │ │ │ ├── personal-todo-initial.png │ │ │ │ │ ├── piechart.png │ │ │ │ │ ├── review-today.png │ │ │ │ │ ├── rudimentary-dashboard.png │ │ │ │ │ ├── section-collapsed.png │ │ │ │ │ ├── sectioned-items.png │ │ │ │ │ ├── sections-ordered.png │ │ │ │ │ ├── spacex-list-with-links.png │ │ │ │ │ ├── spacex-list.png │ │ │ │ │ ├── start-personal-todo-1.png │ │ │ │ │ ├── submit-new-contact.png │ │ │ │ │ ├── submit-new-task.png │ │ │ │ │ ├── syntax-highlighting.png │ │ │ │ │ ├── table-with-badge.png │ │ │ │ │ ├── template-with-card.png │ │ │ │ │ ├── test-emulated-api.png │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ ├── todo-logo.png │ │ │ │ │ └── xmlui-tools.png │ │ │ │ ├── HelloApp.png │ │ │ │ ├── HelloApp2.png │ │ │ │ ├── logos │ │ │ │ │ ├── xmlui1.svg │ │ │ │ │ ├── xmlui2.svg │ │ │ │ │ ├── xmlui3.svg │ │ │ │ │ ├── xmlui4.svg │ │ │ │ │ ├── xmlui5.svg │ │ │ │ │ ├── xmlui6.svg │ │ │ │ │ └── xmlui7.svg │ │ │ │ ├── pdf │ │ │ │ │ └── dummy-pdf.jpg │ │ │ │ ├── rendering-engine │ │ │ │ │ ├── AppEngine-flow.svg │ │ │ │ │ ├── Component.svg │ │ │ │ │ ├── CompoundComponent.svg │ │ │ │ │ ├── RootComponent.svg │ │ │ │ │ └── tree-with-containers.svg │ │ │ │ ├── reviewers-guide │ │ │ │ │ ├── AppEngine-flow.svg │ │ │ │ │ └── incbutton-in-action.png │ │ │ │ ├── tools │ │ │ │ │ └── boilerplate-structure.png │ │ │ │ ├── try.svg │ │ │ │ ├── tutorial │ │ │ │ │ ├── app-chat-history.png │ │ │ │ │ ├── app-content-placeholder.png │ │ │ │ │ ├── app-header-and-content.png │ │ │ │ │ ├── app-links-channel-selected.png │ │ │ │ │ ├── app-links-click.png │ │ │ │ │ ├── app-navigation.png │ │ │ │ │ ├── finished-ex01.png │ │ │ │ │ ├── finished-ex02.png │ │ │ │ │ ├── hello.png │ │ │ │ │ ├── splash-screen-advanced.png │ │ │ │ │ ├── splash-screen-after-click.png │ │ │ │ │ ├── splash-screen-centered.png │ │ │ │ │ ├── splash-screen-events.png │ │ │ │ │ ├── splash-screen-expression.png │ │ │ │ │ ├── splash-screen-reuse-after.png │ │ │ │ │ ├── splash-screen-reuse-before.png │ │ │ │ │ └── splash-screen.png │ │ │ │ └── tutorial-01.png │ │ │ ├── llms.txt │ │ │ ├── logo-dark.svg │ │ │ ├── logo.svg │ │ │ ├── pg-popout.svg │ │ │ └── xmlui-logo.svg │ │ ├── serve.json │ │ └── web.config │ ├── scripts │ │ ├── download-latest-xmlui.js │ │ ├── generate-rss.js │ │ ├── get-releases.js │ │ └── utils.js │ ├── src │ │ ├── components │ │ │ ├── BlogOverview.xmlui │ │ │ ├── BlogPage.xmlui │ │ │ ├── Boxes.xmlui │ │ │ ├── Breadcrumb.xmlui │ │ │ ├── ChangeLog.xmlui │ │ │ ├── ColorPalette.xmlui │ │ │ ├── DocumentLinks.xmlui │ │ │ ├── DocumentPage.xmlui │ │ │ ├── DocumentPageNoTOC.xmlui │ │ │ ├── Icons.xmlui │ │ │ ├── IncButton.xmlui │ │ │ ├── IncButton2.xmlui │ │ │ ├── NameValue.xmlui │ │ │ ├── PageNotFound.xmlui │ │ │ ├── PaletteItem.xmlui │ │ │ ├── Palettes.xmlui │ │ │ ├── SectionHeader.xmlui │ │ │ ├── TBD.xmlui │ │ │ ├── Test.xmlui │ │ │ ├── ThemesIntro.xmlui │ │ │ ├── ThousandThemes.xmlui │ │ │ ├── TubeStops.xmlui │ │ │ ├── TubeStops.xmlui.xs │ │ │ └── TwoColumnCode.xmlui │ │ ├── config.ts │ │ ├── Main.xmlui │ │ └── themes │ │ ├── docs-theme.ts │ │ ├── earthtone.ts │ │ ├── xmlui-gray-on-default.ts │ │ ├── xmlui-green-on-default.ts │ │ └── xmlui-orange-on-default.ts │ └── tsconfig.json ├── LICENSE ├── package-lock.json ├── package.json ├── packages │ ├── xmlui-animations │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── demo │ │ │ └── Main.xmlui │ │ ├── index.html │ │ ├── index.ts │ │ ├── meta │ │ │ └── componentsMetadata.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── Animation.tsx │ │ │ ├── AnimationNative.tsx │ │ │ ├── FadeAnimation.tsx │ │ │ ├── FadeInAnimation.tsx │ │ │ ├── FadeOutAnimation.tsx │ │ │ ├── index.tsx │ │ │ ├── ScaleAnimation.tsx │ │ │ └── SlideInAnimation.tsx │ │ └── tsconfig.json │ ├── xmlui-devtools │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── demo │ │ │ └── Main.xmlui │ │ ├── index.html │ │ ├── index.ts │ │ ├── meta │ │ │ └── componentsMetadata.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── devtools │ │ │ │ ├── DevTools.tsx │ │ │ │ ├── DevToolsNative.module.scss │ │ │ │ ├── DevToolsNative.tsx │ │ │ │ ├── ModalDialog.module.scss │ │ │ │ ├── ModalDialog.tsx │ │ │ │ ├── ModalVisibilityContext.tsx │ │ │ │ ├── Tooltip.module.scss │ │ │ │ ├── Tooltip.tsx │ │ │ │ └── utils.ts │ │ │ ├── editor │ │ │ │ └── Editor.tsx │ │ │ └── index.tsx │ │ ├── tsconfig.json │ │ └── vite.config-overrides.ts │ ├── xmlui-hello-world │ │ ├── .gitignore │ │ ├── index.ts │ │ ├── meta │ │ │ └── componentsMetadata.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── HelloWorld.module.scss │ │ │ ├── HelloWorld.tsx │ │ │ ├── HelloWorldNative.tsx │ │ │ └── index.tsx │ │ └── tsconfig.json │ ├── xmlui-os-frames │ │ ├── .gitignore │ │ ├── demo │ │ │ └── Main.xmlui │ │ ├── index.html │ │ ├── index.ts │ │ ├── meta │ │ │ └── componentsMetadata.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── index.tsx │ │ │ ├── IPhoneFrame.module.scss │ │ │ ├── IPhoneFrame.tsx │ │ │ ├── MacOSAppFrame.module.scss │ │ │ ├── MacOSAppFrame.tsx │ │ │ ├── WindowsAppFrame.module.scss │ │ │ └── WindowsAppFrame.tsx │ │ └── tsconfig.json │ ├── xmlui-pdf │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── demo │ │ │ ├── components │ │ │ │ └── Pdf.xmlui │ │ │ └── Main.xmlui │ │ ├── index.html │ │ ├── index.ts │ │ ├── meta │ │ │ └── componentsMetadata.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── index.tsx │ │ │ ├── LazyPdfNative.tsx │ │ │ ├── Pdf.module.scss │ │ │ └── Pdf.tsx │ │ └── tsconfig.json │ ├── xmlui-playground │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── demo │ │ │ └── Main.xmlui │ │ ├── index.html │ │ ├── index.ts │ │ ├── meta │ │ │ └── componentsMetadata.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── hooks │ │ │ │ ├── usePlayground.ts │ │ │ │ └── useToast.ts │ │ │ ├── index.tsx │ │ │ ├── playground │ │ │ │ ├── Box.module.scss │ │ │ │ ├── Box.tsx │ │ │ │ ├── CodeSelector.tsx │ │ │ │ ├── ConfirmationDialog.module.scss │ │ │ │ ├── ConfirmationDialog.tsx │ │ │ │ ├── Editor.tsx │ │ │ │ ├── Header.module.scss │ │ │ │ ├── Header.tsx │ │ │ │ ├── Playground.tsx │ │ │ │ ├── PlaygroundContent.module.scss │ │ │ │ ├── PlaygroundContent.tsx │ │ │ │ ├── PlaygroundNative.module.scss │ │ │ │ ├── PlaygroundNative.tsx │ │ │ │ ├── Preview.module.scss │ │ │ │ ├── Preview.tsx │ │ │ │ ├── Select.module.scss │ │ │ │ ├── StandalonePlayground.tsx │ │ │ │ ├── StandalonePlaygroundNative.module.scss │ │ │ │ ├── StandalonePlaygroundNative.tsx │ │ │ │ ├── ThemeSwitcher.module.scss │ │ │ │ ├── ThemeSwitcher.tsx │ │ │ │ ├── ToneSwitcher.tsx │ │ │ │ ├── Tooltip.module.scss │ │ │ │ ├── Tooltip.tsx │ │ │ │ └── utils.ts │ │ │ ├── providers │ │ │ │ ├── Toast.module.scss │ │ │ │ └── ToastProvider.tsx │ │ │ ├── state │ │ │ │ └── store.ts │ │ │ ├── themes │ │ │ │ └── theme.ts │ │ │ └── utils │ │ │ └── helpers.ts │ │ └── tsconfig.json │ ├── xmlui-search │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── demo │ │ │ └── Main.xmlui │ │ ├── index.html │ │ ├── index.ts │ │ ├── meta │ │ │ └── componentsMetadata.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── index.tsx │ │ │ ├── Search.module.scss │ │ │ └── Search.tsx │ │ └── tsconfig.json │ ├── xmlui-spreadsheet │ │ ├── .gitignore │ │ ├── demo │ │ │ └── Main.xmlui │ │ ├── index.html │ │ ├── index.ts │ │ ├── meta │ │ │ └── componentsMetadata.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── index.tsx │ │ │ ├── Spreadsheet.tsx │ │ │ └── SpreadsheetNative.tsx │ │ └── tsconfig.json │ └── xmlui-website-blocks │ ├── .gitignore │ ├── CHANGELOG.md │ ├── demo │ │ ├── components │ │ │ ├── HeroBackgroundBreakoutPage.xmlui │ │ │ ├── HeroBackgroundsPage.xmlui │ │ │ ├── HeroContentsPage.xmlui │ │ │ ├── HeroTextAlignPage.xmlui │ │ │ ├── HeroTextPage.xmlui │ │ │ └── HeroTonesPage.xmlui │ │ ├── Main.xmlui │ │ └── themes │ │ └── default.ts │ ├── index.html │ ├── index.ts │ ├── meta │ │ └── componentsMetadata.ts │ ├── package.json │ ├── public │ │ └── resources │ │ ├── building.jpg │ │ └── xmlui-logo.svg │ ├── src │ │ ├── Carousel │ │ │ ├── Carousel.module.scss │ │ │ ├── Carousel.tsx │ │ │ ├── CarouselContext.tsx │ │ │ └── CarouselNative.tsx │ │ ├── FancyButton │ │ │ ├── FancyButton.module.scss │ │ │ ├── FancyButton.tsx │ │ │ └── FancyButton.xmlui │ │ ├── Hello │ │ │ ├── Hello.tsx │ │ │ ├── Hello.xmlui │ │ │ └── Hello.xmlui.xs │ │ ├── HeroSection │ │ │ ├── HeroSection.module.scss │ │ │ ├── HeroSection.tsx │ │ │ └── HeroSectionNative.tsx │ │ ├── index.tsx │ │ ├── ScrollToTop │ │ │ ├── ScrollToTop.module.scss │ │ │ ├── ScrollToTop.tsx │ │ │ └── ScrollToTopNative.tsx │ │ └── vite-env.d.ts │ └── tsconfig.json ├── README.md ├── tools │ ├── codefence │ │ └── xmlui-code-fence-docs.md │ ├── create-app │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── create-app.ts │ │ ├── helpers │ │ │ ├── copy.ts │ │ │ ├── get-pkg-manager.ts │ │ │ ├── git.ts │ │ │ ├── install.ts │ │ │ ├── is-folder-empty.ts │ │ │ ├── is-writeable.ts │ │ │ ├── make-dir.ts │ │ │ └── validate-pkg.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── templates │ │ │ ├── default │ │ │ │ └── ts │ │ │ │ ├── gitignore │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ ├── public │ │ │ │ │ ├── mockServiceWorker.js │ │ │ │ │ ├── resources │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ └── xmlui-logo.svg │ │ │ │ │ └── serve.json │ │ │ │ └── src │ │ │ │ ├── components │ │ │ │ │ ├── ApiAware.xmlui │ │ │ │ │ ├── Home.xmlui │ │ │ │ │ ├── IncButton.xmlui │ │ │ │ │ └── PagePanel.xmlui │ │ │ │ ├── config.ts │ │ │ │ └── Main.xmlui │ │ │ ├── index.ts │ │ │ └── types.ts │ │ └── tsconfig.json │ ├── create-xmlui-hello-world │ │ ├── index.js │ │ └── package.json │ └── vscode │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── .vscodeignore │ ├── build.sh │ ├── CHANGELOG.md │ ├── esbuild.js │ ├── eslint.config.mjs │ ├── formatter-docs.md │ ├── generate-test-sample.sh │ ├── LICENSE.md │ ├── package-lock.json │ ├── package.json │ ├── README.md │ ├── resources │ │ ├── xmlui-logo.png │ │ └── xmlui-markup-syntax-highlighting.png │ ├── src │ │ ├── extension.ts │ │ └── server.ts │ ├── syntaxes │ │ └── xmlui.tmLanguage.json │ ├── test-samples │ │ └── sample.xmlui │ ├── tsconfig.json │ └── tsconfig.tsbuildinfo ├── turbo.json └── xmlui ├── .gitignore ├── bin │ ├── bootstrap.js │ ├── build-lib.ts │ ├── build.ts │ ├── index.ts │ ├── preview.ts │ ├── start.ts │ ├── vite-xmlui-plugin.ts │ └── viteConfig.ts ├── CHANGELOG.md ├── conventions │ ├── component-qa-checklist.md │ ├── copilot-conventions.md │ ├── create-xmlui-components.md │ ├── mermaid.md │ ├── testing-conventions.md │ └── xmlui-in-a-nutshell.md ├── dev-docs │ ├── accessibility.md │ ├── actions.md │ ├── AppRoot.md │ ├── component-apis.md │ ├── component-rendering.md │ ├── component-review-checklist.md │ ├── containers.md │ ├── data-sources.md │ ├── e2e-summary.md │ ├── expression-evaluation.md │ ├── glossary.md │ ├── helper-components.md │ ├── index.md │ ├── loaders.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 │ ├── rendering-fundamentals.md │ ├── reusable-components.md │ ├── standalone-apps.md │ ├── state-management.md │ └── xmlui-extensibility.xlsx ├── package.json ├── playwright.config.ts ├── scripts │ ├── coverage-only.js │ ├── e2e-test-summary.js │ ├── generate-docs │ │ ├── build-downloads-map.mjs │ │ ├── build-pages-map.mjs │ │ ├── components-config.json │ │ ├── configuration-management.mjs │ │ ├── constants.mjs │ │ ├── create-theme-files.mjs │ │ ├── DocsGenerator.mjs │ │ ├── error-handling.mjs │ │ ├── extensions-config.json │ │ ├── folders.mjs │ │ ├── generate-summary-files.mjs │ │ ├── get-docs.mjs │ │ ├── input-handler.mjs │ │ ├── logger.mjs │ │ ├── logging-standards.mjs │ │ ├── MetadataProcessor.mjs │ │ ├── pattern-utilities.mjs │ │ └── utils.mjs │ ├── get-langserver-metadata.mjs │ ├── inline-links.mjs │ └── README-e2e-summary.md ├── src │ ├── abstractions │ │ ├── _conventions.md │ │ ├── ActionDefs.ts │ │ ├── AppContextDefs.ts │ │ ├── ComponentDefs.ts │ │ ├── ContainerDefs.ts │ │ ├── ExtensionDefs.ts │ │ ├── FunctionDefs.ts │ │ ├── RendererDefs.ts │ │ ├── scripting │ │ │ ├── BlockScope.ts │ │ │ ├── Compilation.ts │ │ │ ├── LogicalThread.ts │ │ │ ├── LoopScope.ts │ │ │ ├── modules.ts │ │ │ ├── ScriptParserError.ts │ │ │ ├── Token.ts │ │ │ ├── TryScope.ts │ │ │ └── TryScopeExp.ts │ │ └── ThemingDefs.ts │ ├── components │ │ ├── _conventions.md │ │ ├── abstractions.ts │ │ ├── Accordion │ │ │ ├── Accordion.md │ │ │ ├── Accordion.module.scss │ │ │ ├── Accordion.spec.ts │ │ │ ├── Accordion.tsx │ │ │ ├── AccordionContext.tsx │ │ │ ├── AccordionItem.tsx │ │ │ ├── AccordionItemNative.tsx │ │ │ └── AccordionNative.tsx │ │ ├── Animation │ │ │ └── AnimationNative.tsx │ │ ├── APICall │ │ │ ├── APICall.md │ │ │ ├── APICall.spec.ts │ │ │ ├── APICall.tsx │ │ │ └── APICallNative.tsx │ │ ├── App │ │ │ ├── App.md │ │ │ ├── App.module.scss │ │ │ ├── App.spec.ts │ │ │ ├── App.tsx │ │ │ ├── AppLayoutContext.ts │ │ │ ├── AppNative.tsx │ │ │ ├── AppStateContext.ts │ │ │ ├── doc-resources │ │ │ │ ├── condensed-sticky.xmlui │ │ │ │ ├── condensed.xmlui │ │ │ │ ├── horizontal-sticky.xmlui │ │ │ │ ├── horizontal.xmlui │ │ │ │ ├── vertical-full-header.xmlui │ │ │ │ ├── vertical-sticky.xmlui │ │ │ │ └── vertical.xmlui │ │ │ ├── IndexerContext.ts │ │ │ ├── LinkInfoContext.ts │ │ │ ├── SearchContext.tsx │ │ │ ├── Sheet.module.scss │ │ │ └── Sheet.tsx │ │ ├── AppHeader │ │ │ ├── AppHeader.md │ │ │ ├── AppHeader.module.scss │ │ │ ├── AppHeader.spec.ts │ │ │ ├── AppHeader.tsx │ │ │ └── AppHeaderNative.tsx │ │ ├── AppState │ │ │ ├── AppState.md │ │ │ ├── AppState.spec.ts │ │ │ ├── AppState.tsx │ │ │ └── AppStateNative.tsx │ │ ├── AutoComplete │ │ │ ├── AutoComplete.md │ │ │ ├── AutoComplete.module.scss │ │ │ ├── AutoComplete.spec.ts │ │ │ ├── AutoComplete.tsx │ │ │ ├── AutoCompleteContext.tsx │ │ │ └── AutoCompleteNative.tsx │ │ ├── Avatar │ │ │ ├── Avatar.md │ │ │ ├── Avatar.module.scss │ │ │ ├── Avatar.spec.ts │ │ │ ├── Avatar.tsx │ │ │ └── AvatarNative.tsx │ │ ├── Backdrop │ │ │ ├── Backdrop.md │ │ │ ├── Backdrop.module.scss │ │ │ ├── Backdrop.spec.ts │ │ │ ├── Backdrop.tsx │ │ │ └── BackdropNative.tsx │ │ ├── Badge │ │ │ ├── Badge.md │ │ │ ├── Badge.module.scss │ │ │ ├── Badge.spec.ts │ │ │ ├── Badge.tsx │ │ │ └── BadgeNative.tsx │ │ ├── Bookmark │ │ │ ├── Bookmark.md │ │ │ ├── Bookmark.module.scss │ │ │ ├── Bookmark.spec.ts │ │ │ ├── Bookmark.tsx │ │ │ └── BookmarkNative.tsx │ │ ├── Breakout │ │ │ ├── Breakout.module.scss │ │ │ ├── Breakout.spec.ts │ │ │ ├── Breakout.tsx │ │ │ └── BreakoutNative.tsx │ │ ├── Button │ │ │ ├── Button-style.spec.ts │ │ │ ├── Button.md │ │ │ ├── Button.module.scss │ │ │ ├── Button.spec.ts │ │ │ ├── Button.tsx │ │ │ └── ButtonNative.tsx │ │ ├── Card │ │ │ ├── Card.md │ │ │ ├── Card.module.scss │ │ │ ├── Card.spec.ts │ │ │ ├── Card.tsx │ │ │ └── CardNative.tsx │ │ ├── Carousel │ │ │ ├── Carousel.md │ │ │ ├── Carousel.module.scss │ │ │ ├── Carousel.spec.ts │ │ │ ├── Carousel.tsx │ │ │ ├── CarouselContext.tsx │ │ │ ├── CarouselItem.tsx │ │ │ ├── CarouselItemNative.tsx │ │ │ └── CarouselNative.tsx │ │ ├── ChangeListener │ │ │ ├── ChangeListener.md │ │ │ ├── ChangeListener.spec.ts │ │ │ ├── ChangeListener.tsx │ │ │ └── ChangeListenerNative.tsx │ │ ├── chart-color-schemes.ts │ │ ├── Charts │ │ │ ├── AreaChart │ │ │ │ ├── AreaChart.md │ │ │ │ ├── AreaChart.spec.ts │ │ │ │ ├── AreaChart.tsx │ │ │ │ └── AreaChartNative.tsx │ │ │ ├── BarChart │ │ │ │ ├── BarChart.md │ │ │ │ ├── BarChart.module.scss │ │ │ │ ├── BarChart.spec.ts │ │ │ │ ├── BarChart.tsx │ │ │ │ └── BarChartNative.tsx │ │ │ ├── DonutChart │ │ │ │ ├── DonutChart.spec.ts │ │ │ │ └── DonutChart.tsx │ │ │ ├── LabelList │ │ │ │ ├── LabelList.spec.ts │ │ │ │ ├── LabelList.tsx │ │ │ │ ├── LabelListNative.module.scss │ │ │ │ └── LabelListNative.tsx │ │ │ ├── Legend │ │ │ │ ├── Legend.spec.ts │ │ │ │ ├── Legend.tsx │ │ │ │ └── LegendNative.tsx │ │ │ ├── LineChart │ │ │ │ ├── LineChart.md │ │ │ │ ├── LineChart.module.scss │ │ │ │ ├── LineChart.spec.ts │ │ │ │ ├── LineChart.tsx │ │ │ │ └── LineChartNative.tsx │ │ │ ├── PieChart │ │ │ │ ├── PieChart.md │ │ │ │ ├── PieChart.spec.ts │ │ │ │ ├── PieChart.tsx │ │ │ │ ├── PieChartNative.module.scss │ │ │ │ └── PieChartNative.tsx │ │ │ ├── RadarChart │ │ │ │ ├── RadarChart.md │ │ │ │ ├── RadarChart.spec.ts │ │ │ │ ├── RadarChart.tsx │ │ │ │ └── RadarChartNative.tsx │ │ │ ├── Tooltip │ │ │ │ ├── TooltipContent.module.scss │ │ │ │ ├── TooltipContent.spec.ts │ │ │ │ └── TooltipContent.tsx │ │ │ └── utils │ │ │ ├── abstractions.ts │ │ │ └── ChartProvider.tsx │ │ ├── Checkbox │ │ │ ├── Checkbox.md │ │ │ ├── Checkbox.spec.ts │ │ │ └── Checkbox.tsx │ │ ├── CodeBlock │ │ │ ├── CodeBlock.module.scss │ │ │ ├── CodeBlock.spec.ts │ │ │ ├── CodeBlock.tsx │ │ │ ├── CodeBlockNative.tsx │ │ │ └── highlight-code.ts │ │ ├── collectedComponentMetadata.ts │ │ ├── ColorPicker │ │ │ ├── ColorPicker.md │ │ │ ├── ColorPicker.module.scss │ │ │ ├── ColorPicker.spec.ts │ │ │ ├── ColorPicker.tsx │ │ │ └── ColorPickerNative.tsx │ │ ├── Column │ │ │ ├── Column.md │ │ │ ├── Column.tsx │ │ │ ├── ColumnNative.tsx │ │ │ ├── doc-resources │ │ │ │ └── list-component-data.js │ │ │ └── TableContext.tsx │ │ ├── component-utils.ts │ │ ├── ComponentProvider.tsx │ │ ├── ComponentRegistryContext.tsx │ │ ├── container-helpers.tsx │ │ ├── ContentSeparator │ │ │ ├── ContentSeparator.md │ │ │ ├── ContentSeparator.module.scss │ │ │ ├── ContentSeparator.spec.ts │ │ │ ├── ContentSeparator.tsx │ │ │ └── ContentSeparatorNative.tsx │ │ ├── DataSource │ │ │ ├── DataSource.md │ │ │ └── DataSource.tsx │ │ ├── DateInput │ │ │ ├── DateInput.md │ │ │ ├── DateInput.module.scss │ │ │ ├── DateInput.spec.ts │ │ │ ├── DateInput.tsx │ │ │ └── DateInputNative.tsx │ │ ├── DatePicker │ │ │ ├── DatePicker.md │ │ │ ├── DatePicker.module.scss │ │ │ ├── DatePicker.spec.ts │ │ │ ├── DatePicker.tsx │ │ │ └── DatePickerNative.tsx │ │ ├── DropdownMenu │ │ │ ├── DropdownMenu.md │ │ │ ├── DropdownMenu.module.scss │ │ │ ├── DropdownMenu.spec.ts │ │ │ ├── DropdownMenu.tsx │ │ │ ├── DropdownMenuNative.tsx │ │ │ ├── MenuItem.md │ │ │ └── SubMenuItem.md │ │ ├── EmojiSelector │ │ │ ├── EmojiSelector.md │ │ │ ├── EmojiSelector.spec.ts │ │ │ ├── EmojiSelector.tsx │ │ │ └── EmojiSelectorNative.tsx │ │ ├── ExpandableItem │ │ │ ├── ExpandableItem.module.scss │ │ │ ├── ExpandableItem.spec.ts │ │ │ ├── ExpandableItem.tsx │ │ │ └── ExpandableItemNative.tsx │ │ ├── FileInput │ │ │ ├── FileInput.md │ │ │ ├── FileInput.module.scss │ │ │ ├── FileInput.spec.ts │ │ │ ├── FileInput.tsx │ │ │ └── FileInputNative.tsx │ │ ├── FileUploadDropZone │ │ │ ├── FileUploadDropZone.md │ │ │ ├── FileUploadDropZone.module.scss │ │ │ ├── FileUploadDropZone.spec.ts │ │ │ ├── FileUploadDropZone.tsx │ │ │ └── FileUploadDropZoneNative.tsx │ │ ├── FlowLayout │ │ │ ├── FlowLayout.md │ │ │ ├── FlowLayout.module.scss │ │ │ ├── FlowLayout.spec.ts │ │ │ ├── FlowLayout.spec.ts-snapshots │ │ │ │ └── Edge-cases-boxShadow-is-not-clipped-1-non-smoke-darwin.png │ │ │ ├── FlowLayout.tsx │ │ │ └── FlowLayoutNative.tsx │ │ ├── Footer │ │ │ ├── Footer.md │ │ │ ├── Footer.module.scss │ │ │ ├── Footer.spec.ts │ │ │ ├── Footer.tsx │ │ │ └── FooterNative.tsx │ │ ├── Form │ │ │ ├── Form.md │ │ │ ├── Form.module.scss │ │ │ ├── Form.spec.ts │ │ │ ├── Form.tsx │ │ │ ├── formActions.ts │ │ │ ├── FormContext.ts │ │ │ └── FormNative.tsx │ │ ├── FormItem │ │ │ ├── FormItem.md │ │ │ ├── FormItem.module.scss │ │ │ ├── FormItem.spec.ts │ │ │ ├── FormItem.tsx │ │ │ ├── FormItemNative.tsx │ │ │ ├── HelperText.module.scss │ │ │ ├── HelperText.tsx │ │ │ ├── ItemWithLabel.tsx │ │ │ └── Validations.ts │ │ ├── FormSection │ │ │ ├── FormSection.md │ │ │ ├── FormSection.ts │ │ │ └── FormSection.xmlui │ │ ├── Fragment │ │ │ ├── Fragment.spec.ts │ │ │ └── Fragment.tsx │ │ ├── Heading │ │ │ ├── abstractions.ts │ │ │ ├── H1.md │ │ │ ├── H1.spec.ts │ │ │ ├── H2.md │ │ │ ├── H2.spec.ts │ │ │ ├── H3.md │ │ │ ├── H3.spec.ts │ │ │ ├── H4.md │ │ │ ├── H4.spec.ts │ │ │ ├── H5.md │ │ │ ├── H5.spec.ts │ │ │ ├── H6.md │ │ │ ├── H6.spec.ts │ │ │ ├── Heading.md │ │ │ ├── Heading.module.scss │ │ │ ├── Heading.spec.ts │ │ │ ├── Heading.tsx │ │ │ └── HeadingNative.tsx │ │ ├── HoverCard │ │ │ ├── HoverCard.tsx │ │ │ └── HovercardNative.tsx │ │ ├── HtmlTags │ │ │ ├── HtmlTags.module.scss │ │ │ ├── HtmlTags.spec.ts │ │ │ └── HtmlTags.tsx │ │ ├── Icon │ │ │ ├── AdmonitionDanger.tsx │ │ │ ├── AdmonitionInfo.tsx │ │ │ ├── AdmonitionNote.tsx │ │ │ ├── AdmonitionTip.tsx │ │ │ ├── AdmonitionWarning.tsx │ │ │ ├── ApiIcon.tsx │ │ │ ├── ArrowDropDown.module.scss │ │ │ ├── ArrowDropDown.tsx │ │ │ ├── ArrowDropUp.module.scss │ │ │ ├── ArrowDropUp.tsx │ │ │ ├── ArrowLeft.module.scss │ │ │ ├── ArrowLeft.tsx │ │ │ ├── ArrowRight.module.scss │ │ │ ├── ArrowRight.tsx │ │ │ ├── Attach.tsx │ │ │ ├── Binding.module.scss │ │ │ ├── Binding.tsx │ │ │ ├── BoardIcon.tsx │ │ │ ├── BoxIcon.tsx │ │ │ ├── CheckIcon.tsx │ │ │ ├── ChevronDownIcon.tsx │ │ │ ├── ChevronLeft.tsx │ │ │ ├── ChevronRight.tsx │ │ │ ├── ChevronUpIcon.tsx │ │ │ ├── CodeFileIcon.tsx │ │ │ ├── CodeSandbox.tsx │ │ │ ├── CompactListIcon.tsx │ │ │ ├── ContentCopyIcon.tsx │ │ │ ├── DarkToLightIcon.tsx │ │ │ ├── DatabaseIcon.module.scss │ │ │ ├── DatabaseIcon.tsx │ │ │ ├── DocFileIcon.tsx │ │ │ ├── DocIcon.tsx │ │ │ ├── DotMenuHorizontalIcon.tsx │ │ │ ├── DotMenuIcon.tsx │ │ │ ├── EmailIcon.tsx │ │ │ ├── EmptyFolderIcon.tsx │ │ │ ├── ErrorIcon.tsx │ │ │ ├── ExpressionIcon.tsx │ │ │ ├── FillPlusCricleIcon.tsx │ │ │ ├── FilterIcon.tsx │ │ │ ├── FolderIcon.tsx │ │ │ ├── GlobeIcon.tsx │ │ │ ├── HomeIcon.tsx │ │ │ ├── HyperLinkIcon.tsx │ │ │ ├── Icon.md │ │ │ ├── Icon.module.scss │ │ │ ├── Icon.spec.ts │ │ │ ├── Icon.tsx │ │ │ ├── IconNative.tsx │ │ │ ├── ImageFileIcon.tsx │ │ │ ├── Inspect.tsx │ │ │ ├── LightToDark.tsx │ │ │ ├── LinkIcon.tsx │ │ │ ├── ListIcon.tsx │ │ │ ├── LooseListIcon.tsx │ │ │ ├── MoonIcon.tsx │ │ │ ├── MoreOptionsIcon.tsx │ │ │ ├── NoSortIcon.tsx │ │ │ ├── PDFIcon.tsx │ │ │ ├── PenIcon.tsx │ │ │ ├── PhoneIcon.tsx │ │ │ ├── PhotoIcon.tsx │ │ │ ├── PlusIcon.tsx │ │ │ ├── SearchIcon.tsx │ │ │ ├── ShareIcon.tsx │ │ │ ├── SortAscendingIcon.tsx │ │ │ ├── SortDescendingIcon.tsx │ │ │ ├── StarsIcon.tsx │ │ │ ├── SunIcon.tsx │ │ │ ├── svg │ │ │ │ ├── admonition_danger.svg │ │ │ │ ├── admonition_info.svg │ │ │ │ ├── admonition_note.svg │ │ │ │ ├── admonition_tip.svg │ │ │ │ ├── admonition_warning.svg │ │ │ │ ├── api.svg │ │ │ │ ├── arrow-dropdown.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── attach.svg │ │ │ │ ├── binding.svg │ │ │ │ ├── box.svg │ │ │ │ ├── bulb.svg │ │ │ │ ├── code-file.svg │ │ │ │ ├── code-sandbox.svg │ │ │ │ ├── dark_to_light.svg │ │ │ │ ├── database.svg │ │ │ │ ├── doc.svg │ │ │ │ ├── empty-folder.svg │ │ │ │ ├── expression.svg │ │ │ │ ├── eye-closed.svg │ │ │ │ ├── eye-dark.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── file-text.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── img.svg │ │ │ │ ├── inspect.svg │ │ │ │ ├── light_to_dark.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── photo.svg │ │ │ │ ├── share.svg │ │ │ │ ├── stars.svg │ │ │ │ ├── sun.svg │ │ │ │ ├── trending-down.svg │ │ │ │ ├── trending-level.svg │ │ │ │ ├── trending-up.svg │ │ │ │ ├── txt.svg │ │ │ │ ├── unknown-file.svg │ │ │ │ ├── unlink.svg │ │ │ │ └── xls.svg │ │ │ ├── TableDeleteColumnIcon.tsx │ │ │ ├── TableDeleteRowIcon.tsx │ │ │ ├── TableInsertColumnIcon.tsx │ │ │ ├── TableInsertRowIcon.tsx │ │ │ ├── TrashIcon.tsx │ │ │ ├── TrendingDownIcon.tsx │ │ │ ├── TrendingLevelIcon.tsx │ │ │ ├── TrendingUpIcon.tsx │ │ │ ├── TxtIcon.tsx │ │ │ ├── UnknownFileIcon.tsx │ │ │ ├── UnlinkIcon.tsx │ │ │ ├── UserIcon.tsx │ │ │ ├── WarningIcon.tsx │ │ │ └── XlsIcon.tsx │ │ ├── IconProvider.tsx │ │ ├── IconRegistryContext.tsx │ │ ├── IFrame │ │ │ ├── IFrame.md │ │ │ ├── IFrame.module.scss │ │ │ ├── IFrame.spec.ts │ │ │ ├── IFrame.tsx │ │ │ └── IFrameNative.tsx │ │ ├── Image │ │ │ ├── Image.md │ │ │ ├── Image.module.scss │ │ │ ├── Image.spec.ts │ │ │ ├── Image.tsx │ │ │ └── ImageNative.tsx │ │ ├── Input │ │ │ ├── index.ts │ │ │ ├── InputAdornment.module.scss │ │ │ ├── InputAdornment.tsx │ │ │ ├── InputDivider.module.scss │ │ │ ├── InputDivider.tsx │ │ │ ├── InputLabel.module.scss │ │ │ ├── InputLabel.tsx │ │ │ ├── PartialInput.module.scss │ │ │ └── PartialInput.tsx │ │ ├── InspectButton │ │ │ ├── InspectButton.module.scss │ │ │ └── InspectButton.tsx │ │ ├── Items │ │ │ ├── Items.md │ │ │ ├── Items.spec.ts │ │ │ ├── Items.tsx │ │ │ └── ItemsNative.tsx │ │ ├── Link │ │ │ ├── Link.md │ │ │ ├── Link.module.scss │ │ │ ├── Link.spec.ts │ │ │ ├── Link.tsx │ │ │ └── LinkNative.tsx │ │ ├── List │ │ │ ├── doc-resources │ │ │ │ └── list-component-data.js │ │ │ ├── List.md │ │ │ ├── List.module.scss │ │ │ ├── List.spec.ts │ │ │ ├── List.tsx │ │ │ └── ListNative.tsx │ │ ├── Logo │ │ │ ├── doc-resources │ │ │ │ └── xmlui-logo.svg │ │ │ ├── Logo.md │ │ │ ├── Logo.tsx │ │ │ └── LogoNative.tsx │ │ ├── Markdown │ │ │ ├── CodeText.module.scss │ │ │ ├── CodeText.tsx │ │ │ ├── Markdown.md │ │ │ ├── Markdown.module.scss │ │ │ ├── Markdown.spec.ts │ │ │ ├── Markdown.tsx │ │ │ ├── MarkdownNative.tsx │ │ │ ├── parse-binding-expr.ts │ │ │ └── utils.ts │ │ ├── metadata-helpers.ts │ │ ├── ModalDialog │ │ │ ├── ConfirmationModalContextProvider.tsx │ │ │ ├── Dialog.module.scss │ │ │ ├── Dialog.tsx │ │ │ ├── ModalDialog.md │ │ │ ├── ModalDialog.module.scss │ │ │ ├── ModalDialog.spec.ts │ │ │ ├── ModalDialog.tsx │ │ │ ├── ModalDialogNative.tsx │ │ │ └── ModalVisibilityContext.tsx │ │ ├── NavGroup │ │ │ ├── NavGroup.md │ │ │ ├── NavGroup.module.scss │ │ │ ├── NavGroup.spec.ts │ │ │ ├── NavGroup.tsx │ │ │ ├── NavGroupContext.ts │ │ │ └── NavGroupNative.tsx │ │ ├── NavLink │ │ │ ├── NavLink.md │ │ │ ├── NavLink.module.scss │ │ │ ├── NavLink.spec.ts │ │ │ ├── NavLink.tsx │ │ │ └── NavLinkNative.tsx │ │ ├── NavPanel │ │ │ ├── NavPanel.md │ │ │ ├── NavPanel.module.scss │ │ │ ├── NavPanel.spec.ts │ │ │ ├── NavPanel.tsx │ │ │ └── NavPanelNative.tsx │ │ ├── NestedApp │ │ │ ├── AppWithCodeView.module.scss │ │ │ ├── AppWithCodeView.tsx │ │ │ ├── AppWithCodeViewNative.tsx │ │ │ ├── defaultProps.tsx │ │ │ ├── logo.svg │ │ │ ├── NestedApp.module.scss │ │ │ ├── NestedApp.tsx │ │ │ ├── NestedAppNative.tsx │ │ │ ├── Tooltip.module.scss │ │ │ ├── Tooltip.tsx │ │ │ └── utils.ts │ │ ├── NoResult │ │ │ ├── NoResult.md │ │ │ ├── NoResult.module.scss │ │ │ ├── NoResult.spec.ts │ │ │ ├── NoResult.tsx │ │ │ └── NoResultNative.tsx │ │ ├── NumberBox │ │ │ ├── numberbox-abstractions.ts │ │ │ ├── NumberBox.md │ │ │ ├── NumberBox.module.scss │ │ │ ├── NumberBox.spec.ts │ │ │ ├── NumberBox.tsx │ │ │ └── NumberBoxNative.tsx │ │ ├── Option │ │ │ ├── Option.md │ │ │ ├── Option.spec.ts │ │ │ ├── Option.tsx │ │ │ ├── OptionNative.tsx │ │ │ └── OptionTypeProvider.tsx │ │ ├── PageMetaTitle │ │ │ ├── PageMetaTilteNative.tsx │ │ │ ├── PageMetaTitle.md │ │ │ ├── PageMetaTitle.spec.ts │ │ │ └── PageMetaTitle.tsx │ │ ├── Pages │ │ │ ├── Page.md │ │ │ ├── Pages.md │ │ │ ├── Pages.module.scss │ │ │ ├── Pages.tsx │ │ │ └── PagesNative.tsx │ │ ├── Pagination │ │ │ ├── Pagination.md │ │ │ ├── Pagination.module.scss │ │ │ ├── Pagination.spec.ts │ │ │ ├── Pagination.tsx │ │ │ └── PaginationNative.tsx │ │ ├── PositionedContainer │ │ │ ├── PositionedContainer.module.scss │ │ │ ├── PositionedContainer.tsx │ │ │ └── PositionedContainerNative.tsx │ │ ├── ProfileMenu │ │ │ ├── ProfileMenu.module.scss │ │ │ └── ProfileMenu.tsx │ │ ├── ProgressBar │ │ │ ├── ProgressBar.md │ │ │ ├── ProgressBar.module.scss │ │ │ ├── ProgressBar.spec.ts │ │ │ ├── ProgressBar.tsx │ │ │ └── ProgressBarNative.tsx │ │ ├── Queue │ │ │ ├── Queue.md │ │ │ ├── Queue.spec.ts │ │ │ ├── Queue.tsx │ │ │ ├── queueActions.ts │ │ │ └── QueueNative.tsx │ │ ├── RadioGroup │ │ │ ├── RadioGroup.md │ │ │ ├── RadioGroup.module.scss │ │ │ ├── RadioGroup.spec.ts │ │ │ ├── RadioGroup.tsx │ │ │ ├── RadioGroupNative.tsx │ │ │ ├── RadioItem.tsx │ │ │ └── RadioItemNative.tsx │ │ ├── RealTimeAdapter │ │ │ ├── RealTimeAdapter.tsx │ │ │ └── RealTimeAdapterNative.tsx │ │ ├── Redirect │ │ │ ├── Redirect.md │ │ │ ├── Redirect.spec.ts │ │ │ └── Redirect.tsx │ │ ├── ResponsiveBar │ │ │ ├── README.md │ │ │ ├── ResponsiveBar.md │ │ │ ├── ResponsiveBar.module.scss │ │ │ ├── ResponsiveBar.spec.ts │ │ │ ├── ResponsiveBar.tsx │ │ │ └── ResponsiveBarNative.tsx │ │ ├── Select │ │ │ ├── HiddenOption.tsx │ │ │ ├── MultiSelectOption.tsx │ │ │ ├── OptionContext.ts │ │ │ ├── Select.md │ │ │ ├── Select.module.scss │ │ │ ├── Select.spec.ts │ │ │ ├── Select.tsx │ │ │ ├── SelectContext.tsx │ │ │ ├── SelectNative.tsx │ │ │ ├── SelectOption.tsx │ │ │ └── SimpleSelect.tsx │ │ ├── SelectionStore │ │ │ ├── SelectionStore.md │ │ │ ├── SelectionStore.tsx │ │ │ └── SelectionStoreNative.tsx │ │ ├── Slider │ │ │ ├── Slider.md │ │ │ ├── Slider.module.scss │ │ │ ├── Slider.spec.ts │ │ │ ├── Slider.tsx │ │ │ └── SliderNative.tsx │ │ ├── Slot │ │ │ ├── Slot.md │ │ │ ├── Slot.spec.ts │ │ │ └── Slot.ts │ │ ├── SlotItem.tsx │ │ ├── SpaceFiller │ │ │ ├── SpaceFiller.md │ │ │ ├── SpaceFiller.module.scss │ │ │ ├── SpaceFiller.spec.ts │ │ │ ├── SpaceFiller.tsx │ │ │ └── SpaceFillerNative.tsx │ │ ├── Spinner │ │ │ ├── Spinner.md │ │ │ ├── Spinner.module.scss │ │ │ ├── Spinner.spec.ts │ │ │ ├── Spinner.tsx │ │ │ └── SpinnerNative.tsx │ │ ├── Splitter │ │ │ ├── HSplitter.md │ │ │ ├── HSplitter.spec.ts │ │ │ ├── Splitter.md │ │ │ ├── Splitter.module.scss │ │ │ ├── Splitter.spec.ts │ │ │ ├── Splitter.tsx │ │ │ ├── SplitterNative.tsx │ │ │ ├── utils.ts │ │ │ ├── VSplitter.md │ │ │ └── VSplitter.spec.ts │ │ ├── Stack │ │ │ ├── CHStack.md │ │ │ ├── CHStack.spec.ts │ │ │ ├── CVStack.md │ │ │ ├── CVStack.spec.ts │ │ │ ├── HStack.md │ │ │ ├── HStack.spec.ts │ │ │ ├── Stack.md │ │ │ ├── Stack.module.scss │ │ │ ├── Stack.spec.ts │ │ │ ├── Stack.tsx │ │ │ ├── StackNative.tsx │ │ │ ├── VStack.md │ │ │ └── VStack.spec.ts │ │ ├── StickyBox │ │ │ ├── StickyBox.md │ │ │ ├── StickyBox.module.scss │ │ │ ├── StickyBox.tsx │ │ │ └── StickyBoxNative.tsx │ │ ├── Switch │ │ │ ├── Switch.md │ │ │ ├── Switch.spec.ts │ │ │ └── Switch.tsx │ │ ├── Table │ │ │ ├── doc-resources │ │ │ │ └── list-component-data.js │ │ │ ├── react-table-config.d.ts │ │ │ ├── Table.md │ │ │ ├── Table.module.scss │ │ │ ├── Table.spec.ts │ │ │ ├── Table.tsx │ │ │ ├── TableNative.tsx │ │ │ └── useRowSelection.tsx │ │ ├── TableOfContents │ │ │ ├── TableOfContents.module.scss │ │ │ ├── TableOfContents.spec.ts │ │ │ ├── TableOfContents.tsx │ │ │ └── TableOfContentsNative.tsx │ │ ├── Tabs │ │ │ ├── TabContext.tsx │ │ │ ├── TabItem.md │ │ │ ├── TabItem.tsx │ │ │ ├── TabItemNative.tsx │ │ │ ├── Tabs.md │ │ │ ├── Tabs.module.scss │ │ │ ├── Tabs.spec.ts │ │ │ ├── Tabs.tsx │ │ │ └── TabsNative.tsx │ │ ├── Text │ │ │ ├── Text.md │ │ │ ├── Text.module.scss │ │ │ ├── Text.spec.ts │ │ │ ├── Text.tsx │ │ │ └── TextNative.tsx │ │ ├── TextArea │ │ │ ├── TextArea.md │ │ │ ├── TextArea.module.scss │ │ │ ├── TextArea.spec.ts │ │ │ ├── TextArea.tsx │ │ │ ├── TextAreaNative.tsx │ │ │ ├── TextAreaResizable.tsx │ │ │ └── useComposedRef.ts │ │ ├── TextBox │ │ │ ├── TextBox.md │ │ │ ├── TextBox.module.scss │ │ │ ├── TextBox.spec.ts │ │ │ ├── TextBox.tsx │ │ │ └── TextBoxNative.tsx │ │ ├── Theme │ │ │ ├── NotificationToast.tsx │ │ │ ├── Theme.md │ │ │ ├── Theme.module.scss │ │ │ ├── Theme.spec.ts │ │ │ ├── Theme.tsx │ │ │ └── ThemeNative.tsx │ │ ├── TimeInput │ │ │ ├── TimeInput.md │ │ │ ├── TimeInput.module.scss │ │ │ ├── TimeInput.spec.ts │ │ │ ├── TimeInput.tsx │ │ │ ├── TimeInputNative.tsx │ │ │ └── utils.ts │ │ ├── Timer │ │ │ ├── Timer.md │ │ │ ├── Timer.spec.ts │ │ │ ├── Timer.tsx │ │ │ └── TimerNative.tsx │ │ ├── Toggle │ │ │ ├── Toggle.module.scss │ │ │ └── Toggle.tsx │ │ ├── ToneChangerButton │ │ │ ├── ToneChangerButton.md │ │ │ ├── ToneChangerButton.spec.ts │ │ │ └── ToneChangerButton.tsx │ │ ├── ToneSwitch │ │ │ ├── ToneSwitch.md │ │ │ ├── ToneSwitch.module.scss │ │ │ ├── ToneSwitch.spec.ts │ │ │ ├── ToneSwitch.tsx │ │ │ └── ToneSwitchNative.tsx │ │ ├── Tooltip │ │ │ ├── Tooltip.md │ │ │ ├── Tooltip.module.scss │ │ │ ├── Tooltip.spec.ts │ │ │ ├── Tooltip.tsx │ │ │ └── TooltipNative.tsx │ │ ├── Tree │ │ │ ├── testData.ts │ │ │ ├── Tree-dynamic.spec.ts │ │ │ ├── Tree-icons.spec.ts │ │ │ ├── Tree.md │ │ │ ├── Tree.spec.ts │ │ │ ├── TreeComponent.module.scss │ │ │ ├── TreeComponent.tsx │ │ │ └── TreeNative.tsx │ │ ├── TreeDisplay │ │ │ ├── TreeDisplay.md │ │ │ ├── TreeDisplay.module.scss │ │ │ ├── TreeDisplay.tsx │ │ │ └── TreeDisplayNative.tsx │ │ ├── ValidationSummary │ │ │ ├── ValidationSummary.module.scss │ │ │ └── ValidationSummary.tsx │ │ └── VisuallyHidden.tsx │ ├── components-core │ │ ├── abstractions │ │ │ ├── ComponentRenderer.ts │ │ │ ├── LoaderRenderer.ts │ │ │ ├── standalone.ts │ │ │ └── treeAbstractions.ts │ │ ├── action │ │ │ ├── actions.ts │ │ │ ├── APICall.tsx │ │ │ ├── FileDownloadAction.tsx │ │ │ ├── FileUploadAction.tsx │ │ │ ├── NavigateAction.tsx │ │ │ └── TimedAction.tsx │ │ ├── ApiBoundComponent.tsx │ │ ├── appContext │ │ │ ├── date-functions.ts │ │ │ ├── math-function.ts │ │ │ └── misc-utils.ts │ │ ├── AppContext.tsx │ │ ├── behaviors │ │ │ ├── Behavior.tsx │ │ │ ├── BehaviorContext.tsx │ │ │ └── CoreBehaviors.tsx │ │ ├── component-hooks.ts │ │ ├── ComponentDecorator.tsx │ │ ├── ComponentViewer.tsx │ │ ├── CompoundComponent.tsx │ │ ├── constants.ts │ │ ├── DebugViewProvider.tsx │ │ ├── descriptorHelper.ts │ │ ├── devtools │ │ │ ├── InspectorDialog.module.scss │ │ │ ├── InspectorDialog.tsx │ │ │ └── InspectorDialogVisibilityContext.tsx │ │ ├── EngineError.ts │ │ ├── event-handlers.ts │ │ ├── InspectorButton.module.scss │ │ ├── InspectorContext.tsx │ │ ├── interception │ │ │ ├── abstractions.ts │ │ │ ├── ApiInterceptor.ts │ │ │ ├── ApiInterceptorProvider.tsx │ │ │ ├── apiInterceptorWorker.ts │ │ │ ├── Backend.ts │ │ │ ├── Errors.ts │ │ │ ├── IndexedDb.ts │ │ │ ├── initMock.ts │ │ │ ├── InMemoryDb.ts │ │ │ ├── ReadonlyCollection.ts │ │ │ └── useApiInterceptorContext.tsx │ │ ├── loader │ │ │ ├── ApiLoader.tsx │ │ │ ├── DataLoader.tsx │ │ │ ├── ExternalDataLoader.tsx │ │ │ ├── Loader.tsx │ │ │ ├── MockLoaderRenderer.tsx │ │ │ └── PageableLoader.tsx │ │ ├── LoaderComponent.tsx │ │ ├── markup-check.ts │ │ ├── parts.ts │ │ ├── renderers.ts │ │ ├── rendering │ │ │ ├── AppContent.tsx │ │ │ ├── AppRoot.tsx │ │ │ ├── AppWrapper.tsx │ │ │ ├── buildProxy.ts │ │ │ ├── collectFnVarDeps.ts │ │ │ ├── ComponentAdapter.tsx │ │ │ ├── ComponentWrapper.tsx │ │ │ ├── Container.tsx │ │ │ ├── containers.ts │ │ │ ├── ContainerWrapper.tsx │ │ │ ├── ErrorBoundary.module.scss │ │ │ ├── ErrorBoundary.tsx │ │ │ ├── InvalidComponent.module.scss │ │ │ ├── InvalidComponent.tsx │ │ │ ├── nodeUtils.ts │ │ │ ├── reducer.ts │ │ │ ├── renderChild.tsx │ │ │ ├── StandaloneComponent.tsx │ │ │ ├── StateContainer.tsx │ │ │ ├── UnknownComponent.module.scss │ │ │ ├── UnknownComponent.tsx │ │ │ └── valueExtractor.ts │ │ ├── reportEngineError.ts │ │ ├── RestApiProxy.ts │ │ ├── script-runner │ │ │ ├── asyncProxy.ts │ │ │ ├── AttributeValueParser.ts │ │ │ ├── bannedFunctions.ts │ │ │ ├── BindingTreeEvaluationContext.ts │ │ │ ├── eval-tree-async.ts │ │ │ ├── eval-tree-common.ts │ │ │ ├── eval-tree-sync.ts │ │ │ ├── ParameterParser.ts │ │ │ ├── process-statement-async.ts │ │ │ ├── process-statement-common.ts │ │ │ ├── process-statement-sync.ts │ │ │ ├── ScriptingSourceTree.ts │ │ │ ├── simplify-expression.ts │ │ │ ├── statement-queue.ts │ │ │ └── visitors.ts │ │ ├── StandaloneApp.tsx │ │ ├── StandaloneExtensionManager.ts │ │ ├── TableOfContentsContext.tsx │ │ ├── theming │ │ │ ├── _themes.scss │ │ │ ├── component-layout-resolver.ts │ │ │ ├── extendThemeUtils.ts │ │ │ ├── hvar.ts │ │ │ ├── layout-resolver.ts │ │ │ ├── parse-layout-props.ts │ │ │ ├── StyleContext.tsx │ │ │ ├── StyleRegistry.ts │ │ │ ├── ThemeContext.tsx │ │ │ ├── ThemeProvider.tsx │ │ │ ├── themes │ │ │ │ ├── base-utils.ts │ │ │ │ ├── palette.ts │ │ │ │ ├── root.ts │ │ │ │ ├── solid.ts │ │ │ │ ├── theme-colors.ts │ │ │ │ └── xmlui.ts │ │ │ ├── themeVars.module.scss │ │ │ ├── themeVars.ts │ │ │ ├── transformThemeVars.ts │ │ │ └── utils.ts │ │ ├── utils │ │ │ ├── actionUtils.ts │ │ │ ├── audio-utils.ts │ │ │ ├── compound-utils.ts │ │ │ ├── css-utils.ts │ │ │ ├── DataLoaderQueryKeyGenerator.ts │ │ │ ├── date-utils.ts │ │ │ ├── extractParam.ts │ │ │ ├── hooks.tsx │ │ │ ├── LruCache.ts │ │ │ ├── mergeProps.ts │ │ │ ├── misc.ts │ │ │ ├── request-params.ts │ │ │ ├── statementUtils.ts │ │ │ └── treeUtils.ts │ │ └── xmlui-parser.ts │ ├── index-standalone.ts │ ├── index.scss │ ├── index.ts │ ├── language-server │ │ ├── server-common.ts │ │ ├── server-web-worker.ts │ │ ├── server.ts │ │ ├── services │ │ │ ├── common │ │ │ │ ├── docs-generation.ts │ │ │ │ ├── lsp-utils.ts │ │ │ │ ├── metadata-utils.ts │ │ │ │ └── syntax-node-utilities.ts │ │ │ ├── completion.ts │ │ │ ├── diagnostic.ts │ │ │ ├── format.ts │ │ │ └── hover.ts │ │ └── xmlui-metadata-generated.mjs │ ├── logging │ │ ├── LoggerContext.tsx │ │ ├── LoggerInitializer.tsx │ │ ├── LoggerService.ts │ │ └── xmlui.ts │ ├── logo.svg │ ├── parsers │ │ ├── common │ │ │ ├── GenericToken.ts │ │ │ ├── InputStream.ts │ │ │ └── utils.ts │ │ ├── scripting │ │ │ ├── code-behind-collect.ts │ │ │ ├── Lexer.ts │ │ │ ├── modules.ts │ │ │ ├── Parser.ts │ │ │ ├── ParserError.ts │ │ │ ├── ScriptingNodeTypes.ts │ │ │ ├── TokenTrait.ts │ │ │ ├── TokenType.ts │ │ │ └── tree-visitor.ts │ │ ├── style-parser │ │ │ ├── errors.ts │ │ │ ├── source-tree.ts │ │ │ ├── StyleInputStream.ts │ │ │ ├── StyleLexer.ts │ │ │ ├── StyleParser.ts │ │ │ └── tokens.ts │ │ └── xmlui-parser │ │ ├── CharacterCodes.ts │ │ ├── diagnostics.ts │ │ ├── fileExtensions.ts │ │ ├── index.ts │ │ ├── lint.ts │ │ ├── parser.ts │ │ ├── ParserError.ts │ │ ├── scanner.ts │ │ ├── syntax-kind.ts │ │ ├── syntax-node.ts │ │ ├── transform.ts │ │ ├── utils.ts │ │ ├── xmlui-serializer.ts │ │ └── xmlui-tree.ts │ ├── react-app-env.d.ts │ ├── syntax │ │ ├── monaco │ │ │ ├── grammar.monacoLanguage.ts │ │ │ ├── index.ts │ │ │ ├── xmlui-dark.ts │ │ │ ├── xmlui-light.ts │ │ │ └── xmluiscript.monacoLanguage.ts │ │ └── textMate │ │ ├── index.ts │ │ ├── xmlui-dark.json │ │ ├── xmlui-light.json │ │ ├── xmlui.json │ │ └── xmlui.tmLanguage.json │ ├── testing │ │ ├── assertions.ts │ │ ├── component-test-helpers.ts │ │ ├── ComponentDrivers.ts │ │ ├── drivers │ │ │ ├── DateInputDriver.ts │ │ │ ├── ModalDialogDriver.ts │ │ │ ├── NumberBoxDriver.ts │ │ │ ├── TextBoxDriver.ts │ │ │ ├── TimeInputDriver.ts │ │ │ ├── TimerDriver.ts │ │ │ └── TreeDriver.ts │ │ ├── fixtures.ts │ │ ├── infrastructure │ │ │ ├── index.html │ │ │ ├── main.tsx │ │ │ ├── public │ │ │ │ ├── mockServiceWorker.js │ │ │ │ ├── resources │ │ │ │ │ ├── bell.svg │ │ │ │ │ ├── box.svg │ │ │ │ │ ├── doc.svg │ │ │ │ │ ├── eye.svg │ │ │ │ │ ├── flower-640x480.jpg │ │ │ │ │ ├── sun.svg │ │ │ │ │ ├── test-image-100x100.jpg │ │ │ │ │ └── txt.svg │ │ │ │ └── serve.json │ │ │ └── TestBed.tsx │ │ └── themed-app-test-helpers.ts │ └── vite-env.d.ts ├── tests │ ├── components │ │ ├── CodeBlock │ │ │ └── hightlight-code.test.ts │ │ ├── playground-pattern.test.ts │ │ └── Tree │ │ └── Tree-states.test.ts │ ├── components-core │ │ ├── abstractions │ │ │ └── treeAbstractions.test.ts │ │ ├── container │ │ │ └── buildProxy.test.ts │ │ ├── interception │ │ │ ├── orderBy.test.ts │ │ │ ├── ReadOnlyCollection.test.ts │ │ │ └── request-param-converter.test.ts │ │ ├── scripts-runner │ │ │ ├── AttributeValueParser.test.ts │ │ │ ├── eval-tree-arrow-async.test.ts │ │ │ ├── eval-tree-arrow.test.ts │ │ │ ├── eval-tree-func-decl-async.test.ts │ │ │ ├── eval-tree-func-decl.test.ts │ │ │ ├── eval-tree-pre-post.test.ts │ │ │ ├── eval-tree-regression.test.ts │ │ │ ├── eval-tree.test.ts │ │ │ ├── function-proxy.test.ts │ │ │ ├── parser-regression.test.ts │ │ │ ├── process-event.test.ts │ │ │ ├── process-function.test.ts │ │ │ ├── process-implicit-context.test.ts │ │ │ ├── process-statement-asgn.test.ts │ │ │ ├── process-statement-destruct.test.ts │ │ │ ├── process-statement-regs.test.ts │ │ │ ├── process-statement-sync.test.ts │ │ │ ├── process-statement.test.ts │ │ │ ├── process-switch-sync.test.ts │ │ │ ├── process-switch.test.ts │ │ │ ├── process-try-sync.test.ts │ │ │ ├── process-try.test.ts │ │ │ └── test-helpers.ts │ │ ├── test-metadata-handler.ts │ │ ├── theming │ │ │ ├── border-segments.test.ts │ │ │ ├── component-layout.resolver.test.ts │ │ │ ├── layout-property-parser.test.ts │ │ │ ├── layout-resolver.test.ts │ │ │ ├── layout-resolver2.test.ts │ │ │ ├── layout-vp-override.test.ts │ │ │ └── padding-segments.test.ts │ │ └── utils │ │ ├── date-utils.test.ts │ │ ├── format-human-elapsed-time.test.ts │ │ └── LruCache.test.ts │ ├── language-server │ │ ├── completion.test.ts │ │ ├── format.test.ts │ │ ├── hover.test.ts │ │ └── mockData.ts │ └── parsers │ ├── common │ │ └── input-stream.test.ts │ ├── markdown │ │ └── parse-binding-expression.test.ts │ ├── parameter-parser.test.ts │ ├── paremeter-parser.test.ts │ ├── scripting │ │ ├── eval-tree-arrow.test.ts │ │ ├── eval-tree-pre-post.test.ts │ │ ├── eval-tree.test.ts │ │ ├── function-proxy.test.ts │ │ ├── lexer-literals.test.ts │ │ ├── lexer-misc.test.ts │ │ ├── module-parse.test.ts │ │ ├── parser-arrow.test.ts │ │ ├── parser-assignments.test.ts │ │ ├── parser-binary.test.ts │ │ ├── parser-destructuring.test.ts │ │ ├── parser-errors.test.ts │ │ ├── parser-expressions.test.ts │ │ ├── parser-function.test.ts │ │ ├── parser-literals.test.ts │ │ ├── parser-primary.test.ts │ │ ├── parser-regex.test.ts │ │ ├── parser-statements.test.ts │ │ ├── parser-unary.test.ts │ │ ├── process-event.test.ts │ │ ├── process-implicit-context.test.ts │ │ ├── process-statement-asgn.test.ts │ │ ├── process-statement-destruct.test.ts │ │ ├── process-statement-regs.test.ts │ │ ├── process-statement-sync.test.ts │ │ ├── process-statement.test.ts │ │ ├── process-switch-sync.test.ts │ │ ├── process-switch.test.ts │ │ ├── process-try-sync.test.ts │ │ ├── process-try.test.ts │ │ ├── simplify-expression.test.ts │ │ ├── statement-hooks.test.ts │ │ └── test-helpers.ts │ ├── style-parser │ │ ├── generateHvarChain.test.ts │ │ ├── parseHVar.test.ts │ │ ├── parser.test.ts │ │ └── tokens.test.ts │ └── xmlui │ ├── lint.test.ts │ ├── parser.test.ts │ ├── scanner.test.ts │ ├── transform.attr.test.ts │ ├── transform.circular.test.ts │ ├── transform.element.test.ts │ ├── transform.errors.test.ts │ ├── transform.escape.test.ts │ ├── transform.regression.test.ts │ ├── transform.script.test.ts │ ├── transform.test.ts │ └── xmlui.ts ├── tests-e2e │ ├── api-bound-component-regression.spec.ts │ ├── api-call-as-extracted-component.spec.ts │ ├── assign-to-object-or-array-regression.spec.ts │ ├── binding-regression.spec.ts │ ├── children-as-template-context-vars.spec.ts │ ├── compound-component.spec.ts │ ├── context-vars-regression.spec.ts │ ├── data-bindings.spec.ts │ ├── datasource-and-api-usage-in-var.spec.ts │ ├── datasource-direct-binding.spec.ts │ ├── datasource-onLoaded-regression.spec.ts │ ├── modify-array-item-regression.spec.ts │ ├── namespaces.spec.ts │ ├── push-to-array-regression.spec.ts │ ├── screen-breakpoints.spec.ts │ ├── scripting.spec.ts │ ├── state-scope-in-pages.spec.ts │ └── state-var-scopes.spec.ts ├── tsconfig.bin.json ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── vitest.config.ts ``` # Files -------------------------------------------------------------------------------- /xmlui/src/components/TextArea/TextArea.spec.ts: -------------------------------------------------------------------------------- ```typescript 1 | import { getBounds, SKIP_REASON } from "../../testing/component-test-helpers"; 2 | import { test, expect } from "../../testing/fixtures"; 3 | 4 | // ============================================================================= 5 | // BASIC FUNCTIONALITY TESTS 6 | // ============================================================================= 7 | 8 | test.describe("Basic Functionality", () => { 9 | test("component renders with basic props", async ({ initTestBed, page }) => { 10 | await initTestBed(`<TextArea />`); 11 | await expect(page.getByRole("textbox")).toBeVisible(); 12 | }); 13 | 14 | test("component renders with label", async ({ initTestBed, page }) => { 15 | await initTestBed(`<TextArea label="Comments" />`); 16 | await expect(page.getByRole("textbox")).toBeVisible(); 17 | await expect(page.getByText("Comments")).toBeVisible(); 18 | }); 19 | 20 | test("initialValue sets textarea value correctly", async ({ initTestBed, page }) => { 21 | await initTestBed(`<TextArea initialValue="Initial text content" />`); 22 | await expect(page.getByRole("textbox")).toHaveValue("Initial text content"); 23 | }); 24 | 25 | test("initialValue accepts different data types", async ({ initTestBed, page }) => { 26 | // Test string 27 | await initTestBed(`<TextArea initialValue="hello world" />`); 28 | await expect(page.getByRole("textbox")).toHaveValue("hello world"); 29 | 30 | // Test number 31 | await initTestBed(`<TextArea initialValue="{123}" />`); 32 | await expect(page.getByRole("textbox")).toHaveValue("123"); 33 | 34 | // Test boolean 35 | await initTestBed(`<TextArea initialValue="{true}" />`); 36 | await expect(page.getByRole("textbox")).toHaveValue("true"); 37 | }); 38 | 39 | test("component handles null and undefined props gracefully", async ({ initTestBed, page }) => { 40 | await initTestBed(`<TextArea initialValue="{null}" />`); 41 | await expect(page.getByRole("textbox")).toHaveValue(""); 42 | 43 | await initTestBed(`<TextArea initialValue="{undefined}" />`); 44 | await expect(page.getByRole("textbox")).toHaveValue(""); 45 | 46 | await initTestBed(`<TextArea />`); 47 | await expect(page.getByRole("textbox")).toHaveValue(""); 48 | }); 49 | 50 | test("component accepts user input", async ({ initTestBed, page }) => { 51 | await initTestBed(`<TextArea />`); 52 | await page.getByRole("textbox").fill("user input"); 53 | await expect(page.getByRole("textbox")).toHaveValue("user input"); 54 | }); 55 | 56 | test("component accepts multiline input", async ({ initTestBed, page }) => { 57 | await initTestBed(`<TextArea />`); 58 | const multilineText = "First line\nSecond line\nThird line"; 59 | 60 | await page.getByRole("textbox").fill(multilineText); 61 | await expect(page.getByRole("textbox")).toHaveValue(multilineText); 62 | }); 63 | 64 | test("component clears input correctly", async ({ initTestBed, page }) => { 65 | await initTestBed(`<TextArea initialValue="Initial content" />`); 66 | const textarea = page.getByRole("textbox"); 67 | await expect(textarea).toHaveValue("Initial content"); 68 | await textarea.clear(); 69 | await expect(textarea).toHaveValue(""); 70 | }); 71 | 72 | test("required prop adds required attribute", async ({ initTestBed, page }) => { 73 | await initTestBed(`<TextArea required="true" />`); 74 | await expect(page.getByRole("textbox")).toHaveAttribute("required"); 75 | }); 76 | 77 | test("enabled=false disables control", async ({ initTestBed, page }) => { 78 | await initTestBed(`<TextArea enabled="false" />`); 79 | await expect(page.getByRole("textbox")).not.toBeEditable(); 80 | }); 81 | 82 | test("readOnly prevents editing but allows focus", async ({ initTestBed, page }) => { 83 | await initTestBed(`<TextArea readOnly="true" initialValue="Read only content" />`); 84 | await expect(page.getByRole("textbox")).toHaveAttribute("readonly"); 85 | await expect(page.getByRole("textbox")).toHaveValue("Read only content"); 86 | await expect(page.getByRole("textbox")).not.toBeEditable(); 87 | 88 | await page.getByRole("textbox").focus(); 89 | await expect(page.getByRole("textbox")).toBeFocused(); 90 | }); 91 | 92 | test("autoFocus focuses textarea on mount", async ({ initTestBed, page }) => { 93 | await initTestBed(`<TextArea autoFocus="true" />`); 94 | await expect(page.getByRole("textbox")).toBeFocused(); 95 | }); 96 | 97 | test("autoFocus focuses input on mount with label", async ({ initTestBed, page }) => { 98 | await initTestBed(`<TextArea autoFocus="true" label="Auto-focused input" />`); 99 | await expect(page.getByLabel("Auto-focused input")).toBeFocused(); 100 | }); 101 | 102 | test("placeholder shows when textarea is empty", async ({ initTestBed, page }) => { 103 | await initTestBed(`<TextArea placeholder="Enter your comments here..." />`); 104 | await expect(page.getByRole("textbox")).toHaveAttribute( 105 | "placeholder", 106 | "Enter your comments here...", 107 | ); 108 | }); 109 | 110 | test("placeholder is hidden when textarea has content", async ({ initTestBed, page }) => { 111 | await initTestBed(`<TextArea placeholder="Enter comments" />`); 112 | const textarea = page.getByRole("textbox"); 113 | await textarea.fill("Some content"); 114 | await expect(textarea).toHaveValue("Some content"); 115 | await expect(textarea).toHaveAttribute("placeholder", "Enter comments"); 116 | }); 117 | 118 | test("maxLength limits input length", async ({ initTestBed, page }) => { 119 | await initTestBed(`<TextArea maxLength="10" />`); 120 | await page.getByRole("textbox").fill("12345678901234567890"); 121 | await expect(page.getByRole("textbox")).toHaveValue("1234567890"); 122 | }); 123 | 124 | test("rows prop sets textarea height", async ({ initTestBed, page }) => { 125 | await initTestBed(`<TextArea rows="5" />`); 126 | await expect(page.getByRole("textbox")).toHaveAttribute("rows", "5"); 127 | }); 128 | 129 | test("component handles special characters correctly", async ({ initTestBed, page }) => { 130 | await initTestBed(`<TextArea />`); 131 | const specialText = "Hello 日本語 @#$%! 🚀 Unicode test 🎉"; 132 | await page.getByRole("textbox").fill(specialText); 133 | await expect(page.getByRole("textbox")).toHaveValue(specialText); 134 | }); 135 | 136 | test("component handles very long input values", async ({ initTestBed, page }) => { 137 | const longText = 138 | "This is a very long text that might cause issues with component rendering or processing. ".repeat( 139 | 50, 140 | ); 141 | await initTestBed(`<TextArea />`); 142 | await page.getByRole("textbox").fill(longText); 143 | await expect(page.getByRole("textbox")).toHaveValue(longText); 144 | }); 145 | 146 | test("component prop changes update display correctly", async ({ initTestBed, page }) => { 147 | await initTestBed(` 148 | <Fragment var.rows="{3}"> 149 | <TextArea rows="{rows}" /> 150 | <Button onClick="rows = 5">Set Rows to 5</Button> 151 | </Fragment>`); 152 | const textarea = page.getByRole("textbox"); 153 | 154 | await expect(textarea).toHaveAttribute("rows", "3"); 155 | await page.getByRole("button", { name: "Set Rows to 5" }).click(); 156 | await expect(textarea).toHaveAttribute("rows", "5"); 157 | }); 158 | 159 | test("autoSize enables automatic height adjustment", async ({ initTestBed, page }) => { 160 | await initTestBed(`<TextArea testId="input" autoSize="true" />`); 161 | const textarea = page.getByTestId("input"); 162 | const areaField = page.getByRole("textbox"); 163 | 164 | // Get initial height with single line 165 | await areaField.fill("Single line"); 166 | const initialHeight = await textarea.evaluate((el) => el.scrollHeight); 167 | 168 | // Add multiple lines and verify height increases 169 | await areaField.fill("Line 1\nLine 2\nLine 3\nLine 4"); 170 | const expandedHeight = await textarea.evaluate((el) => el.scrollHeight); 171 | 172 | // Height should increase when more lines are added 173 | expect(expandedHeight).toBeGreaterThan(initialHeight); 174 | 175 | // Verify content is correct 176 | await expect(areaField).toHaveValue("Line 1\nLine 2\nLine 3\nLine 4"); 177 | 178 | // Test reduction - go back to fewer lines 179 | await areaField.fill("Line 1\nLine 2"); 180 | const reducedHeight = await areaField.evaluate((el) => el.scrollHeight); 181 | 182 | // Height should decrease when lines are removed 183 | expect(reducedHeight).toBeLessThan(expandedHeight); 184 | expect(reducedHeight).toBeGreaterThanOrEqual(initialHeight); 185 | }); 186 | 187 | test("maxRows limits auto-size height", async ({ initTestBed, page }) => { 188 | await initTestBed(`<TextArea testId="input" autoSize="true" maxRows="3" />`); 189 | const textarea = page.getByTestId("input"); 190 | const areaField = page.getByRole("textbox"); 191 | 192 | // Fill with more content than maxRows should allow 193 | const manyLines = Array(10).fill("Line content").join("\n"); 194 | await areaField.fill(manyLines); 195 | 196 | // Content should still be there - the key is that maxRows is applied 197 | await expect(areaField).toHaveValue(manyLines); 198 | 199 | // Verify the component is still visible and functional with large content 200 | await expect(areaField).toBeVisible(); 201 | await expect(areaField).toBeEditable(); 202 | 203 | // The textarea should have some form of height constraint applied 204 | // (exact implementation may vary, but component should remain functional) 205 | const boundingRect = await getBounds(textarea); 206 | expect(boundingRect).not.toBeNull(); 207 | expect(boundingRect.height).toBeGreaterThan(0); 208 | }); 209 | 210 | test("minRows sets minimum auto-size height", async ({ initTestBed, page }) => { 211 | await initTestBed(`<TextArea testId="input" autoSize="true" minRows="4" />`); 212 | const textarea = page.getByTestId("input"); 213 | const areaField = page.getByRole("textbox"); 214 | 215 | await expect(textarea).toBeVisible(); 216 | await expect(areaField).toBeVisible(); 217 | 218 | // Even with no content, component should be functional 219 | await expect(areaField).toHaveValue(""); 220 | 221 | // Fill with single line (less than minRows) 222 | await areaField.fill("Single line"); 223 | await expect(areaField).toHaveValue("Single line"); 224 | 225 | // Fill with content that matches minRows 226 | await areaField.fill("Line 1\nLine 2\nLine 3\nLine 4"); 227 | await expect(areaField).toHaveValue("Line 1\nLine 2\nLine 3\nLine 4"); 228 | 229 | // Verify the component remains functional with different content lengths 230 | await expect(areaField).toBeVisible(); 231 | await expect(areaField).toBeEditable(); 232 | }); 233 | 234 | test("enterSubmits enables form submission on Enter", async ({ initTestBed, page }) => { 235 | const { testStateDriver } = await initTestBed(` 236 | <Form onSubmit="testState = 'submitted'"> 237 | <TextArea enterSubmits="true" /> 238 | <Button type="submit" testId="submitBtn">Submit</Button> 239 | </Form> 240 | `); 241 | const textarea = page.getByRole("textbox"); 242 | 243 | await textarea.focus(); 244 | await textarea.fill("Some content"); 245 | await textarea.press("Enter"); 246 | 247 | await expect.poll(testStateDriver.testState).toEqual("submitted"); 248 | }); 249 | 250 | test("enterSubmits=false prevents form submission on Enter", async ({ initTestBed, page }) => { 251 | const { testStateDriver } = await initTestBed(` 252 | <Form onSubmit="testState = 'submitted'"> 253 | <TextArea enterSubmits="false" /> 254 | <Button type="submit" testId="submitBtn">Submit</Button> 255 | </Form> 256 | `); 257 | const textarea = page.getByRole("textbox"); 258 | 259 | await textarea.focus(); 260 | await textarea.fill("Some content"); 261 | await textarea.press("Enter"); 262 | 263 | // Should not submit, so testState should remain null 264 | await expect.poll(testStateDriver.testState).toEqual(null); 265 | 266 | // But should allow new line in textarea 267 | await expect(textarea).toHaveValue("Some content\n"); 268 | }); 269 | 270 | test("Shift+Enter creates new line even with enterSubmits=true", async ({ 271 | initTestBed, 272 | page, 273 | }) => { 274 | const { testStateDriver } = await initTestBed(` 275 | <Form onSubmit="testState = 'submitted'"> 276 | <TextArea enterSubmits="true" /> 277 | </Form> 278 | `); 279 | 280 | const textarea = page.getByRole("textbox"); 281 | 282 | await textarea.focus(); 283 | await textarea.fill("Line 1"); 284 | await textarea.press("Shift+Enter"); 285 | await textarea.type("Line 2"); 286 | 287 | await expect(textarea).toHaveValue("Line 1\nLine 2"); 288 | await expect.poll(testStateDriver.testState).toEqual(null); // Should not have submitted 289 | }); 290 | 291 | test("escResets enables form reset on Escape", async ({ initTestBed, page }) => { 292 | await initTestBed(` 293 | <Form> 294 | <TextArea id="myTextarea" initialValue="Initial value" escResets="true" /> 295 | </Form> 296 | `); 297 | 298 | const textarea = page.getByRole("textbox"); 299 | 300 | await textarea.fill("Changed content"); 301 | await expect(textarea).toHaveValue("Changed content"); 302 | 303 | await textarea.press("Escape"); 304 | await expect(textarea).toHaveValue("Initial value"); 305 | }); 306 | 307 | test("escResets=false does not reset on Escape", async ({ initTestBed, page }) => { 308 | await initTestBed(`<TextArea escResets="false" initialValue="Initial value" />`); 309 | const textarea = page.getByRole("textbox"); 310 | 311 | await textarea.fill("Changed content"); 312 | await expect(textarea).toHaveValue("Changed content"); 313 | 314 | await textarea.press("Escape"); 315 | await expect(textarea).toHaveValue("Changed content"); // Should remain unchanged 316 | }); 317 | 318 | test("component handles readOnly and enabled=false together", async ({ initTestBed, page }) => { 319 | await initTestBed(`<TextArea readOnly="true" enabled="false" />`); 320 | const textarea = page.getByRole("textbox"); 321 | await expect(textarea).toBeDisabled(); 322 | await expect(textarea).toHaveAttribute("readonly"); 323 | }); 324 | 325 | test("component handles autoFocus with enabled=false", async ({ initTestBed, page }) => { 326 | await initTestBed(`<TextArea autoFocus="true" enabled="false" />`); 327 | const textarea = page.getByRole("textbox"); 328 | await expect(textarea).toBeDisabled(); 329 | await expect(textarea).not.toBeFocused(); 330 | }); 331 | }); 332 | 333 | // ============================================================================= 334 | // ACCESSIBILITY TESTS 335 | // ============================================================================= 336 | 337 | test.describe("Accessibility", () => { 338 | test("component has correct accessibility attributes", async ({ initTestBed, page }) => { 339 | await initTestBed(`<TextArea label="Comments" />`); 340 | await expect(page.getByRole("textbox")).toHaveAttribute("aria-multiline", "true"); 341 | }); 342 | 343 | test("component is keyboard accessible when interactive", async ({ initTestBed, page }) => { 344 | const { testStateDriver } = await initTestBed(` 345 | <TextArea 346 | label="Comments" 347 | onGotFocus="testState = 'keyboard-focused'" 348 | /> 349 | `); 350 | const textarea = page.getByRole("textbox"); 351 | await textarea.focus(); 352 | await expect(textarea).toBeFocused(); 353 | await expect.poll(testStateDriver.testState).toEqual("keyboard-focused"); 354 | }); 355 | 356 | test("non-interactive component is not focusable when disabled", async ({ 357 | initTestBed, 358 | page, 359 | }) => { 360 | await initTestBed(`<TextArea enabled="false" />`); 361 | const textarea = page.getByRole("textbox"); 362 | 363 | await expect(textarea).toBeDisabled(); 364 | await expect(textarea).not.toBeFocused(); 365 | }); 366 | 367 | test("label is properly associated with textarea", async ({ initTestBed, page }) => { 368 | await initTestBed(`<TextArea label="User Comments" />`); 369 | const component = page.getByLabel("User Comments"); 370 | await expect(component).toHaveRole("textbox"); 371 | }); 372 | 373 | test("required has proper ARIA attributes", async ({ initTestBed, page }) => { 374 | await initTestBed(`<TextArea required="true" label="Required Comments" />`); 375 | 376 | await expect(page.getByRole("textbox")).toHaveAttribute("required"); 377 | await expect(page.getByText("Required Comments")).toContainText("*"); 378 | }); 379 | 380 | test("readOnly has proper ARIA attributes", async ({ initTestBed, page }) => { 381 | await initTestBed(`<TextArea readOnly="true" label="Read-only textarea" />`); 382 | const textarea = page.getByRole("textbox"); 383 | await expect(textarea).toHaveAttribute("aria-readonly", "true"); 384 | await expect(textarea).toHaveAttribute("readonly"); 385 | }); 386 | 387 | test("placeholder provides accessible description", async ({ initTestBed, page }) => { 388 | await initTestBed(`<TextArea placeholder="Describe your feedback in detail" />`); 389 | await expect(page.getByRole("textbox")).toHaveAttribute( 390 | "placeholder", 391 | "Describe your feedback in detail", 392 | ); 393 | }); 394 | 395 | test("component supports multiple textareas with keyboard navigation", async ({ 396 | initTestBed, 397 | page, 398 | }) => { 399 | await initTestBed(` 400 | <Fragment> 401 | <TextArea label="First textarea" /> 402 | <TextArea label="Second textarea" /> 403 | </Fragment> 404 | `); 405 | 406 | const firstTextarea = page.getByLabel("First textarea"); 407 | const secondTextarea = page.getByLabel("Second textarea"); 408 | 409 | await firstTextarea.focus(); 410 | await expect(firstTextarea).toBeFocused(); 411 | 412 | await page.keyboard.press("Tab"); 413 | await expect(secondTextarea).toBeFocused(); 414 | }); 415 | }); 416 | 417 | // ============================================================================= 418 | // EVENT HANDLING TESTS 419 | // ============================================================================= 420 | 421 | test.describe("Event Handling", () => { 422 | test("didChange event fires on input change", async ({ initTestBed, page }) => { 423 | const { testStateDriver } = await initTestBed(` 424 | <TextArea onDidChange="testState = 'changed'" /> 425 | `); 426 | await page.getByRole("textbox").fill("test"); 427 | await expect.poll(testStateDriver.testState).toEqual("changed"); 428 | }); 429 | 430 | test("didChange event passes new value", async ({ initTestBed, page }) => { 431 | const { testStateDriver } = await initTestBed(` 432 | <TextArea onDidChange="arg => testState = arg" /> 433 | `); 434 | await page.getByRole("textbox").fill("test value"); 435 | await expect.poll(testStateDriver.testState).toEqual("test value"); 436 | }); 437 | 438 | test("gotFocus event fires on focus", async ({ initTestBed, page }) => { 439 | const { testStateDriver } = await initTestBed(` 440 | <TextArea onGotFocus="testState = 'focused'" /> 441 | `); 442 | await page.getByRole("textbox").focus(); 443 | await expect.poll(testStateDriver.testState).toEqual("focused"); 444 | }); 445 | 446 | test("gotFocus event fires on label click", async ({ initTestBed, page }) => { 447 | const { testStateDriver } = await initTestBed(` 448 | <TextArea label="Comments" onGotFocus="testState = 'focused'" /> 449 | `); 450 | await page.getByText("Comments").click(); 451 | await expect.poll(testStateDriver.testState).toEqual("focused"); 452 | }); 453 | 454 | test("lostFocus event fires on blur", async ({ initTestBed, page }) => { 455 | const { testStateDriver } = await initTestBed(` 456 | <TextArea onLostFocus="testState = 'blurred'" /> 457 | `); 458 | const textarea = page.getByRole("textbox"); 459 | await textarea.focus(); 460 | await textarea.blur(); 461 | await expect.poll(testStateDriver.testState).toEqual("blurred"); 462 | }); 463 | 464 | test("events do not fire when component is disabled", async ({ initTestBed, page }) => { 465 | const { testStateDriver } = await initTestBed(` 466 | <TextArea enabled="false" onDidChange="testState = 'changed'" onGotFocus="testState = 'focused'" /> 467 | `); 468 | const textarea = page.getByRole("textbox"); 469 | await textarea.focus(); 470 | await textarea.fill("test", { force: true }); 471 | await expect.poll(testStateDriver.testState).toEqual(null); 472 | }); 473 | }); 474 | 475 | // ============================================================================= 476 | // VISUAL STATE TESTS 477 | // ============================================================================= 478 | 479 | test.describe("Visual States", () => { 480 | test("component applies theme variables correctly", async ({ initTestBed, page }) => { 481 | await initTestBed(`<TextArea testId="input" />`, { 482 | testThemeVars: { 483 | "backgroundColor-TextArea-default": "rgb(255, 0, 0)", 484 | "textColor-TextArea-default": "rgb(0, 255, 0)", 485 | }, 486 | }); 487 | await expect(page.getByTestId("input")).toHaveCSS("background-color", "rgb(255, 0, 0)"); 488 | await expect(page.getByTestId("input")).toHaveCSS("color", "rgb(0, 255, 0)"); 489 | }); 490 | 491 | test("component handles horizontal resize option", async ({ initTestBed, page }) => { 492 | await initTestBed(`<TextArea resize="horizontal" />`); 493 | await expect(page.getByRole("textbox")).toHaveCSS("resize", "horizontal"); 494 | }); 495 | 496 | test("component handles vertical resize option", async ({ initTestBed, page }) => { 497 | await initTestBed(`<TextArea resize="vertical" />`); 498 | await expect(page.getByRole("textbox")).toHaveCSS("resize", "vertical"); 499 | }); 500 | 501 | test("component handles both resize option", async ({ initTestBed, page }) => { 502 | await initTestBed(`<TextArea resize="both" />`); 503 | await expect(page.getByRole("textbox")).toHaveCSS("resize", "both"); 504 | }); 505 | 506 | test("component handles disabled visual state", async ({ initTestBed, page }) => { 507 | await initTestBed(`<TextArea enabled="false" />`, { 508 | testThemeVars: { 509 | "backgroundColor-TextArea--disabled": "rgb(255, 0, 0)", 510 | "textColor-TextArea--disabled": "rgb(0, 255, 0)", 511 | "borderColor-TextArea--disabled": "rgb(0, 0, 255)", 512 | }, 513 | }); 514 | const textarea = page.getByRole("textbox"); 515 | await expect(textarea).toBeDisabled(); 516 | await expect(textarea).toHaveCSS("background-color", "rgb(255, 0, 0)"); 517 | await expect(textarea).toHaveCSS("color", "rgb(0, 255, 0)"); 518 | await expect(textarea).toHaveCSS("border-color", "rgb(0, 0, 255)"); 519 | }); 520 | 521 | test("component handles focus state", async ({ initTestBed, page }) => { 522 | await initTestBed(`<TextArea />`, { 523 | testThemeVars: { 524 | "borderColor-TextArea--focus": "rgb(255, 0, 0)", 525 | "backgroundColor-TextArea--focus": "rgb(0, 255, 0)", 526 | "textColor-TextArea--focus": "rgb(0, 0, 255)", 527 | }, 528 | }); 529 | const textarea = page.getByRole("textbox"); 530 | 531 | // Test focus state 532 | await textarea.focus(); 533 | await expect(textarea).toHaveCSS("border-color", "rgb(255, 0, 0)"); 534 | await expect(textarea).toHaveCSS("background-color", "rgb(0, 255, 0)"); 535 | await expect(textarea).toHaveCSS("color", "rgb(0, 0, 255)"); 536 | }); 537 | 538 | test("component handles hover state", async ({ initTestBed, page }) => { 539 | await initTestBed(`<TextArea />`, { 540 | testThemeVars: { 541 | "borderColor-TextArea--hover": "rgb(255, 0, 0)", 542 | "backgroundColor-TextArea--hover": "rgb(0, 255, 0)", 543 | "textColor-TextArea--hover": "rgb(0, 0, 255)", 544 | }, 545 | }); 546 | const textarea = page.getByRole("textbox"); 547 | 548 | // Test hover state (simulated through interaction) 549 | await textarea.hover(); 550 | await expect(textarea).toHaveCSS("border-color", "rgb(255, 0, 0)"); 551 | await expect(textarea).toHaveCSS("background-color", "rgb(0, 255, 0)"); 552 | await expect(textarea).toHaveCSS("color", "rgb(0, 0, 255)"); 553 | }); 554 | }); 555 | 556 | // ============================================================================= 557 | // EDGE CASE TESTS 558 | // ============================================================================= 559 | 560 | test.describe("Edge Cases", () => { 561 | test("component handles special characters correctly", async ({ initTestBed, page }) => { 562 | await initTestBed( 563 | `<TextArea label="José María's Comments" placeholder="Введите текст здесь" />`, 564 | ); 565 | await expect(page.getByRole("textbox")).toBeVisible(); 566 | await expect(page.getByText("José María's Comments")).toBeVisible(); 567 | await expect(page.getByRole("textbox")).toHaveAttribute("placeholder", "Введите текст здесь"); 568 | }); 569 | 570 | test("component handles empty array as initialValue", async ({ initTestBed, page }) => { 571 | await initTestBed(`<TextArea initialValue="{[]}" />`); 572 | await expect(page.getByRole("textbox")).toHaveValue(""); 573 | }); 574 | 575 | test("component handles empty object as initialValue", async ({ initTestBed, page }) => { 576 | await initTestBed(`<TextArea initialValue="{{}}" />`); 577 | await expect(page.getByRole("textbox")).toHaveValue("[object Object]"); 578 | }); 579 | 580 | test("component handles function as initialValue", async ({ initTestBed, page }) => { 581 | await initTestBed(`<TextArea initialValue="{() => {}}" />`); 582 | await expect(page.getByRole("textbox")).toHaveValue("[object Object]"); 583 | }); 584 | 585 | test("component handles negative maxLength gracefully", async ({ initTestBed, page }) => { 586 | await initTestBed(`<TextArea maxLength="{-1}" />`); 587 | await expect(page.getByRole("textbox")).toBeVisible(); 588 | }); 589 | 590 | test("component handles zero maxLength gracefully", async ({ initTestBed, page }) => { 591 | await initTestBed(`<TextArea maxLength="0" />`); 592 | await expect(page.getByRole("textbox")).toBeVisible(); 593 | }); 594 | 595 | test("component handles very large maxLength gracefully", async ({ initTestBed, page }) => { 596 | await initTestBed(`<TextArea maxLength="999999" />`); 597 | await expect(page.getByRole("textbox")).toBeVisible(); 598 | }); 599 | 600 | test("component handles invalid resize values gracefully", async ({ initTestBed, page }) => { 601 | await initTestBed(`<TextArea resize="invalid" />`); 602 | await expect(page.getByRole("textbox")).toHaveCSS("resize", "none"); 603 | }); 604 | 605 | test("component handles empty value", async ({ initTestBed, page }) => { 606 | await initTestBed(`<TextArea initialValue="" />`); 607 | const textarea = page.getByRole("textbox"); 608 | await expect(textarea).toHaveValue(""); 609 | }); 610 | 611 | test("component handles whitespace-only value", async ({ initTestBed, page }) => { 612 | await initTestBed(`<TextArea initialValue=" " />`); 613 | const whitespaceTextarea = page.getByRole("textbox"); 614 | await expect(whitespaceTextarea).toHaveValue(" "); 615 | }); 616 | 617 | test("component handles tab and newline characters in value", async ({ initTestBed, page }) => { 618 | await initTestBed(`<TextArea initialValue="\t\n" />`); 619 | const tabNewlineTextarea = page.getByRole("textbox"); 620 | const value = await tabNewlineTextarea.inputValue(); 621 | expect(value).toContain("\t"); 622 | expect(value).toContain("\n"); 623 | }); 624 | 625 | test("component handles very long input values", async ({ initTestBed, page }) => { 626 | const longValue = 627 | "Very long value that might cause issues with component rendering or processing. ".repeat( 628 | 100, 629 | ); 630 | await initTestBed(`<TextArea initialValue="${longValue}" />`); 631 | const textarea = page.getByRole("textbox"); 632 | await expect(textarea).toBeVisible(); 633 | await expect(textarea).toHaveValue(longValue); 634 | }); 635 | 636 | test("component handles invalid maxRows/minRows combinations with autoSize", async ({ 637 | initTestBed, 638 | page, 639 | }) => { 640 | await initTestBed(`<TextArea autoSize="true" maxRows="2" minRows="5" />`); 641 | await expect(page.getByRole("textbox")).toBeVisible(); 642 | }); 643 | 644 | test("component handles zero maxRows/minRows values with autoSize", async ({ 645 | initTestBed, 646 | page, 647 | }) => { 648 | await initTestBed(`<TextArea autoSize="true" maxRows="0" minRows="0" />`); 649 | await expect(page.getByRole("textbox")).toBeVisible(); 650 | }); 651 | 652 | test("component handles negative maxRows/minRows values with autoSize", async ({ 653 | initTestBed, 654 | page, 655 | }) => { 656 | await initTestBed(`<TextArea autoSize="true" maxRows="{-1}" minRows="{-1}" />`); 657 | await expect(page.getByRole("textbox")).toBeVisible(); 658 | }); 659 | }); 660 | 661 | // ============================================================================= 662 | // PERFORMANCE TESTS 663 | // ============================================================================= 664 | 665 | test.describe("Performance", () => { 666 | test("component memoization prevents unnecessary re-renders", async ({ initTestBed, page }) => { 667 | const { testStateDriver } = await initTestBed(` 668 | <TextArea 669 | label="Performance Test" 670 | onDidChange="testState = ++testState || 1" 671 | /> 672 | `); 673 | 674 | const textarea = page.getByRole("textbox"); 675 | 676 | // Test that memoization works through stable behavior 677 | await textarea.fill("a"); 678 | await expect.poll(testStateDriver.testState).toEqual(1); 679 | 680 | await textarea.fill("ab"); 681 | await expect.poll(testStateDriver.testState).toEqual(2); 682 | 683 | // Component should maintain consistent behavior 684 | await expect(textarea).toBeVisible(); 685 | await expect(textarea).toHaveValue("ab"); 686 | }); 687 | 688 | test("component handles large content efficiently", async ({ initTestBed, page }) => { 689 | const largeContent = "Large content line.\n".repeat(1000); 690 | await initTestBed(`<TextArea />`); 691 | const textarea = page.getByRole("textbox"); 692 | 693 | // Fill with large content 694 | await textarea.fill(largeContent); 695 | await expect(textarea).toHaveValue(largeContent); 696 | 697 | // Verify component still responsive 698 | await textarea.clear(); 699 | await expect(textarea).toHaveValue(""); 700 | }); 701 | 702 | test("component performs well with rapid user input", async ({ initTestBed, page }) => { 703 | const { testStateDriver } = await initTestBed(` 704 | <TextArea onDidChange="testState = (testState || 0) + 1" /> 705 | `); 706 | const textarea = page.getByRole("textbox"); 707 | 708 | // Simulate rapid typing 709 | await textarea.pressSequentially("rapid input test", { delay: 10 }); 710 | 711 | // Should have received multiple change events efficiently 712 | const changeCount = await testStateDriver.testState(); 713 | expect(changeCount).toBeGreaterThan(10); 714 | 715 | await expect(textarea).toHaveValue("rapid input test"); 716 | }); 717 | }); 718 | 719 | // ============================================================================= 720 | // INTEGRATION TESTS 721 | // ============================================================================= 722 | 723 | test.describe("Integration", () => { 724 | test("component works correctly in different layout contexts", async ({ initTestBed, page }) => { 725 | await initTestBed(`<TextArea label="Layout Test" />`); 726 | const textarea = page.getByRole("textbox"); 727 | 728 | // Test basic layout integration 729 | await expect(textarea).toBeVisible(); 730 | 731 | // Test bounding box and dimensions 732 | const boundingBox = await getBounds(textarea); 733 | expect(boundingBox).not.toBeNull(); 734 | expect(boundingBox!.width).toBeGreaterThan(0); 735 | expect(boundingBox!.height).toBeGreaterThan(0); 736 | }); 737 | 738 | test("component integrates with Form components", async ({ initTestBed, page }) => { 739 | await initTestBed(` 740 | <Fragment> 741 | <TextArea id="comments" label="Comments" required="true" /> 742 | <Button testId="submit">Submit</Button> 743 | </Fragment> 744 | `); 745 | 746 | const textarea = page.getByLabel("Comments"); 747 | const submitButton = page.getByTestId("submit"); 748 | 749 | await expect(textarea).toBeVisible(); 750 | await expect(submitButton).toBeVisible(); 751 | 752 | // Test form interaction 753 | await textarea.fill("User feedback"); 754 | await expect(textarea).toHaveValue("User feedback"); 755 | }); 756 | 757 | test("component state synchronization with other components", async ({ initTestBed, page }) => { 758 | await initTestBed(` 759 | <Fragment> 760 | <TextArea id="textarea" initialValue="Initial text" /> 761 | <Text testId="display">{textarea.value}</Text> 762 | <Button testId="clear" onClick="textarea.setValue('')">Clear</Button> 763 | </Fragment> 764 | `); 765 | 766 | // Initial state sync 767 | await expect(page.getByTestId("display")).toHaveText("Initial text"); 768 | 769 | // Manual input sync 770 | const textarea = page.getByRole("textbox"); 771 | await textarea.fill("Updated text"); 772 | await expect(page.getByTestId("display")).toHaveText("Updated text"); 773 | 774 | // API call sync 775 | await page.getByTestId("clear").click(); 776 | await expect(page.getByTestId("display")).toHaveText(""); 777 | await expect(textarea).toHaveValue(""); 778 | }); 779 | 780 | test("component works with event handling chain", async ({ initTestBed, page }) => { 781 | const { testStateDriver } = await initTestBed(` 782 | <Fragment> 783 | <TextArea 784 | onGotFocus="testState = 'focused'" 785 | onLostFocus="testState = 'blurred'" 786 | onDidChange="(value) => testState = 'changed: ' + value" 787 | /> 788 | <Button testId="otherElement">Other Element</Button> 789 | </Fragment> 790 | `); 791 | 792 | const textarea = page.getByRole("textbox"); 793 | const button = page.getByTestId("otherElement"); 794 | 795 | // Test focus event 796 | await textarea.focus(); 797 | await expect.poll(testStateDriver.testState).toEqual("focused"); 798 | 799 | // Test change event (use fill for reliable event triggering) 800 | await textarea.fill("test input"); 801 | await expect.poll(testStateDriver.testState).toEqual("changed: test input"); 802 | 803 | // Test blur event 804 | await button.focus(); 805 | await expect.poll(testStateDriver.testState).toEqual("blurred"); 806 | }); 807 | 808 | test("component API methods work in integrated scenarios", async ({ initTestBed, page }) => { 809 | await initTestBed(` 810 | <Fragment> 811 | <TextArea id="textarea1" /> 812 | <TextArea id="textarea2" /> 813 | <Button testId="copyBtn" onClick="textarea2.setValue(textarea1.value)">Copy</Button> 814 | <Button testId="focusBtn" onClick="textarea1.focus()">Focus First</Button> 815 | </Fragment> 816 | `); 817 | 818 | const textarea1 = page.getByRole("textbox").first(); 819 | const textarea2 = page.getByRole("textbox").nth(1); 820 | const copyBtn = page.getByTestId("copyBtn"); 821 | const focusBtn = page.getByTestId("focusBtn"); 822 | 823 | // Setup initial content 824 | await textarea1.fill("Content to copy"); 825 | 826 | // Test setValue API integration 827 | await copyBtn.click(); 828 | await expect(textarea2).toHaveValue("Content to copy"); 829 | 830 | // Test focus API integration 831 | await focusBtn.click(); 832 | await expect(textarea1).toBeFocused(); 833 | }); 834 | 835 | test("component works in nested component structures", async ({ initTestBed, page }) => { 836 | await initTestBed(` 837 | <Fragment> 838 | <VStack> 839 | <TextArea label="Nested Textarea 1" /> 840 | <HStack> 841 | <TextArea label="Nested Textarea 2" /> 842 | <Button testId="nestedBtn">Button</Button> 843 | </HStack> 844 | </VStack> 845 | </Fragment> 846 | `); 847 | 848 | const textarea1 = page.getByLabel("Nested Textarea 1"); 849 | const textarea2 = page.getByLabel("Nested Textarea 2"); 850 | const button = page.getByTestId("nestedBtn"); 851 | 852 | await expect(textarea1).toBeVisible(); 853 | await expect(textarea2).toBeVisible(); 854 | await expect(button).toBeVisible(); 855 | 856 | // Test interaction in nested structure 857 | await textarea1.fill("Content in nested structure"); 858 | await expect(textarea1).toHaveValue("Content in nested structure"); 859 | }); 860 | 861 | test("programmatic control works", async ({ initTestBed, page }) => { 862 | await initTestBed(` 863 | <Fragment> 864 | <TextArea id="input" /> 865 | <Button testId="focusBtn" onClick="input.focus()">Focus</Button> 866 | <Button testId="setBtn" onClick="input.setValue('API Value')">Set Value</Button> 867 | <Button testId="insertBtn" onClick="input.insert(' inserted')">Insert Text</Button> 868 | </Fragment> 869 | `); 870 | 871 | const textarea = page.getByRole("textbox"); 872 | 873 | // Test focus API 874 | await page.getByTestId("focusBtn").click(); 875 | await expect(textarea).toBeFocused(); 876 | 877 | // Test setValue API 878 | await page.getByTestId("setBtn").click(); 879 | await expect(textarea).toHaveValue("API Value"); 880 | 881 | // Test insert API 882 | await textarea.click(); // Focus and position cursor at end 883 | await page.getByTestId("insertBtn").click(); 884 | await expect(textarea).toHaveValue("API Value inserted"); 885 | }); 886 | 887 | test("insert API method works at cursor position", async ({ initTestBed, page }) => { 888 | await initTestBed(` 889 | <Fragment> 890 | <TextArea id="textarea" initialValue="Hello World" /> 891 | <Button testId="insertBtn" onClick="textarea.insert(' Beautiful')">Insert</Button> 892 | </Fragment> 893 | `); 894 | 895 | const textarea = page.getByRole("textbox"); 896 | 897 | // Position cursor between "Hello" and " World" (after "Hello") 898 | await textarea.focus(); 899 | await page.evaluate(() => { 900 | const textarea = document.querySelector("textarea"); 901 | if (textarea) { 902 | textarea.setSelectionRange(5, 5); // Position after "Hello" 903 | } 904 | }); 905 | 906 | await page.getByTestId("insertBtn").click(); 907 | await expect(textarea).toHaveValue("Hello Beautiful World"); 908 | }); 909 | 910 | test("component value API reflects current content", async ({ initTestBed, page }) => { 911 | await initTestBed(` 912 | <Fragment> 913 | <TextArea id="myTextArea" initialValue="Initial content" /> 914 | <Text testId="valueDisplay">{myTextArea.value}</Text> 915 | </Fragment> 916 | `); 917 | 918 | const textarea = page.getByRole("textbox"); 919 | const valueDisplay = page.getByTestId("valueDisplay"); 920 | 921 | await expect(valueDisplay).toHaveText("Initial content"); 922 | 923 | await textarea.fill("Updated content"); 924 | await expect(valueDisplay).toHaveText("Updated content"); 925 | }); 926 | }); 927 | 928 | // ============================================================================= 929 | // REGRESSION TESTS 930 | // ============================================================================= 931 | 932 | test.describe("Regression", () => { 933 | test("component does not loose focus #1", async ({ 934 | initTestBed, 935 | createTextAreaDriver, 936 | createTextBoxDriver, 937 | }) => { 938 | await initTestBed(` 939 | <Fragment var.value=""> 940 | <TextBox testId="myTextBox" initialValue="{value}" onDidChange="{(val) => {value = val}}"/> 941 | <TextArea testId="myTextArea" initialValue="{value}" onDidChange="{(val) => {value = val}}"/> 942 | </Fragment> 943 | `); 944 | 945 | const tbDriver = await createTextBoxDriver("myTextBox"); 946 | const driver = await createTextAreaDriver("myTextArea"); 947 | 948 | // Test basic layout integration 949 | await expect(driver.component).toBeVisible(); 950 | 951 | await driver.focus(); 952 | await expect(driver.component).toBeFocused(); 953 | await driver.component.fill("a"); 954 | await expect(driver.component).toHaveValue("a"); 955 | await driver.component.fill("abc"); 956 | await expect(driver.component).toHaveValue("abc"); 957 | await driver.component.fill("abcde"); 958 | await expect(driver.component).toHaveValue("abcde"); 959 | }); 960 | }); 961 | 962 | // ============================================================================= 963 | // VISUAL STATE TESTS 964 | // ============================================================================= 965 | 966 | test("input has correct width in px", async ({ page, initTestBed }) => { 967 | await initTestBed(`<TextArea width="200px" testId="test"/>`, {}); 968 | 969 | const input = page.getByTestId("test"); 970 | const { width } = await input.boundingBox(); 971 | expect(width).toBe(200); 972 | }); 973 | 974 | test("input with label has correct width in px", async ({ page, initTestBed }) => { 975 | await initTestBed(`<TextArea width="200px" label="test" testId="test"/>`, {}); 976 | 977 | const input = page.getByTestId("test"); 978 | const { width } = await input.boundingBox(); 979 | expect(width).toBe(200); 980 | }); 981 | 982 | test("input has correct width in %", async ({ page, initTestBed }) => { 983 | await page.setViewportSize({ width: 400, height: 300}); 984 | await initTestBed(`<TextArea width="50%" testId="test"/>`, {}); 985 | 986 | const input = page.getByTestId("test"); 987 | const { width } = await input.boundingBox(); 988 | expect(width).toBe(200); 989 | }); 990 | 991 | test("input with label has correct width in %", async ({ page, initTestBed }) => { 992 | await page.setViewportSize({ width: 400, height: 300}); 993 | await initTestBed(`<TextArea width="50%" label="test" testId="test"/>`, {}); 994 | 995 | const input = page.getByTestId("test"); 996 | const { width } = await input.boundingBox(); 997 | expect(width).toBe(200); 998 | }); 999 | ```