This is page 128 of 179. Use http://codebase.md/xmlui-org/xmlui?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/APICall/APICall.spec.ts: -------------------------------------------------------------------------------- ```typescript 1 | import { expect, test } from "../../testing/fixtures"; 2 | import type { ApiInterceptorDefinition } from "../../components-core/interception/abstractions"; 3 | 4 | // Test data constants for API mocking 5 | const basicApiInterceptor: ApiInterceptorDefinition = { 6 | operations: { 7 | "get-test": { 8 | url: "/api/test", 9 | method: "get", 10 | handler: `console.log('GET!!!'); return { message: "GET success", id: 1 };`, 11 | }, 12 | "post-test": { 13 | url: "/api/test/1", 14 | method: "post", 15 | handler: `return { message: "POST success", id: 2, data: $requestBody };`, 16 | }, 17 | "put-test": { 18 | url: "/api/test/1", 19 | method: "put", 20 | handler: `return { message: "PUT success", id: 1, data: $requestBody };`, 21 | }, 22 | "delete-test": { 23 | url: "/api/test/1", 24 | method: "delete", 25 | handler: `return { message: "DELETE success", deleted: true };`, 26 | }, 27 | "query-params-test": { 28 | url: "/api/search", 29 | method: "get", 30 | handler: `return { query: $queryParams, results: ["item1", "item2"] };`, 31 | }, 32 | "headers-test": { 33 | url: "/api/headers", 34 | method: "get", 35 | handler: `console.log('hd', $requestHeaders); return { headers: $requestHeaders };`, 36 | }, 37 | "error-test": { 38 | url: "/api/error", 39 | method: "post", 40 | handler: `throw Errors.HttpError(400, { message: "Bad request", details: "Invalid data" });`, 41 | }, 42 | "slow-test": { 43 | url: "/api/slow", 44 | method: "get", 45 | handler: ` 46 | await new Promise(resolve => setTimeout(resolve, 100)); 47 | return { message: "Slow response" }; 48 | `, 49 | }, 50 | }, 51 | }; 52 | 53 | const confirmationInterceptor: ApiInterceptorDefinition = { 54 | operations: { 55 | "confirm-test": { 56 | url: "/api/confirm", 57 | method: "post", 58 | handler: `return { message: "Confirmed action", timestamp: Date.now() };`, 59 | }, 60 | }, 61 | }; 62 | 63 | // ============================================================================= 64 | // BASIC FUNCTIONALITY TESTS 65 | // ============================================================================= 66 | 67 | test.describe("Basic Functionality", () => { 68 | test("component renders and initializes correctly", async ({ initTestBed, page }) => { 69 | await initTestBed(`<APICall id="test" url="/api/test" method="get" />`, { 70 | apiInterceptor: basicApiInterceptor, 71 | }); 72 | 73 | // APICall is non-visual, so we check for proper registration by checking if it exists in context 74 | const component = page.getByTestId("test-id-component"); 75 | expect(await component.count()).toBe(0); // Non-visual component 76 | }); 77 | 78 | test("component executes with basic properties", async ({ initTestBed, createButtonDriver }) => { 79 | const { testStateDriver } = await initTestBed( 80 | ` 81 | <Fragment> 82 | <APICall id="api" url="/api/test" method="get" onSuccess="arg => testState = arg.message" /> 83 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 84 | </Fragment> 85 | `, 86 | { 87 | apiInterceptor: basicApiInterceptor, 88 | }, 89 | ); 90 | 91 | const button = await createButtonDriver("trigger"); 92 | await button.click(); 93 | 94 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual("GET success"); 95 | }); 96 | 97 | // ============================================================================= 98 | // HTTP METHOD TESTS 99 | // ============================================================================= 100 | 101 | test.describe("HTTP method property", () => { 102 | const methods = ["get", "post", "put", "delete"]; 103 | 104 | methods.forEach((method) => { 105 | test(`executes ${method.toUpperCase()} request correctly`, async ({ 106 | initTestBed, 107 | createButtonDriver, 108 | }) => { 109 | const { testStateDriver } = await initTestBed( 110 | ` 111 | <Fragment> 112 | <APICall 113 | id="api" 114 | url="/api/test${method === "get" ? "" : "/1"}" 115 | method="${method}" 116 | ${method !== "get" ? `body='{{ "test": "data" }}'` : ""} 117 | onSuccess="result => testState = result.message" 118 | /> 119 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 120 | </Fragment> 121 | `, 122 | { 123 | apiInterceptor: basicApiInterceptor, 124 | }, 125 | ); 126 | 127 | const button = await createButtonDriver("trigger"); 128 | await button.click(); 129 | 130 | await expect 131 | .poll(testStateDriver.testState, { timeout: 2000 }) 132 | .toEqual(`${method.toUpperCase()} success`); 133 | }); 134 | }); 135 | 136 | test("supports additional HTTP methods like PATCH", async ({ 137 | initTestBed, 138 | createButtonDriver, 139 | }) => { 140 | const { testStateDriver } = await initTestBed( 141 | ` 142 | <Fragment> 143 | <APICall 144 | id="api" 145 | url="/api/test/1" 146 | method="patch" 147 | body='{{ "test": "data" }}' 148 | onSuccess="() => testState = 'patch-success'" 149 | /> 150 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 151 | </Fragment> 152 | `, 153 | { 154 | apiInterceptor: { 155 | operations: { 156 | "real-patch": { 157 | url: "/api/test/1", 158 | method: "patch", 159 | handler: `return { message: "PATCH success" };`, 160 | }, 161 | }, 162 | }, 163 | }, 164 | ); 165 | 166 | const button = await createButtonDriver("trigger"); 167 | await button.click(); 168 | 169 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual("patch-success"); 170 | }); 171 | 172 | test("defaults to GET method when not specified", async ({ 173 | initTestBed, 174 | createButtonDriver, 175 | }) => { 176 | const { testStateDriver } = await initTestBed( 177 | ` 178 | <Fragment> 179 | <APICall id="api" url="/api/test" onSuccess="result => testState = result.message" /> 180 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 181 | </Fragment> 182 | `, 183 | { 184 | apiInterceptor: basicApiInterceptor, 185 | }, 186 | ); 187 | 188 | const button = await createButtonDriver("trigger"); 189 | await button.click(); 190 | 191 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual("GET success"); 192 | }); 193 | 194 | test("handles invalid method gracefully", async ({ initTestBed, createButtonDriver }) => { 195 | const { testStateDriver } = await initTestBed( 196 | ` 197 | <Fragment> 198 | <APICall id="api" url="/api/test" method="invalid" onError="() => testState = 'error'" /> 199 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 200 | </Fragment> 201 | `, 202 | { 203 | apiInterceptor: basicApiInterceptor, 204 | }, 205 | ); 206 | 207 | const button = await createButtonDriver("trigger"); 208 | await button.click(); 209 | 210 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual("error"); 211 | }); 212 | }); 213 | 214 | // ============================================================================= 215 | // URL PROPERTY TESTS 216 | // ============================================================================= 217 | 218 | test.describe("url property", () => { 219 | test("handles absolute URLs", async ({ initTestBed, createButtonDriver }) => { 220 | const { testStateDriver } = await initTestBed( 221 | ` 222 | <Fragment> 223 | <APICall id="api" url="/api/test" onSuccess="() => testState = 'success'" /> 224 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 225 | </Fragment> 226 | `, 227 | { 228 | apiInterceptor: basicApiInterceptor, 229 | }, 230 | ); 231 | 232 | const button = await createButtonDriver("trigger"); 233 | await button.click(); 234 | 235 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual("success"); 236 | }); 237 | 238 | test("handles relative URLs", async ({ initTestBed, createButtonDriver }) => { 239 | const { testStateDriver } = await initTestBed( 240 | ` 241 | <Fragment> 242 | <APICall id="api" url="api/test" onSuccess="() => testState = 'success'" /> 243 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 244 | </Fragment> 245 | `, 246 | { 247 | apiInterceptor: { 248 | operations: { 249 | "relative-test": { 250 | url: "**/api/test", 251 | method: "get", 252 | handler: `return { success: true };`, 253 | }, 254 | }, 255 | }, 256 | }, 257 | ); 258 | 259 | const button = await createButtonDriver("trigger"); 260 | await button.click(); 261 | 262 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual("success"); 263 | }); 264 | 265 | test("handles URL with special characters", async ({ initTestBed, createButtonDriver }) => { 266 | const { testStateDriver } = await initTestBed( 267 | ` 268 | <Fragment> 269 | <APICall id="api" url="/api/test?q=hello%20world&filter=a%26b" onSuccess="() => testState = 'success'" /> 270 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 271 | </Fragment> 272 | `, 273 | { 274 | apiInterceptor: { 275 | operations: { 276 | "special-chars": { 277 | url: "**/api/test**", 278 | method: "get", 279 | handler: `return { success: true };`, 280 | }, 281 | }, 282 | }, 283 | }, 284 | ); 285 | 286 | const button = await createButtonDriver("trigger"); 287 | await button.click(); 288 | 289 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual("success"); 290 | }); 291 | }); 292 | 293 | // ============================================================================= 294 | // BODY PROPERTY TESTS 295 | // ============================================================================= 296 | 297 | test.describe("body property", () => { 298 | test("sends JSON body correctly", async ({ initTestBed, createButtonDriver }) => { 299 | const { testStateDriver } = await initTestBed( 300 | ` 301 | <Fragment> 302 | <APICall 303 | id="api" 304 | url="/api/test/1" 305 | method="post" 306 | body="{{ name: 'John', age: 30 }}" 307 | onSuccess="result => testState = result.data.name" 308 | /> 309 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 310 | </Fragment> 311 | `, 312 | { 313 | apiInterceptor: basicApiInterceptor, 314 | }, 315 | ); 316 | 317 | const button = await createButtonDriver("trigger"); 318 | await button.click(); 319 | 320 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual("John"); 321 | }); 322 | 323 | test("handles empty body", async ({ initTestBed, createButtonDriver }) => { 324 | const { testStateDriver } = await initTestBed( 325 | ` 326 | <Fragment> 327 | <APICall id="api" url="/api/test/1" method="post" body="" onSuccess="() => testState = 'success'" /> 328 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 329 | </Fragment> 330 | `, 331 | { 332 | apiInterceptor: basicApiInterceptor, 333 | }, 334 | ); 335 | 336 | const button = await createButtonDriver("trigger"); 337 | await button.click(); 338 | 339 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual("success"); 340 | }); 341 | 342 | test("handles complex nested objects in body", async ({ initTestBed, createButtonDriver }) => { 343 | const { testStateDriver } = await initTestBed( 344 | ` 345 | <Fragment> 346 | <APICall 347 | id="api" 348 | url="/api/test/1" 349 | method="post" 350 | body="{{ user: { profile: { name: 'Jane', settings: { theme: 'dark' } } }, items: [1, 2, 3] }}" 351 | onSuccess="result => testState = result.data.user.profile.name" 352 | /> 353 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 354 | </Fragment> 355 | `, 356 | { 357 | apiInterceptor: basicApiInterceptor, 358 | }, 359 | ); 360 | 361 | const button = await createButtonDriver("trigger"); 362 | await button.click(); 363 | 364 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual("Jane"); 365 | }); 366 | }); 367 | 368 | // ============================================================================= 369 | // RAW BODY PROPERTY TESTS 370 | // ============================================================================= 371 | 372 | test.describe("rawBody property", () => { 373 | test("sends raw string body", async ({ initTestBed, createButtonDriver }) => { 374 | const { testStateDriver } = await initTestBed( 375 | ` 376 | <Fragment> 377 | <APICall 378 | id="api" 379 | url="/api/test" 380 | method="post" 381 | rawBody="plain text content" 382 | onSuccess="() => testState = 'success'" 383 | /> 384 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 385 | </Fragment> 386 | `, 387 | { 388 | apiInterceptor: { 389 | operations: { 390 | "raw-body": { 391 | url: "/api/test", 392 | method: "post", 393 | handler: `return { received: $requestBody };`, 394 | }, 395 | }, 396 | }, 397 | }, 398 | ); 399 | 400 | const button = await createButtonDriver("trigger"); 401 | await button.click(); 402 | 403 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual("success"); 404 | }); 405 | 406 | test("rawBody takes precedence over body", async ({ initTestBed, createButtonDriver }) => { 407 | const { testStateDriver } = await initTestBed( 408 | ` 409 | <Fragment> 410 | <APICall 411 | id="api" 412 | url="/api/test" 413 | method="post" 414 | body="{{ name: 'John' }}" 415 | rawBody="raw content" 416 | onSuccess="() => testState = 'success'" 417 | /> 418 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 419 | </Fragment> 420 | `, 421 | { 422 | apiInterceptor: { 423 | operations: { 424 | "precedence-test": { 425 | url: "/api/test", 426 | method: "post", 427 | handler: `return { received: $requestBody };`, 428 | }, 429 | }, 430 | }, 431 | }, 432 | ); 433 | 434 | const button = await createButtonDriver("trigger"); 435 | await button.click(); 436 | 437 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual("success"); 438 | }); 439 | }); 440 | 441 | // ============================================================================= 442 | // QUERY PARAMS PROPERTY TESTS 443 | // ============================================================================= 444 | 445 | test.describe("queryParams property", () => { 446 | test("sends query parameters correctly", async ({ initTestBed, createButtonDriver }) => { 447 | const { testStateDriver } = await initTestBed( 448 | ` 449 | <Fragment> 450 | <APICall 451 | id="api" 452 | url="/api/search" 453 | queryParams="{{ q: 'test', limit: 10, active: true }}" 454 | onSuccess="result => testState = result.query.q" 455 | /> 456 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 457 | </Fragment> 458 | `, 459 | { 460 | apiInterceptor: basicApiInterceptor, 461 | }, 462 | ); 463 | 464 | const button = await createButtonDriver("trigger"); 465 | await button.click(); 466 | 467 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual("test"); 468 | }); 469 | 470 | test("handles empty query parameters", async ({ initTestBed, createButtonDriver }) => { 471 | const { testStateDriver } = await initTestBed( 472 | ` 473 | <Fragment> 474 | <APICall id="api" url="/api/search" queryParams="{{}}" onSuccess="() => testState = 'success'" /> 475 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 476 | </Fragment> 477 | `, 478 | { 479 | apiInterceptor: basicApiInterceptor, 480 | }, 481 | ); 482 | 483 | const button = await createButtonDriver("trigger"); 484 | await button.click(); 485 | 486 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual("success"); 487 | }); 488 | 489 | test("handles special characters in query parameters", async ({ 490 | initTestBed, 491 | createButtonDriver, 492 | }) => { 493 | const { testStateDriver } = await initTestBed( 494 | ` 495 | <Fragment> 496 | <APICall 497 | id="api" 498 | url="/api/search" 499 | queryParams="{{ q: 'hello world', special: 'a&b=c' }}" 500 | onSuccess="result => testState = result.query.q" 501 | /> 502 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 503 | </Fragment> 504 | `, 505 | { 506 | apiInterceptor: basicApiInterceptor, 507 | }, 508 | ); 509 | 510 | const button = await createButtonDriver("trigger"); 511 | await button.click(); 512 | 513 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual("hello world"); 514 | }); 515 | }); 516 | 517 | // ============================================================================= 518 | // HEADERS PROPERTY TESTS 519 | // ============================================================================= 520 | 521 | test.describe("headers property", () => { 522 | test("sends custom headers correctly", async ({ initTestBed, createButtonDriver }) => { 523 | const { testStateDriver } = await initTestBed( 524 | ` 525 | <Fragment> 526 | <APICall 527 | id="api" 528 | url="/api/headers" 529 | headers="{{ 'X-Custom-Header': 'test-value', 'Authorization': 'Bearer token123' }}" 530 | onSuccess="result => testState = result.headers['x-custom-header']" 531 | /> 532 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 533 | </Fragment> 534 | `, 535 | { 536 | apiInterceptor: basicApiInterceptor, 537 | }, 538 | ); 539 | 540 | const button = await createButtonDriver("trigger"); 541 | await button.click(); 542 | 543 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual("test-value"); 544 | }); 545 | 546 | test("handles empty headers", async ({ initTestBed, createButtonDriver }) => { 547 | const { testStateDriver } = await initTestBed( 548 | ` 549 | <Fragment> 550 | <APICall id="api" url="/api/headers" headers="{{}}" onSuccess="() => testState = 'success'" /> 551 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 552 | </Fragment> 553 | `, 554 | { 555 | apiInterceptor: basicApiInterceptor, 556 | }, 557 | ); 558 | 559 | const button = await createButtonDriver("trigger"); 560 | await button.click(); 561 | 562 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual("success"); 563 | }); 564 | }); 565 | 566 | // ============================================================================= 567 | // CONFIRMATION DIALOG TESTS 568 | // ============================================================================= 569 | 570 | test.describe("confirmation dialog properties", () => { 571 | test("shows confirmation dialog with custom title and message", async ({ 572 | initTestBed, 573 | createButtonDriver, 574 | page, 575 | }) => { 576 | await initTestBed( 577 | ` 578 | <Fragment> 579 | <APICall 580 | id="api" 581 | url="/api/confirm" 582 | method="post" 583 | confirmTitle="Custom Title" 584 | confirmMessage="Are you sure you want to proceed?" 585 | confirmButtonLabel="Yes, Continue" 586 | /> 587 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 588 | </Fragment> 589 | `, 590 | { 591 | apiInterceptor: confirmationInterceptor, 592 | }, 593 | ); 594 | 595 | const button = await createButtonDriver("trigger"); 596 | await button.click(); 597 | 598 | // Check for confirmation dialog 599 | await expect(page.getByText("Custom Title")).toBeVisible(); 600 | await expect(page.getByText("Are you sure you want to proceed?")).toBeVisible(); 601 | await expect(page.getByText("Yes, Continue")).toBeVisible(); 602 | }); 603 | 604 | test("API call proceeds when confirmation is accepted", async ({ 605 | initTestBed, 606 | createButtonDriver, 607 | page, 608 | }) => { 609 | const { testStateDriver } = await initTestBed( 610 | ` 611 | <Fragment> 612 | <APICall 613 | id="api" 614 | url="/api/confirm" 615 | method="post" 616 | confirmTitle="Confirm" 617 | confirmMessage="Proceed?" 618 | onSuccess="() => testState = 'confirmed'" 619 | /> 620 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 621 | </Fragment> 622 | `, 623 | { 624 | apiInterceptor: confirmationInterceptor, 625 | }, 626 | ); 627 | 628 | const button = await createButtonDriver("trigger"); 629 | await button.click(); 630 | 631 | // Accept confirmation 632 | await page.getByRole("button", { name: /yes/i }).click(); 633 | 634 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual("confirmed"); 635 | }); 636 | 637 | test("API call is cancelled when confirmation is rejected", async ({ 638 | initTestBed, 639 | createButtonDriver, 640 | page, 641 | }) => { 642 | const { testStateDriver } = await initTestBed( 643 | ` 644 | <Fragment> 645 | <APICall 646 | id="api" 647 | url="/api/confirm" 648 | method="post" 649 | confirmTitle="Confirm" 650 | confirmMessage="Proceed?" 651 | onSuccess="() => testState = 'confirmed'" 652 | onError="() => testState = 'error'" 653 | /> 654 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 655 | </Fragment> 656 | `, 657 | { 658 | apiInterceptor: confirmationInterceptor, 659 | }, 660 | ); 661 | 662 | const button = await createButtonDriver("trigger"); 663 | await button.click(); 664 | 665 | // Reject confirmation 666 | await page.getByRole("button", { name: /cancel|no/i }).click(); 667 | 668 | // Should not execute API call 669 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual(null); 670 | }); 671 | }); 672 | 673 | // ============================================================================= 674 | // NOTIFICATION MESSAGE TESTS 675 | // ============================================================================= 676 | 677 | test.describe("notification message properties", () => { 678 | test("shows progress notification during API call", async ({ 679 | initTestBed, 680 | createButtonDriver, 681 | page, 682 | }) => { 683 | await initTestBed( 684 | ` 685 | <Fragment> 686 | <APICall 687 | id="api" 688 | url="/api/slow" 689 | inProgressNotificationMessage="Processing your request..." 690 | /> 691 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 692 | </Fragment> 693 | `, 694 | { 695 | apiInterceptor: basicApiInterceptor, 696 | }, 697 | ); 698 | 699 | const button = await createButtonDriver("trigger"); 700 | await button.click(); 701 | 702 | // Check for progress notification 703 | await expect(page.getByText("Processing your request...")).toBeVisible(); 704 | }); 705 | 706 | test("shows success notification with result data", async ({ 707 | initTestBed, 708 | createButtonDriver, 709 | page, 710 | }) => { 711 | await initTestBed( 712 | ` 713 | <Fragment> 714 | <APICall 715 | id="api" 716 | url="/api/test" 717 | completedNotificationMessage="Success: {$result.message}" 718 | /> 719 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 720 | </Fragment> 721 | `, 722 | { 723 | apiInterceptor: basicApiInterceptor, 724 | }, 725 | ); 726 | 727 | const button = await createButtonDriver("trigger"); 728 | await button.click(); 729 | 730 | // Check for success notification 731 | await expect(page.getByText("Success: GET success")).toBeVisible(); 732 | }); 733 | 734 | test("shows error notification with error details", async ({ 735 | initTestBed, 736 | createButtonDriver, 737 | page, 738 | }) => { 739 | await initTestBed( 740 | ` 741 | <Fragment> 742 | <APICall 743 | id="api" 744 | url="/api/error" 745 | method="post" 746 | errorNotificationMessage="Error {$error.statusCode}: {$error.details.message}" 747 | /> 748 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 749 | </Fragment> 750 | `, 751 | { 752 | apiInterceptor: basicApiInterceptor, 753 | }, 754 | ); 755 | 756 | const button = await createButtonDriver("trigger"); 757 | await button.click(); 758 | 759 | // Check for error notification 760 | await expect(page.getByText("Error 400: Bad request")).toBeVisible(); 761 | }); 762 | }); 763 | // ============================================================================= 764 | // EXECUTE METHOD TESTS 765 | // ============================================================================= 766 | 767 | test.describe("execute method", () => { 768 | test("triggers API call", async ({ initTestBed, createButtonDriver }) => { 769 | const { testStateDriver } = await initTestBed( 770 | ` 771 | <Fragment> 772 | <APICall id="api" url="/api/test" onSuccess="() => testState = 'executed'" /> 773 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 774 | </Fragment> 775 | `, 776 | { 777 | apiInterceptor: basicApiInterceptor, 778 | }, 779 | ); 780 | 781 | const button = await createButtonDriver("trigger"); 782 | await button.click(); 783 | 784 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual("executed"); 785 | }); 786 | 787 | test("accepts parameters", async ({ initTestBed, createButtonDriver }) => { 788 | const { testStateDriver } = await initTestBed( 789 | ` 790 | <Fragment> 791 | <APICall 792 | id="api" 793 | url="/api/test/1" 794 | method="post" 795 | body="{$param}" 796 | onSuccess="result => testState = result.data.name" 797 | /> 798 | <Button testId="trigger" onClick="api.execute({ name: 'John', age: 30 })" label="Execute" /> 799 | </Fragment> 800 | `, 801 | { 802 | apiInterceptor: basicApiInterceptor, 803 | }, 804 | ); 805 | 806 | const button = await createButtonDriver("trigger"); 807 | await button.click(); 808 | 809 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual("John"); 810 | }); 811 | 812 | test("provides access to multiple parameters", async ({ initTestBed, createButtonDriver }) => { 813 | const { testStateDriver } = await initTestBed( 814 | ` 815 | <Fragment> 816 | <APICall 817 | id="api" 818 | url="/api/test/1" 819 | method="post" 820 | body="{{ first: $params[0], second: $params[1], third: $params[2] }}" 821 | onSuccess="result => testState = result.data.first + '-' + result.data.second + '-' + result.data.third" 822 | /> 823 | <Button testId="trigger" onClick="api.execute('param1', 'param2', 'param3')" label="Execute" /> 824 | </Fragment> 825 | `, 826 | { 827 | apiInterceptor: basicApiInterceptor, 828 | }, 829 | ); 830 | 831 | const button = await createButtonDriver("trigger"); 832 | await button.click(); 833 | 834 | await expect 835 | .poll(testStateDriver.testState, { timeout: 2000 }) 836 | .toEqual("param1-param2-param3"); 837 | }); 838 | 839 | test("can be called multiple times", async ({ initTestBed, createButtonDriver }) => { 840 | const { testStateDriver } = await initTestBed( 841 | ` 842 | <Fragment var.callCount="{0}"> 843 | <Button testId="trigger" label="Execute {callCount}" > 844 | <event name="click"> 845 | <APICall 846 | url="/api/test" 847 | onSuccess="console.log('before', callCount); callCount++; console.log('after', callCount); testState = callCount;" 848 | /> 849 | </event> 850 | </Button> 851 | </Fragment> 852 | `, 853 | { 854 | apiInterceptor: basicApiInterceptor, 855 | }, 856 | ); 857 | 858 | const button = await createButtonDriver("trigger"); 859 | 860 | await button.click(); 861 | await new Promise((resolve) => setTimeout(resolve, 100)); // Wait for async execution 862 | //await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual(1); 863 | 864 | await button.click(); 865 | //await expect.poll(testStateDriver.testState).toEqual(2); 866 | 867 | await button.click(); 868 | //await expect.poll(testStateDriver.testState).toEqual(3); 869 | }); 870 | }); 871 | 872 | // ============================================================================= 873 | // CONTEXT VARIABLE TESTS 874 | // ============================================================================= 875 | 876 | test.describe("context variables", () => { 877 | test("$param provides access to first parameter", async ({ 878 | initTestBed, 879 | createButtonDriver, 880 | }) => { 881 | const { testStateDriver } = await initTestBed( 882 | ` 883 | <Fragment> 884 | <APICall 885 | id="api" 886 | url="/api/test/1" 887 | method="post" 888 | body="{$param}" 889 | onSuccess="result => testState = result.data.message" 890 | /> 891 | <Button testId="trigger" onClick="api.execute({ message: 'hello' })" label="Execute" /> 892 | </Fragment> 893 | `, 894 | { 895 | apiInterceptor: basicApiInterceptor, 896 | }, 897 | ); 898 | 899 | const button = await createButtonDriver("trigger"); 900 | await button.click(); 901 | 902 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual("hello"); 903 | }); 904 | 905 | test("$params provides access to all parameters", async ({ 906 | initTestBed, 907 | createButtonDriver, 908 | }) => { 909 | const { testStateDriver } = await initTestBed( 910 | ` 911 | <Fragment> 912 | <APICall 913 | id="api" 914 | url="/api/test/1" 915 | method="post" 916 | body="{{ all: $params }}" 917 | onSuccess="result => testState = result.data.all.length" 918 | /> 919 | <Button testId="trigger" onClick="api.execute('a', 'b', 'c')" label="Execute" /> 920 | </Fragment> 921 | `, 922 | { 923 | apiInterceptor: basicApiInterceptor, 924 | }, 925 | ); 926 | 927 | const button = await createButtonDriver("trigger"); 928 | await button.click(); 929 | 930 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual(3); 931 | }); 932 | 933 | test("$result provides access to response data", async ({ 934 | initTestBed, 935 | createButtonDriver, 936 | }) => { 937 | const { testStateDriver } = await initTestBed( 938 | ` 939 | <Fragment> 940 | <APICall 941 | id="api" 942 | url="/api/test" 943 | onSuccess="result => testState = result.id + ' - ' + result.message" 944 | /> 945 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 946 | </Fragment> 947 | `, 948 | { 949 | apiInterceptor: basicApiInterceptor, 950 | }, 951 | ); 952 | 953 | const button = await createButtonDriver("trigger"); 954 | await button.click(); 955 | 956 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual("1 - GET success"); 957 | }); 958 | 959 | test("$error provides access to error information", async ({ 960 | initTestBed, 961 | createButtonDriver, 962 | }) => { 963 | const { testStateDriver } = await initTestBed( 964 | ` 965 | <Fragment> 966 | <APICall 967 | id="api" 968 | url="/api/error" 969 | method="post" 970 | onError="error => testState = error.statusCode + ' - ' + error.details.message" 971 | /> 972 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 973 | </Fragment> 974 | `, 975 | { 976 | apiInterceptor: basicApiInterceptor, 977 | }, 978 | ); 979 | 980 | const button = await createButtonDriver("trigger"); 981 | await button.click(); 982 | 983 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual("400 - Bad request"); 984 | }); 985 | }); 986 | }); 987 | 988 | // ============================================================================= 989 | // OTHER EDGE CASE TESTS 990 | // ============================================================================= 991 | 992 | test.describe("Other Edge Cases", () => { 993 | test("handles null and undefined parameters gracefully", async ({ 994 | initTestBed, 995 | createButtonDriver, 996 | }) => { 997 | const { testStateDriver } = await initTestBed( 998 | ` 999 | <Fragment> 1000 | <APICall 1001 | id="api" 1002 | url="/api/test/1" 1003 | method="post" 1004 | body="{$param}" 1005 | onSuccess="() => testState = 'success'" 1006 | onError="() => testState = 'error'" 1007 | /> 1008 | <Button testId="trigger" onClick="api.execute(null)" label="Execute" /> 1009 | </Fragment> 1010 | `, 1011 | { 1012 | apiInterceptor: basicApiInterceptor, 1013 | }, 1014 | ); 1015 | 1016 | const button = await createButtonDriver("trigger"); 1017 | await button.click(); 1018 | 1019 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual("success"); 1020 | }); 1021 | 1022 | test("handles undefined URL gracefully", async ({ initTestBed, createButtonDriver }) => { 1023 | const { testStateDriver } = await initTestBed( 1024 | ` 1025 | <Fragment> 1026 | <APICall id="api" onError="() => testState = 'error'" /> 1027 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 1028 | </Fragment> 1029 | `, 1030 | { 1031 | apiInterceptor: basicApiInterceptor, 1032 | }, 1033 | ); 1034 | 1035 | const button = await createButtonDriver("trigger"); 1036 | await button.click(); 1037 | 1038 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual("error"); 1039 | }); 1040 | 1041 | test("handles malformed JSON in body gracefully", async ({ initTestBed, createButtonDriver }) => { 1042 | const { testStateDriver } = await initTestBed( 1043 | ` 1044 | <Fragment> 1045 | <APICall 1046 | id="api" 1047 | url="/api/test" 1048 | method="post" 1049 | body="{ invalid json }" 1050 | onSuccess="() => testState = 'success'" 1051 | onError="() => testState = 'error'" 1052 | /> 1053 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 1054 | </Fragment> 1055 | `, 1056 | { 1057 | apiInterceptor: basicApiInterceptor, 1058 | }, 1059 | ); 1060 | 1061 | const button = await createButtonDriver("trigger"); 1062 | await button.click(); 1063 | 1064 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual("error"); 1065 | }); 1066 | 1067 | test("handles very large request payloads", async ({ initTestBed, createButtonDriver }) => { 1068 | const { testStateDriver } = await initTestBed( 1069 | ` 1070 | <Fragment> 1071 | <APICall 1072 | id="api" 1073 | url="/api/test/1" 1074 | method="post" 1075 | body="{$param}" 1076 | onSuccess="() => testState = 'success'" 1077 | /> 1078 | <Button testId="trigger" onClick="api.execute({ data: 'x'.repeat(10000) })" label="Execute" /> 1079 | </Fragment> 1080 | `, 1081 | { 1082 | apiInterceptor: basicApiInterceptor, 1083 | }, 1084 | ); 1085 | 1086 | const button = await createButtonDriver("trigger"); 1087 | await button.click(); 1088 | 1089 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual("success"); 1090 | }); 1091 | 1092 | test("handles special Unicode characters in data", async ({ 1093 | initTestBed, 1094 | createButtonDriver, 1095 | }) => { 1096 | const { testStateDriver } = await initTestBed( 1097 | ` 1098 | <Fragment> 1099 | <APICall 1100 | id="api" 1101 | url="/api/test/1" 1102 | method="post" 1103 | body="{$param}" 1104 | onSuccess="result => testState = result.data.emoji" 1105 | /> 1106 | <Button testId="trigger" onClick="api.execute({ emoji: '👨👩👧👦🚀', chinese: '你好世界' })" label="Execute" /> 1107 | </Fragment> 1108 | `, 1109 | { 1110 | apiInterceptor: basicApiInterceptor, 1111 | }, 1112 | ); 1113 | 1114 | const button = await createButtonDriver("trigger"); 1115 | await button.click(); 1116 | 1117 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual("👨👩👧👦🚀"); 1118 | }); 1119 | 1120 | test("handles rapid successive API calls", async ({ page, initTestBed, createButtonDriver }) => { 1121 | const { testStateDriver } = await initTestBed( 1122 | ` 1123 | <Fragment> 1124 | <APICall 1125 | id="api" 1126 | url="/api/test" 1127 | onSuccess="testState ??= 0; testState++;" 1128 | /> 1129 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 1130 | </Fragment> 1131 | `, 1132 | { 1133 | apiInterceptor: basicApiInterceptor, 1134 | }, 1135 | ); 1136 | 1137 | const button = await createButtonDriver("trigger"); 1138 | 1139 | // Rapidly click multiple times 1140 | await button.click(); 1141 | await page.waitForTimeout(100); 1142 | await button.click(); 1143 | await page.waitForTimeout(100); 1144 | await button.click(); 1145 | await page.waitForTimeout(100); 1146 | 1147 | // Should handle all calls 1148 | await expect.poll(testStateDriver.testState, { timeout: 5000 }).toEqual(3); 1149 | }); 1150 | 1151 | test("handles component cleanup correctly", async ({ initTestBed, createButtonDriver }) => { 1152 | const { testStateDriver } = await initTestBed( 1153 | ` 1154 | <Fragment var.showApi="true"> 1155 | <Fragment if="showApi"> 1156 | <APICall id="api" url="/api/test" onSuccess="() => testState = 'success'" /> 1157 | </Fragment> 1158 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 1159 | <Button testId="hide" onClick="showApi = false" label="Hide" /> 1160 | </Fragment> 1161 | `, 1162 | { 1163 | apiInterceptor: basicApiInterceptor, 1164 | }, 1165 | ); 1166 | 1167 | const executeButton = await createButtonDriver("trigger"); 1168 | const hideButton = await createButtonDriver("hide"); 1169 | 1170 | // Execute API call first 1171 | await executeButton.click(); 1172 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual("success"); 1173 | 1174 | // Hide the component 1175 | await hideButton.click(); 1176 | 1177 | // Try to execute again (should not crash) 1178 | try { 1179 | await executeButton.click(); 1180 | } catch (error) { 1181 | // This is expected as the component is no longer available 1182 | } 1183 | }); 1184 | 1185 | test("handles when condition preventing execution", async ({ 1186 | initTestBed, 1187 | createButtonDriver, 1188 | }) => { 1189 | const { testStateDriver } = await initTestBed( 1190 | ` 1191 | <Fragment var.allowExecution="false"> 1192 | <APICall 1193 | id="api" 1194 | url="/api/test" 1195 | when="allowExecution" 1196 | onSuccess="() => testState = 'success'" 1197 | onError="() => testState = 'error'" 1198 | /> 1199 | <Button testId="trigger" onClick="api.execute()" label="Execute" /> 1200 | <Button testId="allow" onClick="allowExecution = true" label="Allow" /> 1201 | </Fragment> 1202 | `, 1203 | { 1204 | apiInterceptor: basicApiInterceptor, 1205 | }, 1206 | ); 1207 | 1208 | const executeButton = await createButtonDriver("trigger"); 1209 | const allowButton = await createButtonDriver("allow"); 1210 | 1211 | // Try to execute when not allowed 1212 | await executeButton.click(); 1213 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual(null); 1214 | 1215 | // Allow execution and try again 1216 | await allowButton.click(); 1217 | await executeButton.click(); 1218 | await expect.poll(testStateDriver.testState, { timeout: 2000 }).toEqual("success"); 1219 | }); 1220 | }); 1221 | ```