This is page 35 of 186. Use http://codebase.md/xmlui-org/xmlui/xmlui/mockApiDef.js?lines=true&page={x} to view the full context.
# Directory Structure
```
├── .changeset
│ └── config.json
├── .eslintrc.cjs
├── .github
│ ├── build-checklist.png
│ ├── ISSUE_TEMPLATE
│ │ ├── bug_report.md
│ │ └── feature_request.md
│ └── workflows
│ ├── deploy-blog-optimized.yml
│ ├── deploy-blog-swa.yml
│ ├── deploy-blog.yml
│ ├── deploy-docs-optimized.yml
│ ├── deploy-docs.yml
│ ├── prepare-versions.yml
│ ├── release-packages.yml
│ ├── run-all-tests.yml
│ └── run-smoke-tests.yml
├── .gitignore
├── .prettierrc.js
├── .vscode
│ ├── launch.json
│ └── settings.json
├── blog
│ ├── .gitignore
│ ├── .gitkeep
│ ├── CHANGELOG.md
│ ├── extensions.ts
│ ├── index.html
│ ├── index.ts
│ ├── package.json
│ ├── public
│ │ ├── blog
│ │ │ ├── images
│ │ │ │ ├── an-advanced-codefence.gif
│ │ │ │ ├── an-advanced-codefence.mp4
│ │ │ │ ├── blog-page-component.png
│ │ │ │ ├── blog-scrabble.png
│ │ │ │ ├── codefence-runner.png
│ │ │ │ ├── integrated-blog-search.png
│ │ │ │ ├── lorem-ipsum.png
│ │ │ │ ├── playground-checkbox-source.png
│ │ │ │ ├── playground.png
│ │ │ │ ├── use-xmlui-mcp-to-find-a-howto.png
│ │ │ │ └── xmlui-demo-gallery.png
│ │ │ ├── introducing-xmlui.md
│ │ │ ├── lorem-ipsum.md
│ │ │ ├── newest-post.md
│ │ │ ├── older-post.md
│ │ │ ├── xmlui-playground.md
│ │ │ └── xmlui-powered-blog.md
│ │ ├── mockServiceWorker.js
│ │ ├── resources
│ │ │ ├── favicon.ico
│ │ │ ├── files
│ │ │ │ └── for-download
│ │ │ │ └── xmlui
│ │ │ │ └── xmlui-standalone.umd.js
│ │ │ ├── github.svg
│ │ │ ├── llms.txt
│ │ │ ├── logo-dark.svg
│ │ │ ├── logo.svg
│ │ │ ├── pg-popout.svg
│ │ │ ├── rss.svg
│ │ │ └── xmlui-logo.svg
│ │ ├── serve.json
│ │ ├── staticwebapp.config.json
│ │ └── web.config
│ ├── scripts
│ │ ├── download-latest-xmlui.js
│ │ ├── generate-rss.js
│ │ ├── get-releases.js
│ │ └── utils.js
│ ├── src
│ │ ├── components
│ │ │ ├── BlogOverview.xmlui
│ │ │ ├── BlogPage.xmlui
│ │ │ └── PageNotFound.xmlui
│ │ ├── config.ts
│ │ ├── Main.xmlui
│ │ └── themes
│ │ └── blog-theme.ts
│ └── tsconfig.json
├── CONTRIBUTING.md
├── docs
│ ├── .gitignore
│ ├── CHANGELOG.md
│ ├── ComponentRefLinks.txt
│ ├── content
│ │ ├── _meta.json
│ │ ├── components
│ │ │ ├── _meta.json
│ │ │ ├── _overview.md
│ │ │ ├── APICall.md
│ │ │ ├── App.md
│ │ │ ├── AppHeader.md
│ │ │ ├── AppState.md
│ │ │ ├── AutoComplete.md
│ │ │ ├── Avatar.md
│ │ │ ├── Backdrop.md
│ │ │ ├── Badge.md
│ │ │ ├── BarChart.md
│ │ │ ├── Bookmark.md
│ │ │ ├── Breakout.md
│ │ │ ├── Button.md
│ │ │ ├── Card.md
│ │ │ ├── Carousel.md
│ │ │ ├── ChangeListener.md
│ │ │ ├── Checkbox.md
│ │ │ ├── CHStack.md
│ │ │ ├── ColorPicker.md
│ │ │ ├── Column.md
│ │ │ ├── ContentSeparator.md
│ │ │ ├── CVStack.md
│ │ │ ├── DataSource.md
│ │ │ ├── DateInput.md
│ │ │ ├── DatePicker.md
│ │ │ ├── DonutChart.md
│ │ │ ├── DropdownMenu.md
│ │ │ ├── EmojiSelector.md
│ │ │ ├── ExpandableItem.md
│ │ │ ├── FileInput.md
│ │ │ ├── FileUploadDropZone.md
│ │ │ ├── FlowLayout.md
│ │ │ ├── Footer.md
│ │ │ ├── Form.md
│ │ │ ├── FormItem.md
│ │ │ ├── FormSection.md
│ │ │ ├── Fragment.md
│ │ │ ├── H1.md
│ │ │ ├── H2.md
│ │ │ ├── H3.md
│ │ │ ├── H4.md
│ │ │ ├── H5.md
│ │ │ ├── H6.md
│ │ │ ├── Heading.md
│ │ │ ├── HSplitter.md
│ │ │ ├── HStack.md
│ │ │ ├── Icon.md
│ │ │ ├── IFrame.md
│ │ │ ├── Image.md
│ │ │ ├── Items.md
│ │ │ ├── LabelList.md
│ │ │ ├── Legend.md
│ │ │ ├── LineChart.md
│ │ │ ├── Link.md
│ │ │ ├── List.md
│ │ │ ├── Logo.md
│ │ │ ├── Markdown.md
│ │ │ ├── MenuItem.md
│ │ │ ├── MenuSeparator.md
│ │ │ ├── ModalDialog.md
│ │ │ ├── NavGroup.md
│ │ │ ├── NavLink.md
│ │ │ ├── NavPanel.md
│ │ │ ├── NoResult.md
│ │ │ ├── NumberBox.md
│ │ │ ├── Option.md
│ │ │ ├── Page.md
│ │ │ ├── PageMetaTitle.md
│ │ │ ├── Pages.md
│ │ │ ├── Pagination.md
│ │ │ ├── PasswordInput.md
│ │ │ ├── PieChart.md
│ │ │ ├── ProgressBar.md
│ │ │ ├── Queue.md
│ │ │ ├── RadioGroup.md
│ │ │ ├── RealTimeAdapter.md
│ │ │ ├── Redirect.md
│ │ │ ├── Select.md
│ │ │ ├── Slider.md
│ │ │ ├── Slot.md
│ │ │ ├── SpaceFiller.md
│ │ │ ├── Spinner.md
│ │ │ ├── Splitter.md
│ │ │ ├── Stack.md
│ │ │ ├── StickyBox.md
│ │ │ ├── SubMenuItem.md
│ │ │ ├── Switch.md
│ │ │ ├── TabItem.md
│ │ │ ├── Table.md
│ │ │ ├── TableOfContents.md
│ │ │ ├── Tabs.md
│ │ │ ├── Text.md
│ │ │ ├── TextArea.md
│ │ │ ├── TextBox.md
│ │ │ ├── Theme.md
│ │ │ ├── TimeInput.md
│ │ │ ├── Timer.md
│ │ │ ├── ToneChangerButton.md
│ │ │ ├── ToneSwitch.md
│ │ │ ├── Tooltip.md
│ │ │ ├── Tree.md
│ │ │ ├── VSplitter.md
│ │ │ ├── VStack.md
│ │ │ ├── xmlui-animations
│ │ │ │ ├── _meta.json
│ │ │ │ ├── _overview.md
│ │ │ │ ├── Animation.md
│ │ │ │ ├── FadeAnimation.md
│ │ │ │ ├── FadeInAnimation.md
│ │ │ │ ├── FadeOutAnimation.md
│ │ │ │ ├── ScaleAnimation.md
│ │ │ │ └── SlideInAnimation.md
│ │ │ ├── xmlui-pdf
│ │ │ │ ├── _meta.json
│ │ │ │ ├── _overview.md
│ │ │ │ └── Pdf.md
│ │ │ ├── xmlui-spreadsheet
│ │ │ │ ├── _meta.json
│ │ │ │ ├── _overview.md
│ │ │ │ └── Spreadsheet.md
│ │ │ └── xmlui-website-blocks
│ │ │ ├── _meta.json
│ │ │ ├── _overview.md
│ │ │ ├── Carousel.md
│ │ │ ├── HelloMd.md
│ │ │ ├── HeroSection.md
│ │ │ └── ScrollToTop.md
│ │ └── extensions
│ │ ├── _meta.json
│ │ ├── xmlui-animations
│ │ │ ├── _meta.json
│ │ │ ├── _overview.md
│ │ │ ├── Animation.md
│ │ │ ├── FadeAnimation.md
│ │ │ ├── FadeInAnimation.md
│ │ │ ├── FadeOutAnimation.md
│ │ │ ├── ScaleAnimation.md
│ │ │ └── SlideInAnimation.md
│ │ └── xmlui-website-blocks
│ │ ├── _meta.json
│ │ ├── _overview.md
│ │ ├── Carousel.md
│ │ ├── FancyButton.md
│ │ ├── HeroSection.md
│ │ └── ScrollToTop.md
│ ├── extensions.ts
│ ├── index.html
│ ├── index.ts
│ ├── package.json
│ ├── public
│ │ ├── feed.rss
│ │ ├── mockServiceWorker.js
│ │ ├── pages
│ │ │ ├── _meta.json
│ │ │ ├── app-structure.md
│ │ │ ├── build-editor-component.md
│ │ │ ├── build-hello-world-component.md
│ │ │ ├── components-intro.md
│ │ │ ├── context-variables.md
│ │ │ ├── forms.md
│ │ │ ├── globals.md
│ │ │ ├── glossary.md
│ │ │ ├── helper-tags.md
│ │ │ ├── hosted-deployment.md
│ │ │ ├── howto
│ │ │ │ ├── assign-a-complex-json-literal-to-a-component-variable.md
│ │ │ │ ├── chain-a-refetch.md
│ │ │ │ ├── control-cache-invalidation.md
│ │ │ │ ├── debounce-user-input-for-api-calls.md
│ │ │ │ ├── debounce-with-changelistener.md
│ │ │ │ ├── debug-a-component.md
│ │ │ │ ├── delay-a-datasource-until-another-datasource-is-ready.md
│ │ │ │ ├── delegate-a-method.md
│ │ │ │ ├── do-custom-form-validation.md
│ │ │ │ ├── expose-a-method-from-a-component.md
│ │ │ │ ├── filter-and-transform-data-from-an-api.md
│ │ │ │ ├── group-items-in-list-by-a-property.md
│ │ │ │ ├── handle-background-operations.md
│ │ │ │ ├── hide-an-element-until-its-datasource-is-ready.md
│ │ │ │ ├── make-a-set-of-equal-width-cards.md
│ │ │ │ ├── make-a-table-responsive.md
│ │ │ │ ├── make-navpanel-width-responsive.md
│ │ │ │ ├── modify-a-value-reported-in-a-column.md
│ │ │ │ ├── paginate-a-list.md
│ │ │ │ ├── pass-data-to-a-modal-dialog.md
│ │ │ │ ├── react-to-button-click-not-keystrokes.md
│ │ │ │ ├── set-the-initial-value-of-a-select-from-fetched-data.md
│ │ │ │ ├── share-a-modaldialog-across-components.md
│ │ │ │ ├── sync-selections-between-table-and-list-views.md
│ │ │ │ ├── update-ui-optimistically.md
│ │ │ │ ├── use-built-in-form-validation.md
│ │ │ │ └── use-the-same-modaldialog-to-add-or-edit.md
│ │ │ ├── howto.md
│ │ │ ├── intro.md
│ │ │ ├── layout.md
│ │ │ ├── markup.md
│ │ │ ├── mcp.md
│ │ │ ├── modal-dialogs.md
│ │ │ ├── news-and-reviews.md
│ │ │ ├── reactive-intro.md
│ │ │ ├── refactoring.md
│ │ │ ├── routing-and-links.md
│ │ │ ├── samples
│ │ │ │ ├── color-palette.xmlui
│ │ │ │ ├── color-values.xmlui
│ │ │ │ ├── shadow-sizes.xmlui
│ │ │ │ ├── spacing-sizes.xmlui
│ │ │ │ ├── swatch.xmlui
│ │ │ │ ├── theme-gallery-brief.xmlui
│ │ │ │ └── theme-gallery.xmlui
│ │ │ ├── scoping.md
│ │ │ ├── scripting.md
│ │ │ ├── styles-and-themes
│ │ │ │ ├── common-units.md
│ │ │ │ ├── layout-props.md
│ │ │ │ ├── theme-variable-defaults.md
│ │ │ │ ├── theme-variables.md
│ │ │ │ └── themes.md
│ │ │ ├── template-properties.md
│ │ │ ├── test.md
│ │ │ ├── tutorial-01.md
│ │ │ ├── tutorial-02.md
│ │ │ ├── tutorial-03.md
│ │ │ ├── tutorial-04.md
│ │ │ ├── tutorial-05.md
│ │ │ ├── tutorial-06.md
│ │ │ ├── tutorial-07.md
│ │ │ ├── tutorial-08.md
│ │ │ ├── tutorial-09.md
│ │ │ ├── tutorial-10.md
│ │ │ ├── tutorial-11.md
│ │ │ ├── tutorial-12.md
│ │ │ ├── universal-properties.md
│ │ │ ├── user-defined-components.md
│ │ │ ├── vscode.md
│ │ │ ├── working-with-markdown.md
│ │ │ ├── working-with-text.md
│ │ │ ├── xmlui-animations
│ │ │ │ ├── _meta.json
│ │ │ │ ├── _overview.md
│ │ │ │ ├── Animation.md
│ │ │ │ ├── FadeAnimation.md
│ │ │ │ ├── FadeInAnimation.md
│ │ │ │ ├── FadeOutAnimation.md
│ │ │ │ ├── ScaleAnimation.md
│ │ │ │ └── SlideInAnimation.md
│ │ │ ├── xmlui-charts
│ │ │ │ ├── _meta.json
│ │ │ │ ├── _overview.md
│ │ │ │ ├── BarChart.md
│ │ │ │ ├── DonutChart.md
│ │ │ │ ├── LabelList.md
│ │ │ │ ├── Legend.md
│ │ │ │ ├── LineChart.md
│ │ │ │ └── PieChart.md
│ │ │ ├── xmlui-pdf
│ │ │ │ ├── _meta.json
│ │ │ │ ├── _overview.md
│ │ │ │ └── Pdf.md
│ │ │ └── xmlui-spreadsheet
│ │ │ ├── _meta.json
│ │ │ ├── _overview.md
│ │ │ └── Spreadsheet.md
│ │ ├── resources
│ │ │ ├── devdocs
│ │ │ │ ├── debug-proxy-object-2.png
│ │ │ │ ├── debug-proxy-object.png
│ │ │ │ ├── table_editor_01.png
│ │ │ │ ├── table_editor_02.png
│ │ │ │ ├── table_editor_03.png
│ │ │ │ ├── table_editor_04.png
│ │ │ │ ├── table_editor_05.png
│ │ │ │ ├── table_editor_06.png
│ │ │ │ ├── table_editor_07.png
│ │ │ │ ├── table_editor_08.png
│ │ │ │ ├── table_editor_09.png
│ │ │ │ ├── table_editor_10.png
│ │ │ │ ├── table_editor_11.png
│ │ │ │ ├── table-editor-01.png
│ │ │ │ ├── table-editor-02.png
│ │ │ │ ├── table-editor-03.png
│ │ │ │ ├── table-editor-04.png
│ │ │ │ ├── table-editor-06.png
│ │ │ │ ├── table-editor-07.png
│ │ │ │ ├── table-editor-08.png
│ │ │ │ ├── table-editor-09.png
│ │ │ │ └── xmlui-rendering-of-tiptap-markdown.png
│ │ │ ├── favicon.ico
│ │ │ ├── files
│ │ │ │ ├── clients.json
│ │ │ │ ├── daily-revenue.json
│ │ │ │ ├── dashboard-stats.json
│ │ │ │ ├── demo.xmlui
│ │ │ │ ├── demo.xmlui.xs
│ │ │ │ ├── downloads
│ │ │ │ │ └── downloads.json
│ │ │ │ ├── for-download
│ │ │ │ │ ├── index-with-api.html
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── mockApi.js
│ │ │ │ │ ├── start-darwin.sh
│ │ │ │ │ ├── start-linux.sh
│ │ │ │ │ ├── start.bat
│ │ │ │ │ └── xmlui
│ │ │ │ │ └── xmlui-standalone.umd.js
│ │ │ │ ├── getting-started
│ │ │ │ │ ├── cl-tutorial-final.zip
│ │ │ │ │ ├── cl-tutorial.zip
│ │ │ │ │ ├── cl-tutorial2.zip
│ │ │ │ │ ├── cl-tutorial3.zip
│ │ │ │ │ ├── cl-tutorial4.zip
│ │ │ │ │ ├── cl-tutorial5.zip
│ │ │ │ │ ├── cl-tutorial6.zip
│ │ │ │ │ ├── getting-started.zip
│ │ │ │ │ ├── hello-xmlui.zip
│ │ │ │ │ ├── xmlui-empty.zip
│ │ │ │ │ └── xmlui-starter.zip
│ │ │ │ ├── howto
│ │ │ │ │ └── component-icons
│ │ │ │ │ └── up-arrow.svg
│ │ │ │ ├── invoices.json
│ │ │ │ ├── monthly-status.json
│ │ │ │ ├── news-and-reviews.json
│ │ │ │ ├── products.json
│ │ │ │ ├── releases.json
│ │ │ │ ├── tutorials
│ │ │ │ │ ├── datasource
│ │ │ │ │ │ └── api.ts
│ │ │ │ │ └── p2do
│ │ │ │ │ ├── api.ts
│ │ │ │ │ └── todo-logo.svg
│ │ │ │ └── xmlui.json
│ │ │ ├── github.svg
│ │ │ ├── images
│ │ │ │ ├── apiaction-tutorial
│ │ │ │ │ ├── add-success.png
│ │ │ │ │ ├── apiaction-param.png
│ │ │ │ │ ├── change-completed.png
│ │ │ │ │ ├── change-in-progress.png
│ │ │ │ │ ├── confirm-delete.png
│ │ │ │ │ ├── data-error.png
│ │ │ │ │ ├── data-progress.png
│ │ │ │ │ ├── data-success.png
│ │ │ │ │ ├── display-1.png
│ │ │ │ │ ├── item-deleted.png
│ │ │ │ │ ├── item-updated.png
│ │ │ │ │ ├── missing-api-key.png
│ │ │ │ │ ├── new-item-added.png
│ │ │ │ │ └── test-message.png
│ │ │ │ ├── chat-api
│ │ │ │ │ └── domain-model.svg
│ │ │ │ ├── components
│ │ │ │ │ ├── image
│ │ │ │ │ │ └── breakfast.jpg
│ │ │ │ │ ├── markdown
│ │ │ │ │ │ └── colors.png
│ │ │ │ │ └── modal
│ │ │ │ │ ├── deep_link_dialog_1.jpg
│ │ │ │ │ └── deep_link_dialog_2.jpg
│ │ │ │ ├── create-apps
│ │ │ │ │ ├── collapsed-vertical.png
│ │ │ │ │ ├── using-forms-warning-dialog.png
│ │ │ │ │ └── using-forms.png
│ │ │ │ ├── datasource-tutorial
│ │ │ │ │ ├── data-with-header.png
│ │ │ │ │ ├── filtered-data.png
│ │ │ │ │ ├── filtered-items.png
│ │ │ │ │ ├── initial-page-items.png
│ │ │ │ │ ├── list-items.png
│ │ │ │ │ ├── next-page-items.png
│ │ │ │ │ ├── no-data.png
│ │ │ │ │ ├── pagination-1.jpg
│ │ │ │ │ ├── pagination-1.png
│ │ │ │ │ ├── polling-1.png
│ │ │ │ │ ├── refetch-data.png
│ │ │ │ │ ├── slow-loading.png
│ │ │ │ │ ├── test-message.png
│ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ ├── unconventional-data.png
│ │ │ │ │ └── unfiltered-items.png
│ │ │ │ ├── flower.jpg
│ │ │ │ ├── get-started
│ │ │ │ │ ├── add-new-contact.png
│ │ │ │ │ ├── app-modified.png
│ │ │ │ │ ├── app-start.png
│ │ │ │ │ ├── app-with-boxes.png
│ │ │ │ │ ├── app-with-toast.png
│ │ │ │ │ ├── boilerplate-structure.png
│ │ │ │ │ ├── cl-initial.png
│ │ │ │ │ ├── cl-start.png
│ │ │ │ │ ├── contact-counts.png
│ │ │ │ │ ├── contact-dialog-title.png
│ │ │ │ │ ├── contact-dialog.png
│ │ │ │ │ ├── contact-menus.png
│ │ │ │ │ ├── contact-predicates.png
│ │ │ │ │ ├── context-menu.png
│ │ │ │ │ ├── dashboard-numbers.png
│ │ │ │ │ ├── default-contact-list.png
│ │ │ │ │ ├── delete-contact.png
│ │ │ │ │ ├── delete-task.png
│ │ │ │ │ ├── detailed-template.png
│ │ │ │ │ ├── edit-contact-details.png
│ │ │ │ │ ├── edited-contact-saved.png
│ │ │ │ │ ├── empty-sections.png
│ │ │ │ │ ├── filter-completed.png
│ │ │ │ │ ├── fullwidth-desktop.png
│ │ │ │ │ ├── fullwidth-mobile.png
│ │ │ │ │ ├── initial-table.png
│ │ │ │ │ ├── items-and-badges.png
│ │ │ │ │ ├── loading-message.png
│ │ │ │ │ ├── new-contact-button.png
│ │ │ │ │ ├── new-contact-saved.png
│ │ │ │ │ ├── no-empty-sections.png
│ │ │ │ │ ├── personal-todo-initial.png
│ │ │ │ │ ├── piechart.png
│ │ │ │ │ ├── review-today.png
│ │ │ │ │ ├── rudimentary-dashboard.png
│ │ │ │ │ ├── section-collapsed.png
│ │ │ │ │ ├── sectioned-items.png
│ │ │ │ │ ├── sections-ordered.png
│ │ │ │ │ ├── spacex-list-with-links.png
│ │ │ │ │ ├── spacex-list.png
│ │ │ │ │ ├── start-personal-todo-1.png
│ │ │ │ │ ├── submit-new-contact.png
│ │ │ │ │ ├── submit-new-task.png
│ │ │ │ │ ├── syntax-highlighting.png
│ │ │ │ │ ├── table-with-badge.png
│ │ │ │ │ ├── template-with-card.png
│ │ │ │ │ ├── test-emulated-api.png
│ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ ├── todo-logo.png
│ │ │ │ │ └── xmlui-tools.png
│ │ │ │ ├── HelloApp.png
│ │ │ │ ├── HelloApp2.png
│ │ │ │ ├── logos
│ │ │ │ │ ├── xmlui1.svg
│ │ │ │ │ ├── xmlui2.svg
│ │ │ │ │ ├── xmlui3.svg
│ │ │ │ │ ├── xmlui4.svg
│ │ │ │ │ ├── xmlui5.svg
│ │ │ │ │ ├── xmlui6.svg
│ │ │ │ │ └── xmlui7.svg
│ │ │ │ ├── pdf
│ │ │ │ │ └── dummy-pdf.jpg
│ │ │ │ ├── rendering-engine
│ │ │ │ │ ├── AppEngine-flow.svg
│ │ │ │ │ ├── Component.svg
│ │ │ │ │ ├── CompoundComponent.svg
│ │ │ │ │ ├── RootComponent.svg
│ │ │ │ │ └── tree-with-containers.svg
│ │ │ │ ├── reviewers-guide
│ │ │ │ │ ├── AppEngine-flow.svg
│ │ │ │ │ └── incbutton-in-action.png
│ │ │ │ ├── tools
│ │ │ │ │ └── boilerplate-structure.png
│ │ │ │ ├── try.svg
│ │ │ │ ├── tutorial
│ │ │ │ │ ├── app-chat-history.png
│ │ │ │ │ ├── app-content-placeholder.png
│ │ │ │ │ ├── app-header-and-content.png
│ │ │ │ │ ├── app-links-channel-selected.png
│ │ │ │ │ ├── app-links-click.png
│ │ │ │ │ ├── app-navigation.png
│ │ │ │ │ ├── finished-ex01.png
│ │ │ │ │ ├── finished-ex02.png
│ │ │ │ │ ├── hello.png
│ │ │ │ │ ├── splash-screen-advanced.png
│ │ │ │ │ ├── splash-screen-after-click.png
│ │ │ │ │ ├── splash-screen-centered.png
│ │ │ │ │ ├── splash-screen-events.png
│ │ │ │ │ ├── splash-screen-expression.png
│ │ │ │ │ ├── splash-screen-reuse-after.png
│ │ │ │ │ ├── splash-screen-reuse-before.png
│ │ │ │ │ └── splash-screen.png
│ │ │ │ └── tutorial-01.png
│ │ │ ├── llms.txt
│ │ │ ├── logo-dark.svg
│ │ │ ├── logo.svg
│ │ │ ├── pg-popout.svg
│ │ │ └── xmlui-logo.svg
│ │ ├── serve.json
│ │ └── web.config
│ ├── scripts
│ │ ├── download-latest-xmlui.js
│ │ ├── generate-rss.js
│ │ ├── get-releases.js
│ │ └── utils.js
│ ├── src
│ │ ├── components
│ │ │ ├── BlogOverview.xmlui
│ │ │ ├── BlogPage.xmlui
│ │ │ ├── Boxes.xmlui
│ │ │ ├── Breadcrumb.xmlui
│ │ │ ├── ChangeLog.xmlui
│ │ │ ├── ColorPalette.xmlui
│ │ │ ├── DocumentLinks.xmlui
│ │ │ ├── DocumentPage.xmlui
│ │ │ ├── DocumentPageNoTOC.xmlui
│ │ │ ├── Icons.xmlui
│ │ │ ├── IncButton.xmlui
│ │ │ ├── IncButton2.xmlui
│ │ │ ├── NameValue.xmlui
│ │ │ ├── PageNotFound.xmlui
│ │ │ ├── PaletteItem.xmlui
│ │ │ ├── Palettes.xmlui
│ │ │ ├── SectionHeader.xmlui
│ │ │ ├── TBD.xmlui
│ │ │ ├── Test.xmlui
│ │ │ ├── ThemesIntro.xmlui
│ │ │ ├── ThousandThemes.xmlui
│ │ │ ├── TubeStops.xmlui
│ │ │ ├── TubeStops.xmlui.xs
│ │ │ └── TwoColumnCode.xmlui
│ │ ├── config.ts
│ │ ├── Main.xmlui
│ │ └── themes
│ │ ├── docs-theme.ts
│ │ ├── earthtone.ts
│ │ ├── xmlui-gray-on-default.ts
│ │ ├── xmlui-green-on-default.ts
│ │ └── xmlui-orange-on-default.ts
│ └── tsconfig.json
├── LICENSE
├── package-lock.json
├── package.json
├── packages
│ ├── tsconfig.json
│ ├── xmlui-animations
│ │ ├── .gitignore
│ │ ├── CHANGELOG.md
│ │ ├── demo
│ │ │ └── Main.xmlui
│ │ ├── index.html
│ │ ├── index.ts
│ │ ├── meta
│ │ │ └── componentsMetadata.ts
│ │ ├── package.json
│ │ └── src
│ │ ├── Animation.tsx
│ │ ├── AnimationNative.tsx
│ │ ├── FadeAnimation.tsx
│ │ ├── FadeInAnimation.tsx
│ │ ├── FadeOutAnimation.tsx
│ │ ├── index.tsx
│ │ ├── ScaleAnimation.tsx
│ │ └── SlideInAnimation.tsx
│ ├── xmlui-devtools
│ │ ├── .gitignore
│ │ ├── CHANGELOG.md
│ │ ├── demo
│ │ │ └── Main.xmlui
│ │ ├── index.html
│ │ ├── index.ts
│ │ ├── meta
│ │ │ └── componentsMetadata.ts
│ │ ├── package.json
│ │ ├── src
│ │ │ ├── devtools
│ │ │ │ ├── DevTools.tsx
│ │ │ │ ├── DevToolsNative.module.scss
│ │ │ │ ├── DevToolsNative.tsx
│ │ │ │ ├── ModalDialog.module.scss
│ │ │ │ ├── ModalDialog.tsx
│ │ │ │ ├── ModalVisibilityContext.tsx
│ │ │ │ ├── Tooltip.module.scss
│ │ │ │ ├── Tooltip.tsx
│ │ │ │ └── utils.ts
│ │ │ ├── editor
│ │ │ │ └── Editor.tsx
│ │ │ └── index.tsx
│ │ └── vite.config-overrides.ts
│ ├── xmlui-hello-world
│ │ ├── .gitignore
│ │ ├── index.ts
│ │ ├── meta
│ │ │ └── componentsMetadata.ts
│ │ ├── package.json
│ │ └── src
│ │ ├── HelloWorld.module.scss
│ │ ├── HelloWorld.tsx
│ │ ├── HelloWorldNative.tsx
│ │ └── index.tsx
│ ├── xmlui-os-frames
│ │ ├── .gitignore
│ │ ├── demo
│ │ │ └── Main.xmlui
│ │ ├── index.html
│ │ ├── index.ts
│ │ ├── meta
│ │ │ └── componentsMetadata.ts
│ │ ├── package.json
│ │ └── src
│ │ ├── index.tsx
│ │ ├── IPhoneFrame.module.scss
│ │ ├── IPhoneFrame.tsx
│ │ ├── MacOSAppFrame.module.scss
│ │ ├── MacOSAppFrame.tsx
│ │ ├── WindowsAppFrame.module.scss
│ │ └── WindowsAppFrame.tsx
│ ├── xmlui-pdf
│ │ ├── .gitignore
│ │ ├── CHANGELOG.md
│ │ ├── demo
│ │ │ ├── components
│ │ │ │ └── Pdf.xmlui
│ │ │ └── Main.xmlui
│ │ ├── index.html
│ │ ├── index.ts
│ │ ├── meta
│ │ │ └── componentsMetadata.ts
│ │ ├── package.json
│ │ └── src
│ │ ├── index.tsx
│ │ ├── LazyPdfNative.tsx
│ │ ├── Pdf.module.scss
│ │ └── Pdf.tsx
│ ├── xmlui-playground
│ │ ├── .gitignore
│ │ ├── CHANGELOG.md
│ │ ├── demo
│ │ │ └── Main.xmlui
│ │ ├── index.html
│ │ ├── index.ts
│ │ ├── meta
│ │ │ └── componentsMetadata.ts
│ │ ├── package.json
│ │ └── src
│ │ ├── hooks
│ │ │ ├── usePlayground.ts
│ │ │ └── useToast.ts
│ │ ├── index.tsx
│ │ ├── playground
│ │ │ ├── Box.module.scss
│ │ │ ├── Box.tsx
│ │ │ ├── CodeSelector.tsx
│ │ │ ├── ConfirmationDialog.module.scss
│ │ │ ├── ConfirmationDialog.tsx
│ │ │ ├── Editor.tsx
│ │ │ ├── Header.module.scss
│ │ │ ├── Header.tsx
│ │ │ ├── Playground.tsx
│ │ │ ├── PlaygroundContent.module.scss
│ │ │ ├── PlaygroundContent.tsx
│ │ │ ├── PlaygroundNative.module.scss
│ │ │ ├── PlaygroundNative.tsx
│ │ │ ├── Preview.module.scss
│ │ │ ├── Preview.tsx
│ │ │ ├── Select.module.scss
│ │ │ ├── StandalonePlayground.tsx
│ │ │ ├── StandalonePlaygroundNative.module.scss
│ │ │ ├── StandalonePlaygroundNative.tsx
│ │ │ ├── ThemeSwitcher.module.scss
│ │ │ ├── ThemeSwitcher.tsx
│ │ │ ├── ToneSwitcher.tsx
│ │ │ ├── Tooltip.module.scss
│ │ │ ├── Tooltip.tsx
│ │ │ └── utils.ts
│ │ ├── providers
│ │ │ ├── Toast.module.scss
│ │ │ └── ToastProvider.tsx
│ │ ├── state
│ │ │ └── store.ts
│ │ ├── themes
│ │ │ └── theme.ts
│ │ └── utils
│ │ └── helpers.ts
│ ├── xmlui-search
│ │ ├── .gitignore
│ │ ├── CHANGELOG.md
│ │ ├── demo
│ │ │ └── Main.xmlui
│ │ ├── index.html
│ │ ├── index.ts
│ │ ├── meta
│ │ │ └── componentsMetadata.ts
│ │ ├── package.json
│ │ └── src
│ │ ├── index.tsx
│ │ ├── Search.module.scss
│ │ └── Search.tsx
│ ├── xmlui-spreadsheet
│ │ ├── .gitignore
│ │ ├── demo
│ │ │ └── Main.xmlui
│ │ ├── index.html
│ │ ├── index.ts
│ │ ├── meta
│ │ │ └── componentsMetadata.ts
│ │ ├── package.json
│ │ └── src
│ │ ├── index.tsx
│ │ ├── Spreadsheet.tsx
│ │ └── SpreadsheetNative.tsx
│ └── xmlui-website-blocks
│ ├── .gitignore
│ ├── CHANGELOG.md
│ ├── demo
│ │ ├── components
│ │ │ ├── HeroBackgroundBreakoutPage.xmlui
│ │ │ ├── HeroBackgroundsPage.xmlui
│ │ │ ├── HeroContentsPage.xmlui
│ │ │ ├── HeroTextAlignPage.xmlui
│ │ │ ├── HeroTextPage.xmlui
│ │ │ └── HeroTonesPage.xmlui
│ │ ├── Main.xmlui
│ │ └── themes
│ │ └── default.ts
│ ├── index.html
│ ├── index.ts
│ ├── meta
│ │ └── componentsMetadata.ts
│ ├── package.json
│ ├── public
│ │ └── resources
│ │ ├── building.jpg
│ │ └── xmlui-logo.svg
│ └── src
│ ├── Carousel
│ │ ├── Carousel.module.scss
│ │ ├── Carousel.tsx
│ │ ├── CarouselContext.tsx
│ │ └── CarouselNative.tsx
│ ├── FancyButton
│ │ ├── FancyButton.module.scss
│ │ ├── FancyButton.tsx
│ │ └── FancyButton.xmlui
│ ├── Hello
│ │ ├── Hello.tsx
│ │ ├── Hello.xmlui
│ │ └── Hello.xmlui.xs
│ ├── HeroSection
│ │ ├── HeroSection.module.scss
│ │ ├── HeroSection.spec.ts
│ │ ├── HeroSection.tsx
│ │ └── HeroSectionNative.tsx
│ ├── index.tsx
│ ├── ScrollToTop
│ │ ├── ScrollToTop.module.scss
│ │ ├── ScrollToTop.tsx
│ │ └── ScrollToTopNative.tsx
│ └── vite-env.d.ts
├── playwright.config.ts
├── README.md
├── tools
│ ├── codefence
│ │ └── xmlui-code-fence-docs.md
│ ├── create-app
│ │ ├── .gitignore
│ │ ├── CHANGELOG.md
│ │ ├── create-app.ts
│ │ ├── helpers
│ │ │ ├── copy.ts
│ │ │ ├── get-pkg-manager.ts
│ │ │ ├── git.ts
│ │ │ ├── install.ts
│ │ │ ├── is-folder-empty.ts
│ │ │ ├── is-writeable.ts
│ │ │ ├── make-dir.ts
│ │ │ └── validate-pkg.ts
│ │ ├── index.ts
│ │ ├── package.json
│ │ ├── templates
│ │ │ ├── default
│ │ │ │ └── ts
│ │ │ │ ├── gitignore
│ │ │ │ ├── index.html
│ │ │ │ ├── index.ts
│ │ │ │ ├── public
│ │ │ │ │ ├── mockServiceWorker.js
│ │ │ │ │ ├── resources
│ │ │ │ │ │ ├── favicon.ico
│ │ │ │ │ │ └── xmlui-logo.svg
│ │ │ │ │ └── serve.json
│ │ │ │ └── src
│ │ │ │ ├── components
│ │ │ │ │ ├── ApiAware.xmlui
│ │ │ │ │ ├── Home.xmlui
│ │ │ │ │ ├── IncButton.xmlui
│ │ │ │ │ └── PagePanel.xmlui
│ │ │ │ ├── config.ts
│ │ │ │ └── Main.xmlui
│ │ │ ├── index.ts
│ │ │ └── types.ts
│ │ └── tsconfig.json
│ ├── create-xmlui-hello-world
│ │ ├── index.js
│ │ └── package.json
│ └── vscode
│ ├── .gitignore
│ ├── .vscode
│ │ ├── launch.json
│ │ └── tasks.json
│ ├── .vscodeignore
│ ├── build.sh
│ ├── CHANGELOG.md
│ ├── esbuild.js
│ ├── eslint.config.mjs
│ ├── formatter-docs.md
│ ├── generate-test-sample.sh
│ ├── LICENSE.md
│ ├── package-lock.json
│ ├── package.json
│ ├── README.md
│ ├── resources
│ │ ├── xmlui-logo.png
│ │ └── xmlui-markup-syntax-highlighting.png
│ ├── src
│ │ ├── extension.ts
│ │ └── server.ts
│ ├── syntaxes
│ │ └── xmlui.tmLanguage.json
│ ├── test-samples
│ │ └── sample.xmlui
│ ├── tsconfig.json
│ └── tsconfig.tsbuildinfo
├── turbo.json
└── xmlui
├── .gitignore
├── bin
│ ├── bootstrap.cjs
│ ├── bootstrap.js
│ ├── build-lib.ts
│ ├── build.ts
│ ├── index.ts
│ ├── preview.ts
│ ├── start.ts
│ ├── vite-xmlui-plugin.ts
│ └── viteConfig.ts
├── CHANGELOG.md
├── conventions
│ ├── component-qa-checklist.md
│ ├── copilot-conventions.md
│ ├── create-xmlui-components.md
│ ├── mermaid.md
│ ├── testing-conventions.md
│ └── xmlui-in-a-nutshell.md
├── dev-docs
│ ├── accessibility.md
│ ├── build-system.md
│ ├── build-xmlui.md
│ ├── component-behaviors.md
│ ├── component-metadata.md
│ ├── components-with-options.md
│ ├── containers.md
│ ├── data-operations.md
│ ├── glossary.md
│ ├── index.md
│ ├── next
│ │ ├── component-dev-guide.md
│ │ ├── configuration-management-enhancement-summary.md
│ │ ├── documentation-scripts-refactoring-complete-summary.md
│ │ ├── documentation-scripts-refactoring-plan.md
│ │ ├── duplicate-pattern-extraction-summary.md
│ │ ├── error-handling-standardization-summary.md
│ │ ├── generating-component-reference.md
│ │ ├── index.md
│ │ ├── logging-consistency-implementation-summary.md
│ │ ├── project-build.md
│ │ ├── project-structure.md
│ │ ├── theme-context.md
│ │ ├── tiptap-design-considerations.md
│ │ ├── working-with-code.md
│ │ ├── xmlui-runtime-architecture
│ │ └── xmlui-wcag-accessibility-report.md
│ ├── react-fundamentals.md
│ ├── release-method.md
│ ├── standalone-app.md
│ ├── theme-variables-refactoring.md
│ ├── ud-components.md
│ └── xmlui-repo.md
├── package.json
├── scripts
│ ├── coverage-only.js
│ ├── e2e-test-summary.js
│ ├── extract-component-metadata.js
│ ├── generate-docs
│ │ ├── build-downloads-map.mjs
│ │ ├── build-pages-map.mjs
│ │ ├── components-config.json
│ │ ├── configuration-management.mjs
│ │ ├── constants.mjs
│ │ ├── create-theme-files.mjs
│ │ ├── DocsGenerator.mjs
│ │ ├── error-handling.mjs
│ │ ├── extensions-config.json
│ │ ├── folders.mjs
│ │ ├── generate-summary-files.mjs
│ │ ├── get-docs.mjs
│ │ ├── input-handler.mjs
│ │ ├── logger.mjs
│ │ ├── logging-standards.mjs
│ │ ├── MetadataProcessor.mjs
│ │ ├── pattern-utilities.mjs
│ │ └── utils.mjs
│ ├── generate-metadata-markdown.js
│ ├── get-langserver-metadata.js
│ ├── inline-links.mjs
│ └── README-e2e-summary.md
├── src
│ ├── abstractions
│ │ ├── _conventions.md
│ │ ├── ActionDefs.ts
│ │ ├── AppContextDefs.ts
│ │ ├── ComponentDefs.ts
│ │ ├── ContainerDefs.ts
│ │ ├── ExtensionDefs.ts
│ │ ├── FunctionDefs.ts
│ │ ├── RendererDefs.ts
│ │ ├── scripting
│ │ │ ├── BlockScope.ts
│ │ │ ├── Compilation.ts
│ │ │ ├── LogicalThread.ts
│ │ │ ├── LoopScope.ts
│ │ │ ├── modules.ts
│ │ │ ├── ScriptParserError.ts
│ │ │ ├── Token.ts
│ │ │ ├── TryScope.ts
│ │ │ └── TryScopeExp.ts
│ │ └── ThemingDefs.ts
│ ├── components
│ │ ├── _conventions.md
│ │ ├── abstractions.ts
│ │ ├── Accordion
│ │ │ ├── Accordion.md
│ │ │ ├── Accordion.module.scss
│ │ │ ├── Accordion.spec.ts
│ │ │ ├── Accordion.tsx
│ │ │ ├── AccordionContext.tsx
│ │ │ ├── AccordionItem.tsx
│ │ │ ├── AccordionItemNative.tsx
│ │ │ └── AccordionNative.tsx
│ │ ├── Animation
│ │ │ └── AnimationNative.tsx
│ │ ├── APICall
│ │ │ ├── APICall.md
│ │ │ ├── APICall.spec.ts
│ │ │ ├── APICall.tsx
│ │ │ └── APICallNative.tsx
│ │ ├── App
│ │ │ ├── App.md
│ │ │ ├── App.module.scss
│ │ │ ├── App.spec.ts
│ │ │ ├── App.tsx
│ │ │ ├── AppLayoutContext.ts
│ │ │ ├── AppNative.tsx
│ │ │ ├── AppStateContext.ts
│ │ │ ├── doc-resources
│ │ │ │ ├── condensed-sticky.xmlui
│ │ │ │ ├── condensed.xmlui
│ │ │ │ ├── horizontal-sticky.xmlui
│ │ │ │ ├── horizontal.xmlui
│ │ │ │ ├── vertical-full-header.xmlui
│ │ │ │ ├── vertical-sticky.xmlui
│ │ │ │ └── vertical.xmlui
│ │ │ ├── IndexerContext.ts
│ │ │ ├── LinkInfoContext.ts
│ │ │ ├── SearchContext.tsx
│ │ │ ├── Sheet.module.scss
│ │ │ └── Sheet.tsx
│ │ ├── AppHeader
│ │ │ ├── AppHeader.md
│ │ │ ├── AppHeader.module.scss
│ │ │ ├── AppHeader.spec.ts
│ │ │ ├── AppHeader.tsx
│ │ │ └── AppHeaderNative.tsx
│ │ ├── AppState
│ │ │ ├── AppState.md
│ │ │ ├── AppState.spec.ts
│ │ │ ├── AppState.tsx
│ │ │ └── AppStateNative.tsx
│ │ ├── AutoComplete
│ │ │ ├── AutoComplete.md
│ │ │ ├── AutoComplete.module.scss
│ │ │ ├── AutoComplete.spec.ts
│ │ │ ├── AutoComplete.tsx
│ │ │ ├── AutoCompleteContext.tsx
│ │ │ └── AutoCompleteNative.tsx
│ │ ├── Avatar
│ │ │ ├── Avatar.md
│ │ │ ├── Avatar.module.scss
│ │ │ ├── Avatar.spec.ts
│ │ │ ├── Avatar.tsx
│ │ │ └── AvatarNative.tsx
│ │ ├── Backdrop
│ │ │ ├── Backdrop.md
│ │ │ ├── Backdrop.module.scss
│ │ │ ├── Backdrop.spec.ts
│ │ │ ├── Backdrop.tsx
│ │ │ └── BackdropNative.tsx
│ │ ├── Badge
│ │ │ ├── Badge.md
│ │ │ ├── Badge.module.scss
│ │ │ ├── Badge.spec.ts
│ │ │ ├── Badge.tsx
│ │ │ └── BadgeNative.tsx
│ │ ├── Bookmark
│ │ │ ├── Bookmark.md
│ │ │ ├── Bookmark.module.scss
│ │ │ ├── Bookmark.spec.ts
│ │ │ ├── Bookmark.tsx
│ │ │ └── BookmarkNative.tsx
│ │ ├── Breakout
│ │ │ ├── Breakout.module.scss
│ │ │ ├── Breakout.spec.ts
│ │ │ ├── Breakout.tsx
│ │ │ └── BreakoutNative.tsx
│ │ ├── Button
│ │ │ ├── Button-style.spec.ts
│ │ │ ├── Button.md
│ │ │ ├── Button.module.scss
│ │ │ ├── Button.spec.ts
│ │ │ ├── Button.tsx
│ │ │ └── ButtonNative.tsx
│ │ ├── Card
│ │ │ ├── Card.md
│ │ │ ├── Card.module.scss
│ │ │ ├── Card.spec.ts
│ │ │ ├── Card.tsx
│ │ │ └── CardNative.tsx
│ │ ├── Carousel
│ │ │ ├── Carousel.md
│ │ │ ├── Carousel.module.scss
│ │ │ ├── Carousel.spec.ts
│ │ │ ├── Carousel.tsx
│ │ │ ├── CarouselContext.tsx
│ │ │ ├── CarouselItem.tsx
│ │ │ ├── CarouselItemNative.tsx
│ │ │ └── CarouselNative.tsx
│ │ ├── ChangeListener
│ │ │ ├── ChangeListener.md
│ │ │ ├── ChangeListener.spec.ts
│ │ │ ├── ChangeListener.tsx
│ │ │ └── ChangeListenerNative.tsx
│ │ ├── chart-color-schemes.ts
│ │ ├── Charts
│ │ │ ├── AreaChart
│ │ │ │ ├── AreaChart.md
│ │ │ │ ├── AreaChart.spec.ts
│ │ │ │ ├── AreaChart.tsx
│ │ │ │ └── AreaChartNative.tsx
│ │ │ ├── BarChart
│ │ │ │ ├── BarChart.md
│ │ │ │ ├── BarChart.module.scss
│ │ │ │ ├── BarChart.spec.ts
│ │ │ │ ├── BarChart.tsx
│ │ │ │ └── BarChartNative.tsx
│ │ │ ├── DonutChart
│ │ │ │ ├── DonutChart.spec.ts
│ │ │ │ └── DonutChart.tsx
│ │ │ ├── LabelList
│ │ │ │ ├── LabelList.module.scss
│ │ │ │ ├── LabelList.spec.ts
│ │ │ │ ├── LabelList.tsx
│ │ │ │ └── LabelListNative.tsx
│ │ │ ├── Legend
│ │ │ │ ├── Legend.spec.ts
│ │ │ │ ├── Legend.tsx
│ │ │ │ └── LegendNative.tsx
│ │ │ ├── LineChart
│ │ │ │ ├── LineChart.md
│ │ │ │ ├── LineChart.module.scss
│ │ │ │ ├── LineChart.spec.ts
│ │ │ │ ├── LineChart.tsx
│ │ │ │ └── LineChartNative.tsx
│ │ │ ├── PieChart
│ │ │ │ ├── PieChart.md
│ │ │ │ ├── PieChart.spec.ts
│ │ │ │ ├── PieChart.tsx
│ │ │ │ ├── PieChartNative.module.scss
│ │ │ │ └── PieChartNative.tsx
│ │ │ ├── RadarChart
│ │ │ │ ├── RadarChart.md
│ │ │ │ ├── RadarChart.spec.ts
│ │ │ │ ├── RadarChart.tsx
│ │ │ │ └── RadarChartNative.tsx
│ │ │ ├── Tooltip
│ │ │ │ ├── TooltipContent.module.scss
│ │ │ │ ├── TooltipContent.spec.ts
│ │ │ │ └── TooltipContent.tsx
│ │ │ └── utils
│ │ │ ├── abstractions.ts
│ │ │ └── ChartProvider.tsx
│ │ ├── Checkbox
│ │ │ ├── Checkbox.md
│ │ │ ├── Checkbox.spec.ts
│ │ │ └── Checkbox.tsx
│ │ ├── CodeBlock
│ │ │ ├── CodeBlock.module.scss
│ │ │ ├── CodeBlock.spec.ts
│ │ │ ├── CodeBlock.tsx
│ │ │ ├── CodeBlockNative.tsx
│ │ │ └── highlight-code.ts
│ │ ├── collectedComponentMetadata.ts
│ │ ├── ColorPicker
│ │ │ ├── ColorPicker.md
│ │ │ ├── ColorPicker.module.scss
│ │ │ ├── ColorPicker.spec.ts
│ │ │ ├── ColorPicker.tsx
│ │ │ └── ColorPickerNative.tsx
│ │ ├── Column
│ │ │ ├── Column.md
│ │ │ ├── Column.tsx
│ │ │ ├── ColumnNative.tsx
│ │ │ ├── doc-resources
│ │ │ │ └── list-component-data.js
│ │ │ └── TableContext.tsx
│ │ ├── component-utils.ts
│ │ ├── ComponentProvider.tsx
│ │ ├── ComponentRegistryContext.tsx
│ │ ├── container-helpers.tsx
│ │ ├── ContentSeparator
│ │ │ ├── ContentSeparator.md
│ │ │ ├── ContentSeparator.module.scss
│ │ │ ├── ContentSeparator.spec.ts
│ │ │ ├── ContentSeparator.tsx
│ │ │ └── ContentSeparatorNative.tsx
│ │ ├── DataSource
│ │ │ ├── DataSource.md
│ │ │ └── DataSource.tsx
│ │ ├── DateInput
│ │ │ ├── DateInput.md
│ │ │ ├── DateInput.module.scss
│ │ │ ├── DateInput.spec.ts
│ │ │ ├── DateInput.tsx
│ │ │ └── DateInputNative.tsx
│ │ ├── DatePicker
│ │ │ ├── DatePicker.md
│ │ │ ├── DatePicker.module.scss
│ │ │ ├── DatePicker.spec.ts
│ │ │ ├── DatePicker.tsx
│ │ │ └── DatePickerNative.tsx
│ │ ├── DropdownMenu
│ │ │ ├── DropdownMenu.md
│ │ │ ├── DropdownMenu.module.scss
│ │ │ ├── DropdownMenu.spec.ts
│ │ │ ├── DropdownMenu.tsx
│ │ │ ├── DropdownMenuNative.tsx
│ │ │ ├── MenuItem.md
│ │ │ └── SubMenuItem.md
│ │ ├── EmojiSelector
│ │ │ ├── EmojiSelector.md
│ │ │ ├── EmojiSelector.spec.ts
│ │ │ ├── EmojiSelector.tsx
│ │ │ └── EmojiSelectorNative.tsx
│ │ ├── ExpandableItem
│ │ │ ├── ExpandableItem.module.scss
│ │ │ ├── ExpandableItem.spec.ts
│ │ │ ├── ExpandableItem.tsx
│ │ │ └── ExpandableItemNative.tsx
│ │ ├── FileInput
│ │ │ ├── FileInput.md
│ │ │ ├── FileInput.module.scss
│ │ │ ├── FileInput.spec.ts
│ │ │ ├── FileInput.tsx
│ │ │ └── FileInputNative.tsx
│ │ ├── FileUploadDropZone
│ │ │ ├── FileUploadDropZone.md
│ │ │ ├── FileUploadDropZone.module.scss
│ │ │ ├── FileUploadDropZone.spec.ts
│ │ │ ├── FileUploadDropZone.tsx
│ │ │ └── FileUploadDropZoneNative.tsx
│ │ ├── FlowLayout
│ │ │ ├── FlowLayout.md
│ │ │ ├── FlowLayout.module.scss
│ │ │ ├── FlowLayout.spec.ts
│ │ │ ├── FlowLayout.spec.ts-snapshots
│ │ │ │ └── Edge-cases-boxShadow-is-not-clipped-1-non-smoke-darwin.png
│ │ │ ├── FlowLayout.tsx
│ │ │ └── FlowLayoutNative.tsx
│ │ ├── Footer
│ │ │ ├── Footer.md
│ │ │ ├── Footer.module.scss
│ │ │ ├── Footer.spec.ts
│ │ │ ├── Footer.tsx
│ │ │ └── FooterNative.tsx
│ │ ├── Form
│ │ │ ├── Form.md
│ │ │ ├── Form.module.scss
│ │ │ ├── Form.spec.ts
│ │ │ ├── Form.tsx
│ │ │ ├── formActions.ts
│ │ │ ├── FormContext.ts
│ │ │ └── FormNative.tsx
│ │ ├── FormItem
│ │ │ ├── FormItem.md
│ │ │ ├── FormItem.module.scss
│ │ │ ├── FormItem.spec.ts
│ │ │ ├── FormItem.tsx
│ │ │ ├── FormItemNative.tsx
│ │ │ ├── HelperText.module.scss
│ │ │ ├── HelperText.tsx
│ │ │ ├── ItemWithLabel.tsx
│ │ │ └── Validations.ts
│ │ ├── FormSection
│ │ │ ├── FormSection.md
│ │ │ ├── FormSection.ts
│ │ │ └── FormSection.xmlui
│ │ ├── Fragment
│ │ │ ├── Fragment.spec.ts
│ │ │ └── Fragment.tsx
│ │ ├── Heading
│ │ │ ├── abstractions.ts
│ │ │ ├── H1.md
│ │ │ ├── H1.spec.ts
│ │ │ ├── H2.md
│ │ │ ├── H2.spec.ts
│ │ │ ├── H3.md
│ │ │ ├── H3.spec.ts
│ │ │ ├── H4.md
│ │ │ ├── H4.spec.ts
│ │ │ ├── H5.md
│ │ │ ├── H5.spec.ts
│ │ │ ├── H6.md
│ │ │ ├── H6.spec.ts
│ │ │ ├── Heading.md
│ │ │ ├── Heading.module.scss
│ │ │ ├── Heading.spec.ts
│ │ │ ├── Heading.tsx
│ │ │ └── HeadingNative.tsx
│ │ ├── HoverCard
│ │ │ ├── HoverCard.tsx
│ │ │ └── HovercardNative.tsx
│ │ ├── HtmlTags
│ │ │ ├── HtmlTags.module.scss
│ │ │ ├── HtmlTags.spec.ts
│ │ │ └── HtmlTags.tsx
│ │ ├── Icon
│ │ │ ├── AdmonitionDanger.tsx
│ │ │ ├── AdmonitionInfo.tsx
│ │ │ ├── AdmonitionNote.tsx
│ │ │ ├── AdmonitionTip.tsx
│ │ │ ├── AdmonitionWarning.tsx
│ │ │ ├── ApiIcon.tsx
│ │ │ ├── ArrowDropDown.module.scss
│ │ │ ├── ArrowDropDown.tsx
│ │ │ ├── ArrowDropUp.module.scss
│ │ │ ├── ArrowDropUp.tsx
│ │ │ ├── ArrowLeft.module.scss
│ │ │ ├── ArrowLeft.tsx
│ │ │ ├── ArrowRight.module.scss
│ │ │ ├── ArrowRight.tsx
│ │ │ ├── Attach.tsx
│ │ │ ├── Binding.module.scss
│ │ │ ├── Binding.tsx
│ │ │ ├── BoardIcon.tsx
│ │ │ ├── BoxIcon.tsx
│ │ │ ├── CheckIcon.tsx
│ │ │ ├── ChevronDownIcon.tsx
│ │ │ ├── ChevronLeft.tsx
│ │ │ ├── ChevronRight.tsx
│ │ │ ├── ChevronUpIcon.tsx
│ │ │ ├── CodeFileIcon.tsx
│ │ │ ├── CodeSandbox.tsx
│ │ │ ├── CompactListIcon.tsx
│ │ │ ├── ContentCopyIcon.tsx
│ │ │ ├── DarkToLightIcon.tsx
│ │ │ ├── DatabaseIcon.module.scss
│ │ │ ├── DatabaseIcon.tsx
│ │ │ ├── DocFileIcon.tsx
│ │ │ ├── DocIcon.tsx
│ │ │ ├── DotMenuHorizontalIcon.tsx
│ │ │ ├── DotMenuIcon.tsx
│ │ │ ├── EmailIcon.tsx
│ │ │ ├── EmptyFolderIcon.tsx
│ │ │ ├── ErrorIcon.tsx
│ │ │ ├── ExpressionIcon.tsx
│ │ │ ├── FillPlusCricleIcon.tsx
│ │ │ ├── FilterIcon.tsx
│ │ │ ├── FolderIcon.tsx
│ │ │ ├── GlobeIcon.tsx
│ │ │ ├── HomeIcon.tsx
│ │ │ ├── HyperLinkIcon.tsx
│ │ │ ├── Icon.md
│ │ │ ├── Icon.module.scss
│ │ │ ├── Icon.spec.ts
│ │ │ ├── Icon.tsx
│ │ │ ├── IconNative.tsx
│ │ │ ├── ImageFileIcon.tsx
│ │ │ ├── Inspect.tsx
│ │ │ ├── LightToDark.tsx
│ │ │ ├── LinkIcon.tsx
│ │ │ ├── ListIcon.tsx
│ │ │ ├── LooseListIcon.tsx
│ │ │ ├── MoonIcon.tsx
│ │ │ ├── MoreOptionsIcon.tsx
│ │ │ ├── NoSortIcon.tsx
│ │ │ ├── PDFIcon.tsx
│ │ │ ├── PenIcon.tsx
│ │ │ ├── PhoneIcon.tsx
│ │ │ ├── PhotoIcon.tsx
│ │ │ ├── PlusIcon.tsx
│ │ │ ├── SearchIcon.tsx
│ │ │ ├── ShareIcon.tsx
│ │ │ ├── SortAscendingIcon.tsx
│ │ │ ├── SortDescendingIcon.tsx
│ │ │ ├── StarsIcon.tsx
│ │ │ ├── SunIcon.tsx
│ │ │ ├── svg
│ │ │ │ ├── admonition_danger.svg
│ │ │ │ ├── admonition_info.svg
│ │ │ │ ├── admonition_note.svg
│ │ │ │ ├── admonition_tip.svg
│ │ │ │ ├── admonition_warning.svg
│ │ │ │ ├── api.svg
│ │ │ │ ├── arrow-dropdown.svg
│ │ │ │ ├── arrow-left.svg
│ │ │ │ ├── arrow-right.svg
│ │ │ │ ├── arrow-up.svg
│ │ │ │ ├── attach.svg
│ │ │ │ ├── binding.svg
│ │ │ │ ├── box.svg
│ │ │ │ ├── bulb.svg
│ │ │ │ ├── code-file.svg
│ │ │ │ ├── code-sandbox.svg
│ │ │ │ ├── dark_to_light.svg
│ │ │ │ ├── database.svg
│ │ │ │ ├── doc.svg
│ │ │ │ ├── empty-folder.svg
│ │ │ │ ├── expression.svg
│ │ │ │ ├── eye-closed.svg
│ │ │ │ ├── eye-dark.svg
│ │ │ │ ├── eye.svg
│ │ │ │ ├── file-text.svg
│ │ │ │ ├── filter.svg
│ │ │ │ ├── folder.svg
│ │ │ │ ├── img.svg
│ │ │ │ ├── inspect.svg
│ │ │ │ ├── light_to_dark.svg
│ │ │ │ ├── moon.svg
│ │ │ │ ├── pdf.svg
│ │ │ │ ├── photo.svg
│ │ │ │ ├── share.svg
│ │ │ │ ├── stars.svg
│ │ │ │ ├── sun.svg
│ │ │ │ ├── trending-down.svg
│ │ │ │ ├── trending-level.svg
│ │ │ │ ├── trending-up.svg
│ │ │ │ ├── txt.svg
│ │ │ │ ├── unknown-file.svg
│ │ │ │ ├── unlink.svg
│ │ │ │ └── xls.svg
│ │ │ ├── TableDeleteColumnIcon.tsx
│ │ │ ├── TableDeleteRowIcon.tsx
│ │ │ ├── TableInsertColumnIcon.tsx
│ │ │ ├── TableInsertRowIcon.tsx
│ │ │ ├── TrashIcon.tsx
│ │ │ ├── TrendingDownIcon.tsx
│ │ │ ├── TrendingLevelIcon.tsx
│ │ │ ├── TrendingUpIcon.tsx
│ │ │ ├── TxtIcon.tsx
│ │ │ ├── UnknownFileIcon.tsx
│ │ │ ├── UnlinkIcon.tsx
│ │ │ ├── UserIcon.tsx
│ │ │ ├── WarningIcon.tsx
│ │ │ └── XlsIcon.tsx
│ │ ├── IconProvider.tsx
│ │ ├── IconRegistryContext.tsx
│ │ ├── IFrame
│ │ │ ├── IFrame.md
│ │ │ ├── IFrame.module.scss
│ │ │ ├── IFrame.spec.ts
│ │ │ ├── IFrame.tsx
│ │ │ └── IFrameNative.tsx
│ │ ├── Image
│ │ │ ├── Image.md
│ │ │ ├── Image.module.scss
│ │ │ ├── Image.spec.ts
│ │ │ ├── Image.tsx
│ │ │ └── ImageNative.tsx
│ │ ├── Input
│ │ │ ├── index.ts
│ │ │ ├── InputAdornment.module.scss
│ │ │ ├── InputAdornment.tsx
│ │ │ ├── InputDivider.module.scss
│ │ │ ├── InputDivider.tsx
│ │ │ ├── InputLabel.module.scss
│ │ │ ├── InputLabel.tsx
│ │ │ ├── PartialInput.module.scss
│ │ │ └── PartialInput.tsx
│ │ ├── InspectButton
│ │ │ ├── InspectButton.module.scss
│ │ │ └── InspectButton.tsx
│ │ ├── Items
│ │ │ ├── Items.md
│ │ │ ├── Items.spec.ts
│ │ │ ├── Items.tsx
│ │ │ └── ItemsNative.tsx
│ │ ├── Link
│ │ │ ├── Link.md
│ │ │ ├── Link.module.scss
│ │ │ ├── Link.spec.ts
│ │ │ ├── Link.tsx
│ │ │ └── LinkNative.tsx
│ │ ├── List
│ │ │ ├── doc-resources
│ │ │ │ └── list-component-data.js
│ │ │ ├── List.md
│ │ │ ├── List.module.scss
│ │ │ ├── List.spec.ts
│ │ │ ├── List.tsx
│ │ │ └── ListNative.tsx
│ │ ├── Logo
│ │ │ ├── doc-resources
│ │ │ │ └── xmlui-logo.svg
│ │ │ ├── Logo.md
│ │ │ ├── Logo.tsx
│ │ │ └── LogoNative.tsx
│ │ ├── Markdown
│ │ │ ├── CodeText.module.scss
│ │ │ ├── CodeText.tsx
│ │ │ ├── Markdown.md
│ │ │ ├── Markdown.module.scss
│ │ │ ├── Markdown.spec.ts
│ │ │ ├── Markdown.tsx
│ │ │ ├── MarkdownNative.tsx
│ │ │ ├── parse-binding-expr.ts
│ │ │ └── utils.ts
│ │ ├── metadata-helpers.ts
│ │ ├── ModalDialog
│ │ │ ├── ConfirmationModalContextProvider.tsx
│ │ │ ├── Dialog.module.scss
│ │ │ ├── Dialog.tsx
│ │ │ ├── ModalDialog.md
│ │ │ ├── ModalDialog.module.scss
│ │ │ ├── ModalDialog.spec.ts
│ │ │ ├── ModalDialog.tsx
│ │ │ ├── ModalDialogNative.tsx
│ │ │ └── ModalVisibilityContext.tsx
│ │ ├── NavGroup
│ │ │ ├── NavGroup.md
│ │ │ ├── NavGroup.module.scss
│ │ │ ├── NavGroup.spec.ts
│ │ │ ├── NavGroup.tsx
│ │ │ ├── NavGroupContext.ts
│ │ │ └── NavGroupNative.tsx
│ │ ├── NavLink
│ │ │ ├── NavLink.md
│ │ │ ├── NavLink.module.scss
│ │ │ ├── NavLink.spec.ts
│ │ │ ├── NavLink.tsx
│ │ │ └── NavLinkNative.tsx
│ │ ├── NavPanel
│ │ │ ├── NavPanel.md
│ │ │ ├── NavPanel.module.scss
│ │ │ ├── NavPanel.spec.ts
│ │ │ ├── NavPanel.tsx
│ │ │ └── NavPanelNative.tsx
│ │ ├── NestedApp
│ │ │ ├── AppWithCodeView.module.scss
│ │ │ ├── AppWithCodeView.tsx
│ │ │ ├── AppWithCodeViewNative.tsx
│ │ │ ├── defaultProps.tsx
│ │ │ ├── logo.svg
│ │ │ ├── NestedApp.module.scss
│ │ │ ├── NestedApp.tsx
│ │ │ ├── NestedAppNative.tsx
│ │ │ ├── Tooltip.module.scss
│ │ │ ├── Tooltip.tsx
│ │ │ └── utils.ts
│ │ ├── NoResult
│ │ │ ├── NoResult.md
│ │ │ ├── NoResult.module.scss
│ │ │ ├── NoResult.spec.ts
│ │ │ ├── NoResult.tsx
│ │ │ └── NoResultNative.tsx
│ │ ├── NumberBox
│ │ │ ├── numberbox-abstractions.ts
│ │ │ ├── NumberBox.md
│ │ │ ├── NumberBox.module.scss
│ │ │ ├── NumberBox.spec.ts
│ │ │ ├── NumberBox.tsx
│ │ │ └── NumberBoxNative.tsx
│ │ ├── Option
│ │ │ ├── Option.md
│ │ │ ├── Option.spec.ts
│ │ │ ├── Option.tsx
│ │ │ ├── OptionNative.tsx
│ │ │ └── OptionTypeProvider.tsx
│ │ ├── PageMetaTitle
│ │ │ ├── PageMetaTilteNative.tsx
│ │ │ ├── PageMetaTitle.md
│ │ │ ├── PageMetaTitle.spec.ts
│ │ │ └── PageMetaTitle.tsx
│ │ ├── Pages
│ │ │ ├── Page.md
│ │ │ ├── Pages.md
│ │ │ ├── Pages.module.scss
│ │ │ ├── Pages.tsx
│ │ │ └── PagesNative.tsx
│ │ ├── Pagination
│ │ │ ├── Pagination.md
│ │ │ ├── Pagination.module.scss
│ │ │ ├── Pagination.spec.ts
│ │ │ ├── Pagination.tsx
│ │ │ └── PaginationNative.tsx
│ │ ├── PositionedContainer
│ │ │ ├── PositionedContainer.module.scss
│ │ │ ├── PositionedContainer.tsx
│ │ │ └── PositionedContainerNative.tsx
│ │ ├── ProfileMenu
│ │ │ ├── ProfileMenu.module.scss
│ │ │ └── ProfileMenu.tsx
│ │ ├── ProgressBar
│ │ │ ├── ProgressBar.md
│ │ │ ├── ProgressBar.module.scss
│ │ │ ├── ProgressBar.spec.ts
│ │ │ ├── ProgressBar.tsx
│ │ │ └── ProgressBarNative.tsx
│ │ ├── Queue
│ │ │ ├── Queue.md
│ │ │ ├── Queue.spec.ts
│ │ │ ├── Queue.tsx
│ │ │ ├── queueActions.ts
│ │ │ └── QueueNative.tsx
│ │ ├── RadioGroup
│ │ │ ├── RadioGroup.md
│ │ │ ├── RadioGroup.module.scss
│ │ │ ├── RadioGroup.spec.ts
│ │ │ ├── RadioGroup.tsx
│ │ │ ├── RadioGroupNative.tsx
│ │ │ ├── RadioItem.tsx
│ │ │ └── RadioItemNative.tsx
│ │ ├── RealTimeAdapter
│ │ │ ├── RealTimeAdapter.tsx
│ │ │ └── RealTimeAdapterNative.tsx
│ │ ├── Redirect
│ │ │ ├── Redirect.md
│ │ │ ├── Redirect.spec.ts
│ │ │ └── Redirect.tsx
│ │ ├── ResponsiveBar
│ │ │ ├── README.md
│ │ │ ├── ResponsiveBar.md
│ │ │ ├── ResponsiveBar.module.scss
│ │ │ ├── ResponsiveBar.spec.ts
│ │ │ ├── ResponsiveBar.tsx
│ │ │ └── ResponsiveBarNative.tsx
│ │ ├── Select
│ │ │ ├── HiddenOption.tsx
│ │ │ ├── OptionContext.ts
│ │ │ ├── Select.md
│ │ │ ├── Select.module.scss
│ │ │ ├── Select.spec.ts
│ │ │ ├── Select.tsx
│ │ │ ├── SelectContext.tsx
│ │ │ └── SelectNative.tsx
│ │ ├── SelectionStore
│ │ │ ├── SelectionStore.md
│ │ │ ├── SelectionStore.tsx
│ │ │ └── SelectionStoreNative.tsx
│ │ ├── Slider
│ │ │ ├── Slider.md
│ │ │ ├── Slider.module.scss
│ │ │ ├── Slider.spec.ts
│ │ │ ├── Slider.tsx
│ │ │ └── SliderNative.tsx
│ │ ├── Slot
│ │ │ ├── Slot.md
│ │ │ ├── Slot.spec.ts
│ │ │ └── Slot.ts
│ │ ├── SlotItem.tsx
│ │ ├── SpaceFiller
│ │ │ ├── SpaceFiller.md
│ │ │ ├── SpaceFiller.module.scss
│ │ │ ├── SpaceFiller.spec.ts
│ │ │ ├── SpaceFiller.tsx
│ │ │ └── SpaceFillerNative.tsx
│ │ ├── Spinner
│ │ │ ├── Spinner.md
│ │ │ ├── Spinner.module.scss
│ │ │ ├── Spinner.spec.ts
│ │ │ ├── Spinner.tsx
│ │ │ └── SpinnerNative.tsx
│ │ ├── Splitter
│ │ │ ├── HSplitter.md
│ │ │ ├── HSplitter.spec.ts
│ │ │ ├── Splitter.md
│ │ │ ├── Splitter.module.scss
│ │ │ ├── Splitter.spec.ts
│ │ │ ├── Splitter.tsx
│ │ │ ├── SplitterNative.tsx
│ │ │ ├── utils.ts
│ │ │ ├── VSplitter.md
│ │ │ └── VSplitter.spec.ts
│ │ ├── Stack
│ │ │ ├── CHStack.md
│ │ │ ├── CHStack.spec.ts
│ │ │ ├── CVStack.md
│ │ │ ├── CVStack.spec.ts
│ │ │ ├── HStack.md
│ │ │ ├── HStack.spec.ts
│ │ │ ├── Stack.md
│ │ │ ├── Stack.module.scss
│ │ │ ├── Stack.spec.ts
│ │ │ ├── Stack.tsx
│ │ │ ├── StackNative.tsx
│ │ │ ├── VStack.md
│ │ │ └── VStack.spec.ts
│ │ ├── StickyBox
│ │ │ ├── StickyBox.md
│ │ │ ├── StickyBox.module.scss
│ │ │ ├── StickyBox.tsx
│ │ │ └── StickyBoxNative.tsx
│ │ ├── Switch
│ │ │ ├── Switch.md
│ │ │ ├── Switch.spec.ts
│ │ │ └── Switch.tsx
│ │ ├── Table
│ │ │ ├── doc-resources
│ │ │ │ └── list-component-data.js
│ │ │ ├── react-table-config.d.ts
│ │ │ ├── Table.md
│ │ │ ├── Table.module.scss
│ │ │ ├── Table.spec.ts
│ │ │ ├── Table.tsx
│ │ │ ├── TableNative.tsx
│ │ │ └── useRowSelection.tsx
│ │ ├── TableOfContents
│ │ │ ├── TableOfContents.module.scss
│ │ │ ├── TableOfContents.spec.ts
│ │ │ ├── TableOfContents.tsx
│ │ │ └── TableOfContentsNative.tsx
│ │ ├── Tabs
│ │ │ ├── TabContext.tsx
│ │ │ ├── TabItem.md
│ │ │ ├── TabItem.tsx
│ │ │ ├── TabItemNative.tsx
│ │ │ ├── Tabs.md
│ │ │ ├── Tabs.module.scss
│ │ │ ├── Tabs.spec.ts
│ │ │ ├── Tabs.tsx
│ │ │ └── TabsNative.tsx
│ │ ├── Text
│ │ │ ├── Text.md
│ │ │ ├── Text.module.scss
│ │ │ ├── Text.spec.ts
│ │ │ ├── Text.tsx
│ │ │ └── TextNative.tsx
│ │ ├── TextArea
│ │ │ ├── TextArea.md
│ │ │ ├── TextArea.module.scss
│ │ │ ├── TextArea.spec.ts
│ │ │ ├── TextArea.tsx
│ │ │ ├── TextAreaNative.tsx
│ │ │ ├── TextAreaResizable.tsx
│ │ │ └── useComposedRef.ts
│ │ ├── TextBox
│ │ │ ├── TextBox.md
│ │ │ ├── TextBox.module.scss
│ │ │ ├── TextBox.spec.ts
│ │ │ ├── TextBox.tsx
│ │ │ └── TextBoxNative.tsx
│ │ ├── Theme
│ │ │ ├── NotificationToast.tsx
│ │ │ ├── Theme.md
│ │ │ ├── Theme.module.scss
│ │ │ ├── Theme.spec.ts
│ │ │ ├── Theme.tsx
│ │ │ └── ThemeNative.tsx
│ │ ├── TimeInput
│ │ │ ├── TimeInput.md
│ │ │ ├── TimeInput.module.scss
│ │ │ ├── TimeInput.spec.ts
│ │ │ ├── TimeInput.tsx
│ │ │ ├── TimeInputNative.tsx
│ │ │ └── utils.ts
│ │ ├── Timer
│ │ │ ├── Timer.md
│ │ │ ├── Timer.spec.ts
│ │ │ ├── Timer.tsx
│ │ │ └── TimerNative.tsx
│ │ ├── Toggle
│ │ │ ├── Toggle.module.scss
│ │ │ └── Toggle.tsx
│ │ ├── ToneChangerButton
│ │ │ ├── ToneChangerButton.md
│ │ │ ├── ToneChangerButton.spec.ts
│ │ │ └── ToneChangerButton.tsx
│ │ ├── ToneSwitch
│ │ │ ├── ToneSwitch.md
│ │ │ ├── ToneSwitch.module.scss
│ │ │ ├── ToneSwitch.spec.ts
│ │ │ ├── ToneSwitch.tsx
│ │ │ └── ToneSwitchNative.tsx
│ │ ├── Tooltip
│ │ │ ├── Tooltip.md
│ │ │ ├── Tooltip.module.scss
│ │ │ ├── Tooltip.spec.ts
│ │ │ ├── Tooltip.tsx
│ │ │ └── TooltipNative.tsx
│ │ ├── Tree
│ │ │ ├── testData.ts
│ │ │ ├── Tree-dynamic.spec.ts
│ │ │ ├── Tree-icons.spec.ts
│ │ │ ├── Tree.md
│ │ │ ├── Tree.spec.ts
│ │ │ ├── TreeComponent.module.scss
│ │ │ ├── TreeComponent.tsx
│ │ │ └── TreeNative.tsx
│ │ ├── TreeDisplay
│ │ │ ├── TreeDisplay.md
│ │ │ ├── TreeDisplay.module.scss
│ │ │ ├── TreeDisplay.tsx
│ │ │ └── TreeDisplayNative.tsx
│ │ ├── ValidationSummary
│ │ │ ├── ValidationSummary.module.scss
│ │ │ └── ValidationSummary.tsx
│ │ └── VisuallyHidden.tsx
│ ├── components-core
│ │ ├── abstractions
│ │ │ ├── ComponentRenderer.ts
│ │ │ ├── LoaderRenderer.ts
│ │ │ ├── standalone.ts
│ │ │ └── treeAbstractions.ts
│ │ ├── action
│ │ │ ├── actions.ts
│ │ │ ├── APICall.tsx
│ │ │ ├── FileDownloadAction.tsx
│ │ │ ├── FileUploadAction.tsx
│ │ │ ├── NavigateAction.tsx
│ │ │ └── TimedAction.tsx
│ │ ├── ApiBoundComponent.tsx
│ │ ├── appContext
│ │ │ ├── date-functions.ts
│ │ │ ├── math-function.ts
│ │ │ └── misc-utils.ts
│ │ ├── AppContext.tsx
│ │ ├── behaviors
│ │ │ ├── Behavior.tsx
│ │ │ └── CoreBehaviors.tsx
│ │ ├── component-hooks.ts
│ │ ├── ComponentDecorator.tsx
│ │ ├── ComponentViewer.tsx
│ │ ├── CompoundComponent.tsx
│ │ ├── constants.ts
│ │ ├── DebugViewProvider.tsx
│ │ ├── descriptorHelper.ts
│ │ ├── devtools
│ │ │ ├── InspectorDialog.module.scss
│ │ │ ├── InspectorDialog.tsx
│ │ │ └── InspectorDialogVisibilityContext.tsx
│ │ ├── EngineError.ts
│ │ ├── event-handlers.ts
│ │ ├── InspectorButton.module.scss
│ │ ├── InspectorContext.tsx
│ │ ├── interception
│ │ │ ├── abstractions.ts
│ │ │ ├── ApiInterceptor.ts
│ │ │ ├── ApiInterceptorProvider.tsx
│ │ │ ├── apiInterceptorWorker.ts
│ │ │ ├── Backend.ts
│ │ │ ├── Errors.ts
│ │ │ ├── IndexedDb.ts
│ │ │ ├── initMock.ts
│ │ │ ├── InMemoryDb.ts
│ │ │ ├── ReadonlyCollection.ts
│ │ │ └── useApiInterceptorContext.tsx
│ │ ├── loader
│ │ │ ├── ApiLoader.tsx
│ │ │ ├── DataLoader.tsx
│ │ │ ├── ExternalDataLoader.tsx
│ │ │ ├── Loader.tsx
│ │ │ ├── MockLoaderRenderer.tsx
│ │ │ └── PageableLoader.tsx
│ │ ├── LoaderComponent.tsx
│ │ ├── markup-check.ts
│ │ ├── parts.ts
│ │ ├── renderers.ts
│ │ ├── rendering
│ │ │ ├── AppContent.tsx
│ │ │ ├── AppRoot.tsx
│ │ │ ├── AppWrapper.tsx
│ │ │ ├── buildProxy.ts
│ │ │ ├── collectFnVarDeps.ts
│ │ │ ├── ComponentAdapter.tsx
│ │ │ ├── ComponentWrapper.tsx
│ │ │ ├── Container.tsx
│ │ │ ├── containers.ts
│ │ │ ├── ContainerWrapper.tsx
│ │ │ ├── ErrorBoundary.module.scss
│ │ │ ├── ErrorBoundary.tsx
│ │ │ ├── InvalidComponent.module.scss
│ │ │ ├── InvalidComponent.tsx
│ │ │ ├── nodeUtils.ts
│ │ │ ├── reducer.ts
│ │ │ ├── renderChild.tsx
│ │ │ ├── StandaloneComponent.tsx
│ │ │ ├── StateContainer.tsx
│ │ │ ├── UnknownComponent.module.scss
│ │ │ ├── UnknownComponent.tsx
│ │ │ └── valueExtractor.ts
│ │ ├── reportEngineError.ts
│ │ ├── RestApiProxy.ts
│ │ ├── script-runner
│ │ │ ├── asyncProxy.ts
│ │ │ ├── AttributeValueParser.ts
│ │ │ ├── bannedFunctions.ts
│ │ │ ├── BindingTreeEvaluationContext.ts
│ │ │ ├── eval-tree-async.ts
│ │ │ ├── eval-tree-common.ts
│ │ │ ├── eval-tree-sync.ts
│ │ │ ├── ParameterParser.ts
│ │ │ ├── process-statement-async.ts
│ │ │ ├── process-statement-common.ts
│ │ │ ├── process-statement-sync.ts
│ │ │ ├── ScriptingSourceTree.ts
│ │ │ ├── simplify-expression.ts
│ │ │ ├── statement-queue.ts
│ │ │ └── visitors.ts
│ │ ├── StandaloneApp.tsx
│ │ ├── StandaloneExtensionManager.ts
│ │ ├── TableOfContentsContext.tsx
│ │ ├── theming
│ │ │ ├── _themes.scss
│ │ │ ├── component-layout-resolver.ts
│ │ │ ├── extendThemeUtils.ts
│ │ │ ├── hvar.ts
│ │ │ ├── layout-resolver.ts
│ │ │ ├── parse-layout-props.ts
│ │ │ ├── StyleContext.tsx
│ │ │ ├── StyleRegistry.ts
│ │ │ ├── ThemeContext.tsx
│ │ │ ├── ThemeProvider.tsx
│ │ │ ├── themes
│ │ │ │ ├── base-utils.ts
│ │ │ │ ├── palette.ts
│ │ │ │ ├── root.ts
│ │ │ │ ├── solid.ts
│ │ │ │ ├── theme-colors.ts
│ │ │ │ └── xmlui.ts
│ │ │ ├── themeVars.module.scss
│ │ │ ├── themeVars.ts
│ │ │ ├── transformThemeVars.ts
│ │ │ └── utils.ts
│ │ ├── utils
│ │ │ ├── actionUtils.ts
│ │ │ ├── audio-utils.ts
│ │ │ ├── base64-utils.ts
│ │ │ ├── compound-utils.ts
│ │ │ ├── css-utils.ts
│ │ │ ├── DataLoaderQueryKeyGenerator.ts
│ │ │ ├── date-utils.ts
│ │ │ ├── extractParam.ts
│ │ │ ├── hooks.tsx
│ │ │ ├── LruCache.ts
│ │ │ ├── mergeProps.ts
│ │ │ ├── misc.ts
│ │ │ ├── request-params.ts
│ │ │ ├── statementUtils.ts
│ │ │ └── treeUtils.ts
│ │ └── xmlui-parser.ts
│ ├── index-standalone.ts
│ ├── index.scss
│ ├── index.ts
│ ├── language-server
│ │ ├── server-common.ts
│ │ ├── server-web-worker.ts
│ │ ├── server.ts
│ │ ├── services
│ │ │ ├── common
│ │ │ │ ├── docs-generation.ts
│ │ │ │ ├── lsp-utils.ts
│ │ │ │ ├── metadata-utils.ts
│ │ │ │ └── syntax-node-utilities.ts
│ │ │ ├── completion.ts
│ │ │ ├── diagnostic.ts
│ │ │ ├── format.ts
│ │ │ └── hover.ts
│ │ └── xmlui-metadata-generated.js
│ ├── logging
│ │ ├── LoggerContext.tsx
│ │ ├── LoggerInitializer.tsx
│ │ ├── LoggerService.ts
│ │ └── xmlui.ts
│ ├── logo.svg
│ ├── parsers
│ │ ├── common
│ │ │ ├── GenericToken.ts
│ │ │ ├── InputStream.ts
│ │ │ └── utils.ts
│ │ ├── scripting
│ │ │ ├── code-behind-collect.ts
│ │ │ ├── Lexer.ts
│ │ │ ├── modules.ts
│ │ │ ├── Parser.ts
│ │ │ ├── ParserError.ts
│ │ │ ├── ScriptingNodeTypes.ts
│ │ │ ├── TokenTrait.ts
│ │ │ ├── TokenType.ts
│ │ │ └── tree-visitor.ts
│ │ ├── style-parser
│ │ │ ├── errors.ts
│ │ │ ├── source-tree.ts
│ │ │ ├── StyleInputStream.ts
│ │ │ ├── StyleLexer.ts
│ │ │ ├── StyleParser.ts
│ │ │ └── tokens.ts
│ │ └── xmlui-parser
│ │ ├── CharacterCodes.ts
│ │ ├── diagnostics.ts
│ │ ├── fileExtensions.ts
│ │ ├── index.ts
│ │ ├── lint.ts
│ │ ├── parser.ts
│ │ ├── ParserError.ts
│ │ ├── scanner.ts
│ │ ├── syntax-kind.ts
│ │ ├── syntax-node.ts
│ │ ├── transform.ts
│ │ ├── utils.ts
│ │ ├── xmlui-serializer.ts
│ │ └── xmlui-tree.ts
│ ├── react-app-env.d.ts
│ ├── syntax
│ │ ├── monaco
│ │ │ ├── grammar.monacoLanguage.ts
│ │ │ ├── index.ts
│ │ │ ├── xmlui-dark.ts
│ │ │ ├── xmlui-light.ts
│ │ │ └── xmluiscript.monacoLanguage.ts
│ │ └── textMate
│ │ ├── index.ts
│ │ ├── xmlui-dark.json
│ │ ├── xmlui-light.json
│ │ ├── xmlui.json
│ │ └── xmlui.tmLanguage.json
│ ├── testing
│ │ ├── assertions.ts
│ │ ├── component-test-helpers.ts
│ │ ├── ComponentDrivers.ts
│ │ ├── drivers
│ │ │ ├── DateInputDriver.ts
│ │ │ ├── index.ts
│ │ │ ├── ModalDialogDriver.ts
│ │ │ ├── NumberBoxDriver.ts
│ │ │ ├── TextBoxDriver.ts
│ │ │ ├── TimeInputDriver.ts
│ │ │ ├── TimerDriver.ts
│ │ │ └── TreeDriver.ts
│ │ ├── fixtures.ts
│ │ ├── index.ts
│ │ ├── infrastructure
│ │ │ ├── index.html
│ │ │ ├── main.tsx
│ │ │ ├── public
│ │ │ │ ├── mockServiceWorker.js
│ │ │ │ ├── resources
│ │ │ │ │ ├── bell.svg
│ │ │ │ │ ├── box.svg
│ │ │ │ │ ├── doc.svg
│ │ │ │ │ ├── eye.svg
│ │ │ │ │ ├── flower-640x480.jpg
│ │ │ │ │ ├── sun.svg
│ │ │ │ │ ├── test-image-100x100.jpg
│ │ │ │ │ └── txt.svg
│ │ │ │ └── serve.json
│ │ │ └── TestBed.tsx
│ │ └── themed-app-test-helpers.ts
│ └── vite-env.d.ts
├── tests
│ ├── components
│ │ ├── CodeBlock
│ │ │ └── hightlight-code.test.ts
│ │ ├── playground-pattern.test.ts
│ │ └── Tree
│ │ └── Tree-states.test.ts
│ ├── components-core
│ │ ├── abstractions
│ │ │ └── treeAbstractions.test.ts
│ │ ├── container
│ │ │ └── buildProxy.test.ts
│ │ ├── interception
│ │ │ ├── orderBy.test.ts
│ │ │ ├── ReadOnlyCollection.test.ts
│ │ │ └── request-param-converter.test.ts
│ │ ├── scripts-runner
│ │ │ ├── AttributeValueParser.test.ts
│ │ │ ├── eval-tree-arrow-async.test.ts
│ │ │ ├── eval-tree-arrow.test.ts
│ │ │ ├── eval-tree-func-decl-async.test.ts
│ │ │ ├── eval-tree-func-decl.test.ts
│ │ │ ├── eval-tree-pre-post.test.ts
│ │ │ ├── eval-tree-regression.test.ts
│ │ │ ├── eval-tree.test.ts
│ │ │ ├── function-proxy.test.ts
│ │ │ ├── parser-regression.test.ts
│ │ │ ├── process-event.test.ts
│ │ │ ├── process-function.test.ts
│ │ │ ├── process-implicit-context.test.ts
│ │ │ ├── process-statement-asgn.test.ts
│ │ │ ├── process-statement-destruct.test.ts
│ │ │ ├── process-statement-regs.test.ts
│ │ │ ├── process-statement-sync.test.ts
│ │ │ ├── process-statement.test.ts
│ │ │ ├── process-switch-sync.test.ts
│ │ │ ├── process-switch.test.ts
│ │ │ ├── process-try-sync.test.ts
│ │ │ ├── process-try.test.ts
│ │ │ └── test-helpers.ts
│ │ ├── test-metadata-handler.ts
│ │ ├── theming
│ │ │ ├── border-segments.test.ts
│ │ │ ├── component-layout.resolver.test.ts
│ │ │ ├── layout-property-parser.test.ts
│ │ │ ├── layout-resolver.test.ts
│ │ │ ├── layout-resolver2.test.ts
│ │ │ ├── layout-vp-override.test.ts
│ │ │ └── padding-segments.test.ts
│ │ └── utils
│ │ ├── date-utils.test.ts
│ │ ├── format-human-elapsed-time.test.ts
│ │ └── LruCache.test.ts
│ ├── language-server
│ │ ├── completion.test.ts
│ │ ├── format.test.ts
│ │ ├── hover.test.ts
│ │ └── mockData.ts
│ └── parsers
│ ├── common
│ │ └── input-stream.test.ts
│ ├── markdown
│ │ └── parse-binding-expression.test.ts
│ ├── parameter-parser.test.ts
│ ├── paremeter-parser.test.ts
│ ├── scripting
│ │ ├── eval-tree-arrow.test.ts
│ │ ├── eval-tree-pre-post.test.ts
│ │ ├── eval-tree.test.ts
│ │ ├── function-proxy.test.ts
│ │ ├── lexer-literals.test.ts
│ │ ├── lexer-misc.test.ts
│ │ ├── module-parse.test.ts
│ │ ├── parser-arrow.test.ts
│ │ ├── parser-assignments.test.ts
│ │ ├── parser-binary.test.ts
│ │ ├── parser-destructuring.test.ts
│ │ ├── parser-errors.test.ts
│ │ ├── parser-expressions.test.ts
│ │ ├── parser-function.test.ts
│ │ ├── parser-literals.test.ts
│ │ ├── parser-primary.test.ts
│ │ ├── parser-regex.test.ts
│ │ ├── parser-statements.test.ts
│ │ ├── parser-unary.test.ts
│ │ ├── process-event.test.ts
│ │ ├── process-implicit-context.test.ts
│ │ ├── process-statement-asgn.test.ts
│ │ ├── process-statement-destruct.test.ts
│ │ ├── process-statement-regs.test.ts
│ │ ├── process-statement-sync.test.ts
│ │ ├── process-statement.test.ts
│ │ ├── process-switch-sync.test.ts
│ │ ├── process-switch.test.ts
│ │ ├── process-try-sync.test.ts
│ │ ├── process-try.test.ts
│ │ ├── simplify-expression.test.ts
│ │ ├── statement-hooks.test.ts
│ │ └── test-helpers.ts
│ ├── style-parser
│ │ ├── generateHvarChain.test.ts
│ │ ├── parseHVar.test.ts
│ │ ├── parser.test.ts
│ │ └── tokens.test.ts
│ └── xmlui
│ ├── lint.test.ts
│ ├── parser.test.ts
│ ├── scanner.test.ts
│ ├── transform.attr.test.ts
│ ├── transform.circular.test.ts
│ ├── transform.element.test.ts
│ ├── transform.errors.test.ts
│ ├── transform.escape.test.ts
│ ├── transform.regression.test.ts
│ ├── transform.script.test.ts
│ ├── transform.test.ts
│ └── xmlui.ts
├── tests-e2e
│ ├── api-bound-component-regression.spec.ts
│ ├── api-call-as-extracted-component.spec.ts
│ ├── assign-to-object-or-array-regression.spec.ts
│ ├── binding-regression.spec.ts
│ ├── children-as-template-context-vars.spec.ts
│ ├── compound-component.spec.ts
│ ├── context-vars-regression.spec.ts
│ ├── data-bindings.spec.ts
│ ├── datasource-and-api-usage-in-var.spec.ts
│ ├── datasource-direct-binding.spec.ts
│ ├── datasource-onLoaded-regression.spec.ts
│ ├── modify-array-item-regression.spec.ts
│ ├── namespaces.spec.ts
│ ├── push-to-array-regression.spec.ts
│ ├── screen-breakpoints.spec.ts
│ ├── scripting.spec.ts
│ ├── state-scope-in-pages.spec.ts
│ └── state-var-scopes.spec.ts
├── tsconfig.bin.json
├── tsconfig.json
├── tsconfig.node.json
├── vite.config.ts
└── vitest.config.ts
```
# Files
--------------------------------------------------------------------------------
/xmlui/tests/parsers/scripting/function-proxy.test.ts:
--------------------------------------------------------------------------------
```typescript
1 | import { describe, expect, it } from "vitest";
2 |
3 | import { createEvalContext, parseStatements } from "./test-helpers";
4 | import {
5 | ArrowExpressionStatement,
6 | ExpressionStatement,
7 | T_ARROW_EXPRESSION_STATEMENT,
8 | } from "../../../src/components-core/script-runner/ScriptingSourceTree";
9 | import { processStatementQueueAsync } from "../../../src/components-core/script-runner/process-statement-async";
10 |
11 | describe("Function proxies", () => {
12 | it("Array.prototype.filter #1", async () => {
13 | // --- Arrange
14 | const source =
15 | "(params)=> { return items.filter((item) => { return item.parentId === params.pathParams.nodeId});}";
16 | const evalContext = createEvalContext({
17 | localContext: {
18 | items: [
19 | {
20 | name: "item1",
21 | parentId: "",
22 | },
23 | {
24 | name: "item2",
25 | parentId: "my-parent-id",
26 | },
27 | ],
28 | },
29 | eventArgs: [{ pathParams: { nodeId: "" } }],
30 | });
31 | const statements = parseStatements(source);
32 | const arrowStmt = {
33 | type: T_ARROW_EXPRESSION_STATEMENT,
34 | expr: (statements[0] as ExpressionStatement).expr,
35 | } as ArrowExpressionStatement;
36 | await processStatementQueueAsync([arrowStmt], evalContext);
37 | // --- Assert
38 | const thread = evalContext.mainThread!;
39 | expect(thread.blocks!.length).equal(1);
40 | expect(thread.blocks![0].returnValue).eql([{ name: "item1", parentId: "" }]);
41 | });
42 |
43 | it("Array.prototype.forEach #1", async () => {
44 | // --- Arrange
45 | const source = `()=> {
46 | const result = [];
47 | items.forEach((item) => {
48 | result.push(item * 2)
49 | });
50 | return result;
51 | }`;
52 | const evalContext = createEvalContext({
53 | localContext: {
54 | items: [2, 3],
55 | },
56 | eventArgs: [],
57 | });
58 | const statements = parseStatements(source);
59 | const arrowStmt = {
60 | type: T_ARROW_EXPRESSION_STATEMENT,
61 | expr: (statements[0] as ExpressionStatement).expr,
62 | } as ArrowExpressionStatement;
63 | await processStatementQueueAsync([arrowStmt], evalContext);
64 | // --- Assert
65 | const thread = evalContext.mainThread!;
66 | expect(thread.blocks![0].returnValue).eql([4, 6]);
67 | });
68 |
69 | it("Array.prototype.map #1", async () => {
70 | // --- Arrange
71 | const source = `()=> {
72 | return items.map((item) => {
73 | return item *= 2;
74 | });
75 | }`;
76 | const evalContext = createEvalContext({
77 | localContext: {
78 | items: [2, 3],
79 | },
80 | });
81 | const statements = parseStatements(source);
82 | const arrowStmt = {
83 | type: T_ARROW_EXPRESSION_STATEMENT,
84 | expr: (statements[0] as ExpressionStatement).expr,
85 | } as ArrowExpressionStatement;
86 | await processStatementQueueAsync([arrowStmt], evalContext);
87 | // --- Assert
88 | const thread = evalContext.mainThread!;
89 | expect(thread.blocks![0].returnValue).eql([4, 6]);
90 | });
91 |
92 | it("Array.prototype.every #1", async () => {
93 | // --- Arrange
94 | const source = `(params)=> {
95 | return items.every((item) => { return item.parentId === params.pathParams.nodeId}
96 | );
97 | }`;
98 | const evalContext = createEvalContext({
99 | localContext: {
100 | items: [
101 | {
102 | name: "item1",
103 | parentId: "",
104 | },
105 | {
106 | name: "item2",
107 | parentId: "my-parent-id",
108 | },
109 | ],
110 | },
111 | eventArgs: [{ pathParams: { nodeId: "" } }],
112 | });
113 | const statements = parseStatements(source);
114 | const arrowStmt = {
115 | type: T_ARROW_EXPRESSION_STATEMENT,
116 | expr: (statements[0] as ExpressionStatement).expr,
117 | } as ArrowExpressionStatement;
118 | await processStatementQueueAsync([arrowStmt], evalContext);
119 | // --- Assert
120 | const thread = evalContext.mainThread!;
121 | expect(thread.blocks!.length).equal(1);
122 | expect(thread.blocks![0].returnValue).eql(false);
123 | });
124 |
125 | it("Array.prototype.findIndex #1", async () => {
126 | // --- Arrange
127 | const source = `(params)=> {
128 | return items.findIndex((item) => item > 5)
129 | }`;
130 | const evalContext = createEvalContext({
131 | localContext: {
132 | items: [2, 6, 1],
133 | },
134 | });
135 | const statements = parseStatements(source);
136 | const arrowStmt = {
137 | type: T_ARROW_EXPRESSION_STATEMENT,
138 | expr: (statements[0] as ExpressionStatement).expr,
139 | } as ArrowExpressionStatement;
140 | await processStatementQueueAsync([arrowStmt], evalContext);
141 | // --- Assert
142 | const thread = evalContext.mainThread!;
143 | expect(thread.blocks!.length).equal(1);
144 | expect(thread.blocks![0].returnValue).eql(1);
145 | });
146 |
147 | it("Array.prototype.find #1", async () => {
148 | // --- Arrange
149 | const source = `(params)=> {
150 | return items.find((item) => item > 4);
151 | }`;
152 | const evalContext = createEvalContext({
153 | localContext: {
154 | items: [1, 2, 3, 4, 5, 6],
155 | },
156 | eventArgs: [{ pathParams: { nodeId: "" } }],
157 | });
158 | const statements = parseStatements(source);
159 | const arrowStmt = {
160 | type: T_ARROW_EXPRESSION_STATEMENT,
161 | expr: (statements[0] as ExpressionStatement).expr,
162 | } as ArrowExpressionStatement;
163 | await processStatementQueueAsync([arrowStmt], evalContext);
164 | // --- Assert
165 | const thread = evalContext.mainThread!;
166 | expect(thread.blocks!.length).equal(1);
167 | expect(thread.blocks![0].returnValue).eql(5);
168 | });
169 |
170 | it("Array.prototype.flatMap #1", async () => {
171 | // --- Arrange
172 | const source = `(params)=> {
173 | return items.flatMap((item) => item > 4 ? [4, 4] : 1);
174 | }`;
175 | const evalContext = createEvalContext({
176 | localContext: {
177 | items: [5, 3, 2],
178 | },
179 | eventArgs: [{ pathParams: { nodeId: "" } }],
180 | });
181 | const statements = parseStatements(source);
182 | const arrowStmt = {
183 | type: T_ARROW_EXPRESSION_STATEMENT,
184 | expr: (statements[0] as ExpressionStatement).expr,
185 | } as ArrowExpressionStatement;
186 | await processStatementQueueAsync([arrowStmt], evalContext);
187 | // --- Assert
188 | const thread = evalContext.mainThread!;
189 | expect(thread.blocks!.length).equal(1);
190 | expect(thread.blocks![0].returnValue).eql([4, 4, 1, 1]);
191 | });
192 | });
193 |
```
--------------------------------------------------------------------------------
/xmlui/tests/components-core/scripts-runner/function-proxy.test.ts:
--------------------------------------------------------------------------------
```typescript
1 | import { describe, expect, it } from "vitest";
2 |
3 | import { processStatementQueueAsync } from "../../../src/components-core/script-runner/process-statement-async";
4 | import { createEvalContext, parseStatements } from "./test-helpers";
5 | import {
6 | ArrowExpressionStatement,
7 | ExpressionStatement,
8 | T_ARROW_EXPRESSION_STATEMENT,
9 | } from "../../../src/components-core/script-runner/ScriptingSourceTree";
10 |
11 | describe("Function proxies (exp)", () => {
12 | it("Array.prototype.filter #1", async () => {
13 | // --- Arrange
14 | const source =
15 | "(params)=> { return items.filter((item) => { return item.parentId === params.pathParams.nodeId});}";
16 | const evalContext = createEvalContext({
17 | localContext: {
18 | items: [
19 | {
20 | name: "item1",
21 | parentId: "",
22 | },
23 | {
24 | name: "item2",
25 | parentId: "my-parent-id",
26 | },
27 | ],
28 | },
29 | eventArgs: [{ pathParams: { nodeId: "" } }],
30 | });
31 | const statements = parseStatements(source);
32 | const arrowStmt = {
33 | type: T_ARROW_EXPRESSION_STATEMENT,
34 | expr: (statements[0] as ExpressionStatement).expr,
35 | } as ArrowExpressionStatement;
36 | await processStatementQueueAsync([arrowStmt], evalContext);
37 | // --- Assert
38 | const thread = evalContext.mainThread!;
39 | expect(thread.blocks!.length).equal(1);
40 | expect(thread.blocks![0].returnValue).eql([{ name: "item1", parentId: "" }]);
41 | });
42 |
43 | it("Array.prototype.forEach #1", async () => {
44 | // --- Arrange
45 | const source = `()=> {
46 | const result = [];
47 | items.forEach((item) => {
48 | result.push(item * 2)
49 | });
50 | return result;
51 | }`;
52 | const evalContext = createEvalContext({
53 | localContext: {
54 | items: [2, 3],
55 | },
56 | eventArgs: [],
57 | });
58 | const statements = parseStatements(source);
59 | const arrowStmt = {
60 | type: T_ARROW_EXPRESSION_STATEMENT,
61 | expr: (statements[0] as ExpressionStatement).expr,
62 | } as ArrowExpressionStatement;
63 | await processStatementQueueAsync([arrowStmt], evalContext);
64 | // --- Assert
65 | const thread = evalContext.mainThread!;
66 | expect(thread.blocks![0].returnValue).eql([4, 6]);
67 | });
68 |
69 | it("Array.prototype.map #1", async () => {
70 | // --- Arrange
71 | const source = `()=> {
72 | return items.map((item) => {
73 | return item *= 2;
74 | });
75 | }`;
76 | const evalContext = createEvalContext({
77 | localContext: {
78 | items: [2, 3],
79 | },
80 | });
81 | const statements = parseStatements(source);
82 | const arrowStmt = {
83 | type: T_ARROW_EXPRESSION_STATEMENT,
84 | expr: (statements[0] as ExpressionStatement).expr,
85 | } as ArrowExpressionStatement;
86 | await processStatementQueueAsync([arrowStmt], evalContext);
87 | // --- Assert
88 | const thread = evalContext.mainThread!;
89 | expect(thread.blocks![0].returnValue).eql([4, 6]);
90 | });
91 |
92 | it("Array.prototype.every #1", async () => {
93 | // --- Arrange
94 | const source = `(params)=> {
95 | return items.every((item) => { return item.parentId === params.pathParams.nodeId}
96 | );
97 | }`;
98 | const evalContext = createEvalContext({
99 | localContext: {
100 | items: [
101 | {
102 | name: "item1",
103 | parentId: "",
104 | },
105 | {
106 | name: "item2",
107 | parentId: "my-parent-id",
108 | },
109 | ],
110 | },
111 | eventArgs: [{ pathParams: { nodeId: "" } }],
112 | });
113 | const statements = parseStatements(source);
114 | const arrowStmt = {
115 | type: T_ARROW_EXPRESSION_STATEMENT,
116 | expr: (statements[0] as ExpressionStatement).expr,
117 | } as ArrowExpressionStatement;
118 | await processStatementQueueAsync([arrowStmt], evalContext);
119 | // --- Assert
120 | const thread = evalContext.mainThread!;
121 | expect(thread.blocks!.length).equal(1);
122 | expect(thread.blocks![0].returnValue).eql(false);
123 | });
124 |
125 | it("Array.prototype.findIndex #1", async () => {
126 | // --- Arrange
127 | const source = `(params)=> {
128 | return items.findIndex((item) => item > 5)
129 | }`;
130 | const evalContext = createEvalContext({
131 | localContext: {
132 | items: [2, 6, 1],
133 | },
134 | });
135 | const statements = parseStatements(source);
136 | const arrowStmt = {
137 | type: T_ARROW_EXPRESSION_STATEMENT,
138 | expr: (statements[0] as ExpressionStatement).expr,
139 | } as ArrowExpressionStatement;
140 | await processStatementQueueAsync([arrowStmt], evalContext);
141 | // --- Assert
142 | const thread = evalContext.mainThread!;
143 | expect(thread.blocks!.length).equal(1);
144 | expect(thread.blocks![0].returnValue).eql(1);
145 | });
146 |
147 | it("Array.prototype.find #1", async () => {
148 | // --- Arrange
149 | const source = `(params)=> {
150 | return items.find((item) => item > 4);
151 | }`;
152 | const evalContext = createEvalContext({
153 | localContext: {
154 | items: [1, 2, 3, 4, 5, 6],
155 | },
156 | eventArgs: [{ pathParams: { nodeId: "" } }],
157 | });
158 | const statements = parseStatements(source);
159 | const arrowStmt = {
160 | type: T_ARROW_EXPRESSION_STATEMENT,
161 | expr: (statements[0] as ExpressionStatement).expr,
162 | } as ArrowExpressionStatement;
163 | await processStatementQueueAsync([arrowStmt], evalContext);
164 | // --- Assert
165 | const thread = evalContext.mainThread!;
166 | expect(thread.blocks!.length).equal(1);
167 | expect(thread.blocks![0].returnValue).eql(5);
168 | });
169 |
170 | it("Array.prototype.flatMap #1", async () => {
171 | // --- Arrange
172 | const source = `(params)=> {
173 | return items.flatMap((item) => item > 4 ? [4, 4] : 1);
174 | }`;
175 | const evalContext = createEvalContext({
176 | localContext: {
177 | items: [5, 3, 2],
178 | },
179 | eventArgs: [{ pathParams: { nodeId: "" } }],
180 | });
181 | const statements = parseStatements(source);
182 | const arrowStmt = {
183 | type: T_ARROW_EXPRESSION_STATEMENT,
184 | expr: (statements[0] as ExpressionStatement).expr,
185 | } as ArrowExpressionStatement;
186 | await processStatementQueueAsync([arrowStmt], evalContext);
187 | // --- Assert
188 | const thread = evalContext.mainThread!;
189 | expect(thread.blocks!.length).equal(1);
190 | expect(thread.blocks![0].returnValue).eql([4, 4, 1, 1]);
191 | });
192 | });
193 |
```
--------------------------------------------------------------------------------
/packages/xmlui-os-frames/src/WindowsAppFrame.tsx:
--------------------------------------------------------------------------------
```typescript
1 | import styles from "./WindowsAppFrame.module.scss";
2 | import type { ReactNode } from "react";
3 | import { forwardRef } from "react";
4 |
5 | export const ToolBar = (props) => {
6 | return (
7 | <div className={styles.toolbar}>
8 | <div className={styles.topInfo}>
9 | <div className={styles.uicon} style={{ margin: "0 10px 0 6px" }}>
10 | <div style={{ width: 14 }}>
11 | <svg viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
12 | <path
13 | d="M8.20647 19.6315C7.36494 19.6315 6.63359 19.4431 6.01263 19.0663C5.40551 18.6756 4.93628 18.1313 4.60513 17.4336C4.27397 16.7219 4.1084 15.8846 4.1084 14.9218V9.03995C4.1084 8.90041 4.15686 8.78179 4.2534 8.68412C4.34994 8.58643 4.46724 8.5376 4.60513 8.5376H6.42667C6.5784 8.5376 6.69571 8.58643 6.7784 8.68412C6.87494 8.78179 6.9234 8.90041 6.9234 9.03995V14.7962C6.9234 16.5266 7.67532 17.3917 9.17936 17.3917C9.89686 17.3917 10.4626 17.1615 10.8765 16.701C11.3044 16.2405 11.5182 15.6056 11.5182 14.7962V9.03995C11.5182 8.90041 11.5665 8.78179 11.663 8.68412C11.7596 8.58643 11.8769 8.5376 12.0149 8.5376H13.8363C13.9742 8.5376 14.0915 8.58643 14.188 8.68412C14.2847 8.78179 14.333 8.90041 14.333 9.03995V18.9198C14.333 19.0593 14.2847 19.1779 14.188 19.2756C14.0915 19.3733 13.9742 19.4221 13.8363 19.4221H12.1597C12.008 19.4221 11.8838 19.3733 11.7872 19.2756C11.7044 19.1779 11.663 19.0593 11.663 18.9198V18.0616C11.2905 18.55 10.8282 18.9337 10.2763 19.2128C9.72436 19.4919 9.03436 19.6315 8.20647 19.6315Z"
14 | fill="#3367CC"
15 | />
16 | <path
17 | d="M17.564 19.4252C17.4259 19.4252 17.3086 19.3764 17.2121 19.2787C17.1155 19.181 17.0673 19.0624 17.0673 18.9229V9.04306C17.0673 8.90352 17.1155 8.7849 17.2121 8.68723C17.3086 8.58954 17.4259 8.54071 17.564 8.54071H19.2819C19.4336 8.54071 19.5509 8.58954 19.6336 8.68723C19.7303 8.7849 19.7786 8.90352 19.7786 9.04306V18.9229C19.7786 19.0624 19.7303 19.181 19.6336 19.2787C19.5509 19.3764 19.4336 19.4252 19.2819 19.4252H17.564ZM17.4811 6.74056C17.3294 6.74056 17.2051 6.69871 17.1086 6.61498C17.0257 6.51729 16.9844 6.39171 16.9844 6.23821V4.73112C16.9844 4.59157 17.0257 4.47296 17.1086 4.37529C17.2051 4.27759 17.3294 4.22876 17.4811 4.22876H19.3646C19.5163 4.22876 19.6405 4.27759 19.7371 4.37529C19.8338 4.47296 19.8821 4.59157 19.8821 4.73112V6.23821C19.8821 6.39171 19.8338 6.51729 19.7371 6.61498C19.6405 6.69871 19.5163 6.74056 19.3646 6.74056H17.4811Z"
18 | fill="#3367CC"
19 | />
20 | <path
21 | fillRule="evenodd"
22 | d="M23.4228 1.14092H1.11508V23.7013H23.4228V1.14092ZM0.730469 0.751953V24.0903H23.8074V0.751953H0.730469Z"
23 | fill="#3367CC"
24 | />
25 | </svg>
26 | </div>
27 | </div>
28 | <div className={styles.appFullName}>XMLUI</div>
29 | </div>
30 | <div className={styles.actbtns}>
31 | <div className={`${styles.uicon} ${styles.prtclk}`}>
32 | <div style={{ width: 12, height: 12 }}>
33 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5120 5120">
34 | <g id="l192sq9Ma1sM2oXLQ331nvD" fill="rgb(0,0,0)">
35 | <g>
36 | <path
37 | id="pf2evWQPs"
38 | d="M730 2643 c-108 -55 -108 -215 0 -270 l44 -23 1786 0 c1719 0 1787 1 1826 19 105 48 116 194 21 265 l-28 21 -1807 3 c-1705 2 -1809 1 -1842 -15z"
39 | ></path>
40 | </g>
41 | </g>
42 | </svg>
43 | </div>
44 | </div>
45 | <div className={`${styles.uicon} ${styles.prtclk}`}>
46 | <div style={{ width: 12, height: 12 }}>
47 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5120 5120">
48 | <g id="lld67zMMrGguqZbYTM5KDT" fill="rgb(0,0,0)">
49 | <g>
50 | <path
51 | id="pJNFf1TAf"
52 | d="M1162 4469 c-226 -29 -411 -177 -482 -385 -39 -113 -41 -192 -38 -1589 3 -1250 5 -1354 21 -1410 63 -217 212 -364 427 -422 61 -17 159 -18 1470 -18 1311 0 1409 1 1470 18 217 59 368 210 427 427 17 61 18 159 18 1470 0 1311 -1 1409 -18 1470 -58 215 -205 364 -422 427 -56 16 -158 18 -1435 19 -756 1 -1404 -2 -1438 -7z m2823 -320 c54 -15 149 -110 164 -164 15 -56 15 -2794 0 -2850 -15 -54 -110 -149 -164 -164 -56 -15 -2794 -15 -2850 0 -54 15 -149 110 -164 164 -15 56 -15 2794 0 2849 14 52 101 142 154 161 34 12 257 14 1430 15 982 0 1402 -3 1430 -11z"
53 | ></path>
54 | </g>
55 | </g>
56 | </svg>
57 | </div>
58 | </div>
59 | <div className={`${styles.uicon} ${styles.closeBtn} ${styles.prtclk}`}>
60 | <div style={{ width: 14, height: 14 }}>
61 | <svg
62 | version="1.0"
63 | xmlns="http://www.w3.org/2000/svg"
64 | viewBox="0 0 512 512"
65 | preserveAspectRatio="xMidYMid meet"
66 | >
67 | <g fill="#000000">
68 | <path
69 | d="M87.4 424.6 c-2.9 -2.9 -3.4 -4.1 -3.4 -8.2 l0 -4.9 77.7 -77.7 77.8 -77.8 -77.8 -77.8 -77.7 -77.7 0 -4.9 c0 -4.1 0.5 -5.3 3.4 -8.2 2.9 -2.9 4.1 -3.4 8.2 -3.4 l4.9 0 77.7 77.7 77.8 77.8 77.8 -77.8 77.7 -77.7 4.9 0 c4.1 0 5.3 0.5 8.2 3.4 2.9 2.9 3.4 4.1 3.4 8.2 l0 4.9 -77.7 77.7 -77.8 77.8 77.8 77.8 77.7 77.7 0 4.9 c0 4.1 -0.5 5.3 -3.4 8.2 -2.9 2.9 -4.1 3.4 -8.2 3.4 l-4.9 0 -77.7 -77.7 -77.8 -77.8 -77.8 77.8 -77.7 77.7 -4.9 0 c-4.1 0 -5.3 -0.5 -8.2 -3.4z" />
70 | </g>
71 | </svg>
72 | </div>
73 | </div>
74 | </div>
75 | </div>
76 | );
77 | };
78 |
79 | export const WindowsAppFrame = forwardRef(({ children }: { children: ReactNode }, ref) => {
80 | return (
81 | <div className={styles.notepad} ref={ref as any}>
82 | <ToolBar />
83 | <div className={styles.windowScreen}>
84 | <div className={styles.topBar}>
85 | <div className={styles.topBarItem}>File</div>
86 | <div className={styles.topBarItem}>Edit</div>
87 | <div className={styles.topBarItem}>View</div>
88 | </div>
89 | <div className={styles.restWindow}>
90 | <div className={styles.noteText}>{children}</div>
91 | </div>
92 | </div>
93 | </div>
94 | );
95 | });
96 |
```
--------------------------------------------------------------------------------
/xmlui/src/components/RadioGroup/RadioGroup.module.scss:
--------------------------------------------------------------------------------
```scss
1 | @use "../../components-core/theming/themes" as t;
2 |
3 | // --- This code snippet is required to collect the theme variables used in this module
4 | $themeVars: ();
5 | @function createThemeVar($componentVariable) {
6 | $themeVars: t.appendThemeVar($themeVars, $componentVariable) !global;
7 | @return t.getThemeVar($themeVars, $componentVariable);
8 | }
9 |
10 | $gap-RadioGroupOption: createThemeVar("gap-RadioGroupOption");
11 |
12 | // --- Borders
13 |
14 | $borderWidth-RadioGroupOption: createThemeVar("borderWidth-RadioGroupOption");
15 | $borderWidth-RadioGroupOption-validation: createThemeVar("borderWidth-RadioGroupOption-validation");
16 |
17 | $borderColor-RadioGroupOption--default: createThemeVar("Input:borderColor-RadioGroupOption--default");
18 | $borderColor-checked-RadioGroupOption: createThemeVar("Input:borderColor-checked-RadioGroupOption");
19 | $borderColor-RadioGroupOption--default--hover: createThemeVar(
20 | "Input:borderColor-RadioGroupOption--default--hover"
21 | );
22 | $borderColor-RadioGroupOption--default--active: createThemeVar(
23 | "Input:borderColor-RadioGroupOption--default--active"
24 | );
25 | $borderColor-RadioGroupOption--disabled: createThemeVar(
26 | "Input:borderColor-RadioGroupOption--disabled"
27 | );
28 |
29 | $borderColor-RadioGroupOption--error: createThemeVar("Input:borderColor-RadioGroupOption--error");
30 | $borderColor-RadioGroupOption--warning: createThemeVar("Input:borderColor-RadioGroupOption--warning");
31 | $borderColor-RadioGroupOption--success: createThemeVar("Input:borderColor-RadioGroupOption--success");
32 |
33 | // --- Backgrounds
34 |
35 | $backgroundColor-RadioGroupOption--default: createThemeVar(
36 | "Input:backgroundColor-RadioGroupOption--default"
37 | );
38 | $backgroundColor-checked-RadioGroupOption: createThemeVar(
39 | "Input:backgroundColor-checked-RadioGroupOption"
40 | );
41 | $backgroundColor-checked-RadioGroupOption--disabled: createThemeVar(
42 | "Input:backgroundColor-checked-RadioGroupOption--disabled"
43 | );
44 |
45 | // --- Foreground
46 |
47 | $color-RadioGroupOption--disabled: createThemeVar("Input:color-RadioGroupOption--disabled");
48 |
49 | // --- Text
50 |
51 | $fontSize-RadioGroupOption: createThemeVar("Input:fontSize-RadioGroupOption");
52 | $fontWeight-RadioGroupOption: createThemeVar("Input:fontWeight-RadioGroupOption");
53 |
54 | $textColor-RadioGroupOption--default: createThemeVar("Input:textColor-RadioGroupOption--default");
55 | $textColor-RadioGroupOption--error: createThemeVar("Input:textColor-RadioGroupOption--error");
56 | $textColor-RadioGroupOption--warning: createThemeVar("Input:textColor-RadioGroupOption--warning");
57 | $textColor-RadioGroupOption--success: createThemeVar("Input:textColor-RadioGroupOption--success");
58 |
59 | // Variables for @layer section
60 | $outlineWidth-RadioGroupOption--focus: createThemeVar("Input:outlineWidth-RadioGroupOption--focus");
61 | $outlineColor-RadioGroupOption--focus: createThemeVar("Input:outlineColor-RadioGroupOption--focus");
62 | $outlineStyle-RadioGroupOption--focus: createThemeVar("Input:outlineStyle-RadioGroupOption--focus");
63 | $outlineOffset-RadioGroupOption--focus: createThemeVar("Input:outlineOffset-RadioGroupOption--focus");
64 |
65 | @layer components {
66 | .radioGroupContainer {
67 | width: 100%;
68 | display: flex;
69 | flex-direction: column;
70 | gap: t.$space-2;
71 | }
72 |
73 | .radioOptionContainer {
74 | display: flex;
75 | align-items: center;
76 | gap: $gap-RadioGroupOption;
77 | }
78 |
79 | .radioOption {
80 | flex-shrink: 0;
81 | width: 18px;
82 | height: 18px;
83 | border-radius: 100%;
84 | background: $backgroundColor-RadioGroupOption--default;
85 | border-width: $borderWidth-RadioGroupOption;
86 | border-style: solid;
87 | border-color: $borderColor-RadioGroupOption--default;
88 | padding: 0;
89 | cursor: pointer;
90 |
91 | &:hover {
92 | border-color: $borderColor-RadioGroupOption--default--hover;
93 | }
94 | &:focus-visible {
95 | outline-width: $outlineWidth-RadioGroupOption--focus;
96 | outline-color: $outlineColor-RadioGroupOption--focus;
97 | outline-style: $outlineStyle-RadioGroupOption--focus;
98 | outline-offset: $outlineOffset-RadioGroupOption--focus;
99 | }
100 | &:disabled {
101 | cursor: not-allowed;
102 | border-color: $borderColor-RadioGroupOption--disabled;
103 | }
104 | &:disabled + label {
105 | cursor: not-allowed;
106 | color: $color-RadioGroupOption--disabled;
107 | }
108 | &:not(:disabled) {
109 | &.checked:not(.error):not(.warning):not(.valid) {
110 | border-color: $borderColor-checked-RadioGroupOption;
111 | }
112 | &.error {
113 | border-width: $borderWidth-RadioGroupOption-validation;
114 | border-color: $borderColor-RadioGroupOption--error;
115 | }
116 | &.warning {
117 | border-width: $borderWidth-RadioGroupOption-validation;
118 | border-color: $borderColor-RadioGroupOption--warning;
119 | }
120 | &.valid {
121 | border-width: $borderWidth-RadioGroupOption-validation;
122 | border-color: $borderColor-RadioGroupOption--success;
123 | }
124 | }
125 | }
126 |
127 | // The indicator is the circle that appears inside the radio button:
128 | // both the larger circle and an inner circle.
129 | .indicator {
130 | display: grid;
131 | place-content: center;
132 | width: 100%;
133 | height: 100%;
134 | border-radius: 50%;
135 | background: radial-gradient(
136 | circle,
137 | transparent 28%,
138 | $backgroundColor-checked-RadioGroupOption 34%
139 | );
140 |
141 | &.disabled {
142 | background: radial-gradient(
143 | circle,
144 | transparent 28%,
145 | $backgroundColor-checked-RadioGroupOption--disabled 34%
146 | );
147 | }
148 | }
149 |
150 | .itemContainer {
151 | z-index: -1;
152 | position: relative;
153 | opacity: 0;
154 | width: 0;
155 | height: 0;
156 | }
157 |
158 | .optionLabel {
159 | width: 100%;
160 | cursor: pointer;
161 | }
162 |
163 | .label {
164 | width: 100%;
165 | color: $textColor-RadioGroupOption--default;
166 | font-size: $fontSize-RadioGroupOption;
167 | font-weight: $fontWeight-RadioGroupOption;
168 | user-select: none;
169 | cursor: pointer;
170 |
171 | &.error {
172 | color: $textColor-RadioGroupOption--error;
173 | }
174 | &.warning {
175 | color: $textColor-RadioGroupOption--warning;
176 | }
177 | &.valid {
178 | color: $textColor-RadioGroupOption--success;
179 | }
180 | }
181 | }
182 |
183 | // --- We export the theme variables to add them to the component renderer
184 | :export {
185 | themeVars: t.json-stringify($themeVars);
186 | }
187 |
```
--------------------------------------------------------------------------------
/packages/xmlui-website-blocks/src/ScrollToTop/ScrollToTopNative.tsx:
--------------------------------------------------------------------------------
```typescript
1 | import { forwardRef, useEffect, useState, useCallback } from "react";
2 | import { Icon } from "xmlui";
3 | import classnames from "classnames";
4 | import styles from "./ScrollToTop.module.scss";
5 |
6 | type Props = {
7 | position?: "start" | "center" | "end";
8 | visible?: boolean;
9 | threshold?: number;
10 | icon?: string;
11 | behavior?: "smooth" | "instant" | "auto";
12 | onClick?: () => void;
13 | className?: string;
14 | style?: React.CSSProperties;
15 | };
16 |
17 | export const defaultProps: Pick<Props, "position" | "visible" | "threshold" | "icon" | "behavior"> = {
18 | position: "end",
19 | visible: true,
20 | threshold: 300,
21 | icon: "chevronup",
22 | behavior: "smooth",
23 | };
24 |
25 | export const ScrollToTop = forwardRef<HTMLButtonElement, Props>(
26 | function ScrollToTop(
27 | {
28 | position = defaultProps.position,
29 | visible = defaultProps.visible,
30 | threshold = defaultProps.threshold,
31 | icon = defaultProps.icon,
32 | behavior = defaultProps.behavior,
33 | onClick,
34 | className,
35 | style,
36 | }: Props,
37 | ref,
38 | ) {
39 | const [isVisible, setIsVisible] = useState(false);
40 |
41 | // Validate position and fall back to "end" if invalid
42 | const validPosition = ["start", "center", "end"].includes(position || "") ? position : "end";
43 |
44 | // Validate behavior and fall back to "smooth" if invalid
45 | const validBehavior = ["smooth", "instant", "auto"].includes(behavior || "") ? behavior : "smooth";
46 |
47 | // Check scroll position to determine visibility
48 | useEffect(() => {
49 | if (!visible) {
50 | setIsVisible(false);
51 | return;
52 | }
53 |
54 | const handleScroll = () => {
55 | // Check multiple possible scroll containers using the same logic as scroll-to-top
56 | const windowScrollTop = window.pageYOffset || document.documentElement.scrollTop;
57 | const bodyScrollTop = document.body.scrollTop;
58 |
59 | let maxScrollTop = Math.max(windowScrollTop, bodyScrollTop);
60 |
61 | // Check all elements that might be scrolled (same as in handleClick)
62 | const allElements = document.querySelectorAll('*');
63 | allElements.forEach((element) => {
64 | if (element instanceof HTMLElement && element.scrollTop > 0) {
65 | maxScrollTop = Math.max(maxScrollTop, element.scrollTop);
66 | }
67 | });
68 |
69 | // Also check common XMLUI containers
70 | const xmluiContainers = document.querySelectorAll(
71 | '.xmlui-app, .xmlui-page, .xmlui-container, [data-xmlui], main, .main, #root, .app'
72 | );
73 | xmluiContainers.forEach((element) => {
74 | if (element instanceof HTMLElement) {
75 | maxScrollTop = Math.max(maxScrollTop, element.scrollTop);
76 | }
77 | });
78 |
79 | // If threshold is 0, show the button regardless of scroll position
80 | if (threshold === 0) {
81 | setIsVisible(true);
82 | } else {
83 | setIsVisible(maxScrollTop > (threshold || 0));
84 | }
85 | };
86 |
87 | window.addEventListener("scroll", handleScroll);
88 | document.addEventListener("scroll", handleScroll, true); // Capture phase for all scroll events
89 |
90 | // Also listen to scroll events on common container elements
91 | const xmluiContainers = document.querySelectorAll(
92 | '.xmlui-app, .xmlui-page, .xmlui-container, [data-xmlui], main, .main, #root, .app'
93 | );
94 | xmluiContainers.forEach((element) => {
95 | element.addEventListener("scroll", handleScroll);
96 | });
97 |
98 | handleScroll(); // Check initial position
99 |
100 | return () => {
101 | window.removeEventListener("scroll", handleScroll);
102 | document.removeEventListener("scroll", handleScroll, true);
103 | xmluiContainers.forEach((element) => {
104 | element.removeEventListener("scroll", handleScroll);
105 | });
106 | };
107 | }, [visible, threshold]);
108 |
109 | // Scroll to top functionality
110 | const handleClick = useCallback(() => {
111 | // Force scroll to top using multiple methods
112 | // This will work regardless of which container is scrolled
113 |
114 | // Convert behavior prop to ScrollBehavior type
115 | const scrollBehavior: ScrollBehavior = validBehavior === "instant" ? "instant" : validBehavior === "auto" ? "auto" : "smooth";
116 |
117 | // Method 1: Standard window scroll
118 | window.scrollTo({ top: 0, behavior: scrollBehavior });
119 |
120 | // Method 2: Direct property setting (for instant behavior)
121 | if (validBehavior === "instant") {
122 | document.documentElement.scrollTop = 0;
123 | document.body.scrollTop = 0;
124 | }
125 |
126 | // Method 3: Find and scroll any scrolled containers
127 | const allElements = document.querySelectorAll('*');
128 | allElements.forEach((element) => {
129 | if (element instanceof HTMLElement && element.scrollTop > 0) {
130 | if (validBehavior === "instant") {
131 | element.scrollTop = 0;
132 | } else {
133 | element.scrollTo({ top: 0, behavior: scrollBehavior });
134 | }
135 | }
136 | });
137 |
138 | // Method 4: Scroll specific XMLUI containers (common patterns)
139 | const xmluiContainers = document.querySelectorAll(
140 | '.xmlui-app, .xmlui-page, .xmlui-container, [data-xmlui], main, .main, #root, .app'
141 | );
142 | xmluiContainers.forEach((element) => {
143 | if (element instanceof HTMLElement) {
144 | if (validBehavior === "instant") {
145 | element.scrollTop = 0;
146 | } else {
147 | element.scrollTo({ top: 0, behavior: scrollBehavior });
148 | }
149 | }
150 | });
151 |
152 | onClick?.();
153 | }, [validBehavior, onClick]);
154 |
155 | if (!isVisible) {
156 | return null;
157 | }
158 |
159 | return (
160 | <button
161 | ref={ref}
162 | className={classnames(
163 | styles.scrollToTop,
164 | {
165 | [styles.positionStart]: validPosition === "start",
166 | [styles.positionCenter]: validPosition === "center",
167 | [styles.positionEnd]: validPosition === "end",
168 | },
169 | className,
170 | )}
171 | onClick={handleClick}
172 | style={style}
173 | aria-label="Scroll to top"
174 | type="button"
175 | >
176 | <Icon name={icon} fallback="chevronup" aria-hidden />
177 | </button>
178 | );
179 | },
180 | );
181 |
```
--------------------------------------------------------------------------------
/xmlui/tests/components-core/scripts-runner/AttributeValueParser.test.ts:
--------------------------------------------------------------------------------
```typescript
1 | import { assert, describe, expect, it } from "vitest";
2 |
3 | import { parseAttributeValue } from "../../../src/components-core/script-runner/AttributeValueParser";
4 | import { Identifier, ObjectLiteral, T_IDENTIFIER } from "../../../src/components-core/script-runner/ScriptingSourceTree";
5 | import { T_OBJECT_LITERAL } from "../../../src/parsers/scripting/ScriptingNodeTypes";
6 |
7 | describe("Attribute value parsing", () => {
8 | it("Empty value", () => {
9 | // --- Act
10 | const source = "";
11 | const val = parseAttributeValue(source)!;
12 |
13 | // --- Assert
14 | expect(val.__PARSED).toBe(true);
15 | expect(val.parseId).toBeTypeOf("number");
16 | expect(val.segments).toHaveLength(0);
17 | });
18 |
19 | it("single string literal", () => {
20 | // --- Act
21 | const source = "hello";
22 | const val = parseAttributeValue(source)!;
23 |
24 | // --- Assert
25 | expect(val.__PARSED).toBe(true);
26 | expect(val.parseId).toBeTypeOf("number");
27 | expect(val.segments).toHaveLength(1);
28 | expect(val.segments![0].expr).toBeUndefined();
29 | expect(val.segments![0].literal).toBe("hello");
30 | });
31 |
32 | it("single expression value", () => {
33 | // --- Act
34 | const source = "{myId}";
35 | const val = parseAttributeValue(source)!;
36 |
37 | // --- Assert
38 | expect(val.__PARSED).toBe(true);
39 | expect(val.segments).toHaveLength(1);
40 | expect(val.segments![0].expr).toBeDefined();
41 | expect(val.segments![0].literal).toBeUndefined();
42 | expect(val.segments![0].expr.type).toBe(T_IDENTIFIER);
43 | expect((val.segments![0].expr as Identifier).name).toBe("myId");
44 | });
45 |
46 | it("compound value #1", () => {
47 | // --- Act
48 | const source = "{myId}hello";
49 | const val = parseAttributeValue(source)!;
50 |
51 | // --- Assert
52 | expect(val.__PARSED).toBe(true);
53 | expect(val.parseId).toBeTypeOf("number");
54 | expect(val.segments).toHaveLength(2);
55 | expect(val.segments![0].expr).toBeDefined();
56 | expect(val.segments![0].literal).toBeUndefined();
57 | expect(val.segments![0].expr.type).toBe(T_IDENTIFIER);
58 | expect((val.segments![0].expr as Identifier).name).toBe("myId");
59 | expect(val.segments![1].expr).toBeUndefined();
60 | expect(val.segments![1].literal).toBe("hello");
61 | });
62 |
63 | it("compound value #2", () => {
64 | // --- Act
65 | const source = "hello{myId}";
66 | const val = parseAttributeValue(source)!;
67 |
68 | // --- Assert
69 | expect(val.__PARSED).toBe(true);
70 | expect(val.parseId).toBeTypeOf("number");
71 | expect(val.segments).toHaveLength(2);
72 | expect(val.segments![0].expr).toBeUndefined();
73 | expect(val.segments![0].literal).toBe("hello");
74 | expect(val.segments![1].expr).toBeDefined();
75 | expect(val.segments![1].literal).toBeUndefined();
76 | expect(val.segments![1].expr.type).toBe(T_IDENTIFIER);
77 | expect((val.segments![1].expr as Identifier).name).toBe("myId");
78 | });
79 |
80 | it("compound value #3", () => {
81 | // --- Act
82 | const source = "hello{myId}world";
83 | const val = parseAttributeValue(source)!;
84 |
85 | // --- Assert
86 | expect(val.__PARSED).toBe(true);
87 | expect(val.parseId).toBeTypeOf("number");
88 | expect(val.segments).toHaveLength(3);
89 | expect(val.segments![0].expr).toBeUndefined();
90 | expect(val.segments![0].literal).toBe("hello");
91 | expect(val.segments![1].expr).toBeDefined();
92 | expect(val.segments![1].literal).toBeUndefined();
93 | expect(val.segments![1].expr.type).toBe(T_IDENTIFIER);
94 | expect((val.segments![1].expr as Identifier).name).toBe("myId");
95 | expect(val.segments![2].expr).toBeUndefined();
96 | expect(val.segments![2].literal).toBe("world");
97 | });
98 |
99 | it("value with escaped brace #1", () => {
100 | // --- Act
101 | const source = "\\{myId";
102 | const val = parseAttributeValue(source)!;
103 |
104 | // --- Assert
105 | expect(val.__PARSED).toBe(true);
106 | expect(val.parseId).toBeTypeOf("number");
107 | expect(val.segments).toHaveLength(1);
108 | expect(val.segments![0].expr).toBeUndefined();
109 | expect(val.segments![0].literal).toBe("{myId");
110 | });
111 |
112 | it("value with escaped brace #2", () => {
113 | // --- Act
114 | const source = "\\{myId}hello";
115 | const val = parseAttributeValue(source)!;
116 |
117 | // --- Assert
118 | expect(val.__PARSED).toBe(true);
119 | expect(val.parseId).toBeTypeOf("number");
120 | expect(val.segments).toHaveLength(1);
121 | expect(val.segments![0].expr).toBeUndefined();
122 | expect(val.segments![0].literal).toBe("{myId}hello");
123 | });
124 |
125 | it("value with escaped brace #3", () => {
126 | // --- Act
127 | const source = "hello\\{myId}";
128 | const val = parseAttributeValue(source)!;
129 |
130 | // --- Assert
131 | expect(val.__PARSED).toBe(true);
132 | expect(val.parseId).toBeTypeOf("number");
133 | expect(val.segments).toHaveLength(1);
134 | expect(val.segments![0].expr).toBeUndefined();
135 | expect(val.segments![0].literal).toBe("hello{myId}");
136 | });
137 |
138 | it("value with escaped brace #4", () => {
139 | // --- Act
140 | const source = "hello\\{myId}{world}";
141 | const val = parseAttributeValue(source)!;
142 |
143 | // --- Assert
144 | expect(val.__PARSED).toBe(true);
145 | expect(val.parseId).toBeTypeOf("number");
146 | expect(val.segments).toHaveLength(2);
147 | expect(val.segments![0].expr).toBeUndefined();
148 | expect(val.segments![0].literal).toBe("hello{myId}");
149 | expect(val.segments![1].expr).toBeDefined();
150 | expect(val.segments![1].literal).toBeUndefined();
151 | expect(val.segments![1].expr.type).toBe(T_IDENTIFIER);
152 | expect((val.segments![1].expr as Identifier).name).toBe("world");
153 | });
154 |
155 | it("value with unclosed brace", () => {
156 | // --- Act
157 | const source = "{myId";
158 | try {
159 | const val = parseAttributeValue(source)!;
160 | } catch (err) {
161 | expect(err.toString()).toContain("Unclosed");
162 | return;
163 | }
164 | assert.fail("Exception expected");
165 | });
166 |
167 | it("object value #1", () => {
168 | // --- Act
169 | const source = "{{ from: from, to: to }}";
170 | const val = parseAttributeValue(source)!;
171 |
172 | // --- Assert
173 | expect(val.__PARSED).toBe(true);
174 | expect(val.parseId).toBeTypeOf("number");
175 | expect(val.segments).toHaveLength(1);
176 | expect(val.segments![0].expr).toBeDefined();
177 | expect(val.segments![0].literal).toBeUndefined();
178 | expect(val.segments![0].expr.type).toBe(T_OBJECT_LITERAL);
179 | expect((val.segments![0].expr as ObjectLiteral).props.length).toBe(2);
180 | });
181 |
182 | });
```
--------------------------------------------------------------------------------
/docs/public/pages/tutorial-10.md:
--------------------------------------------------------------------------------
```markdown
1 | # Search
2 |
3 | The `Search` component uses [Tabs](/components/Tabs) to enable switching between two different search experiences.
4 |
5 | ```xmlui-pg display noHeader
6 | ---app display
7 | <App>
8 | <Search />
9 | </App>
10 | ---comp display
11 | <Component name="Search">
12 |
13 | <Tabs>
14 | <TabItem label="Find invoices issued after date">
15 | <SearchInvoicesAfter />
16 | </TabItem>
17 | <TabItem label="Search clients, products, and invoices">
18 | <SearchEverything />
19 | </TabItem>
20 | </Tabs>
21 |
22 | </Component>
23 | ---comp display
24 | <Component name="SearchInvoicesAfter">
25 | This is SearchInvoicesAfter.
26 | </Component>
27 | ---comp display
28 | <Component name="SearchEverything">
29 | This is SearchEverything.
30 | </Component>
31 | ---desc
32 | Try switching between the two tabs.
33 | ```
34 |
35 | ## Search invoices after date
36 |
37 | Here is `SearchInvoicesAfter`. Try changing the date.
38 |
39 |
40 | ```xmlui-pg noHeader
41 | ---app display
42 | <App>
43 | <SearchInvoicesAfter />
44 | </App>
45 | ---comp
46 | <Component
47 | name="StatusBadge"
48 | var.statusColors="{{
49 | draft: { background: '#f59e0b', label: 'white' },
50 | sent: { background: '#3b82f6', label: 'white' },
51 | paid: { background: '#10b981', label: 'white' }
52 | }}"
53 | >
54 | <Badge
55 | value="{$props.status}"
56 | colorMap="{statusColors}"
57 | variant="pill"
58 | />
59 | </Component>
60 | ---comp
61 | <Component name="SearchInvoicesAfter">
62 |
63 | <VStack marginTop="1rem">
64 | <DatePicker
65 | id="dateAfter"
66 | width="20rem"
67 | initialValue="2025-01-01"
68 | dateFormat="yyyy-MM-dd"
69 | onDidChange="(val) => console.log('Date selected:', val)"
70 | />
71 |
72 | <DataSource
73 | id="invoicesAfter"
74 | url="/resources/files/invoices.json"
75 | when="{dateAfter.value}"
76 | transformResult="{(data) => window.filterInvoicesAfter(data || [], dateAfter.value)}"
77 | />
78 |
79 | <ChangeListener
80 | listenTo="{dateAfter.value}"
81 | onDidChange="invoicesAfter.reload()"
82 | />
83 |
84 | <Fragment when="{invoicesAfter}">
85 | <Card>
86 | <VStack>
87 | <Table data="{ invoicesAfter }">
88 | <Column bindTo="client" header="Client" />
89 | <Column bindTo="issue_date" header="Issue Date">
90 | { window.formatDate($item.issue_date) }
91 | </Column>
92 | <Column header="Status">
93 | <StatusBadge status="{$item.status}" />
94 | </Column>
95 | <Column bindTo="total" header="Total" >
96 | ${$item.total}
97 | </Column>
98 | </Table>
99 | </VStack>
100 | </Card>
101 | </Fragment>
102 | </VStack>
103 |
104 | </Component>
105 | ```
106 |
107 |
108 | ```xmlui /when/
109 | <Component name="SearchInvoicesAfter">
110 | <VStack paddingTop="$space-4">
111 | <DatePicker
112 | id="dateAfter"
113 | width="20rem"
114 | initialValue="2025-01-01"
115 | dateFormat="yyyy-MM-dd"
116 | onDidChange="(val) => console.log('Date selected:', val)"
117 | />
118 | <Card when="{dateAfter.value}">
119 | <Table data="/api/invoices/after/{dateAfter.value}">
120 | <Column bindTo="name" header="Client"/>
121 | <Column bindTo="issue_date" header="Issue Date">
122 | { window.formatDate($item.issue_date) }
123 | </Column>
124 | <Column header="Status">
125 | <StatusBadge status="{$item.status}"/>
126 | </Column>
127 | <Column bindTo="total" header="Total">
128 | ${$item.total}
129 | </Column>
130 | </Table>
131 | </Card>
132 | </VStack>
133 | </Component>
134 | ```
135 |
136 | The `when` guards the [DatePicker](/components/DatePicker)'s `dateAfter`, so the `Table`
137 | s `data` URL won't fire until its dependent variable is ready.
138 |
139 | > [!INFO]
140 | > You can use the `when` property on *any* XMLUI component to prevent it from rendering until some condition is true.
141 |
142 |
143 | ## Search everything
144 |
145 | Here is `SearchEverything`. Try typing `a`, then `c`, then `m`, and watch the results converge dynamically on `Acme`.
146 |
147 | ```xmlui-pg height="400px" noHeader
148 | ---app
149 | <App>
150 | <SearchEverything />
151 | </App>
152 | ---comp
153 | <Component name="SearchEverything">
154 |
155 | <VStack marginTop="1rem">
156 | <TextBox
157 | placeholder="Enter search term..."
158 | width="25rem"
159 | id="searchTerm"
160 | />
161 |
162 | <DataSource id="clients" url="/resources/files/clients.json" />
163 | <DataSource id="products" url="/resources/files/products.json" />
164 | <DataSource id="allInvoices" url="/resources/files/invoices.json" />
165 |
166 | <Fragment when="{searchTerm.value}">
167 | <Card>
168 | <VStack>
169 | <Text>Found {window.filterSearchResults(clients, products, allInvoices, searchTerm.value).length} results for
170 | "{searchTerm.value}":</Text>
171 | <Table data="{window.filterSearchResults(clients, products, allInvoices, searchTerm.value)}">
172 | <Column bindTo="table_name" header="Type" width="100px" />
173 | <Column bindTo="title" header="Title" width="*" />
174 | <Column bindTo="snippet" header="Match Details" width="3*" />
175 | </Table>
176 | </VStack>
177 | </Card>
178 | </Fragment>
179 | </VStack>
180 |
181 | </Component>
182 | ```
183 |
184 | It's similar to `SearchInvoicesAfter`.
185 |
186 | ```xmlui /when=/
187 | <Component name="SearchEverything">
188 |
189 | <VStack paddingTop="$space-4">
190 | <TextBox
191 | placeholder="Enter search term..."
192 | width="25rem"
193 | id="searchTerm"
194 | />
195 |
196 | <Card when="{searchTerm.value}">
197 | <DataSource
198 | id="search"
199 | url="/api/search/{searchTerm.value}"
200 | />
201 | <Text>Found {search.value ? search.value.length : 0} results for
202 | "{searchTerm.value}":</Text>
203 | <Table data="{search}">
204 | <Column bindTo="table_name" header="Type" width="100px" />
205 | <Column bindTo="title" header="Title" width="*" />
206 | <Column bindTo="snippet" header="Match Details" width="3*" />
207 | </Table>
208 | </Card>
209 | </VStack>
210 |
211 | </Component>
212 | ```
```
--------------------------------------------------------------------------------
/docs/content/components/LineChart.md:
--------------------------------------------------------------------------------
```markdown
1 | # LineChart [#linechart]
2 |
3 | `LineChart` displays data as connected points over a continuous axis, ideal for showing trends, changes over time, or relationships between variables. Use it time series data, progress tracking, and comparing multiple data series on the same scale.
4 |
5 | The LineChart component accommodates the size of its parent unless you set it explicitly:
6 |
7 | ```xmlui-pg copy display height="300px" name="Example: dimension determined by the parent" /Card height="240px" width="75%"/
8 | <Card height="240px" width="75%">
9 | <LineChart
10 | data="{[
11 | { 'sprint': 'Sprint 1', 'A': 44 },
12 | { 'sprint': 'Sprint 2', 'A': 32 },
13 | { 'sprint': 'Sprint 3', 'A': 48 },
14 | { 'sprint': 'Sprint 4', 'A': 72 }
15 | ]}"
16 | yKeys="{['A']}"
17 | xKey="sprint"
18 | />
19 | </Card>
20 | ```
21 |
22 | ```xmlui-pg copy display height="300px" name="Example: dimension overwritten by LineChart" /height="240px"/ /height="200px"/
23 | <Card height="240px">
24 | <LineChart
25 | height="200px"
26 | data="{[
27 | { 'sprint': 'Sprint 1', 'A': 44 },
28 | { 'sprint': 'Sprint 2', 'A': 32 },
29 | { 'sprint': 'Sprint 3', 'A': 48 },
30 | { 'sprint': 'Sprint 4', 'A': 72 }
31 | ]}"
32 | yKeys="{['A']}"
33 | xKey="sprint"
34 | />
35 | </Card>
36 | ```
37 |
38 | **Key features:**
39 | - **Flexible orientation**: Choose horizontal or vertical bar layouts
40 | - **Multiple data series**: Display several metrics on the same chart with different colored bars
41 | - **Stacked vs grouped**: Stack bars on top of each other or place them side by side
42 | - **Custom formatting**: Use `tickFormatter` to format axis labels and [`LabelList`](/components/LabelList) for data labels
43 |
44 | ## Properties [#properties]
45 |
46 | ### `data` [#data]
47 |
48 | The data to be displayed in the line chart.It needs to be an array of objects, where each object represents a data point.
49 |
50 | ### `hideTickX` (default: false) [#hidetickx-default-false]
51 |
52 | Determines whether the X-axis ticks should be hidden. If set to (`true`), the ticks will not be displayed.
53 |
54 | ### `hideTickY` (default: false) [#hideticky-default-false]
55 |
56 | Determines whether the Y-axis ticks should be hidden. If set to (`true`), the ticks will not be displayed.
57 |
58 | ### `hideTooltip` (default: false) [#hidetooltip-default-false]
59 |
60 | Determines whether the tooltip should be hidden.If set to (`true`), no tooltip will be shown when hovering over data points.
61 |
62 | ### `hideX` (default: false) [#hidex-default-false]
63 |
64 | Determines whether the X-axis should be hidden. If set to (`true`), the axis will not be displayed.
65 |
66 | ### `hideY` (default: false) [#hidey-default-false]
67 |
68 | Determines whether the Y-axis should be hidden. If set to (`true`), the axis will not be displayed.
69 |
70 | ### `marginBottom` [#marginbottom]
71 |
72 | The bottom margin of the chart
73 |
74 | ### `marginLeft` [#marginleft]
75 |
76 | The left margin of the chart
77 |
78 | ### `marginRight` [#marginright]
79 |
80 | The right margin of the chart
81 |
82 | ### `marginTop` [#margintop]
83 |
84 | The top margin of the chart
85 |
86 | ### `showLegend` (default: false) [#showlegend-default-false]
87 |
88 | Determines whether the legend should be displayed.
89 |
90 | ### `tickFormatterX` [#tickformatterx]
91 |
92 | A function that formats the X-axis tick labels. It receives a tick value and returns a formatted string.
93 |
94 | ```xmlui-pg copy display height="320px" name="Example: tickFormatterX" /tickFormatterX/
95 | <App>
96 | <LineChart
97 | height="240px"
98 | data="{[
99 | { 'sprint': 'Sprint 1', 'A': 44 },
100 | { 'sprint': 'Sprint 2', 'A': 32 },
101 | { 'sprint': 'Sprint 3', 'A': 48 },
102 | { 'sprint': 'Sprint 4', 'A': 72 }
103 | ]}"
104 | yKeys="{['A']}"
105 | xKey="sprint"
106 | tickFormatterX="{(value) => '(' + value + ')'}"
107 | />
108 | </App>
109 | ```
110 |
111 | ### `tickFormatterY` [#tickformattery]
112 |
113 | A function that formats the Y-axis tick labels. It receives a tick value and returns a formatted string.
114 |
115 | ```xmlui-pg copy display height="320px" name="Example: tickFormatterY" /tickFormatterY/
116 | <App>
117 | <LineChart
118 | height="240px"
119 | data="{[
120 | { 'sprint': 'Sprint 1', 'A': 44 },
121 | { 'sprint': 'Sprint 2', 'A': 32 },
122 | { 'sprint': 'Sprint 3', 'A': 48 },
123 | { 'sprint': 'Sprint 4', 'A': 72 }
124 | ]}"
125 | yKeys="{['A']}"
126 | xKey="sprint"
127 | tickFormatterY="{(value) => '$' + value}"
128 | />
129 | </App>
130 | ```
131 |
132 | ### `tooltipTemplate` [#tooltiptemplate]
133 |
134 | This property allows replacing the default template to display a tooltip.
135 |
136 | ```xmlui-pg copy display height="320px" name="Example: tooltipTemplate" /tooltipTemplate/
137 | <App>
138 | <LineChart
139 | height="240px"
140 | data="{[
141 | { 'sprint': 'Sprint 1', 'A': 44, 'B': 28 },
142 | { 'sprint': 'Sprint 2', 'A': 32, 'B': 41 },
143 | { 'sprint': 'Sprint 3', 'A': 48, 'B': 35 },
144 | { 'sprint': 'Sprint 4', 'A': 72, 'B': 58 }
145 | ]}"
146 | yKeys="{['A', 'B']}"
147 | xKey="sprint"
148 | >
149 | <property name="tooltipTemplate">
150 | <VStack backgroundColor='white' padding="$space-2">
151 | <Text fontWeight='bold'>{$tooltip.label}</Text>
152 | <Items data="{$tooltip.payload}">
153 | <HStack gap="$space-2" verticalAlignment="center">
154 | <Stack
155 | width="8px"
156 | height="8px"
157 | backgroundColor="{$item.color}" />
158 | <Text>{$item.label}: {$item.value}</Text>
159 | </HStack>
160 | </Items>
161 | </VStack>
162 | </property>
163 | </LineChart>
164 | </App>
165 | ```
166 |
167 | The `tooltipTemplate` prop allows you to customize the appearance and content of chart tooltips. The template receives a `$tooltip` context variable containing:
168 |
169 | - `$tooltip.label`: The label for the data point (typically the yKey value)
170 | - `$tooltip.payload`: An object containing all data values for the hovered point
171 | - `$tooltip.active`: Boolean indicating if the tooltip is currently active
172 |
173 | ### `xKey` [#xkey]
174 |
175 | The key in the data objects used for labeling different data series.
176 |
177 | ### `yKeys` [#ykeys]
178 |
179 | This property specifies the keys in the data objects that should be used for rendering the lines.
180 |
181 | ## Events [#events]
182 |
183 | This component does not have any events.
184 |
185 | ## Exposed Methods [#exposed-methods]
186 |
187 | This component does not expose any methods.
188 |
189 | ## Styling [#styling]
190 |
191 | ### Theme Variables [#theme-variables]
192 |
193 | | Variable | Default Value (Light) | Default Value (Dark) |
194 | | --- | --- | --- |
195 | | [width](../styles-and-themes/common-units/#size)-line-LineChart | 1px | 1px |
196 |
```
--------------------------------------------------------------------------------
/xmlui/src/components/Carousel/Carousel.tsx:
--------------------------------------------------------------------------------
```typescript
1 | import styles from "./Carousel.module.scss";
2 |
3 | import { createComponentRenderer } from "../../components-core/renderers";
4 | import { parseScssVar } from "../../components-core/theming/themeVars";
5 | import { createMetadata, d, dDidChange } from "../metadata-helpers";
6 | import { CarouselComponent, defaultProps } from "./CarouselNative";
7 | import { orientationOptionMd } from "../abstractions";
8 |
9 | const COMP = "Carousel";
10 |
11 | export const CarouselMd = createMetadata({
12 | status: "stable",
13 | description:
14 | `This component displays a slideshow by cycling through elements (images, text, or ` +
15 | `custom slides) like a carousel.`,
16 | props: {
17 | orientation: {
18 | description:
19 | "This property indicates the orientation of the carousel. The `horizontal` " +
20 | "value indicates that the carousel moves horizontally, and the `vertical` " +
21 | "value indicates that the carousel moves vertically.",
22 | availableValues: orientationOptionMd,
23 | valueType: "string",
24 | defaultValue: defaultProps.orientation,
25 | },
26 | indicators: {
27 | description: "Display the individual slides as buttons (`true`) or not (`false`).",
28 | valueType: "boolean",
29 | defaultValue: defaultProps.indicators,
30 | },
31 | controls: {
32 | description: "Display the previous/next controls (`true`) or not (`false`).",
33 | valueType: "boolean",
34 | defaultValue: defaultProps.controls,
35 | },
36 | autoplay: {
37 | description: "Start scrolling the carousel automatically (`true`) or not (`false`).",
38 | valueType: "boolean",
39 | defaultValue: defaultProps.autoplay,
40 | },
41 | loop: {
42 | description: "Sets whether the carousel should loop back to the start/end when it reaches the last/first slide.",
43 | valueType: "boolean",
44 | defaultValue: defaultProps.loop,
45 | },
46 | startIndex: {
47 | description: "The index of the first slide to display.",
48 | valueType: "number",
49 | defaultValue: defaultProps.startIndex,
50 | },
51 | transitionDuration: {
52 | description: "The duration of the transition between slides.",
53 | valueType: "number",
54 | defaultValue: defaultProps.transitionDuration,
55 | },
56 | autoplayInterval: {
57 | description: "Specifies the interval between autoplay transitions.",
58 | valueType: "number",
59 | defaultValue: defaultProps.autoplayInterval,
60 | },
61 | stopAutoplayOnInteraction: {
62 | description: "This property indicates whether autoplay stops on user interaction.",
63 | valueType: "boolean",
64 | defaultValue: defaultProps.stopAutoplayOnInteraction,
65 | },
66 | prevIcon: {
67 | description: "The icon to display for the previous control.",
68 | valueType: "string",
69 | },
70 | nextIcon: {
71 | description: "The icon to display for the next control.",
72 | valueType: "string",
73 | },
74 | },
75 | events: {
76 | displayDidChange: dDidChange(COMP),
77 | },
78 | apis: {
79 | canScrollPrev: {
80 | description: `This method returns \`true\` if the carousel can scroll to the previous slide.`,
81 | signature: "canScrollPrev(): boolean",
82 | },
83 | canScrollNext: {
84 | description: `This method returns \`true\` if the carousel can scroll to the next slide.`,
85 | signature: "canScrollNext(): boolean",
86 | },
87 | scrollTo: {
88 | description: `This method scrolls the carousel to the specified slide index.`,
89 | signature: "scrollTo(index: number): void",
90 | parameters: {
91 | index: "The index of the slide to scroll to.",
92 | },
93 | },
94 | scrollPrev: {
95 | signature: "scrollPrev(): void",
96 | description: "This method scrolls the carousel to the previous slide.",
97 | },
98 | scrollNext: {
99 | signature: "scrollNext(): void",
100 | description: "This method scrolls the carousel to the next slide.",
101 | },
102 | },
103 | themeVars: parseScssVar(styles.themeVars),
104 | defaultThemeVars: {
105 | [`backgroundColor-control-${COMP}`]: "$color-primary",
106 | [`textColor-control-${COMP}`]: "$textColor",
107 | [`backgroundColor-control-hover-${COMP}`]: "$color-primary",
108 | [`textColor-control-hover-${COMP}`]: "$textColor",
109 | [`backgroundColor-control-active-${COMP}`]: "$color-primary",
110 | [`backgroundColor-control-disabled-${COMP}`]: "$color-surface-200",
111 | [`textColor-control-disabled-${COMP}`]: "$textColor-disabled",
112 | [`textColor-control-active-${COMP}`]: "$color-primary",
113 | [`backgroundColor-indicator-${COMP}`]: "$color-surface-200",
114 | [`backgroundColor-indicator-active-${COMP}`]: "$color-primary",
115 | [`textColor-indicator-${COMP}`]: "$color-primary",
116 | [`textColor-indicator-active-${COMP}`]: "$color-primary",
117 | [`backgroundColor-indicator-hover-${COMP}`]: "$color-surface-200",
118 | [`textColor-indicator-hover-${COMP}`]: "$color-primary",
119 | [`width-indicator-${COMP}`]: "25px",
120 | [`height-indicator-${COMP}`]: "6px",
121 | [`height-control-${COMP}`]: "36px",
122 | [`width-control-${COMP}`]: "36px",
123 | [`borderRadius-control-${COMP}`]: "50%",
124 | [`height-${COMP}`]: "100%",
125 | [`width-${COMP}`]: "100%",
126 | },
127 | });
128 |
129 | export const carouselComponentRenderer = createComponentRenderer(
130 | COMP,
131 | CarouselMd,
132 | ({ node, renderChild, className, extractValue, lookupEventHandler, registerComponentApi }) => {
133 | return (
134 | <CarouselComponent
135 | className={className}
136 | stopAutoplayOnInteraction={extractValue.asOptionalBoolean(
137 | node.props?.stopAutoplayOnInteraction,
138 | )}
139 | autoplayInterval={extractValue.asOptionalNumber(node.props?.autoplayInterval)}
140 | transitionDuration={extractValue.asOptionalNumber(node.props?.transitionDuration)}
141 | indicators={extractValue.asOptionalBoolean(node.props?.indicators)}
142 | controls={extractValue.asOptionalBoolean(node.props?.controls)}
143 | orientation={extractValue(node.props?.orientation)}
144 | onDisplayDidChange={lookupEventHandler("displayDidChange")}
145 | autoplay={extractValue.asOptionalBoolean(node.props?.autoplay)}
146 | registerComponentApi={registerComponentApi}
147 | loop={extractValue.asOptionalBoolean(node.props?.loop)}
148 | startIndex={extractValue.asOptionalNumber(node.props?.startIndex)}
149 | prevIcon={extractValue(node.props?.prevIcon)}
150 | nextIcon={extractValue(node.props?.nextIcon)}
151 | >
152 | {renderChild(node.children)}
153 | </CarouselComponent>
154 | );
155 | },
156 | );
157 |
```
--------------------------------------------------------------------------------
/packages/xmlui-website-blocks/src/Carousel/Carousel.tsx:
--------------------------------------------------------------------------------
```typescript
1 | import styles from "./Carousel.module.scss";
2 |
3 | import { createComponentRenderer, parseScssVar, createMetadata, d } from "xmlui";
4 |
5 | const dDidChange = (componentName: string) => d(`This event is fired when the displayed content of the ${componentName} changes.`);
6 | const orientationOptionMd = ["horizontal", "vertical"];
7 | import { CarouselComponent, defaultProps } from "./CarouselNative";
8 |
9 | const COMP = "CarouselNew";
10 |
11 | export const CarouselMd = createMetadata({
12 | status: "stable",
13 | description:
14 | `This component displays a slideshow by cycling through elements (images, text, or ` +
15 | `custom slides) like a carousel.`,
16 | props: {
17 | orientation: {
18 | description:
19 | "This property indicates the orientation of the carousel. The `horizontal` " +
20 | "value indicates that the carousel moves horizontally, and the `vertical` " +
21 | "value indicates that the carousel moves vertically.",
22 | availableValues: orientationOptionMd,
23 | valueType: "string",
24 | defaultValue: defaultProps.orientation,
25 | },
26 | indicators: {
27 | description: "Display the individual slides as buttons (`true`) or not (`false`).",
28 | valueType: "boolean",
29 | defaultValue: defaultProps.indicators,
30 | },
31 | controls: {
32 | description: "Display the previous/next controls (`true`) or not (`false`).",
33 | valueType: "boolean",
34 | defaultValue: defaultProps.controls,
35 | },
36 | autoplay: {
37 | description: "Start scrolling the carousel automatically (`true`) or not (`false`).",
38 | valueType: "boolean",
39 | defaultValue: defaultProps.autoplay,
40 | },
41 | loop: {
42 | description: "Sets whether the carousel should loop back to the start/end when it reaches the last/first slide.",
43 | valueType: "boolean",
44 | defaultValue: defaultProps.loop,
45 | },
46 | startIndex: {
47 | description: "The index of the first slide to display.",
48 | valueType: "number",
49 | defaultValue: defaultProps.startIndex,
50 | },
51 | transitionDuration: {
52 | description: "The duration of the transition between slides.",
53 | valueType: "number",
54 | defaultValue: defaultProps.transitionDuration,
55 | },
56 | autoplayInterval: {
57 | description: "Specifies the interval between autoplay transitions.",
58 | valueType: "number",
59 | defaultValue: defaultProps.autoplayInterval,
60 | },
61 | stopAutoplayOnInteraction: {
62 | description: "This property indicates whether autoplay stops on user interaction.",
63 | valueType: "boolean",
64 | defaultValue: defaultProps.stopAutoplayOnInteraction,
65 | },
66 | prevIcon: {
67 | description: "The icon to display for the previous control.",
68 | valueType: "string",
69 | },
70 | nextIcon: {
71 | description: "The icon to display for the next control.",
72 | valueType: "string",
73 | },
74 | },
75 | events: {
76 | displayDidChange: dDidChange(COMP),
77 | },
78 | apis: {
79 | canScrollPrev: {
80 | description: `This method returns \`true\` if the carousel can scroll to the previous slide.`,
81 | signature: "canScrollPrev(): boolean",
82 | },
83 | canScrollNext: {
84 | description: `This method returns \`true\` if the carousel can scroll to the next slide.`,
85 | signature: "canScrollNext(): boolean",
86 | },
87 | scrollTo: {
88 | description: `This method scrolls the carousel to the specified slide index.`,
89 | signature: "scrollTo(index: number): void",
90 | parameters: {
91 | index: "The index of the slide to scroll to.",
92 | },
93 | },
94 | scrollPrev: {
95 | signature: "scrollPrev(): void",
96 | description: "This method scrolls the carousel to the previous slide.",
97 | },
98 | scrollNext: {
99 | signature: "scrollNext(): void",
100 | description: "This method scrolls the carousel to the next slide.",
101 | },
102 | },
103 | themeVars: parseScssVar(styles.themeVars),
104 | defaultThemeVars: {
105 | [`backgroundColor-control-${COMP}`]: "$color-primary",
106 | [`textColor-control-${COMP}`]: "$textColor",
107 | [`backgroundColor-control-hover-${COMP}`]: "$color-primary",
108 | [`textColor-control-hover-${COMP}`]: "$textColor",
109 | [`backgroundColor-control-active-${COMP}`]: "$color-primary",
110 | [`backgroundColor-control-disabled-${COMP}`]: "$color-surface-200",
111 | [`textColor-control-disabled-${COMP}`]: "$textColor-disabled",
112 | [`textColor-control-active-${COMP}`]: "$color-primary",
113 | [`backgroundColor-indicator-${COMP}`]: "$color-surface-200",
114 | [`backgroundColor-indicator-active-${COMP}`]: "$color-primary",
115 | [`textColor-indicator-${COMP}`]: "$color-primary",
116 | [`textColor-indicator-active-${COMP}`]: "$color-primary",
117 | [`backgroundColor-indicator-hover-${COMP}`]: "$color-surface-200",
118 | [`textColor-indicator-hover-${COMP}`]: "$color-primary",
119 | [`width-indicator-${COMP}`]: "25px",
120 | [`height-indicator-${COMP}`]: "6px",
121 | [`height-control-${COMP}`]: "36px",
122 | [`width-control-${COMP}`]: "36px",
123 | [`borderRadius-control-${COMP}`]: "50%",
124 | [`height-${COMP}`]: "100%",
125 | [`width-${COMP}`]: "100%",
126 | },
127 | } as const);
128 |
129 | export const carouselComponentRenderer = createComponentRenderer(
130 | COMP,
131 | CarouselMd,
132 | ({ node, renderChild, className, extractValue, lookupEventHandler, registerComponentApi }) => {
133 | const props = (node.props as typeof CarouselMd.props)!;
134 | return (
135 | <CarouselComponent
136 | className={className}
137 | stopAutoplayOnInteraction={extractValue.asOptionalBoolean(
138 | props.stopAutoplayOnInteraction,
139 | )}
140 | autoplayInterval={extractValue.asOptionalNumber(props.autoplayInterval)}
141 | transitionDuration={extractValue.asOptionalNumber(props.transitionDuration)}
142 | indicators={extractValue.asOptionalBoolean(props.indicators)}
143 | controls={extractValue.asOptionalBoolean(props.controls)}
144 | orientation={extractValue(props.orientation)}
145 | onDisplayDidChange={lookupEventHandler("displayDidChange")}
146 | autoplay={extractValue.asOptionalBoolean(props.autoplay)}
147 | registerComponentApi={registerComponentApi}
148 | loop={extractValue.asOptionalBoolean(props.loop)}
149 | startIndex={extractValue.asOptionalNumber(props.startIndex)}
150 | prevIcon={extractValue(props.prevIcon)}
151 | nextIcon={extractValue(props.nextIcon)}
152 | >
153 | {renderChild(node.children)}
154 | </CarouselComponent>
155 | );
156 | },
157 | );
158 |
```
--------------------------------------------------------------------------------
/xmlui/src/components/FlowLayout/FlowLayoutNative.tsx:
--------------------------------------------------------------------------------
```typescript
1 | import {
2 | type CSSProperties,
3 | type Dispatch,
4 | type ForwardedRef,
5 | forwardRef,
6 | type ReactNode,
7 | type SetStateAction,
8 | createContext,
9 | useContext,
10 | useMemo,
11 | useState,
12 | } from "react";
13 | import classnames from "classnames";
14 | import { noop } from "lodash-es";
15 |
16 | import styles from "./FlowLayout.module.scss";
17 |
18 | import { useTheme } from "../../components-core/theming/ThemeContext";
19 | import { normalizeCssValueForCalc, getSizeString } from "../../components-core/utils/css-utils";
20 | import { useIsomorphicLayoutEffect, useMediaQuery } from "../../components-core/utils/hooks";
21 | import { resolveLayoutProps } from "../../components-core/theming/layout-resolver";
22 | import { useAppContext } from "../../components-core/AppContext";
23 |
24 | type FlowItemProps = {
25 | children: ReactNode;
26 | width?: string | number;
27 | minWidth?: string | number;
28 | maxWidth?: string | number;
29 | forceBreak?: boolean;
30 | };
31 |
32 | const resolvedCssVars: Record<string, any> = {};
33 |
34 | interface IFlowLayoutContext {
35 | rowGap: string | number;
36 | columnGap: string | number;
37 | setNumberOfChildren: Dispatch<SetStateAction<number>>;
38 | }
39 |
40 | const FlowLayoutContext = createContext<IFlowLayoutContext>({
41 | rowGap: 0,
42 | columnGap: 0,
43 | setNumberOfChildren: noop,
44 | });
45 |
46 | export const FlowItemBreak = ({ force }: { force?: boolean }) => (
47 | <div className={classnames(styles.break, { [styles.forceBreak]: force })} />
48 | );
49 |
50 | export const FlowItemWrapper = forwardRef(function FlowItemWrapper(
51 | { children, forceBreak, ...restProps }: FlowItemProps,
52 | ref: any,
53 | ) {
54 | const { rowGap, columnGap, setNumberOfChildren } = useContext(FlowLayoutContext);
55 | const { mediaSize } = useAppContext();
56 | useIsomorphicLayoutEffect(() => {
57 | setNumberOfChildren((prev) => prev + 1);
58 | return () => {
59 | setNumberOfChildren((prev) => prev - 1);
60 | };
61 | }, [setNumberOfChildren]);
62 | const { root } = useTheme();
63 | const _width = restProps.width || "100%";
64 | const _minWidth = restProps.minWidth || undefined;
65 | const _maxWidth = restProps.maxWidth || undefined;
66 |
67 | const {
68 | width = _width,
69 | minWidth,
70 | maxWidth,
71 | flex,
72 | } = useMemo(() => {
73 | return (
74 | // --- New layout resolution
75 | resolveLayoutProps(
76 | { width: _width, maxWidth: _maxWidth, minWidth: _minWidth },
77 | {
78 | type: "Stack",
79 | orientation: "horizontal",
80 | },
81 | ).cssProps || {}
82 |
83 | // --- Old layout resolution
84 | // compileLayout(
85 | // { width: _width, maxWidth: _maxWidth, minWidth: _minWidth },
86 | // activeTheme.themeVars,
87 | // {
88 | // type: "Stack",
89 | // orientation: "horizontal",
90 | // },
91 | // ).cssProps || {}
92 | );
93 | }, [_maxWidth, _minWidth, _width]);
94 |
95 | const resolvedWidth = useMemo(() => {
96 | if (width && typeof width === "string" && width.startsWith("var(")) {
97 | if (!resolvedCssVars[width]) {
98 | const varName = width.substring(4, width.length - 1);
99 | const resolved = getComputedStyle(root || document.body).getPropertyValue(varName);
100 | resolvedCssVars[width] = resolved || _width;
101 | }
102 | return resolvedCssVars[width];
103 | }
104 | return width || _width;
105 | }, [_width, root, width]);
106 |
107 | const isWidthPercentage = typeof resolvedWidth === "string" && resolvedWidth.endsWith("%");
108 |
109 | const _columnGap = normalizeCssValueForCalc(columnGap);
110 |
111 | let responsiveWidth;
112 | if(isWidthPercentage){
113 | const percNumber = parseFloat(resolvedWidth);
114 | if(mediaSize.sizeIndex <= 1){
115 | let percentage = percNumber * 4;
116 | if(percentage > 50){
117 | responsiveWidth = `100%`
118 | } else {
119 | responsiveWidth = `min(${percentage}%, 100%)`
120 | }
121 | } else if(mediaSize.sizeIndex <= 2){
122 | let percentage = percNumber * 3;
123 | if(percentage >= 50 && percentage <= 75){
124 | responsiveWidth = `50%`
125 | } else if(percentage > 75){
126 | responsiveWidth = `100%`
127 | } else {
128 | responsiveWidth = `min(${percentage}%, 100%)`
129 | }
130 | } else {
131 | responsiveWidth = `min(${width}, 100%)`;
132 | }
133 | } else {
134 | responsiveWidth = `min(calc(${width} + ${_columnGap}), 100%)`;
135 | }
136 |
137 | const outerWrapperStyle: CSSProperties = {
138 | minWidth,
139 | maxWidth,
140 | width: responsiveWidth,
141 | paddingBottom: rowGap,
142 | flex,
143 | };
144 |
145 | const isStarSizing = flex !== undefined;
146 | if (isStarSizing) {
147 | //star sizing
148 | outerWrapperStyle.width = "100%";
149 | outerWrapperStyle.minWidth = minWidth || "1px";
150 | }
151 | return (
152 | <>
153 | <div
154 | style={{ ...outerWrapperStyle, paddingRight: _columnGap }}
155 | className={classnames(styles.flowItem, {
156 | [styles.starSized]: isStarSizing,
157 | })}
158 | ref={ref}
159 | >
160 | {children}
161 | </div>
162 | {isStarSizing && <FlowItemBreak />}
163 | </>
164 | );
165 | });
166 |
167 | type FlowLayoutProps = {
168 | style?: CSSProperties;
169 | className?: string;
170 | columnGap: string | number;
171 | rowGap: string | number;
172 | children: ReactNode;
173 | };
174 |
175 | export const defaultProps: Pick<FlowLayoutProps, "columnGap" | "rowGap"> = {
176 | columnGap: "$gap-normal",
177 | rowGap: "$gap-normal",
178 | };
179 |
180 | export const FlowLayout = forwardRef(function FlowLayout(
181 | { style, className, columnGap = 0, rowGap = 0, children, ...rest }: FlowLayoutProps,
182 | forwardedRef: ForwardedRef<HTMLDivElement>,
183 | ) {
184 | const [numberOfChildren, setNumberOfChildren] = useState(0);
185 | const safeColumnGap = numberOfChildren === 1 ? 0 : columnGap;
186 |
187 | // --- Be smart about rowGap
188 | const _rowGap = getSizeString(rowGap);
189 | const _columnGap = getSizeString(safeColumnGap);
190 |
191 | const innerStyle = useMemo(
192 | () => ({
193 | // We put a negative margin on the container to fill the space for the row's last columnGap
194 | marginRight: `calc(-1 * ${_columnGap})`,
195 | marginBottom: `calc(-1 * ${_rowGap})`,
196 | }),
197 | [_columnGap, _rowGap],
198 | );
199 |
200 | const flowLayoutContextValue = useMemo(() => {
201 | return {
202 | rowGap: _rowGap,
203 | columnGap: _columnGap,
204 | setNumberOfChildren,
205 | };
206 | }, [_columnGap, _rowGap]);
207 | return (
208 | <FlowLayoutContext.Provider value={flowLayoutContextValue}>
209 | <div style={style} className={className} ref={forwardedRef} {...rest}>
210 | <div className={styles.outer}>
211 | <div className={classnames(styles.flowContainer, styles.horizontal)} style={innerStyle}>
212 | {children}
213 | </div>
214 | </div>
215 | </div>
216 | </FlowLayoutContext.Provider>
217 | );
218 | });
219 |
```